/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* Ensure all elements use Open Sans */
* {
  font-family: 'Open Sans', sans-serif !important;
}

/* Contact Hero */
.contact-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Wave Divider */
.contact-hero .wave-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.contact-hero .wave-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.contact-hero .wave-divider-top .shape-fill {
  fill: var(--beige-bg);
}

.contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 41, 38, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 60px 20px;
}

.contact-hero .page-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero .page-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-hero .free-badge {
  display: inline-block;
  background: var(--light-purple);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(182, 149, 179, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(182, 149, 179, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(182, 149, 179, 0.7);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 350px;
    margin-top: 90px;
  }

  .contact-hero .page-title {
    font-size: 36px;
  }

  .contact-hero .page-subtitle {
    font-size: 16px;
  }

  .contact-hero .free-badge {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/* Contact Content */
.contact-content {
  background: var(--beige-bg);
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info-section {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 32px;
}

.contact-info-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 48px;
  color: var(--light-purple);
}

.contact-icon svg {
  width: 48px;
  height: 48px;
  color: var(--light-purple);
}

.contact-item-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-content a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 4px;
}

.contact-item-content a:hover {
  color: var(--dark-purple);
}

.contact-item-content p {
  margin: 0;
  font-size: 15px;
  color: var(--text-body);
}

/* Company Info */
.company-info {
  background: var(--beige-bg);
  padding: 24px;
  border-radius: 12px;
  margin-top: 32px;
}

.company-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-purple);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.company-info-item {
  font-size: 14px;
  color: var(--text-body);
}

.company-info-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 600;
}

/* Contact Form */
.contact-form-section {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 16px;
}

.contact-form-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 32px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--dark-green);
  box-shadow: 0 0 0 4px rgba(33, 73, 69, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .form-note {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  font-style: italic;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--darker-green) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 73, 69, 0.3);
}

/* Social Media */
.social-media {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--beige-bg);
}

.social-media h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-purple);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-purple);
  font-size: 48px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--dark-purple);
  transform: scale(1.1);
}

.social-link svg {
  width: 48px;
  height: 48px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .contact-hero {
    padding: 60px 20px 0 20px;
    min-height: 350px;
  }

  .contact-hero .page-title {
    font-size: 32px;
  }

  .contact-hero .page-subtitle {
    font-size: 16px;
  }

  .contact-hero .free-badge {
    font-size: 16px;
    padding: 14px 32px;
  }

  .contact-content {
    padding: 60px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 32px 24px;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 26px;
  }

  .company-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-hero .page-title {
    font-size: 42px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
