/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Roboto:wght@400;500;700;900&display=swap');

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

:root {
  --blue: #1565c0;
  --blue-dark: #0a2d6e;
  --blue-mid: #1976d2;
  --blue-light: #42a5f5;
  --blue-glow: rgba(21, 101, 192, 0.18);
  --white: #ffffff;
  --off-white: #f0f5fb;
  --gray: #5a6478;
  --gray-light: #dde4ef;
  --text: #0f1f3d;
  --shadow-sm: 0 2px 8px rgba(10,45,110,0.10);
  --shadow: 0 6px 28px rgba(10,45,110,0.13);
  --shadow-lg: 0 16px 56px rgba(10,45,110,0.18);
  --radius: 4px;
  --radius-lg: 6px;
  --nav-height: 110px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

p { font-size: 1rem; font-weight: 400; }
strong { font-weight: 700; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.25rem;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21,101,192,0.30);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn-blue-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-blue-outline:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21,101,192,0.30);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 1px 16px rgba(10,45,110,0.07);
}
.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  z-index: 2;
}
.nav-logo img { height: 96px; width: auto; filter: drop-shadow(0 3px 10px rgba(21,101,192,0.22)); }
.nav-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
  line-height: 1;
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 0.15s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 2px solid var(--blue);
}
.nav-book-btn { display: none; } /* legacy — no longer used */

.nav-book-standalone {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 1.25rem;
  padding: 0.6rem 1.4rem;
  background: var(--blue);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 12px rgba(21,101,192,0.35);
}
.nav-book-standalone:hover { background: var(--blue-dark); color: var(--white); box-shadow: 0 4px 16px rgba(21,101,192,0.5); }
.nav-book-standalone.active { background: var(--blue-dark); }

/* Phone CTA hidden by default — shown only on wider screens */
.nav-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, var(--blue-dark) 0%, #1050a0 50%, var(--blue-mid) 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(66,165,245,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 80%, rgba(10,45,110,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}
.hero-content h1 span {
  color: var(--blue-light);
  display: block;
}
.hero-content p {
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: 2.25rem;
  max-width: 480px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.hero-trust-item .icon { color: var(--blue-light); font-size: 1rem; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 24px 72px rgba(0,0,0,0.22);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-card-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hero-card h3 { color: var(--blue-dark); font-size: 1.2rem; margin: 0; }
.hero-form .form-row { display: flex; flex-direction: column; gap: 0.7rem; }
.hero-form input, .hero-form select, .hero-form textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.92rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--off-white);
}
.hero-form input:focus, .hero-form select:focus, .hero-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.hero-form .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }
.hero-card .trust-line {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 0;
  border-top: 3px solid var(--blue-light);
}
.trust-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item .icon { color: var(--blue-light); font-size: 1rem; }

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 2rem; }
.section-alt { background: var(--off-white); }
.container { max-width: 1240px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-label { justify-content: center; }
.section-header h2 { color: var(--text); margin-bottom: 0.875rem; }
.section-header p {
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}

/* ===== DIVIDER ===== */
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  margin: 0.875rem auto 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,101,192,0.2);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 12px rgba(21,101,192,0.25);
}
.service-card h3 { color: var(--blue-dark); margin-bottom: 0.65rem; font-size: 1.15rem; }
.service-card p { color: var(--gray); font-size: 0.92rem; margin-bottom: 1.35rem; line-height: 1.7; }
.service-card .learn-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.01em;
}
.service-card .learn-more:hover { text-decoration: underline; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-content h2 { color: var(--blue-dark); margin-bottom: 1rem; }
.why-content > p { color: var(--gray); margin-bottom: 2rem; line-height: 1.8; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.why-item:hover {
  border-color: rgba(21,101,192,0.25);
  box-shadow: var(--shadow-sm);
}
.why-item .check {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 3px 8px rgba(21,101,192,0.25);
}
.why-item-text strong { display: block; color: var(--blue-dark); font-size: 0.95rem; margin-bottom: 0.2rem; }
.why-item-text span { color: var(--gray); font-size: 0.88rem; }
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-placeholder { color: rgba(255,255,255,0.3); font-size: 5rem; }

/* ===== STATS ===== */
.stats-bar {
  background: linear-gradient(130deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 3.5rem 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(66,165,245,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
.stat-item {
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 {
  font-size: 3rem;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item p { opacity: 0.75; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--blue-light);
  opacity: 0.2;
  font-family: Georgia, serif;
}
.stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 0.05em; margin-bottom: 0.875rem; }
.testimonial-card p { color: var(--gray); font-size: 0.92rem; font-style: italic; margin-bottom: 1.5rem; line-height: 1.75; }
.reviewer { display: flex; align-items: center; gap: 0.875rem; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 4px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(21,101,192,0.25);
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.88rem; color: var(--blue-dark); font-weight: 700; }
.reviewer-info span { font-size: 0.78rem; color: var(--gray); }

/* ===== REVIEW CALL-TO-ACTION (replaces testimonials until real reviews exist) ===== */
.review-cta {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(21,101,192,0.12);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(0,0,0,0.06));
}
.review-cta-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.review-cta-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(130deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(66,165,245,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { margin-bottom: 0.875rem; }
.cta-banner p { opacity: 0.85; max-width: 480px; margin: 0 auto 0.5rem; font-size: 1rem; line-height: 1.75; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.5rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.6rem 2rem;
  border-radius: 4px;
  transition: all 0.15s;
}
.cta-phone:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.cta-banner .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #061830;
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 1.1rem; }
.footer-brand .nav-logo span { color: var(--white); }
.footer-brand p { font-size: 0.88rem; opacity: 0.65; max-width: 260px; line-height: 1.75; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; opacity: 0.7; transition: opacity 0.15s, color 0.15s; }
.footer-col ul a:hover { opacity: 1; color: var(--blue-light); }
.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 0.7rem;
}
.footer-bottom {
  max-width: 1240px;
  margin: 1.75rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  opacity: 0.4;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(130deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66,165,245,0.4), transparent);
}
.page-hero h1 { margin-bottom: 0.875rem; }
.page-hero p { opacity: 0.85; max-width: 540px; margin: 0 auto; font-size: 1rem; line-height: 1.75; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.55;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-light);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 1.1rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(21,101,192,0.35);
}
.pricing-card h3 { color: var(--blue-dark); margin-bottom: 0.5rem; font-size: 1.2rem; }
.price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 0.3rem;
  line-height: 1;
}
.price span { font-size: 1rem; color: var(--gray); font-weight: 400; font-family: 'Roboto', sans-serif; }
.pricing-desc { color: var(--gray); font-size: 0.88rem; margin-bottom: 1.5rem; line-height: 1.6; border-bottom: 1px solid var(--gray-light); padding-bottom: 1.25rem; }
.pricing-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-features li .check { color: var(--blue); font-size: 0.95rem; font-weight: 900; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  min-height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,45,110,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 3rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-content h2 { color: var(--blue-dark); margin-bottom: 1rem; }
.about-content p { color: var(--gray); margin-bottom: 1rem; line-height: 1.85; font-size: 0.97rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
}
.value-item {
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.value-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.value-item h4 { color: var(--blue-dark); margin-bottom: 0.3rem; font-size: 0.9rem; }
.value-item p { color: var(--gray); font-size: 0.83rem; margin: 0; line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h2 { color: var(--blue-dark); margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); margin-bottom: 2.25rem; line-height: 1.8; font-size: 0.97rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: border-color 0.15s;
}
.contact-detail:hover { border-color: rgba(21,101,192,0.25); }
.contact-detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(21,101,192,0.25);
}
.contact-detail-text strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.contact-detail-text span { color: var(--gray); font-size: 0.9rem; }
.contact-detail-text a { color: var(--blue); font-weight: 700; }
.contact-detail-text a:hover { text-decoration: underline; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}
.contact-form-card h3 { color: var(--blue-dark); margin-bottom: 1.75rem; font-size: 1.4rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--off-white);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ===== BOOK ONLINE PAGE ===== */
.book-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 2.5rem;
  gap: 0;
}
.book-tab {
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
  font-family: 'Roboto', sans-serif;
}
.book-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.book-tab:hover { color: var(--blue); }
.book-panel { display: none; }
.book-panel.active { display: block; }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.booking-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}
.booking-info-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.booking-info-card h3 { color: var(--blue-dark); font-size: 1.1rem; margin-bottom: 1.25rem; }
.booking-service-list { display: flex; flex-direction: column; gap: 0.6rem; }
.booking-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.875rem;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.booking-service-item:hover { border-color: var(--blue); }
.booking-service-item.selected { border-color: var(--blue); background: #eef4fd; color: var(--blue-dark); }
.booking-service-item .price-tag { font-size: 0.78rem; color: var(--gray); font-weight: 500; }
.booking-service-item.selected .price-tag { color: var(--blue); }

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--gray-light);
  color: var(--gray);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.step.active .step-num { background: var(--blue); color: var(--white); }
.step.done .step-num { background: #16a34a; color: var(--white); }
.step-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); }
.step.active .step-label { color: var(--blue-dark); }
.step-line { height: 2px; background: var(--gray-light); flex: 1; margin: 0 0.5rem; }

.booking-form-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.booking-form-card h3 { color: var(--blue-dark); margin-bottom: 0.4rem; }
.booking-form-card .subtitle { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.date-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--gray-light);
  transition: all 0.15s;
  background: var(--white);
}
.date-cell:hover:not(.disabled):not(.header) { border-color: var(--blue); color: var(--blue); }
.date-cell.selected { background: var(--blue); color: var(--white); border-color: var(--blue); }
.date-cell.disabled { color: var(--gray-light); cursor: not-allowed; background: var(--off-white); border-color: transparent; }
.date-cell.header { border: none; font-size: 0.72rem; color: var(--gray); font-weight: 800; text-transform: uppercase; cursor: default; background: none; }
.date-cell.today { border-color: var(--blue-light); color: var(--blue); }

.cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cal-nav h4 { font-size: 1rem; color: var(--blue-dark); }
.cal-nav button {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.cal-nav button:hover { background: var(--gray-light); }

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.time-slot {
  padding: 0.6rem 0.5rem;
  text-align: center;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
}
.time-slot:hover:not(.taken) { border-color: var(--blue); color: var(--blue); }
.time-slot.selected { background: var(--blue); color: var(--white); border-color: var(--blue); }
.time-slot.taken { color: var(--gray-light); cursor: not-allowed; text-decoration: line-through; background: var(--off-white); border-color: transparent; }

.booking-summary {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  color: var(--gray);
}
.booking-summary-row strong { color: var(--text); }
.booking-summary-row.total {
  border-top: 1px solid var(--gray-light);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.95rem;
}

/* Nav book button highlight */
.nav-book-btn {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 4px;
  padding: 0.4rem 0.9rem !important;
  font-weight: 700 !important;
}
.nav-book-btn:hover { background: var(--blue-dark) !important; }

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-card { display: none; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (min-width: 1300px) {
  .nav-cta { display: block; margin-left: 0.75rem; }
  .nav-cta .btn { padding: 0.55rem 1.1rem; font-size: 0.8rem; white-space: nowrap; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta, .nav-book-standalone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 999;
    gap: 0.15rem;
    border-bottom: 1px solid var(--gray-light);
  }
  .nav-links.open a { padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.95rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
  .trust-bar-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0.875rem 1.5rem; width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .section { padding: 4rem 1.25rem; }
  .contact-form-card { padding: 1.75rem; }
}

/* ===== PROMO POPUP ===== */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 50, 0.7);
  backdrop-filter: blur(3px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.promo-overlay.open { opacity: 1; visibility: visible; }

.promo-modal {
  position: relative;
  background: #fff;
  border-radius: 10px;
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.promo-overlay.open .promo-modal { transform: translateY(0) scale(1); }

.promo-top {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-top::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(66,165,245,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.promo-logo {
  width: 78px;
  height: auto;
  margin: 0 auto 0.75rem;
  position: relative;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}
.promo-badge {
  position: relative;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.35rem;
}
.promo-offer {
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.promo-offer span { color: var(--blue-light); }
.promo-sub {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.4rem;
}

.promo-body {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
}
.promo-body p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.promo-body p strong { color: var(--blue-dark); }
.promo-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.promo-actions .btn { width: 100%; justify-content: center; }
.promo-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.promo-phone:hover { color: var(--blue); }
.promo-fineprint {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 1rem;
  opacity: 0.8;
}

.promo-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.promo-close:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 480px) {
  .promo-offer { font-size: 2.6rem; }
  .promo-top { padding: 1.5rem 1.5rem 1.25rem; }
  .promo-body { padding: 1.25rem 1.5rem 1.5rem; }
}
