/* ============================================================
   AYURVED MORE — custom.css
   All component & utility styles (index + contact pages)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary-color:   #1a4d2e;
  --secondary-color: #c77825;
  --accent-color:    #f5d576;
  --dark-green:      #0f2818;
  --light-cream:     #faf8f3;
  --text-light:      #6b7280;
  --whatsapp:        #25D366;
  --phone:           #2563eb;
  --transition:      0.3s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-green);
  overflow-x: hidden;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Scroll animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Floating Action Buttons ────────────────────────────────── */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fab-button {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.fab-button::before {
  content: attr(data-text);
  position: absolute;
  right: 80px;
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  white-space: nowrap;
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.fab-button:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: floatFab 3s ease-in-out infinite;
}

.fab-phone {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.fab-button:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

@keyframes floatFab {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Navigation ─────────────────────────────────────────────── */
.main-navbar {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-navbar.scrolled {
  box-shadow: 0 5px 30px rgba(0,0,0,0.14);
}

.navbar-brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.navbar-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 700;
  color: #c77825;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: -4px;
  white-space: nowrap;
}

.nav-link {
  color: var(--dark-green) !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 28px 16px !important;
  position: relative;
  transition: color var(--transition);
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: width var(--transition);
  border-radius: 2px 2px 0 0;
}

.nav-link:hover { color: var(--secondary-color) !important; }
.nav-link:hover::after,
.nav-link.active::after { width: 70%; }
.nav-link.active { color: var(--secondary-color) !important; }

.btn-book-now {
  background: linear-gradient(135deg, var(--secondary-color), #e89944);
  color: white !important;
  padding: 11px 28px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(199,120,37,0.35);
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199,120,37,0.5);
}

.btn-book-now::after { display: none !important; }

/* ── Logo ───────────────────────────────────────────────────── */
.navbar-logo {
  height: 100px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  height: 90px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  background: white;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Mobile menu */
.navbar-toggler {
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a4d2e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--secondary-color);
  opacity: 0.5;
}

.section-eyebrow::before { right: 100%; margin-right: -20px; }
.section-eyebrow::after  { left:  100%; margin-left:  -20px; }

.section-title {
  font-size: 48px;
  color: var(--dark-green);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-desc {
  color: var(--text-light);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero-modern {
  min-height: 92vh;
  background: linear-gradient(135deg, rgba(15,40,24,0.97) 0%, rgba(26,77,46,0.92) 60%, rgba(15,40,24,0.85) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245,213,118,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(199,120,37,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,213,118,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,213,118,0.12);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(245,213,118,0.3);
  letter-spacing: 1px;
}

.hero-title {
  font-size: 74px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--accent-color);
  display: block;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--secondary-color);
  color: white;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 6px 25px rgba(199,120,37,0.45);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(199,120,37,0.55);
  background: #d98a2e;
  color: white;
}

.btn-hero-outline {
  background: transparent;
  color: white;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 55px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-side {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-bg {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,213,118,0.12) 0%, rgba(26,77,46,0.3) 70%);
  border: 1px solid rgba(245,213,118,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-icon-main {
  font-size: 160px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero-float-card.card-1 {
  bottom: 30px;
  left: -20px;
}

.hero-float-card.card-2 {
  top: 40px;
  right: -20px;
}

.float-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.float-text-top {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.float-text-bot {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Chambers Section ───────────────────────────────────────── */
.chambers-modern {
  padding: 110px 0;
  background: var(--light-cream);
}

.chamber-modern-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(0,0,0,0.07);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.chamber-modern-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.chamber-header {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  padding: 35px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.chamber-header::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.chamber-number {
  width: 58px;
  height: 58px;
  background: var(--accent-color);
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.chamber-name {
  color: white;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.chamber-body { padding: 30px; }

.chamber-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f3f3f3;
}

.chamber-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.chamber-detail i {
  font-size: 20px;
  color: var(--secondary-color);
  margin-right: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.chamber-detail-content h6 {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.chamber-detail-content p { margin: 0; color: var(--dark-green); font-weight: 500; font-size: 14px; }
.chamber-detail-content a { color: var(--dark-green); text-decoration: none; }
.chamber-detail-content a:hover { color: var(--secondary-color); }

.chamber-timing-box {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 18px;
  border-left: 4px solid var(--secondary-color);
  font-size: 13px;
}

.chamber-timing-box strong {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

/* ── Services Section ───────────────────────────────────────── */
.services-modern {
  padding: 110px 0;
  background: white;
}

.service-icon-box {
  text-align: center;
  padding: 40px 25px;
  transition: all var(--transition);
  border-radius: 20px;
  height: 100%;
  border: 2px solid transparent;
}

.service-icon-box:hover {
  background: var(--light-cream);
  border-color: rgba(199,120,37,0.15);
  transform: translateY(-6px);
}

.service-icon-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 40px;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(26,77,46,0.25);
}

.service-icon-box:hover .service-icon-circle {
  background: linear-gradient(135deg, var(--secondary-color), #e89944);
  border-radius: 50%;
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(199,120,37,0.35);
}

.service-icon-box h4 {
  font-size: 20px;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.service-icon-box p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ── About Section ──────────────────────────────────────────── */
.about-modern {
  padding: 110px 0;
  background: var(--light-cream);
}

.about-image-wrap {
  position: relative;
}

.about-main-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.14);
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -25px;
  background: linear-gradient(135deg, var(--secondary-color), #d98a2e);
  color: white;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(199,120,37,0.45);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(199,120,37,0.45); }
  50%       { box-shadow: 0 16px 55px rgba(199,120,37,0.6); }
}

.badge-number {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-content { padding-left: 50px; }

.about-content h2 {
  font-size: 44px;
  color: var(--dark-green);
  margin-bottom: 22px;
}

.about-text {
  line-height: 1.85;
  color: #444;
  font-size: 16px;
  margin-bottom: 18px;
}

.doctor-name {
  font-weight: 700;
  color: var(--dark-green);
  font-size: 17px;
}

.about-qualification {
  color: var(--secondary-color);
  font-weight: 600;
  font-style: italic;
}

.about-specialty-highlight {
  background: linear-gradient(135deg, var(--secondary-color), #e89944);
  color: white;
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}

.specialty-intro {
  font-weight: 600;
  color: #666;
  display: inline-block;
}

.credential-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

.credential-list li {
  padding: 11px 0;
  color: var(--dark-green);
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.credential-list li:last-child { border-bottom: none; }

.credential-list li i {
  color: var(--secondary-color);
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Team Section ───────────────────────────────────────────── */
.team-modern {
  padding: 110px 0;
  background: linear-gradient(155deg, var(--dark-green) 0%, var(--primary-color) 60%, #1f5c38 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.team-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,213,118,0.07) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}

.team-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(15px);
  padding: 45px 35px;
  border-radius: 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.12);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.doctor-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--accent-color), #f0c840);
  color: var(--dark-green);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.team-card h4 { color: white; margin-bottom: 12px; font-size: 24px; }

.doctor-degree {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Treatments Section ─────────────────────────────────────── */
.treatments-modern {
  padding: 110px 0;
  background: white;
}

.treatment-minimal-card {
  background: white;
  border: 2px solid #eef0f2;
  border-radius: 20px;
  padding: 38px 25px;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}

.treatment-minimal-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 45px rgba(199,120,37,0.12);
  transform: translateY(-6px);
}

.treatment-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #f0faf5, #e0f5eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  color: var(--primary-color);
  transition: all var(--transition);
}

.treatment-minimal-card:hover .treatment-icon-wrap {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
}

.treatment-minimal-card h5 {
  font-size: 18px;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.treatment-minimal-card p {
  color: var(--text-light);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* ── Contact Section (index inline) ────────────────────────── */
.contact-modern {
  padding: 110px 0;
  background: var(--light-cream);
}

.contact-info-box {
  background: linear-gradient(155deg, var(--dark-green), var(--primary-color));
  color: white;
  padding: 50px 45px;
  border-radius: 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.contact-info-box h3 {
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-info-box > p {
  opacity: 0.8;
  margin-bottom: 35px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail-item i {
  font-size: 26px;
  color: var(--accent-color);
  margin-right: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail-item h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.contact-detail-item p { margin: 0; opacity: 0.85; font-size: 14px; }
.contact-detail-item a { color: white; text-decoration: none; }
.contact-detail-item a:hover { color: var(--accent-color); }

.contact-form-modern {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.09);
}

.contact-form-modern h3 {
  font-size: 34px;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.contact-form-modern > p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 15px;
}

.form-group-modern { margin-bottom: 22px; }

.form-control-modern {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8eaed;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  color: var(--dark-green);
  transition: all var(--transition);
  background: #fcfcfc;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(199,120,37,0.08);
  background: white;
}

.form-control-modern::placeholder { color: #b0b7c0; }

.btn-submit-modern {
  background: linear-gradient(135deg, var(--secondary-color), #e89944);
  color: white;
  padding: 16px 50px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 5px 20px rgba(199,120,37,0.3);
}

.btn-submit-modern:hover {
  background: linear-gradient(135deg, #d98a2e, #c77825);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(199,120,37,0.4);
}

/* ── Contact Page Specific ──────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, rgba(15,40,24,0.97), rgba(26,77,46,0.92));
  padding: 120px 0 90px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,213,118,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-header p {
  font-size: 19px;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.breadcrumb-nav { margin-top: 20px; }
.breadcrumb-nav a { color: var(--accent-color); text-decoration: none; margin: 0 6px; font-weight: 600; }
.breadcrumb-nav span { color: rgba(255,255,255,0.6); }

.contact-section { padding: 100px 0; background: var(--light-cream); }

.contact-info-card {
  background: white;
  border-radius: 22px;
  padding: 40px 35px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.07);
  transition: all var(--transition);
  height: 100%;
  text-align: center;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
}

.contact-icon {
  width: 78px;
  height: 78px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 25px rgba(26,77,46,0.3);
}

.contact-info-card h3 { font-size: 22px; color: var(--dark-green); margin-bottom: 12px; }
.contact-info-card p { color: var(--text-light); margin: 0; font-size: 15px; line-height: 1.8; }
.contact-info-card a { color: var(--secondary-color); text-decoration: none; font-weight: 600; }
.contact-info-card a:hover { color: var(--primary-color); }

.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 60px 55px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.09);
}

.contact-form-wrapper h2 { font-size: 42px; color: var(--dark-green); margin-bottom: 12px; }

.form-subtitle { color: var(--text-light); font-size: 17px; margin-bottom: 40px; }

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

.form-label {
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 8px;
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control-custom {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8eaed;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  color: var(--dark-green);
  transition: all var(--transition);
  background: #fcfcfc;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(199,120,37,0.08);
  background: white;
}

.btn-submit {
  background: linear-gradient(135deg, var(--secondary-color), #e89944);
  color: white;
  padding: 17px 65px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 5px 20px rgba(199,120,37,0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(199,120,37,0.45);
}

/* Chamber Location Cards (contact page) */
.chambers-section { padding: 100px 0; background: white; }

.chamber-location-card {
  background: var(--light-cream);
  border-radius: 22px;
  padding: 40px 32px;
  height: 100%;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.chamber-location-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-8px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.09);
}

.chamber-badge {
  background: linear-gradient(135deg, var(--secondary-color), #e89944);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(199,120,37,0.3);
}

.chamber-location-card h4 { font-size: 26px; color: var(--dark-green); margin-bottom: 20px; }

.location-detail { margin-bottom: 14px; display: flex; align-items: flex-start; }
.location-detail i { color: var(--secondary-color); margin-right: 12px; margin-top: 3px; font-size: 18px; flex-shrink: 0; }
.location-detail-text { color: var(--text-light); line-height: 1.75; font-size: 14px; }
.location-detail-text strong { color: var(--dark-green); display: block; margin-bottom: 2px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.location-detail a { color: var(--text-light); text-decoration: none; }
.location-detail a:hover { color: var(--secondary-color); }

.timing-badge {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 18px;
  border-left: 4px solid var(--secondary-color);
  font-size: 13px;
  color: var(--dark-green);
  line-height: 1.6;
}

/* Map Section */
.map-section { padding: 80px 0; background: var(--light-cream); }

.map-container {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 45px rgba(0,0,0,0.1);
  height: 500px;
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer-modern {
  background: var(--dark-green);
  color: white;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
}

.footer-brand h4 {
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.footer-tagline {
  color: rgba(245,213,118,0.8);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-text { line-height: 1.85; color: #ccd5c0; font-size: 14px; margin-bottom: 0; }
.footer-qualification { color: #e89944; font-weight: 600; font-style: italic; }
.footer-specialty-highlight {
  background: linear-gradient(135deg, var(--secondary-color), #e89944);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-specialty-list { color: #b8c4b0; }

.footer-social { margin-top: 25px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  margin-right: 8px;
  transition: all var(--transition);
  font-size: 17px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-4px);
  border-color: transparent;
}

.footer-title { color: var(--accent-color); font-size: 18px; margin-bottom: 22px; font-weight: 700; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all var(--transition);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 55px;
  padding-top: 28px;
  text-align: center;
  opacity: 0.55;
  font-size: 13px;
}

/* ── Back to Top ────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 110px;
  right: 33px;
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* ── Utility ────────────────────────────────────────────────── */
.divider-leaf {
  text-align: center;
  padding: 8px 0;
  font-size: 24px;
  opacity: 0.35;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  padding: 90px 0;
  background: #faf8f3;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(26, 77, 46, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(199, 120, 37, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box {
  background: linear-gradient(135deg, #0f2818 0%, #1a4d2e 55%, #1f5c38 100%);
  border-radius: 28px;
  padding: 60px 65px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(15, 40, 24, 0.3);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(245, 213, 118, 0.07);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-leaf {
  position: absolute;
  font-size: 80px;
  opacity: 0.07;
  pointer-events: none;
  line-height: 1;
}

.cta-leaf-left {
  top: 10px;
  left: 20px;
  transform: rotate(-30deg);
}

.cta-leaf-right {
  bottom: 10px;
  right: 20px;
  transform: rotate(30deg) scaleX(-1);
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f5d576;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5d576;
  opacity: 0.7;
  display: inline-block;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
}

.cta-trust-item i {
  color: #f5d576;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-btn-primary,
.cta-btn-whatsapp,
.cta-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.cta-btn-primary {
  background: #c77825;
  color: white;
  box-shadow: 0 6px 22px rgba(199, 120, 37, 0.45);
}

.cta-btn-primary:hover {
  background: #d98a2e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(199, 120, 37, 0.55);
}

.cta-btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
}

.cta-btn-whatsapp:hover {
  background: #1db954;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.cta-btn-call {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-call:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-2px);
}

.cta-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
