/* ============================================================
   GLOBAL CSS — Custom Windows & Doors of Pasco
   Design: Royal Blue #1565C0 + Gold #c9a84c | Playfair Display + Inter
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --primary:      #1565C0;
  --primary-dark: #0D47A1;
  --primary-light:#1E88E5;
  --secondary:    #c9a84c;
  --secondary-dark:#a88835;
  --secondary-light:#e8cc7a;
  --accent:       #e8b84b;
  --dark:         #0d1117;
  --dark-2:       #1a1f2e;
  --light:        #f8f9fa;
  --light-2:      #eef0f3;
  --white:        #ffffff;
  --text-body:    #2c2c2c;
  --text-muted:   #6c757d;
  --text-light:   #9ca3af;
  --border:       #e2e8f0;
  --border-dark:  #2d3748;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.16);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.22);
  --shadow-gold:  0 8px 30px rgba(201,168,76,.30);
  --shadow-navy:  0 8px 30px rgba(21,101,192,.30);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --radius-full:  9999px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Montserrat', sans-serif;
  --topbar-h:     44px;
  --nav-h:        76px;
  --z-topbar:     100;
  --z-nav:        200;
  --z-dropdown:   300;
  --z-modal:      400;
  --z-toast:      500;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ─── Page Load Fade ─── */
body { animation: pageFade .5s ease forwards; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--dark);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: var(--z-topbar);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #cbd5e1;
  font-size: .8rem;
  font-family: var(--font-accent);
  font-weight: 500;
  letter-spacing: .02em;
  transition: var(--transition-fast);
}
.top-bar-link:hover { color: var(--secondary); }
.top-bar-link svg { width: 13px; height: 13px; flex-shrink: 0; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.top-bar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #cbd5e1;
  transition: var(--transition);
}
.top-bar-social:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-1px);
}
.top-bar-social svg { width: 13px; height: 13px; }

/* ─── NAVIGATION ─── */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: var(--z-nav);
  transition: box-shadow .3s, background .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(21,101,192,.12);
  border-bottom-color: var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.nav-logo-tagline {
  font-family: var(--font-accent);
  font-size: .62rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform .25s;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: var(--z-dropdown);
  overflow: hidden;
}
.nav-item.open .nav-dropdown,
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.25rem;
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: .02em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--light-2);
  transition: var(--transition-fast);
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 1.5rem;
}
.nav-dropdown-icon {
  width: 32px;
  height: 32px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.nav-dropdown-icon svg { width: 16px; height: 16px; color: var(--primary); }
.nav-dropdown-item:hover .nav-dropdown-icon { background: var(--primary); }
.nav-dropdown-item:hover .nav-dropdown-icon svg { color: var(--white); }

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--secondary);
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.nav-cta:hover { color: var(--dark) !important; border-color: var(--secondary); }
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta span, .nav-cta svg { position: relative; z-index: 1; }
.nav-cta svg { width: 14px; height: 14px; }
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition-fast);
  cursor: pointer;
}
.hamburger:hover { background: var(--light); }
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,17,23,.6);
  z-index: calc(var(--z-nav) - 1);
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav-overlay.show { opacity: 1; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── SECTION SPACING ─── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ─── SECTION HEADERS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { color: var(--secondary); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--secondary);
  transform: translateX(-101%);
  transition: transform .35s ease;
}
.btn-primary:hover { color: var(--dark); border-color: var(--secondary); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateX(-101%);
  transition: transform .35s ease;
}
.btn-secondary:hover { color: var(--white); border-color: var(--primary); }
.btn-secondary:hover::before { transform: translateX(0); }
.btn-secondary span, .btn-secondary svg { position: relative; z-index: 1; }

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.btn-lg { padding: 1rem 2.5rem; font-size: .9rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .76rem; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

/* ─── BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .9rem;
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}
.badge-gold { background: var(--secondary); color: var(--dark); }
.badge-navy { background: var(--primary); color: var(--white); }
.badge-light { background: var(--light); color: var(--primary); border: 1px solid var(--border); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label {
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-hero-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-accent);
  font-size: .78rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: #cbd5e1;
}
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-logo-sub {
  font-family: var(--font-accent);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary);
}
.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #94a3b8;
}
.footer-social {
  display: flex;
  gap: .5rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #94a3b8;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-social-link svg { width: 15px; height: 15px; }

.footer-col-title {
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #94a3b8;
  transition: var(--transition-fast);
}
.footer-link:hover { color: var(--secondary); padding-left: 4px; }
.footer-link svg { width: 12px; height: 12px; opacity: .5; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: #94a3b8;
  margin-bottom: .875rem;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-icon svg { width: 14px; height: 14px; color: var(--secondary); }
.footer-contact-label {
  font-family: var(--font-accent);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  display: block;
  margin-bottom: .2rem;
}

.footer-hours { margin-top: 1rem; }
.footer-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: #94a3b8;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-hour-row:last-child { border-bottom: none; }
.footer-hour-day { color: #cbd5e1; font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.6;
}
.footer-copy a {
  color: var(--secondary);
  font-weight: 600;
}
.footer-copy a:hover { color: var(--secondary-light); text-decoration: underline; }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-link {
  font-size: .78rem;
  color: #64748b;
  transition: var(--transition-fast);
}
.footer-bottom-link:hover { color: var(--secondary); }

/* ─── MOBILE STICKY BOTTOM BAR ─── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.mobile-sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 50%;
  height: 100%;
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: filter .2s;
}
.mobile-sticky-bar a:active { filter: brightness(.9); }
.mobile-sticky-call {
  background: var(--primary);
  color: var(--white);
}
.mobile-sticky-whatsapp {
  background: #25d366;
  color: var(--white);
}
.mobile-sticky-bar svg { width: 18px; height: 18px; }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.back-to-top svg { width: 18px; height: 18px; }

/* ─── DIVIDERS ─── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
  margin: 1rem 0;
}
.divider-center { margin: 1rem auto; }

/* ─── STAR RATING ─── */
.stars { display: flex; gap: 2px; }
.star { color: #f59e0b; }
.star svg { width: 16px; height: 16px; }

/* ─── FLOATING SHAPES (decorative) ─── */
.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
  animation: floatShape 6s ease-in-out infinite;
}
.float-shape:nth-child(2) { animation-delay: -2s; }
.float-shape:nth-child(3) { animation-delay: -4s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* ─── GRID HELPERS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── TEXT UTILITIES ─── */
.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.text-navy { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.font-heading { font-family: var(--font-heading); }
.font-accent { font-family: var(--font-accent); }

/* ─── CTA BANNER (shared) ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: .06;
  animation: floatShape 8s ease-in-out infinite;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: .05;
  animation: floatShape 10s ease-in-out infinite reverse;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--secondary), var(--border));
}
.process-step { text-align: center; position: relative; }
.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--secondary);
  color: var(--dark);
}
.process-step h4 {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .4rem;
}
.process-step p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; --topbar-h: 40px; }

  /* Top bar mobile */
  .top-bar-left .top-bar-link:not(:first-child) { display: none; }
  .top-bar-link { font-size: .75rem; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--nav-h) + 1rem) 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-nav);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: .85rem; padding: .85rem .75rem; border-radius: var(--radius-sm); }
  .nav-link::after { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--light);
    border-radius: var(--radius-md);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0;
    margin-top: .25rem;
  }
  .nav-item.open .nav-dropdown { max-height: 400px; padding: .5rem 0; }
  .nav-item:hover .nav-dropdown { max-height: 0; padding: 0; }
  .nav-cta { margin: 1rem 0 0; width: 100%; justify-content: center; }
  .mobile-nav-overlay { display: block; }

  /* Layout */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  /* Mobile sticky bar */
  .mobile-sticky-bar { display: flex; }
  .back-to-top { bottom: 4.5rem; }
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .cta-banner-btns { flex-direction: column; align-items: stretch; }
  .cta-banner-btns .btn { justify-content: center; }
}

/* ─── AOS overrides ─── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

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