/*
  PROJECT: Air Duct Cleaning South Houston Texas
  DOMAIN: airductcleaningsouthhouston.com
  NICHE: Air Duct / HVAC / Cleaning
  DESIGN SIGNATURE: Clean Air Aqua & Navy
  COLOR SCHEME: #0f172a (Navy) + #0e7490 (Aqua) + #f0fdfa (Mint Background)
  FONTS: Poppins + Nunito Sans
  LAYOUT PATTERN: Layout 2 — Coupon-First Local Service
  HEADER VARIANT: Header B
  HERO VARIANT: Hero B
  SERVICES VARIANT: Services B
  TRUST SECTION VARIANT: Trust B
  CTA VARIANT: CTA B
  FOOTER VARIANT: Footer B
  COUPON PLACEMENT: after services
  IMAGE STYLE: technician action / clean result
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&family=Poppins:wght@400;600;700;800&display=swap');

:root {
  --primary-color: #0f172a;       /* Navy */
  --accent-color: #0e7490;        /* Aqua */
  --accent-hover: #0891b2;         /* Brighter Aqua */
  --highlight-color: #f59e0b;     /* Amber/Yellow */
  --light-bg: #f0fdfa;            /* Light Mint */
  --white: #ffffff;
  --gray-text: #475569;
  --light-gray: #f8fafc;
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-body);
  color: var(--primary-color);
  background-color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-color);
}

/* Utilities */
.bg-light-mint {
  background-color: var(--light-bg);
}

.text-accent {
  color: var(--accent-color);
}

.text-highlight {
  color: var(--highlight-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 116, 144, 0.2);
}

.btn-navy {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
}

.btn-navy:hover {
  background-color: #1e293b;
  color: var(--white);
  transform: translateY(-2px);
}

/* Topbar */
.topbar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-inner span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-inner a {
  color: var(--white);
  text-decoration: none;
}

/* Header / Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid rgba(14, 116, 144, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.9rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.navbar-brand img {
  height: 92px;
  max-height: 92px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
  height: 78px;
  max-height: 78px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--primary-color) !important;
  padding: 0.5rem 1.1rem !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color) !important;
}

/* Dropdown Menu Restyling */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
  background-color: var(--white);
  padding: 0.75rem;
  min-width: 220px;
  margin-top: 10px !important;
  opacity: 0;
  visibility: hidden;
  display: block;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--accent-color);
  padding-left: 1.25rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-badge {
  background-color: rgba(14, 116, 144, 0.08);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(14, 116, 144, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.header-badge::before {
  content: '✓';
  font-size: 10px;
}

.header-phone {
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(14, 116, 144, 0.15);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 84px;
    max-height: 84px;
  }

  .navbar-collapse {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(14, 116, 144, 0.05);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    border-left: 2px solid var(--light-bg);
    border-radius: 0;
    margin-top: 0 !important;
  }
  
  .dropdown:hover .dropdown-menu,
  .dropdown.show .dropdown-menu,
  .dropdown-menu.show {
    display: block;
  }
  
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1rem;
    gap: 0.6rem;
  }
  
  .header-badge {
    justify-content: center;
  }
}

/* Hero Section */
.hero-section {
  padding: clamp(4.25rem, 5vw, 5.75rem) 0 4.5rem;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(118deg, rgba(240, 253, 250, 0.96) 0%, rgba(248, 250, 252, 0.98) 44%, rgba(224, 242, 254, 0.9) 100%);
  overflow: hidden;
}

.hero-section > .container {
  position: relative;
  z-index: 3;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: -18% -12% auto -12%;
  height: 70%;
  background:
    repeating-linear-gradient(112deg, transparent 0 44px, rgba(14, 116, 144, 0.08) 44px 46px, transparent 46px 92px),
    linear-gradient(90deg, rgba(14, 116, 144, 0.12), rgba(245, 158, 11, 0.08), transparent);
  transform: skewY(-3deg);
  animation: airflowDrift 18s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.05), rgba(14, 116, 144, 0.08));
  clip-path: polygon(0 48%, 100% 8%, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}

.eyebrow {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  margin-bottom: 1.25rem;
  display: inline-block;
  background-color: rgba(14, 116, 144, 0.06);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  border: 1px solid rgba(14, 116, 144, 0.1);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section .eyebrow,
.hero-section h1,
.hero-copy,
.hero-section .btn,
.hero-benefits {
  animation: heroFadeUp 0.7s ease both;
}

.hero-section h1 {
  animation-delay: 0.08s;
}

.hero-copy {
  animation-delay: 0.16s;
}

.hero-section .btn {
  animation-delay: 0.24s;
}

.hero-benefits {
  animation-delay: 0.34s;
}

.hero-copy {
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

/* Creative Hero Image Frame */
.hero-media-container {
  position: relative;
  z-index: 3;
  animation: heroMediaIn 0.9s ease 0.16s both, softFloat 7s ease-in-out 1.1s infinite;
}

.hero-media-container::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 2px solid var(--accent-color);
  border-radius: 24px;
  z-index: -1;
  transition: var(--transition);
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border: 6px solid var(--white);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.28) 48%, transparent 58%);
  transform: translateX(-120%);
  animation: shineSweep 6s ease-in-out 1.5s infinite;
  z-index: 2;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-media-container:hover .hero-media {
  transform: translateY(-8px);
}

.hero-media-container:hover .hero-media img {
  transform: scale(1.03);
}

.hero-media-container:hover::before {
  transform: translate(6px, 6px);
}

/* Quick Benefits List under Hero Content */
.hero-benefits {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  min-height: 42px;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(14, 116, 144, 0.13);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 4.5rem 0 3.5rem;
  }
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-copy {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  .hero-section .btn-lg {
    padding: 0.65rem 1.35rem;
  }
  .hero-benefits {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }
  .benefit-item {
    width: 100%;
    max-width: 290px;
  }
  .hero-media-container {
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Inner Page Hero */
.inner-hero {
  padding: 5rem 0 4.5rem;
  background:
    linear-gradient(118deg, rgba(240, 253, 250, 0.96) 0%, rgba(248, 250, 252, 0.98) 44%, rgba(224, 242, 254, 0.9) 100%);
  color: var(--primary-color);
  position: relative;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: -32% -16% auto -16%;
  height: 82%;
  background:
    repeating-linear-gradient(112deg, transparent 0 44px, rgba(14, 116, 144, 0.08) 44px 46px, transparent 46px 92px),
    linear-gradient(90deg, rgba(14, 116, 144, 0.12), rgba(245, 158, 11, 0.08), transparent);
  transform: skewY(-4deg);
  animation: airflowDrift 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.inner-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.05), rgba(14, 116, 144, 0.08));
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.inner-hero .eyebrow {
  color: var(--accent-color);
  background: rgba(14, 116, 144, 0.06);
  border-color: rgba(14, 116, 144, 0.1);
  animation: heroFadeUp 0.65s ease both;
}

.inner-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroFadeUp 0.72s ease 0.08s both;
}

.inner-hero .lead,
.inner-hero .hero-actions {
  color: var(--gray-text);
  animation: heroFadeUp 0.72s ease 0.16s both;
}

.inner-hero .text-white {
  color: var(--gray-text) !important;
}

.inner-hero .btn-outline-light {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(15, 23, 42, 0.22);
}

.inner-hero .btn-outline-light:hover {
  color: var(--white);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.inner-hero .breadcrumb {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 0;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(14, 116, 144, 0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  animation: heroFadeUp 0.72s ease 0.22s both;
}

.inner-hero .breadcrumb-item a {
  color: var(--primary-color);
  opacity: 0.82;
  text-decoration: none;
}

.inner-hero .breadcrumb-item.active {
  color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--primary-color);
  opacity: 0.45;
}

/* Cards & Sections */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: 2.25rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

/* Trust / Why Choose Us */
.trust-checklist {
  list-style: none;
  padding-left: 0;
}

.trust-checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.trust-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 1.2rem;
}

/* Services Grid (Services B) */
.service-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.05);
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--highlight-color);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13px;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

.service-content {
  padding: 1.75rem;
}

.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-content p {
  color: var(--gray-text);
  font-size: 15px;
  margin-bottom: 1.5rem;
}

/* Before / After */
.ba-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  background-color: var(--white);
}

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

.ba-image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(15, 23, 42, 0.85);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
}

/* Coupon block */
.coupon-section {
  text-align: center;
}

.coupon-link {
  display: inline-block;
  max-width: 450px;
  transition: var(--transition);
}

.coupon-link img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.coupon-link:hover {
  transform: scale(1.02);
}

/* Testimonials / FAQ Accordion */
.accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--white);
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: var(--light-bg);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Form Styles */
.form-section {
  position: relative;
}

.contact-service-card {
  background:
    linear-gradient(135deg, rgba(240, 253, 250, 0.96), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 20px;
  color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.contact-service-card p {
  color: var(--gray-text);
}

.contact-service-card h2 {
  color: var(--primary-color);
}

.form-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.form-control, .form-select {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1.5px solid #cbd5e1;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.1);
}

.service-textarea {
  height: 120px;
}

/* Footer style (Footer B) */
footer {
  background-color: var(--primary-color);
  color: #94a3b8;
  padding: 5rem 0 2rem;
}

footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact {
  list-style: none;
  padding-left: 0;
}

.footer-contact li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  text-align: center;
  font-size: 14px;
}

.locations-strip {
  background-color: #1e293b;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.locations-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.locations-list li a {
  color: #cbd5e1;
}

/* Map frame */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMediaIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes airflowDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 180px 0, 0 0;
  }
}

@keyframes shineSweep {
  0%, 58% {
    transform: translateX(-120%);
  }
  74%, 100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::before,
  .inner-hero::before,
  .hero-media-container,
  .hero-media::after,
  .hero-section .eyebrow,
  .hero-section h1,
  .hero-copy,
  .hero-section .btn,
  .hero-benefits,
  .inner-hero .eyebrow,
  .inner-hero h1,
  .inner-hero .lead,
  .inner-hero .hero-actions,
  .inner-hero .breadcrumb {
    animation: none !important;
  }
}

/* Mobile dropdown fix */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: .35rem;
    padding: .5rem;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
  }

  .navbar-nav .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .navbar-nav .dropdown-item {
    padding: .7rem .9rem;
    min-height: 44px;
    white-space: normal;
  }

  .header-actions {
    display: grid;
    gap: .6rem;
    margin-top: 1rem;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .inner-hero {
    padding: 3.75rem 0 4rem;
  }

  .inner-hero .breadcrumb {
    border-radius: 14px;
    max-width: 100%;
    flex-wrap: wrap;
  }
}

/* Print CSS placeholder */
@media print {
  body {
    background: white;
    color: black;
  }
  .navbar, .topbar, .btn, .coupon-section, footer, .form-section {
    display: none;
  }
}
