/* =============================================
   Contact Page — Redesigned Styles
   ============================================= */

/* ---- Hero ---- */
.contact-hero {
  background: linear-gradient(135deg, #f0fafa 0%, #f9f8f4 50%, #eef7f7 100%);
  padding: 4rem 5% 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(9, 107, 108, 0.06);
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.eyebrow-icon {
  width: 16px;
  height: 16px;
}

.contact-hero-title {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.tt-teal {
  color: var(--primary-color);
}

.contact-hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.contact-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 60px;
  padding: 0.8rem 2rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: "Mona Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}
.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-color);
}

/* ---- Contact Method Cards ---- */
.contact-methods {
  padding: 0 5%;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}
.methods-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.method-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.method-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
}
.method-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-color);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.method-icon-wrap .lucide {
  width: 22px;
  height: 22px;
}
.method-wa-icon {
  width: 22px;
  height: 22px;
}
.method-card h3 {
  font-family: "Mona Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}
.method-value {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.25rem;
}
.method-meta {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: #999;
}

/* ---- Form + Side Section ---- */
.contact-main {
  padding: 4rem 5% 3rem;
}
.contact-main-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Form Wrapper */
.contact-form-wrapper {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-header {
  margin-bottom: 1.5rem;
}
.form-header h2 {
  font-family: "Mona Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}
.form-header p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #777;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
}
.form-group input,
.form-group textarea {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
  background: #fff;
  color: #1a1a1a;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Contact Custom Dropdown (mirrors collections sort dropdown) */
.contact-dropdown {
  position: relative;
  width: 100%;
}
.contact-dropdown .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #1a1a1a;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease;
  outline: none;
}
.contact-dropdown .dropdown-toggle:focus,
.contact-dropdown.open .dropdown-toggle {
  border-color: var(--primary-color);
}
.contact-dropdown .dropdown-toggle .lucide {
  width: 16px;
  height: 16px;
  color: #999;
  transition: transform 0.2s ease;
}
.contact-dropdown.open .dropdown-toggle .lucide {
  transform: rotate(180deg);
}
.dropdown-placeholder {
  color: #999;
}

.contact-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: 100;
}
.contact-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-dropdown .dropdown-option {
  padding: 0.55rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.contact-dropdown .dropdown-option:hover {
  background: #f5f5f5;
}
.contact-dropdown .dropdown-option.selected {
  color: var(--primary-color);
  font-weight: 500;
  background: #f0f8f8;
}

.btn-submit {
  margin-top: 0.5rem;
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}
.btn-submit:hover {
  background: #075858;
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.btn-submit.btn-success {
  background: #16a34a;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Side Panel */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.side-socials {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}
.side-socials h3 {
  font-family: "Mona Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}
.side-socials > p {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 1.2rem;
}
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.social-link-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.social-link-card img {
  width: 18px;
  height: 18px;
}
.social-link-card:hover {
  border-color: var(--primary-color);
  background: #f0f8f8;
}

.side-promise {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #f0f8f8;
  border: 1px solid #d5eaea;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
}
.promise-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}
.promise-icon .lucide {
  width: 24px;
  height: 24px;
}
.side-promise h4 {
  font-family: "Mona Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.side-promise p {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.55;
}

/* ---- FAQ Section ---- */
.faq-section {
  padding: 4rem 5% 4rem;
  background: #f9f8f4;
}
.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-title {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}
.faq-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #777;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: #ccc;
}
.faq-item.open {
  border-color: var(--primary-color);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  gap: 1rem;
}
.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 1.4rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.4rem 1.2rem;
}
.faq-answer p {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

/* ---- Collection CTA ---- */
.collection-cta-section {
  padding: 4rem 5%;
}
.collection-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #096b6c 0%, #064e4e 50%, #053f3f 100%);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.collection-cta-content {
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}
.cta-heading {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-highlight {
  color: #5dd9c1;
}
.cta-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary-color);
  padding: 0.75rem 1.8rem;
  border-radius: 60px;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-cta-primary .lucide {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.btn-cta-primary:hover {
  background: #f0f8f8;
  transform: translateY(-2px);
}
.btn-cta-primary:hover .lucide {
  transform: translateX(3px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.8rem;
  border-radius: 60px;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cta-wa-icon {
  width: 18px;
  height: 18px;
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.trust-badge .lucide {
  width: 14px;
  height: 14px;
}

/* ---- Map ---- */
.contact-map {
  width: 100%;
  height: 400px;
  filter: grayscale(100%) contrast(1.1) opacity(0.8);
  transition: filter 0.5s ease;
  border-top: 1px solid var(--border-color);
}
.contact-map:hover {
  filter: grayscale(0%);
}
.contact-map iframe {
  display: block;
}

/* ---- Scroll Reveal ---- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-wrapper {
    padding: 2rem;
  }
  .collection-cta-inner {
    padding: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 3.5rem 5% 2rem;
  }
  .contact-hero-title {
    font-size: 1.85rem;
  }
  .contact-hero-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .contact-hero-stats {
    flex-direction: row;
    gap: 0.6rem;
    border-radius: 60px;
    padding: 0.6rem 0.8rem;
    width: fit-content;
    margin: 0 auto;
    white-space: nowrap;
  }
  .stat-number {
    font-size: 0.85rem;
  }
  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 0;
  }
  .stat-divider {
    width: 1px;
    height: 18px;
  }
  .methods-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    align-items: stretch;
  }
  .method-card {
    padding: 1.2rem 0.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .method-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }
  .method-value {
    font-size: 0.8rem;
    word-break: break-all;
    line-height: 1.2;
  }
  .method-meta {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-top: 0.25rem;
  }
  .method-icon-wrap {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }
  .method-icon-wrap .lucide,
  .method-wa-icon {
    width: 18px;
    height: 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .social-links {
    grid-template-columns: 1fr 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .collection-cta-inner {
    padding: 2.5rem 1.5rem;
    border-radius: 14px;
  }
}
