/* ============================================================
   SAURABH DRYCLEANERS — Design tokens
   Palette: Navy #032B5B, Blue #1A73E8, WhatsApp Green #25D366,
            Sunlit linen gradient accent, Warm white background.
   Type: Poppins (display + body), tighter tracking on eyebrows.
   Signature: diagonal "fold line" motif in hero / dividers.
   ============================================================ */

:root {
  --navy: #032B5B;
  --navy-soft: #0C3D78;
  --blue: #1A73E8;
  --green: #25D366;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #1E2430;
  --text-soft: #5B6472;
  --border: #E7ECF3;
  --linen-1: #FFF7EC;
  --linen-2: #E9F1FF;
  --shadow-sm: 0 2px 10px rgba(3, 43, 91, 0.06);
  --shadow-md: 0 12px 30px rgba(3, 43, 91, 0.10);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22,1,.36,1);
}

[data-theme="dark"] {
  --bg: #0B1220;
  --white: #121A2B;
  --text: #EAF0FA;
  --text-soft: #9AA7BD;
  --border: #22314A;
  --linen-1: #16233A;
  --linen-2: #12233F;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.35);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1240px;
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================= LOADER ============================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-fold { display: flex; gap: 8px; }
.loader-fold span {
  width: 14px; height: 40px; background: var(--white);
  border-radius: 4px;
  animation: foldWave 1s ease-in-out infinite;
}
.loader-fold span:nth-child(2) { animation-delay: .15s; }
.loader-fold span:nth-child(3) { animation-delay: .3s; }
@keyframes foldWave {
  0%, 100% { transform: scaleY(0.4); opacity: .6; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ======================= SCROLL PROGRESS ========================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 1001;
  transition: width .1s linear;
}

/* ============================ TOP BAR ============================== */
.top-bar { background: var(--navy); color: white; font-size: 13px; padding: 8px 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-links { display: flex; align-items: center; gap: 16px; }
.top-links a, .top-links button { color: white; opacity: .9; transition: opacity .2s; font-size: 13px; }
.top-links a:hover, .top-links button:hover { opacity: 1; color: var(--green); }
.lang-switch { font-family: inherit; }

/* ============================ HEADER =============================== */
.header {
  background: var(--white);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 100;
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.header.scrolled { padding: 8px 0; box-shadow: var(--shadow-md); }
.navbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.logo h2 { color: var(--navy); font-weight: 800; font-size: 22px; }
.logo h2 span { color: var(--blue); font-size: 13px; display: block; letter-spacing: 3px; font-weight: 700; }
.nav-menu { display: flex; gap: 6px; }
.nav-link {
  text-decoration: none; color: var(--text); margin: 0 4px; font-weight: 500;
  font-size: 15px; position: relative; padding: 6px 4px;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--blue); transition: width .25s var(--ease);
}
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-link.active, .nav-link:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-small { padding: 8px 16px !important; font-size: 14px !important; }
.call-btn {
  background: var(--navy); color: white; padding: 10px 18px; border-radius: 8px;
  font-weight: 600; text-decoration: none; font-size: 14px; white-space: nowrap;
  transition: background .2s;
}
.call-btn:hover { background: var(--navy-soft); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span { display: block; height: 3px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================= BUTTONS ============================== */
.btn {
  padding: 13px 26px; text-decoration: none; border-radius: 10px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; position: relative; overflow: hidden;
  font-size: 15px; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-book { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: white; box-shadow: 0 8px 20px rgba(3,43,91,.25); }
.btn-whatsapp { background: var(--green); color: white; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn:hover { transform: translateY(-3px); }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* Ripple */
.ripple { position: relative; overflow: hidden; }
.ripple-circle {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.5);
  transform: scale(0); animation: rippleAnim .6s linear; pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(2.5); opacity: 0; } }

/* ============================= HERO ================================= */
.hero {
  position: relative;
  padding: 70px 0 40px;
  background: radial-gradient(ellipse at top left, var(--linen-2) 0%, var(--bg) 55%),
              linear-gradient(160deg, var(--linen-1) 0%, var(--bg) 60%);
  overflow: hidden;
}
.hero-bubbles span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(26,115,232,.25), rgba(26,115,232,0));
  animation: floatBubble 10s ease-in-out infinite;
}
.hero-bubbles span:nth-child(1) { width: 60px; height: 60px; left: 5%; top: 20%; animation-duration: 9s; }
.hero-bubbles span:nth-child(2) { width: 30px; height: 30px; left: 15%; top: 65%; animation-duration: 7s; animation-delay: 1s; }
.hero-bubbles span:nth-child(3) { width: 90px; height: 90px; right: 8%; top: 12%; animation-duration: 11s; animation-delay: .5s; }
.hero-bubbles span:nth-child(4) { width: 40px; height: 40px; right: 20%; top: 55%; animation-duration: 8s; animation-delay: 2s; }
.hero-bubbles span:nth-child(5) { width: 22px; height: 22px; left: 45%; top: 8%; animation-duration: 6s; animation-delay: 1.5s; }
.hero-bubbles span:nth-child(6) { width: 50px; height: 50px; left: 60%; top: 75%; animation-duration: 10s; animation-delay: .8s; }
@keyframes floatBubble { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.08); } }

.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 2; }
.hero-text { flex: 1; min-width: 300px; }
.badge {
  background: var(--blue); color: white; padding: 7px 14px; border-radius: 30px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px; display: inline-flex; align-items: center; gap: 6px;
}
.hero-text h1 {
  font-size: clamp(34px, 5vw, 54px); color: var(--navy); margin-top: 18px; line-height: 1.15;
  font-weight: 800; letter-spacing: -.5px;
  background: linear-gradient(100deg, var(--navy) 40%, var(--blue) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.subtitle { font-size: 20px; color: var(--text-soft); margin: 12px 0 4px; font-weight: 500; }
.tagline { font-size: 18px; color: var(--blue); font-weight: 700; margin-bottom: 24px; min-height: 27px; }
.tagline::after { content: "|"; animation: blink 1s step-start infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-features { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 26px; }
.hero-features span { font-size: 14px; color: var(--text-soft); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.hero-features i { color: var(--blue); }

.hero-image { flex: 1; min-width: 280px; text-align: right; position: relative; }
.hero-image img { max-width: 90%; margin-left: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.floating-card {
  position: absolute; background: var(--white); padding: 10px 16px; border-radius: 12px;
  box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card i { color: var(--green); }
.card-1 { top: 10%; left: -5%; animation-delay: 0s; }
.card-2 { bottom: 8%; right: 2%; animation-delay: 1.2s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: var(--white); border-radius: var(--radius-lg); padding: 30px 20px;
  box-shadow: var(--shadow-md); margin-top: 50px; position: relative; z-index: 2;
}
.stat-box { text-align: center; }
.stat-box h3 { color: var(--navy); font-size: clamp(22px, 3vw, 32px); font-weight: 800; }
.stat-box p { color: var(--text-soft); font-size: 13px; margin-top: 4px; }

.wave { line-height: 0; margin-top: 30px; }
.wave svg { width: 100%; height: 60px; }
.wave path { fill: var(--white); }

/* ========================= SECTION HEADERS =========================== */
.section-subtitle { color: var(--blue); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-align: center; }
.section-title { color: var(--navy); font-size: clamp(24px, 3.5vw, 32px); margin: 10px 0 45px; text-align: center; font-weight: 700; }

/* ========================= WHY CHOOSE US ============================= */
.why-section { padding: 70px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.why-card {
  background: var(--bg); padding: 32px 24px; border-radius: var(--radius); border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-box {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--blue); background: var(--linen-2); margin-bottom: 16px;
}
.why-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 18px; }
.why-card p { color: var(--text-soft); font-size: 14px; }

/* ========================== SERVICES ================================= */
.services-section { padding: 70px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card img { height: 160px; width: 100%; object-fit: cover; }
.service-body { padding: 22px; }
.service-body h3 { color: var(--navy); margin: 6px 0; font-size: 17px; }
.service-body p { color: var(--text-soft); font-size: 14px; margin-bottom: 12px; }
.service-book { color: var(--blue); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.service-book i { transition: transform .2s; }
.service-card:hover .service-book i { transform: translateX(4px); }

/* ========================= PRICE LIST ================================= */
.price-section { padding: 70px 0; background: var(--white); }
.price-controls { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.search-box { position: relative; flex: 1; min-width: 240px; max-width: 360px; }
.search-box i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-soft); }
.search-box input {
  width: 100%; padding: 12px 14px 12px 38px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: inherit; font-size: 14px;
}
.price-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 18px; border-radius: 30px; border: 1px solid var(--border); background: var(--bg);
  color: var(--text-soft); font-weight: 600; font-size: 13px; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }
.price-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.price-item {
  display: flex; justify-content: space-between; align-items: center; padding: 16px 20px;
  border-radius: var(--radius); background: var(--bg); border: 1px solid var(--border); font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.price-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.price-badge { background: var(--navy); color: white; padding: 5px 12px; border-radius: 20px; font-size: 13px; }
.no-results { text-align: center; color: var(--text-soft); margin-top: 20px; }

/* ========================= HOW IT WORKS ================================ */
.process-section { padding: 70px 0; }
.timeline { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 34px; left: 5%; right: 5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.timeline-step { flex: 1; min-width: 150px; text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 68px; height: 68px; border-radius: 50%; background: var(--white); border: 2px solid var(--blue);
  color: var(--blue); font-size: 24px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease);
}
.timeline-step:hover .step-icon { transform: scale(1.1); background: var(--blue); color: white; }
.timeline-step h3 { color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.timeline-step p { color: var(--text-soft); font-size: 13px; }

/* ====================== BEFORE / AFTER ================================= */
.before-after-section { padding: 70px 0; background: var(--white); }
.ba-slider {
  position: relative; max-width: 800px; margin: 0 auto; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/9; user-select: none;
}
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after-wrap { position: absolute; top: 0; left: 0; height: 100%; width: 50%; overflow: hidden; }
.ba-after-wrap img { width: var(--ba-img-w, 800px); max-width: none; height: 100%; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: white;
  cursor: ew-resize; display: flex; align-items: center; justify-content: center; transform: translateX(-2px);
}
.ba-handle i {
  background: white; color: var(--navy); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); font-size: 14px;
}
.ba-label { position: absolute; top: 14px; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; color: white; }
.ba-label-before { left: 14px; background: rgba(3,43,91,.75); }
.ba-label-after { right: 14px; background: rgba(37,211,102,.85); }

/* ============================= GALLERY ================================== */
.gallery-section { padding: 70px 0; }
.gallery-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { height: 200px; width: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.hidden-item { display: none; }

.lightbox {
  position: fixed; inset: 0; background: rgba(3,10,25,.92); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: white; font-size: 34px; background: none; }

/* ========================== TESTIMONIALS =================================== */
.testimonials-section { padding: 70px 0; background: linear-gradient(160deg, var(--linen-2), var(--bg)); }
.testimonial-slider { position: relative; max-width: 640px; margin: 0 auto; min-height: 190px; }
.testimonial-card {
  display: none; background: var(--white); padding: 34px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); text-align: center; animation: fadeInCard .5s var(--ease);
}
.testimonial-card.active { display: block; }
@keyframes fadeInCard { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.stars { color: #F5B301; margin-bottom: 14px; font-size: 15px; }
.testimonial-card p { color: var(--text); font-size: 15px; font-style: italic; margin-bottom: 16px; }
.testimonial-card h4 { color: var(--navy); font-size: 14px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.testimonial-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.testimonial-dots button.active { background: var(--blue); width: 24px; border-radius: 6px; }

/* ============================== FAQ ========================================= */
.faq-section { padding: 70px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%; text-align: left; padding: 18px 22px; font-weight: 600; display: flex;
  justify-content: space-between; align-items: center; font-size: 15px; color: var(--navy);
}
.faq-question i { transition: transform .3s var(--ease); color: var(--blue); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding: 0 22px 18px; color: var(--text-soft); font-size: 14px; }

/* ============================== CONTACT ====================================== */
.contact-section { padding: 70px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item i { color: var(--blue); font-size: 20px; margin-top: 4px; width: 24px; }
.info-item h4 { color: var(--navy); font-size: 15px; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--text-soft); font-size: 14px; text-decoration: none; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 10px; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form { background: var(--bg); padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.contact-form h3 { color: var(--navy); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; position: relative; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--white); color: var(--text); font-family: inherit; font-size: 14px; resize: vertical;
}
.form-group input.invalid, .form-group textarea.invalid { border-color: #E5484D; }
.error-msg { color: #E5484D; font-size: 12px; display: block; margin-top: 4px; min-height: 14px; }
.form-success { color: var(--green); font-weight: 600; margin-top: 14px; display: flex; gap: 8px; align-items: center; }

/* ============================== FOOTER ======================================= */
footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 60px 0 0; margin-top: 20px; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer-col h2 { color: white; font-size: 20px; }
.footer-col h2 span { color: var(--green); }
.footer-col p { font-size: 13px; margin-top: 8px; opacity: .8; }
.footer-col h4 { color: white; margin-bottom: 14px; font-size: 15px; }
.footer-col a { display: block; color: rgba(255,255,255,.75); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { font-size: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 18px 0; font-size: 13px; }

/* =========================== FLOATING BUTTONS ================================ */
.float-btn {
  position: fixed; right: 22px; width: 54px; height: 54px; border-radius: 50%; z-index: 500;
  display: flex; align-items: center; justify-content: center; color: white; font-size: 22px;
  box-shadow: var(--shadow-md); text-decoration: none; transition: transform .2s;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: var(--green); bottom: 22px; }
.float-call { background: var(--blue); bottom: 86px; }
.float-top { background: var(--navy); bottom: 150px; }

/* =============================== MODAL ======================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(3,10,25,.6); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px; max-width: 420px; width: 100%;
  position: relative; box-shadow: var(--shadow-md); animation: fadeInCard .3s var(--ease);
}
.modal-box h3 { color: var(--navy); margin-bottom: 6px; }
.modal-box p { color: var(--text-soft); font-size: 14px; margin-bottom: 18px; }
.modal-close { position: absolute; top: 14px; right: 18px; font-size: 26px; color: var(--text-soft); }

/* =========================== ANIMATIONS (scroll reveal) ======================= */
.fade-up, .fade-left { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-left { transform: translateX(30px); }
.fade-up.visible, .fade-left.visible { opacity: 1; transform: translate(0,0); }

/* Dark mode toggle icon swap handled via JS class on button */

/* ============================ RESPONSIVE ======================================= */
@media (max-width: 992px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 20px; box-shadow: var(--shadow-md); gap: 14px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-content { flex-direction: column; gap: 6px; text-align: center; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero-image { margin-top: 30px; text-align: center; }
  .hero-image img { margin: 0 auto; }
  .hero-features { justify-content: center; }
  .cta-buttons { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .nav-actions .call-btn span { display: none; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .info-item { text-align: left; }
}

@media (max-width: 480px) {
  .btn-small { display: none; }
  .price-controls { flex-direction: column; align-items: stretch; }
}
