@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --blue: #1e58a1;
  --gold: #d09a40;
  --gray: #aeaeae;
  --black: #020202;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --dark: #0d1f38;
  --blue-hover: #174a8a;
  --gold-hover: #b8862e;
  --font-display: 'Fugaz One', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(14,31,56,0.13);
  --shadow-lg: 0 8px 48px rgba(14,31,56,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 92px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  height: 100%;
}

.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-links .has-dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform 0.2s;
}
.nav-links .has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--white);
  min-width: 280px;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  list-style: none;
  z-index: 1001;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--black);
  letter-spacing: 0.3px;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}
.nav-dropdown a:hover {
  background: var(--off-white);
  color: var(--blue);
}
.nav-dropdown .dropdown-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 6px 14px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-right .btn,
.nav-right .nav-phone {
  font-size: 15px;
  padding: 11px 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-right .btn { min-width: 180px; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--white);
  padding: 11px 24px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  line-height: 1;
  transition: all 0.2s;
}
.nav-phone:hover {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-1px);
}
.nav-phone .phone-icon {
  font-size: 10px;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 11px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(208,154,64,0.4);
}

.btn-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.btn-lg { font-size: 18px; padding: 15px 36px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── SECTIONS ── */
.section { padding: 80px 40px; }
.section-sm { padding: 56px 40px; }
.container { max-width: 1180px; margin: 0 auto; }

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--black);
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: #4a5568;
  max-width: 580px;
  line-height: 1.65;
}
.section-sub.white { color: rgba(255,255,255,0.82); }

/* ── MASCOT SPEECH BUBBLE ── */
.mascot-quote {
  display: flex;
  align-items: center;
  gap: 28px;
}
.mascot-quote img {
  width: 120px;
  flex-shrink: 0;
}
.speech-bubble {
  background: var(--white);
  border-radius: 16px 16px 16px 0;
  padding: 18px 24px;
  position: relative;
  box-shadow: var(--shadow);
}
.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  border: 12px solid transparent;
  border-top-color: var(--white);
  border-left-color: var(--white);
  border-bottom: none;
  border-right: none;
}
.speech-bubble p {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--blue);
  line-height: 1.4;
}

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 200px;
  overflow: hidden;
}
.service-card-img img { height: 160px; object-fit: contain; }
.service-card-body { padding: 22px 24px 26px; }
.service-card-body h3 { font-size: 21px; margin-bottom: 8px; color: var(--blue); }
.service-card-body p { font-size: 15px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.service-card-body a {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.service-card-body a:hover { color: var(--gold-hover); }

/* ── TRUST BADGES ── */
.trust-item { text-align: center; padding: 28px 20px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.trust-sub { font-size: 14px; color: #777; }

/* ── REVIEW CARDS ── */
.review-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 15px; color: #444; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.reviewer { font-family: var(--font-display); font-size: 14px; color: var(--blue); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto 48px;
}
.footer-logo img { height: 120px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--blue);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.page-hero-text h1 { color: var(--white); font-size: clamp(36px, 4vw, 58px); margin-bottom: 12px; }
.page-hero-text p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 520px; line-height: 1.6; }
.page-hero-img img { height: 220px; object-fit: contain; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gold);
  padding: 56px 40px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--white); margin-bottom: 10px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 28px; }
.cta-banner .btn-white { border-color: var(--white); font-size: 17px; padding: 14px 36px; }

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

/* ── RESPONSIVE ── */
/* Tablet & smaller (≤ 900px) — hamburger nav appears; CTAs stay visible but shrink */
@media (max-width: 900px) {
  .site-nav {
    padding: 0 20px;
    height: 72px;
    gap: 12px;
  }
  .nav-logo img { height: 52px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--blue);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - 72px);
  }
  .nav-links.open li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); height: auto; }
  .nav-links.open a { display: block; padding: 14px 0; font-size: 17px; }
  .nav-links.open .has-dropdown > a::after { display: none; }
  .nav-links.open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.06);
    box-shadow: none;
    padding: 0 0 12px 16px;
    margin-top: -8px;
    min-width: 0;
  }
  .nav-links.open .nav-dropdown a {
    color: rgba(255,255,255,0.75);
    padding: 10px 0;
    font-size: 14px;
  }
  .nav-links.open .nav-dropdown a:hover { color: var(--gold); background: none; }
  .nav-links.open .dropdown-divider { display: none; }

  .nav-right { gap: 8px; }
  .nav-right .btn,
  .nav-right .nav-phone {
    font-size: 13px;
    padding: 9px 16px;
    min-height: 40px;
    min-width: 0;
  }
  .nav-right .btn { min-width: 0; }

  /* Sections */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section, .section-sm { padding: 56px 24px; }

  /* Footer */
  .site-footer { padding: 56px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-logo img { height: 100px; }

  /* Page hero */
  .page-hero { padding: 48px 24px 80px; }
  .page-hero .container { flex-direction: column; align-items: flex-start; gap: 24px; }
  .page-hero-img { display: none; }
  .page-hero-text h1 { font-size: clamp(32px, 6vw, 48px); }
  .page-hero-text p { font-size: 16px; }

  /* CTA banner */
  .cta-banner { padding: 48px 24px; }
  .cta-banner .btn-white { font-size: 15px; padding: 12px 28px; }
}

/* Small mobile (≤ 600px) — phone becomes icon-only, nav tightens up, footer stacks + centers */
@media (max-width: 600px) {
  .site-nav {
    padding: 0 14px;
    height: 64px;
    gap: 8px;
  }
  .nav-logo img { height: 44px; }
  .nav-links.open { top: 64px; max-height: calc(100vh - 64px); padding: 14px 20px 20px; }

  /* Phone button: keep the icon, hide the number text */
  .nav-right .nav-phone {
    padding: 0;
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .nav-right .nav-phone > span:last-child {
    position: absolute;
    width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .nav-right .nav-phone .phone-icon {
    width: 22px; height: 22px;
    font-size: 12px;
    background: var(--gold);
  }
  .nav-right .btn {
    font-size: 12px;
    padding: 10px 14px;
    min-height: 40px;
  }

  /* Footer fully stacks + centers */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-logo img { margin: 0 auto 16px; }
  .footer-tagline { max-width: 320px; margin: 0 auto; }
  .footer-links { align-items: center; }
  .footer-contact p { text-align: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-top: 24px;
  }

  /* Section padding tighter */
  .section, .section-sm { padding: 48px 20px; }
  .page-hero { padding: 40px 20px 72px; }

  /* CTA banner */
  .cta-banner { padding: 40px 20px; }
  .cta-banner h2 { font-size: 26px; }
  .cta-banner p { font-size: 15px; }
  .breadcrumb { font-size: 12px; flex-wrap: wrap; }

  /* Mascot quote on small screens */
  .mascot-quote { flex-direction: column; text-align: center; gap: 16px; }
  .mascot-quote img { width: 100px; }
}

/* Extra-small (≤ 380px) — protect against overflow */
@media (max-width: 380px) {
  .site-nav { padding: 0 10px; gap: 6px; }
  .nav-logo img { height: 38px; }
  .nav-right .btn { padding: 9px 12px; font-size: 11px; }
}
