.elementor-19653 .elementor-element.elementor-element-518992c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-19653 .elementor-element.elementor-element-5dea0f9{--display:flex;}.elementor-19653 .elementor-element.elementor-element-145de90{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-e977a41 *//* Contact Hero Section */
.contact-hero-section {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #060914 0%, #0a0e27 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero-content {
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: #00D4FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #00E5FF;
}

.breadcrumb .separator {
  color: #a0aec0;
}

.breadcrumb .current {
  color: #cbd5e0;
}

/* Hero Title */
.contact-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-subtitle {
  font-size: 20px;
  color: #cbd5e0;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Badges */
.contact-trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e0;
  font-size: 15px;
  font-weight: 500;
}

.trust-badge svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero-section {
    padding: 80px 20px 60px;
  }
  
  .contact-hero-title {
    font-size: 36px;
  }
  
  .contact-hero-subtitle {
    font-size: 18px;
  }
  
  .contact-trust-badges {
    flex-direction: column;
    gap: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a3777c0 *//* Contact Form & Info Section */
.contact-form-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0a0e27 0%, #060914 100%);
}

.contact-form-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.form-subtitle {
  font-size: 16px;
  color: #a0aec0;
  margin-bottom: 32px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #718096;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300D4FF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

.form-select option {
  background: #0a0e27;
  color: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, #00E5FF 0%, #00B8E6 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-privacy {
  font-size: 13px;
  color: #a0aec0;
  text-align: center;
  margin-top: -8px;
}

.form-privacy a {
  color: #00D4FF;
  text-decoration: none;
}

.form-privacy a:hover {
  text-decoration: underline;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Contact Info Card */
.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.info-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.info-card-subtitle {
  font-size: 15px;
  color: #a0aec0;
  margin-bottom: 28px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.method-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
}

.method-content {
  flex-grow: 1;
}

.method-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.method-link {
  font-size: 16px;
  color: #00D4FF;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: #00E5FF;
}

.method-note {
  font-size: 14px;
  color: #a0aec0;
  margin: 0;
}

/* Business Hours Card */
.business-hours-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.hours-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-size: 15px;
  color: #cbd5e0;
  font-weight: 500;
}

.time {
  font-size: 15px;
  color: #00D4FF;
  font-weight: 600;
}

.hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #a0aec0;
  background: rgba(0, 212, 255, 0.05);
  padding: 12px 16px;
  border-radius: 10px;
  margin: 0;
  line-height: 1.5;
}

.hours-note svg {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 20px;
  }
  
  .contact-form-wrapper {
    padding: 30px 24px;
  }
  
  .form-title {
    font-size: 28px;
  }
  
  .contact-info-card,
  .business-hours-card {
    padding: 24px;
  }
}/* End custom CSS */