/* Silver Service Online — Premium Luxury Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
  --navy:    #0f1f3d;
  --blue:    #144a8f;
  --blue-lt: #1a6dd4;
  --blue-bg: #eef2fa;
  --silver:  #9aaac4;
  --gold:    #c9a84c;
  --gold-lt: #f5e6c0;
  --white:   #ffffff;
  --off:     #f5f7fc;
  --border:  #d0daea;
  --mid:     #6b7a99;
  --slate:   #2d3a52;
  --red:     #dc2626;
  --green:   #16a34a;
  --dark:    #0a1628;
  --grad:    linear-gradient(135deg, #0f1f3d 0%, #144a8f 50%, #0f1f3d 100%);
  --grad-gold: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  --shadow-sm: 0 1px 3px rgba(15,31,61,.08);
  --shadow-md: 0 4px 16px rgba(15,31,61,.12);
  --shadow-lg: 0 8px 32px rgba(15,31,61,.16);
  --shadow-xl: 0 16px 48px rgba(15,31,61,.22);
  --r:    8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', sans-serif;
  --ff-ui:   'Oswald', sans-serif;
  --nav-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TOAST ── */
.sso-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 99999;
  padding: 14px 22px; border-radius: var(--r-lg);
  font-family: var(--ff-ui); font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-xl); transform: translateY(20px); opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1); pointer-events: none;
  max-width: 360px;
}
.sso-toast.show { transform: translateY(0); opacity: 1; }
.sso-toast-success { background: #0f1f3d; color: #fff; border-left: 4px solid #c9a84c; }
.sso-toast-error   { background: #dc2626; color: #fff; }
.sso-toast-info    { background: #144a8f; color: #fff; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-family: var(--ff-ui);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.75);
}
.top-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--gold); transition: color .2s; }
.top-bar a:hover { color: #fff; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── NAVBAR ── */

.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #1c2333;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  height: var(--nav-h);
  transition: all .3s;
}
.navbar.scrolled {
  background: #141926;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 90px; width: auto; max-width: 220px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(201,168,76,.7)) brightness(1.15); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child { font-family: var(--ff-head); font-size: .95rem; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase; }
.nav-logo-text span:last-child { font-family: var(--ff-ui); font-size: .65rem; font-weight: 400; color: var(--gold); letter-spacing: .18em; text-transform: uppercase; }
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-link {
  font-family: var(--ff-ui); font-size: .82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  color: #d1d5db; padding: 8px 14px; border-radius: var(--r);
  transition: all .25s; position: relative;
  display: flex; align-items: center; gap: 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: #6b7280; border-radius: 2px;
  transition: all .25s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.07); }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-book-btn {
  font-family: var(--ff-ui); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  background: var(--grad-gold); color: var(--navy);
  padding: 10px 22px; border-radius: var(--r); border: none; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 15px rgba(201,168,76,.35);
  white-space: nowrap;
}
.nav-book-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.5); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  position: relative;
  z-index: 3001;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.24);
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  pointer-events: none;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(20,74,143,.6) 50%, rgba(10,22,40,.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); padding: 8px 18px; border-radius: 30px;
  font-family: var(--ff-ui); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--ff-head); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 20px; max-width: 800px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,.75);
  max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-lbl {
  font-family: var(--ff-ui); font-size: .75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-family: var(--ff-ui); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase; z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.hero-scroll svg { width: 20px; height: 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 28px; border-radius: var(--r);
  font-family: var(--ff-ui); font-size: .88rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  cursor: pointer; transition: all .25s; text-decoration: none;
  border: none; white-space: nowrap; line-height: 1;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .25s;
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  background: var(--grad-gold); color: var(--navy);
  box-shadow: 0 4px 15px rgba(201,168,76,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.5); }
.btn-navy {
  background: var(--navy); color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: #1a2f5a; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-blue {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 15px rgba(20,74,143,.35);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(20,74,143,.45); }
.btn-lg { height: 58px; padding: 0 36px; font-size: .95rem; border-radius: var(--r-lg); }
.btn-sm { height: 40px; padding: 0 18px; font-size: .78rem; }
.btn:active { transform: translateY(0) !important; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── SECTION ── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-lt); color: var(--gold);
  padding: 6px 16px; border-radius: 30px;
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-sub {
  font-size: 1.05rem; color: var(--mid); max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── DARK SECTION ── */
.section-dark { background: var(--navy); }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,.65); }

/* ── DIVIDER ── */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--grad-gold); border-radius: 3px;
  margin: 16px 0;
}
.gold-divider.center { margin: 16px auto; }

/* ── CARDS ── */
.card {
  background: #fff; border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all .35s;
}
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.service-card-img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; position: relative; }
.service-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--grad-gold); color: var(--navy);
  padding: 4px 12px; border-radius: 20px;
  font-family: var(--ff-ui); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.service-card-body { padding: 24px; }
.service-card-title {
  font-family: var(--ff-ui); font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--navy);
  margin-bottom: 8px;
}
.service-card-desc { font-size: .88rem; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
.service-card-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.feature-tag {
  background: var(--blue-bg); color: var(--blue);
  padding: 4px 10px; border-radius: 20px;
  font-family: var(--ff-ui); font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}
.service-card-price {
  font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}
.service-card-price span { font-size: .85rem; font-weight: 400; color: var(--mid); }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); padding: 32px 24px; text-align: center;
  transition: all .3s;
}
.why-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 28px; height: 28px; color: var(--gold); }
.why-title {
  font-family: var(--ff-ui); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: 10px;
}
.why-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-size: .92rem; color: var(--slate); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-ui); font-size: 1rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--ff-ui); font-size: .88rem; font-weight: 700; color: var(--navy); }
.testimonial-loc { font-size: .78rem; color: var(--mid); }

/* ── BOOKING FORM ── */
.f-ctrl, .addr-input {
  height: 50px; border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 0 14px; font-family: var(--ff-body); font-size: .95rem;
  color: var(--navy); background: #fff; width: 100%; outline: none;
  transition: all .25s;
}
.f-ctrl:focus, .addr-input:focus {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(20,74,143,.1);
}
.f-ctrl.error { border-color: var(--red); }
.f-label {
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em; color: var(--slate);
  display: block; margin-bottom: 6px;
}
.f-req { color: var(--red); }
.f-group { margin-bottom: 1.2rem; }
.f-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-hint { font-size: .75rem; color: var(--mid); margin-top: 4px; }

/* ── FOOTER ── */
.footer {
  background: #141926;
  border-top: 3px solid var(--gold);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 48px;
}
.footer-brand-logo { height: 56px; width: auto; margin-bottom: 20px; }
.footer-brand-desc { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all .25s;
}
.footer-social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-col-title {
  font-family: var(--ff-ui); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: #e5e7eb;
  margin-bottom: 20px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--grad); padding: 80px 0 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/airport.jpg') center/cover no-repeat;
  opacity: .15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); padding: 6px 16px; border-radius: 30px;
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--off); border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-ui); font-size: .75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em; color: var(--mid);
}
.breadcrumb-inner a { color: var(--blue); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--navy); }
.breadcrumb-inner svg { width: 12px; height: 12px; }

/* ── TRUST BADGES ── */
.trust-bar {
  background: var(--off); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-ui); font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--slate);
}
.trust-item svg { width: 22px; height: 22px; color: var(--blue); }

/* ── H1 UPPERCASE ── */
h1 { text-transform: uppercase; }
.hero-title { text-transform: uppercase; }
.section-title { text-transform: uppercase; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes spin     { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.animate-in { animation: fadeInUp .6s ease-out forwards; }
.animate-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-delay-2 { animation-delay: .2s; opacity: 0; }
.animate-delay-3 { animation-delay: .3s; opacity: 0; }
.animate-delay-4 { animation-delay: .4s; opacity: 0; }


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .nav-menu { display: none !important; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .top-bar { display: none; }

  /* General responsive */
  .hero-stats { gap: 24px; }
  .f-grid2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-bar-inner { gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ═══ SERVICE AREAS SECTION ═══ */
.areas-section {
  background: linear-gradient(180deg, #f4f6fb 0%, #eef1f8 100%);
  padding: 72px 0 64px;
  border-top: 1px solid rgba(20,74,143,.1);
  border-bottom: 1px solid rgba(20,74,143,.1);
}
.areas-subtitle {
  text-align: center;
  color: var(--mid);
  font-size: .92rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.area-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid rgba(20,74,143,.14);
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .84rem;
  text-align: center;
  transition: all .22s;
  box-shadow: 0 1px 4px rgba(20,74,143,.06);
}
.area-chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(20,74,143,.22);
  transform: translateY(-2px);
}
.area-chip svg {
  width: 13px; height: 13px;
  flex-shrink: 0; opacity: .45;
  transition: opacity .22s;
}
.area-chip:hover svg { opacity: .9; }
.area-chip--featured {
  background: var(--grad);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(20,74,143,.2);
}
.area-chip--featured:hover {
  box-shadow: 0 6px 20px rgba(20,74,143,.35);
  transform: translateY(-2px);
}
.areas-cta { text-align: center; margin-top: 8px; }
@media (max-width: 600px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-chip { font-size: .8rem; padding: 10px; }
}

/* ── Pin icon size hard override (fix giant icons) ── */
.area-chip svg,
.area-chip--featured svg {
  width: 13px !important;
  height: 13px !important;
  min-width: 13px !important;
  min-height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

/* ── FORM COMPONENTS (manage, book, contact pages) ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-label {
  font-family: var(--ff-ui, sans-serif);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--navy, #1a2744);
  display: block;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  font-size: .95rem;
  font-family: var(--ff-body, sans-serif);
  color: var(--navy, #1a2744);
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  display: block;
}
.form-input:focus {
  border-color: var(--blue, #1a56db);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.form-input::placeholder {
  color: #9ca3af;
  font-size: .9rem;
}
textarea.form-input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
  height: auto;
}
@media (max-width: 600px) {
  .manage-card { padding: 28px 20px !important; }
  .form-input { font-size: 1rem; padding: 14px 14px; }
}
/* Premium inline SVG icons used instead of emoji glyphs */
.premium-svg-icon{display:inline-flex;align-items:center;justify-content:center;width:1.05em;height:1.05em;vertical-align:-0.16em;color:currentColor;line-height:1;margin-right:.32em;flex-shrink:0}
.premium-svg-icon svg{display:block;width:1em;height:1em}
.premium-svg-icon--dot{margin-right:.25em}
.premium-svg-icon--red{color:#ef4444}.premium-svg-icon--blue{color:#3b82f6}.premium-svg-icon--orange{color:#f97316}.premium-svg-icon--yellow{color:#eab308}
