/* ═════════════════════════════════════════════
   D&A CLEANING — Premium Landing Page Styles
   Palette: Navy #0B2D63 · Gold #D4A53A · BG #FAFAFA
   ═════════════════════════════════════════════ */

:root {
  --navy: #0B2D63;
  --navy-dark: #081F46;
  --gold: #D4A53A;
  --gold-light: #E8C06E;
  --bg: #FAFAFA;
  --card: #FFFFFF;
  --text: #222222;
  --text-2: #666666;
  --border: #EAEAEA;
  --radius: 18px;
  --radius-sm: 14px;
  --shadow: 0 6px 24px rgba(11, 45, 99, .08);
  --shadow-lg: 0 18px 48px rgba(11, 45, 99, .16);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.container-narrow { width: min(820px, 92%); }

/* ─────────── Preloader ─────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-head); font-weight: 800; font-size: 3.4rem;
  color: var(--gold); letter-spacing: .05em;
  animation: pulseLogo 1.4s ease-in-out infinite;
}
.preloader-bar {
  width: 160px; height: 3px; margin: 18px auto 0;
  background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 40%;
  background: var(--gold); border-radius: 3px;
  animation: loadSlide 1.1s ease-in-out infinite;
}
@keyframes pulseLogo { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: .85; } }
@keyframes loadSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(420%); } }

/* ─────────── Header ─────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
#site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(11,45,99,.10);
  padding: 8px 0;
}
#site-header nav { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-logo { height: 52px; width: auto; border-radius: 10px; }
.brand-mark {
  font-family: var(--font-head); font-weight: 800; font-size: 1.65rem;
  color: var(--gold); letter-spacing: .02em;
}
.brand-text {
  font-weight: 700; font-size: .95rem; letter-spacing: .32em;
  color: #fff; transition: color .35s ease;
}
#site-header.scrolled .brand-text { color: var(--navy); }

.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: .92rem;
  color: rgba(255,255,255,.92); padding: 8px 13px; border-radius: 10px;
  transition: color .25s, background .25s;
}
#site-header.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold); background: rgba(212,165,58,.10); }
.nav-links a.nav-cta {
  background: var(--gold); color: var(--navy) !important; font-weight: 700;
  box-shadow: 0 4px 14px rgba(212,165,58,.35);
}
.nav-links a.nav-cta:hover { background: #c2952f; transform: translateY(-1px); }

#hamburger-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
#hamburger-btn span {
  width: 26px; height: 3px; border-radius: 3px;
  background: #fff; transition: all .3s ease;
}
#site-header.scrolled #hamburger-btn span,
#site-header.menu-open #hamburger-btn span { background: var(--navy); }
#site-header.menu-open #hamburger-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#site-header.menu-open #hamburger-btn span:nth-child(2) { opacity: 0; }
#site-header.menu-open #hamburger-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─────────── Hero ─────────── */
#hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 110px;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(8,31,70,.93) 0%, rgba(11,45,99,.82) 45%, rgba(11,45,99,.45) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-logo { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 30px; }
.hero-logo-mark {
  font-family: var(--font-head); font-weight: 800; font-size: 3rem;
  color: var(--gold); line-height: 1;
}
.hero-logo-text { font-weight: 700; font-size: 1.05rem; letter-spacing: .5em; margin-top: 4px; }
.hero-logo-swoosh { width: 130px; height: auto; margin: 10px 0 4px; }
.hero-logo-tagline {
  font-family: 'Dancing Script', cursive; font-weight: 600; font-style: italic;
  font-size: 1.5rem; color: rgba(255,255,255,.9); line-height: 1;
}
.hero-logo-tagline em { font-style: normal; color: var(--gold); }

#hero-section h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.16; margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 34px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:active { transform: scale(.97); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c2952f);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(212,165,58,.42);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(212,165,58,.55); }
.btn-outline {
  background: rgba(255,255,255,.08); color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.18); border-color: #fff; transform: translateY(-3px); }
.btn-ghost { background: #f0f1f4; color: var(--text-2); }
.btn-ghost:hover { background: var(--border); }
.btn-xl { padding: 19px 46px; font-size: 1.12rem; }
.btn-block { width: 100%; margin-top: 22px; }

/* Hero stats */
.hero-stats { display: flex; gap: clamp(26px, 5vw, 64px); flex-wrap: wrap; }
.stat { display: block; }
.stat-number, .stat-plus {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--gold); line-height: 1.1;
}
.stat-plus { margin-left: 2px; }
.stat-label { display: block; font-size: .86rem; color: rgba(255,255,255,.78); margin-top: 4px; }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ─────────── Sections ─────────── */
.section { padding: 96px 0; }
.section-alt { background: #F3F5F9; }
.section-navy {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: #fff;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 58px; }
.section-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  padding: 6px 18px; border: 1px solid rgba(212,165,58,.4); border-radius: 999px;
  background: rgba(212,165,58,.07);
}
.section-header h2 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.22;
  color: var(--navy); margin-bottom: 16px;
}
.section-navy .section-header h2 { color: #fff; }
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header p { color: var(--text-2); font-size: 1.04rem; }
.section-navy .section-header p { color: rgba(255,255,255,.78); }

/* ─────────── Services ─────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-img { height: 210px; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 26px 28px 30px; position: relative; }
.service-icon {
  position: absolute; top: -28px; left: 24px;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--card); border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(11,45,99,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: transform .3s ease;
}
.service-card:hover .service-icon { transform: translateY(-4px) rotate(-6deg); }
.service-body h3 {
  font-family: var(--font-head); font-size: 1.28rem;
  color: var(--navy); margin: 20px 0 8px;
}
.service-body p { color: var(--text-2); font-size: .96rem; }

/* ─────────── Why us ─────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 34px 30px;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.09);
  border-color: rgba(212,165,58,.5);
}
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 16px;
  background: rgba(212,165,58,.14); color: var(--gold);
  margin-bottom: 20px; transition: transform .3s ease;
}
.why-icon svg { width: 27px; height: 27px; }
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }
.why-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.why-card p { color: rgba(255,255,255,.72); font-size: .93rem; }

/* ─────────── Timeline ─────────── */
.timeline {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 18px; list-style: none; position: relative;
  counter-reset: step;
}
.timeline::before {
  content: ""; position: absolute; top: 34px; left: 9%; right: 9%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px);
  opacity: .55;
}
.timeline-step { text-align: center; position: relative; padding: 0 8px; }
.step-number {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--card); border: 3px solid var(--gold);
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  color: var(--navy); margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(212,165,58,.28);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.timeline-step:hover .step-number {
  transform: scale(1.12);
  background: var(--gold); color: #fff;
}
.timeline-step h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-step p { font-size: .87rem; color: var(--text-2); }

/* ─────────── Gallery ─────────── */
.masonry-gallery { columns: 3 300px; column-gap: 22px; }
.gallery-item {
  position: relative; break-inside: avoid; margin-bottom: 22px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer;
}
.gallery-item img { width: 100%; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(8,31,70,.88));
  color: #fff; font-weight: 600; font-size: .94rem;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ─────────── Testimonials ─────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 34px 30px;
  box-shadow: var(--shadow); position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: "“"; position: absolute; top: 8px; right: 26px;
  font-family: var(--font-head); font-size: 5.4rem;
  color: rgba(212,165,58,.18); line-height: 1;
}
.stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 14px; }
.star-half { opacity: .35; }
.testimonial-card p { color: var(--text); font-size: .98rem; margin-bottom: 22px; }
.testimonial-card footer { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a4a94);
  color: var(--gold); font-weight: 700; font-size: .92rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-card cite { display: block; font-style: normal; font-weight: 700; color: var(--navy); font-size: .96rem; }
.testimonial-role { font-size: .82rem; color: var(--text-2); }

/* ─────────── FAQ ─────────── */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item[open] { border-color: rgba(212,165,58,.55); box-shadow: var(--shadow-lg); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 26px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.03rem; color: var(--navy);
  transition: background .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(212,165,58,.05); }
.faq-icon {
  position: relative; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(212,165,58,.14);
  transition: transform .35s ease, background .35s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--gold); transform: translate(-50%,-50%);
  transition: transform .35s ease;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-item[open] .faq-icon { transform: rotate(90deg); background: var(--gold); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-answer { padding: 0 26px 22px; color: var(--text-2); font-size: .97rem; }
.faq-answer strong { color: var(--navy); }

/* ─────────── Contact ─────────── */
.contact-layout {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px;
  align-items: stretch;
}
.contact-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  font-style: normal;
}
.contact-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 22px;
  text-decoration: none; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
a.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(212,165,58,.5); }
.contact-icon { font-size: 1.5rem; margin-bottom: 10px; }
.contact-label {
  font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 3px;
}
.contact-value { font-weight: 600; color: var(--navy); font-size: .96rem; word-break: break-word; }

.map-wrapper {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  min-height: 380px;
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

.contact-cta {
  margin-top: 64px; text-align: center;
  background: linear-gradient(150deg, var(--navy-dark), var(--navy));
  border-radius: 24px; padding: 58px 30px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,58,.28), transparent 70%);
}
.contact-cta h3 {
  font-family: var(--font-head); color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 26px;
}

/* ─────────── Before-After ─────────── */
#before-after-section .section-header { margin-bottom: 54px; }

.ba-grid {
  display: flex; flex-direction: column; gap: 32px;
}

.ba-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: stretch;
}

.ba-video-box {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 16 / 9;
}

.ba-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.ba-label-tag {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  background: rgba(11, 45, 99, .85); color: #fff; padding: 6px 14px;
  border-radius: 8px; font-weight: 700; font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* ─────────── Footer ─────────── */
#site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,.72);
  padding: 54px 0 110px; text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-brand { display: flex; align-items: baseline; gap: 8px; }
.footer-brand .brand-text { color: #fff; }
.footer-swoosh { width: 120px; height: auto; margin-top: 6px; }
.footer-tagline {
  font-family: 'Dancing Script', cursive; font-weight: 600; font-style: italic;
  color: rgba(255,255,255,.9); font-size: 1.3rem; line-height: 1;
}
.footer-tagline em { font-style: normal; color: var(--gold); }
.footer-copy { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ─────────── Mobile bottom nav ─────────── */
#mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
  display: none;
  gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(11,45,99,.12);
}
.mnav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: #F3F5F9; border: 1px solid var(--border);
  border-radius: 16px; padding: 9px 4px;
  cursor: pointer; font-family: var(--font-body);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.mnav-btn:active { transform: scale(.94); background: rgba(212,165,58,.15); border-color: var(--gold); }
.mnav-icon { font-size: 1.25rem; line-height: 1; }
.mnav-text { font-size: .68rem; font-weight: 600; color: var(--navy); }

/* ─────────── Modals ─────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,31,70,.62);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity .3s ease;
}
.modal-backdrop.visible { opacity: 1; }
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--card); border-radius: 22px;
  padding: 36px 32px; width: 100%; max-width: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative; text-align: center;
  transform: translateY(24px) scale(.96);
  transition: transform .35s cubic-bezier(.2,.9,.3,1.2);
  max-height: calc(100vh - 40px); overflow-y: auto;
}
.modal-backdrop.visible .modal { transform: translateY(0) scale(1); }
.modal-emoji { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.modal h3 { font-family: var(--font-head); color: var(--navy); font-size: 1.35rem; margin-bottom: 6px; }
.modal-sub { color: var(--text-2); font-weight: 600; margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.modal-actions .btn { flex: 1; min-width: 130px; }
.modal-x {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #F3F5F9; border: none; cursor: pointer;
  font-size: .95rem; color: var(--text-2);
  transition: background .25s, color .25s, transform .25s;
}
.modal-x:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }

/* Pricing modal */
.modal-pricing { max-width: 760px; text-align: center; }
.modal-pricing h3 { margin-bottom: 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 26px 18px; text-align: center; position: relative;
  background: var(--bg);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(212,165,58,.55); }
.pricing-featured {
  border: 2px solid var(--gold);
  background: linear-gradient(170deg, #fffdf6, #fff);
  box-shadow: 0 10px 30px rgba(212,165,58,.18);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.pricing-name {
  display: block; font-weight: 800; letter-spacing: .08em;
  color: var(--navy); font-size: .92rem; margin-bottom: 14px;
}
.pricing-card ul { list-style: none; margin-bottom: 16px; }
.pricing-card li {
  font-size: .88rem; color: var(--text-2); padding: 5px 0;
  border-bottom: 1px dashed var(--border);
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-price {
  display: block; font-family: var(--font-head);
  font-weight: 800; font-size: 1.18rem; color: var(--gold);
}

/* Social modal */
.modal-social { max-width: 400px; text-align: center; }
.modal-social h3 { margin-bottom: 22px; }
.social-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.social-list a {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  text-decoration: none; text-align: left;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.social-list a:hover { transform: translateX(6px); border-color: var(--gold); background: rgba(212,165,58,.06); }
.social-list a > span:first-child { font-size: 1.4rem; }
.social-list strong { display: block; color: var(--navy); font-size: .95rem; }
.social-list small { color: var(--text-2); font-size: .8rem; }

/* ─────────── Scroll reveal animations ─────────── */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Hero entrance */
.fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp .9s ease forwards; }
.delay-1 { animation-delay: .18s; }
.delay-2 { animation-delay: .36s; }
.delay-3 { animation-delay: .54s; }
.delay-4 { animation-delay: .72s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .fade-up { opacity: 1; transform: none; }
}

/* ─────────── Responsive ─────────── */
@media (max-width: 1024px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
  .timeline::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Nav → hamburger */
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 82vw);
    background: #fff;
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 96px 28px 28px;
    box-shadow: -12px 0 40px rgba(11,45,99,.18);
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(.2,.9,.3,1);
  }
  #site-header.menu-open .nav-links { transform: translateX(0); }
  .nav-links a { color: var(--text) !important; font-size: 1.05rem; width: 100%; }
  #hamburger-btn { display: flex; z-index: 10; }

  #hero-section { padding: 120px 0 130px; }
  .hero-stats { gap: 26px; }
  .hero-buttons .btn { width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .modal { padding: 30px 22px; }

  /* Show mobile bottom nav */
  #mobile-bottom-nav { display: flex; }
  body { padding-bottom: 76px; }
  #site-footer { padding-bottom: 130px; }
}

@media (max-width: 520px) {
  .services-grid, .why-grid, .timeline, .contact-cards { grid-template-columns: 1fr; }
  .masonry-gallery { columns: 1; }
  .brand-text { letter-spacing: .2em; }
}
