:root {
  --primary: #1a3a2a;
  --primary-light: #2d5f43;
  --accent: #c8a951;
  --accent-light: #e4c97a;
  --dark: #0f1f17;
  --text: #2c3e2d;
  --text-light: #5a6b5b;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --light-bg: #f0ede4;
  --border: #d4c9a8;
  --topbar-bg: #0f1f17;
  --shadow: 0 8px 40px rgba(26,58,42,0.13);
  --shadow-lg: 0 20px 60px rgba(26,58,42,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html{
  overflow-x: hidden;
}
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

/* ── TOP BAR ── */
#topbar {
  background: var(--topbar-bg);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  z-index: 1050;
  position: relative;
}
#topbar a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color .2s;
}
#topbar a:hover { color: var(--white); }
#topbar .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
#topbar .topbar-contact { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
#topbar .topbar-contact a {
    background      : var(--accent);
    color           : #000 !important;
    padding         : 5px 16px;
    border-radius   : 50px;
    font-weight     : 700;
    font-size       : 0.95rem;
    letter-spacing  : 0.3px;
    display         : inline-flex;
    align-items     : center;
    gap             : 7px;
    transition      : all 0.3s ease;
}

#topbar .topbar-contact a:hover {
    background      : #fff;
    color           : #000 !important;
    transform       : translateY(-1px);
    box-shadow      : 0 4px 12px rgba(0, 0, 0, 0.15);
}

#topbar .topbar-contact a i {
    font-size       : 0.82rem;
}
#topbar .topbar-hours { opacity: .75; font-size: 12px; }

/* ── NAVBAR ── */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: box-shadow .3s;
}
#mainNav .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary) !important;
  font-weight: 900;
  line-height: 1.2;
}
#mainNav .navbar-brand span {
  display: block;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}
#mainNav .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 16px !important;
  transition: color .2s;
}
#mainNav .nav-link:hover { color: var(--primary-light) !important; }
#mainNav .btn-nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 700;
  border-radius: 6px;
  padding: 9px 22px !important;
  font-size: 14px;
  transition: background .2s, transform .15s;
}
#mainNav .btn-nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ── HERO / SLIDER ── */
/* ============================================
   HERO SLIDER — BASE
   ============================================ */
#heroSlider {
  position: relative;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,26,16,0.88) 0%, rgba(10,26,16,0.55) 60%, rgba(10,26,16,0.2) 100%);
  z-index: 1;
}

/* ============================================
   HERO CONTENT WRAP
   ============================================ */
.hero-content-wrap {
  position: relative; z-index: 2; width: 100%;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-text-col { padding: 80px 0 80px; }

/* ============================================
   HERO BADGES / TEXT / BUTTONS
   ============================================ */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,81,0.18);
  border: 1px solid rgba(200,169,81,0.5);
  color: var(--accent-light);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 68px);
  color: var(--white); line-height: 1.07;
  margin-bottom: 20px; font-weight: 900;
}
.hero-title .accent-word { color: var(--accent); }
.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65; margin-bottom: 32px; max-width: 500px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-hero-primary {
  background: var(--accent); color: var(--primary);
  font-weight: 700; font-size: 16px; padding: 14px 30px;
  border-radius: 8px; border: none; cursor: pointer;
  transition: all .2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
  background: var(--accent-light); color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,81,0.4);
}
.btn-hero-secondary {
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 16px; padding: 14px 30px;
  border-radius: 8px; border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all .2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1); color: var(--white);
}

.hero-trust-pills { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.8); font-size: 13px;
}
.trust-pill i { color: var(--accent); font-size: 14px; }

/* ============================================
   HERO FORM — DESKTOP (992px+)
   ============================================ */
.hero-form-col { display: flex; justify-content: flex-end; padding: 60px 0; }

.hero-form-section {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 400px;
  z-index: 10;
}

.hero-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 14px 32px;
  width: 100%;
  /* NO max-height, NO overflow-y — form is always fully visible */
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.hero-form-card h3 {
  font-size: 22px; color: var(--primary);
  margin-bottom: 6px; font-weight: 900;
}
.hero-form-card p {
  font-size: 13.5px; color: var(--text-light); margin-bottom: 20px;
}
.hero-form-card .form-control,
.hero-form-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: 11px 14px;
  font-size: 14px; color: var(--text);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(45,95,67,0.12);
}
.hero-form-card .form-row-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero-form-card textarea { resize: none; }
.hero-form-card .form-check { padding-left: 28px; margin-bottom: 14px; }
.hero-form-card .form-check-input { cursor: pointer; }
.hero-form-card .form-check-label { font-size: 12.5px; color: var(--text-light); cursor: pointer; }

.btn-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white); font-weight: 700; font-size: 15.5px;
  padding: 13px; border: none; border-radius: 9px;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}
.btn-form-submit:hover {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,58,42,0.4);
}
.form-privacy {
  font-size: 11.5px; color: var(--text-light);
  text-align: center; margin-top: 10px;
  margin-bottom: 0; line-height: 1.5;
}

/* ============================================
   SLIDER DOTS
   ============================================ */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all .3s; border: 2px solid rgba(255,255,255,0.6);
}
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot.active { background: var(--accent); border-color: var(--accent); }

/* ============================================
   TABLET (768px – 991px)
   ============================================ */
@media (max-width: 991px) {

  #heroSlider {
    min-height: unset;
    height: auto;
    overflow: hidden; /* keep this so bg image stays contained */
  }

  /* Hero background slides stay contained to text area only */
  .hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%; /* only covers .hero-content-wrap height */
  }

  .hero-content-wrap {
    min-height: 520px;
    padding: 80px 20px 50px; /* 👈 fixes text touching screen edges */
    display: block;
  }

  .hero-text-col {
    padding: 0;
    max-width: 100%;
  }

  /* Form comes OUT of the slider, below the banner */
  .hero-form-section {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100%;
    z-index: 1;
    background: #f5f5f0; /* solid bg so it's clearly outside the banner */
    padding: 40px 20px 50px;
  }

  .hero-form-card {
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    /* NO max-height, NO overflow */
  }

  .slider-dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    padding: 20px 0 10px;
  }
}

/* ============================================
   MOBILE (up to 767px)
   ============================================ */
@media (max-width: 767px) {
  .hero-content-wrap {
    min-height: 480px;
    padding: 70px 16px 40px; /* 👈 16px side padding so text never touches edge */
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-form-section {
    padding: 36px 16px 50px;
  }

  .hero-form-card {
    padding: 28px 20px;
  }

  .hero-form-card .form-row-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .topbar-hours { display: none; }
}

/* ============================================
   HERO ANIMATIONS
   ============================================ */
.hero-animate { opacity: 0; transform: translateY(30px); animation: fadeUp .8s forwards; }
.hero-animate:nth-child(2) { animation-delay: .15s; }
.hero-animate:nth-child(3) { animation-delay: .3s; }
.hero-animate:nth-child(4) { animation-delay: .45s; }
.hero-animate:nth-child(5) { animation-delay: .6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
/* ── STATS BAR ── */
.stats-bar {
  background: var(--primary);
  padding: 32px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 5px;
  font-weight: 500;
}

/* ── SECTIONS ── */
.section-pad { padding: 60px 0; }
.section-pad-sm { padding: 60px 0; }
.section-label {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(200,169,81,0.18);
border: 1px solid rgba(200,169,81,0.5);
  border-radius: 50px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--primary);
  line-height: 1.15;
  font-weight: 900;
}
.section-title .highlight { color: var(--primary-light); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}
.divider-accent {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 18px 0 24px;
}

/* ── HOW IT WORKS ── */
.how-bg { background: var(--off-white); }
.step-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 32px;
  height: 100%;
  border: 1.5px solid var(--border);
  position: relative;
  transition: all .3s;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity .3s;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.step-card:hover::before { opacity: 1; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(200,169,81,0.12);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
}
.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step-icon i { color: var(--accent); font-size: 26px; }
.step-card h4 { font-size: 22px; color: var(--primary); margin-bottom: 12px; font-weight: 700; }
.step-card p { color: var(--text-light); line-height: 1.7; font-size: 15px; }

/* ── WHY US ── */
.why-us-bg { background: var(--white); }
.feature-item {
  display: flex; gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 14px;
  transition: background .2s;
  margin-bottom: 4px;
}
.feature-item:hover { background: var(--off-white); }
.feature-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(26,58,42,0.08), rgba(45,95,67,0.12));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon i { color: var(--primary-light); font-size: 20px; }
.feature-item h5 { font-size: 17px; color: var(--primary); margin-bottom: 5px; font-weight: 700; }
.feature-item p { color: var(--text-light); font-size: 14.5px; line-height: 1.65; margin: 0; }

.why-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-image-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.why-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 14px;
}
.why-badge-icon { color: var(--accent); font-size: 30px; }
.why-badge-text strong { display: block; font-size: 22px; color: var(--primary); font-family: 'Playfair Display', serif; }
.why-badge-text span { font-size: 13px; color: var(--text-light); }

/* ── AREAS ── */
.areas-bg { background: var(--primary); }
.area-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 50px;
  margin: 5px;
  transition: all .2s;
  cursor: pointer;
}
.area-tag:hover {
  background: rgba(200,169,81,0.15);
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--light-bg); }
.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: all .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.stars { color: var(--accent); font-size: 16px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-weight: 700; font-size: 18px;
  font-family: 'Playfair Display', serif;
}
.author-name { font-weight: 700; color: var(--primary); font-size: 15px; }
.author-location { font-size: 13px; color: var(--text-light); }

/* ── FAQ ── */
.faq-bg { background: var(--white); }
.accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary) !important;
  background: var(--white) !important;
  padding: 20px 24px;
}
.accordion-button:not(.collapsed) {
  background: var(--off-white) !important;
  box-shadow: none !important;
}
.accordion-button::after {
  filter: none;
}
.accordion-body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.72;
  padding: 0 24px 22px;
}

/* ── CONTACT SECTION ── */
.contact-bg { background: var(--off-white); }
.contact-info-card {
  background: linear-gradient(145deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: 20px;
  padding: 46px 40px;
  height: 100%;
  color: var(--white);
}
.contact-info-card h3 { font-size: 30px; color: var(--white); margin-bottom: 10px; }
.contact-info-card p { color: rgba(255,255,255,0.75); margin-bottom: 30px; line-height: 1.65; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 22px;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(200,169,81,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon i { color: var(--accent); font-size: 18px; }
.contact-item-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-item-text strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 3px; }
.contact-item-text a { color: rgba(255,255,255,0.9); text-decoration: none; }
.contact-item-text a:hover { color: var(--accent-light); }

/* Main Contact Form */
.main-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 46px 40px;
  box-shadow: var(--shadow);
}
.main-form-card h3 { font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.main-form-card > p { font-size: 15px; color: var(--text-light); margin-bottom: 28px; }

.main-offer-form .form-control,
.main-offer-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.main-offer-form .form-control:focus,
.main-offer-form .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(45,95,67,0.12);
}
.main-offer-form .form-floating label {
  color: var(--text-light);
  font-size: 14px;
}
.form-section-header {
  background: linear-gradient(90deg, rgba(26,58,42,0.06), transparent);
  border-left: 4px solid var(--primary-light);
  border-radius: 0 8px 8px 0;
  padding: 12px 18px;
  margin: 28px 0 22px;
}
.form-section-header h4 {
  font-size: 18px;
  color: var(--primary);
  margin: 0;
  font-weight: 700;
}
.form-section-header h4 i { margin-right: 8px; color: var(--accent); }
.form-label.fw-bold { color: var(--text); font-size: 14.5px; }
.form-check-label { font-size: 14.5px; color: var(--text); }
.form-check-input:checked {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
}
.btn-form-submit-main {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 10px;
}
.btn-form-submit-main:hover {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,58,42,0.4);
}
.form-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ── ABOUT SECTION ── */
.about-bg { background: var(--white); }
.about-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img { width: 100%; min-height: 420px; object-fit: cover; display: block; }
.about-signature { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--primary); margin-top: 20px; font-style: italic; }
.about-title-tag { font-size: 13px; color: var(--text-light); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
footer h5 { color: var(--white); font-size: 17px; margin-bottom: 18px; font-family: 'Playfair Display', serif; }
footer p, footer li { font-size: 14px; line-height: 1.8; }
footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--accent-light); }
footer ul { list-style: none; padding: 0; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--white); font-weight: 900; }
.footer-brand span { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  margin-top: 40px;
  font-size: 13px;
}
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7) !important;
  transition: all .2s;
}
.social-btn:hover { background: var(--accent); color: var(--primary) !important; }

/* ── STICKY CTA ── */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--primary);
  padding: 14px 20px;
  z-index: 1030;
  display: none;
  align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  gap: 12px;
}
.sticky-cta-bar p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }
.sticky-cta-bar p strong { color: var(--white); }
.btn-sticky {
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 7px;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: all .2s;
}
.btn-sticky:hover { background: var(--accent-light); }

@media (max-width: 991px) {
  /* ── Navbar ── */
  #mainNav {
    position: relative;
  }
  .hero-slide {
    background-position: center top !important;
  }
  /* ── Stats Bar ── */
  .stats-bar {
    padding: 24px 0;
    overflow: hidden;
  }
  .stats-bar .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .stats-bar .stat-number { font-size: 24px; }
  .stats-bar .stat-label { font-size: 11px; }
  .stats-bar .col-6 { padding: 12px 6px; }

  /* ── Rest ── */
  .contact-info-card, .main-form-card { padding: 32px 24px; }
  .sticky-cta-bar { display: flex; }
  body { 
    padding-bottom: 68px;
    overflow-x: hidden;
  }
}

/* AOS tweaks */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: opacity 0.3s, transform 0.3s;
}

#backToTop:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}