/* ============================================================
   BEST for Dentistry — Main Stylesheet
   Blue & Gold · Inter
   Blue: #1352A2  ·  Gold: #f0b13e  ·  Navy: #091f50
   ============================================================ */

/* ------ Design Tokens ------ */
:root {
  --bs-primary:     #1352A2;
  --bs-primary-rgb: 19, 82, 162;

  --blue:           #1352A2;
  --blue-dark:      #0d3d7a;
  --blue-navy:      #091f50;
  --blue-light:     #e8f2ff;
  --blue-rgb:       19, 82, 162;

  --gold:           #f0b13e;
  --gold-dark:      #c98912;
  --gold-deep:      #a06908;
  --gold-light:     #fef6e4;
  --gold-rgb:       240, 177, 62;

  --white:          #ffffff;
  --off-white:      #f7f9fc;
  --text:           #1e2535;
  --text-body:      #3d4456;
  --text-muted:     #6c7a9c;
  --border:         #dde3ef;
  --border-light:   #eef1f8;

  --shadow-sm:      0 1px 4px rgba(9,31,80,.06), 0 2px 8px rgba(9,31,80,.04);
  --shadow:         0 4px 16px rgba(9,31,80,.08), 0 8px 32px rgba(9,31,80,.05);
  --shadow-blue:    0 8px 32px rgba(19,82,162,.16);
  --shadow-gold:    0 8px 32px rgba(240,177,62,.22);

  --radius:         10px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --transition:     all .25s ease;
}

/* ------ Base ------ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ------ Typography ------ */
h1, h2, h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  color: var(--text);
}

.display-5 { font-family: 'Inter', system-ui, sans-serif; font-weight: 800; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.75;
}

.gold-em {
  color: var(--gold);
  font-weight: 700;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

/* ------ Divider ------ */
.divider {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 3px;
  margin: .75rem auto 0;
}
.divider-left { margin-inline: 0; }

/* ------ Buttons ------ */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: .01em;
}
.btn-lg { padding: .8rem 2rem; font-size: 1rem; }
.btn-sm { padding: .35rem 1rem; font-size: .85rem; }

/* Blue primary */
.btn-primary {
  --bs-btn-color:              #fff;
  --bs-btn-bg:                 #1352A2;
  --bs-btn-border-color:       #1352A2;
  --bs-btn-hover-color:        #fff;
  --bs-btn-hover-bg:           #0d3d7a;
  --bs-btn-hover-border-color: #0d3d7a;
  --bs-btn-focus-shadow-rgb:   19, 82, 162;
  --bs-btn-active-bg:          #091f50;
  --bs-btn-active-border-color:#091f50;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(19,82,162,.3); }

/* Gold CTA */
.btn-gold {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--blue-navy);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--blue-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(240,177,62,.35);
}

.btn-outline-primary {
  --bs-btn-color:              #1352A2;
  --bs-btn-border-color:       #1352A2;
  --bs-btn-hover-color:        #fff;
  --bs-btn-hover-bg:           #1352A2;
  --bs-btn-hover-border-color: #1352A2;
  --bs-btn-focus-shadow-rgb:   19, 82, 162;
}
.btn-outline-primary:hover { transform: translateY(-1px); }

.btn-outline-light { font-weight: 600; border-radius: 8px; transition: var(--transition); }
.btn-outline-light:hover { transform: translateY(-1px); }

/* ------ Maintenance Bar ------ */
.maintenance-bar {
  background: var(--gold);
  color: var(--blue-navy);
  text-align: center;
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: .02em;
  width: 100%;
  position: relative;
  z-index: 1200;
}
.maintenance-bar i { margin-right: .35rem; font-size: .85rem; }

/* ------ Navbar ------ */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: .8rem 0;
  transition: padding .25s ease, box-shadow .25s ease;
}
#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(9,31,80,.08);
  padding: .55rem 0;
}

.navbar-brand img { height: 38px; width: auto; transition: height .25s ease; }
#mainNav.scrolled .navbar-brand img { height: 32px; }

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-body) !important;
  padding: .45rem .85rem !important;
  border-radius: 7px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue) !important;
  background: var(--blue-light);
}
/* Gold underline accent on active nav link */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .85rem; right: .85rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ------ Page Hero (inner pages) ------ */
.page-hero {
  background:
    url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L0 0L0 40' fill='none' stroke='white' stroke-width='0.5' stroke-opacity='0.1'/%3E%3C/svg%3E") repeat,
    linear-gradient(140deg, var(--blue-navy) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(240,177,62,.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Gold rule at bottom */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.page-hero h1 {
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
}
.page-hero .lead { color: rgba(255,255,255,.82); font-size: 1.1rem; }
.breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,255,255,.4); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ------ Hero (home) ------ */
.hero {
  background: linear-gradient(150deg, var(--blue-navy) 0%, var(--blue-dark) 55%, #1a4d8c 100%);
  min-height: 94vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

/* Subtle gold glow bottom-left, white glow top-right */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 90%, rgba(240,177,62,.09) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 5%, rgba(255,255,255,.04) 0%, transparent 45%);
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-waves {
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 100%;
}

.wave-1 { animation: wave-scroll 22s linear infinite; }
.wave-2 { animation: wave-scroll 32s linear infinite reverse; }
.wave-3 { animation: wave-scroll 17s linear infinite; }

@keyframes wave-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* Signature: giant bold gold number */
.hero-big-number {
  font-family: 'Inter', system-ui, sans-serif;

  font-weight: 800;
  font-size: clamp(5.5rem, 14vw, 9.5rem);
  color: var(--gold);
  line-height: .85;
  letter-spacing: -.03em;
  margin-bottom: .35rem;
  display: block;
  user-select: none;
}

.hero h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  color: rgba(255,255,255,.92);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,177,62,.12);
  border: 1px solid rgba(240,177,62,.3);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.75rem;
  letter-spacing: .03em;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
  line-height: 1.4;
}

/* ------ Hero Impact Panel (right column) ------ */
.hero-impact-panel {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}

.hip-titlebar {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hip-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.hip-dot.d1 { background: #ff5f57; }
.hip-dot.d2 { background: #febc2e; }
.hip-dot.d3 { background: #28c840; }
.hip-titlebar span { font-size: .75rem; color: rgba(255,255,255,.45); margin-left: .25rem; font-family: 'Inter', sans-serif; }

.hip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hip-row:last-of-type { border-bottom: none; }

.hip-val-before {
  font-weight: 600;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
}
.hip-val-after {
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,.9);
}

.hip-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}
.hip-savings-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue-navy);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hip-savings-number {
  font-family: 'Inter', system-ui, sans-serif;

  font-weight: 800;
  font-size: 1.9rem;
  color: var(--blue-navy);
  line-height: 1;
}

.hip-checks {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hip-check {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-family: 'Inter', sans-serif;
}
.hip-check i { color: var(--gold); font-size: .85rem; flex-shrink: 0; }

/* ------ Stats Bar ------ */
.stats-bar {
  background:
    url("data:image/svg+xml,%3Csvg width='8' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='0' x2='8' y2='0' stroke='white' stroke-width='0.75' stroke-opacity='0.12'/%3E%3C/svg%3E") repeat,
    var(--blue-dark);
  padding: 3rem 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.stat-item { text-align: center; }
.stat-value {
  font-family: 'Inter', system-ui, sans-serif;

  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: .4rem;
  letter-spacing: .02em;
}
/* Vertical dividers between stats */
.stats-bar .col-md-3:not(:last-child) .stat-item {
  border-right: 1px solid rgba(255,255,255,.08);
}

/* ------ Section layout ------ */
section { padding: 5.5rem 0; }
.bg-light-custom { background: var(--off-white); }

/* ------ Cards ------ */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
/* Gold top-border slides in on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(var(--blue-rgb), .18);
}
.card:hover::before { transform: scaleX(1); }

.icon-box {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.card:hover .icon-box { background: var(--blue); color: var(--white); }

/* ------ Mission cards ------ */
.mission-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--blue);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.mission-card:hover .mission-icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.06);
}

/* ------ Benefit list ------ */
.benefit-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border-light);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-light); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .85rem;
}

/* ------ Vendor logos ------ */
.vendor-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 72px; padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.vendor-logo-wrap:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.vendor-logo-text {
  font-size: 1rem; font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.vendor-logo-wrap:hover .vendor-logo-text { color: var(--blue); }

/* ------ Testimonials ------ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover { box-shadow: var(--shadow-gold); border-color: rgba(var(--gold-rgb), .3); }

/* Signature: oversized quote mark accent */
.testimonial-quote-mark {
  font-family: 'Inter', system-ui, sans-serif;

  font-size: 5rem;
  line-height: .8;
  color: var(--gold);
  opacity: .18;
  display: block;
  margin-bottom: -.75rem;
  user-select: none;
}
.testimonial-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }

.testimonial-text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; flex-shrink: 0;
}

/* ------ CTA section ------ */
.cta-section {
  background: linear-gradient(150deg, var(--blue-navy) 0%, var(--blue-dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 80%, rgba(240,177,62,.1) 0%, transparent 55%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.cta-section h2 {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--white);
  font-weight: 800;
}
.cta-section p { color: rgba(255,255,255,.75); }

/* ------ Contact ------ */
.contact-info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--white);
  text-align: center; height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.contact-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue);
  margin: 0 auto 1rem;
}
.map-placeholder {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; color: var(--text-muted);
}

/* ------ Forms ------ */
.form-control, .form-select {
  border-color: var(--border);
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(var(--blue-rgb), .1);
}
.form-label { font-size: .82rem; font-weight: 600; color: var(--text); }

/* ------ Process steps ------ */
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold);
  color: var(--blue-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
  font-family: 'Inter', system-ui, sans-serif;

}

/* ------ Accordion ------ */
.accordion-button:not(.collapsed) {
  background: var(--blue-light);
  color: var(--blue-dark);
  box-shadow: none;
  font-weight: 600;
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(var(--blue-rgb), .1); }
.accordion-item {
  border-color: var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: .5rem;
  overflow: hidden;
}

/* ------ Leadership ------ */
.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.leader-card:hover { box-shadow: var(--shadow-blue); border-color: rgba(var(--blue-rgb), .2); }
.leader-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800;
  margin: 0 auto 1.25rem;
}

/* ------ Pricing ------ */
.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--blue-navy);
  font-size: .72rem; font-weight: 700;
  padding: .28rem 1rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .1em;
}
.pricing-feature { display: flex; align-items: center; gap: .7rem; padding: .45rem 0; font-size: .9rem; }
.pricing-feature i { color: var(--gold-dark); }

/* ------ Privacy Policy ------ */
.policy-content h2 { font-size: 1.45rem; margin-top: 2.5rem; }
.policy-content h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--blue); margin-top: 1.75rem; }
.policy-content p, .policy-content li { font-size: .97rem; line-height: 1.8; color: var(--text-body); }
.gmail-api-box {
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
}
.gmail-api-box h2 { color: var(--blue-dark); }

/* ------ Footer ------ */
.footer {
  background:
    url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L0 0L0 40' fill='none' stroke='white' stroke-width='0.5' stroke-opacity='0.1'/%3E%3C/svg%3E") repeat,
    var(--blue-navy);
  padding: 4.5rem 0 0;
}
.footer-brand img { height: 36px; width: auto; }
.footer-desc { color: rgba(255,255,255,.45); font-size: .88rem; margin-top: .875rem; line-height: 1.75; }

.footer h6 {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex; align-items: flex-start;
  gap: .75rem; margin-bottom: .875rem;
  color: rgba(255,255,255,.5); font-size: .88rem;
}
.footer-contact-item i { color: var(--gold); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0; margin-top: 3.5rem;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.45); font-size: .82rem; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ------ Scroll fade-in ------ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ------ Responsive ------ */
@media (max-width: 991.98px) {
  section { padding: 4rem 0; }
  .hero { min-height: auto; padding: 5rem 0 3.5rem; }
  .hero-big-number { font-size: clamp(4rem, 18vw, 6rem); }
  .stats-bar .col-md-3:not(:last-child) .stat-item { border-right: none; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .navbar-nav { padding-top: .5rem; gap: .25rem; }
  .navbar-nav .btn { margin: .5rem 0 0; }
}

@media (max-width: 767.98px) {
  .hero-big-number { font-size: 4.5rem; }
  .section-title { font-size: 1.65rem; }
  .hero-stats { flex-direction: column; gap: .75rem; }
  .cta-section { padding: 4rem 0; }
  .hip-savings { flex-direction: column; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
  .card { transition: none; }
  .card::before { transition: none; }
  .wave-1, .wave-2, .wave-3 { animation: none; }
  * { transition-duration: .01ms !important; }
}
