/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1f3c;
  --navy-light: #162d56;
  --gold:   #c9a84c;
  --gold-light: #e2c97e;
  --white:  #ffffff;
  --off-white: #f5f7fa;
  --text:   #2c3e50;
  --muted:  #64748b;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(13, 31, 60, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--muted); }

/* ─── Utility ───────────────────────────────────────────────────── */
.container {
  max-width: 1060px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

section { padding-block: 5rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ─── Navigation ────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  /* blend the cream background into the dark nav */
  mix-blend-mode: luminosity;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 1; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold-light); }
.nav-phone svg { flex-shrink: 0; }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a6e 100%);
  padding-block: 6rem 5rem;
  position: relative;
  overflow: hidden;
}

.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='%23c9a84c' fill-opacity='0.04'%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");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Logo business card in hero */
.hero-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
  /* slight rotation for a natural "card on a table" feel */
  transform: rotate(1.5deg);
  transition: transform 0.25s, box-shadow 0.25s;
  border-radius: 12px;
}

.hero-logo-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.hero-logo-img {
  width: 260px;
  max-width: 100%;
  border-radius: 10px;
  /* lift it off the dark background */
  box-shadow:
    0 2px 0px rgba(201, 168, 76, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 20px 48px rgba(0, 0, 0, 0.25);
  display: block;
}

.hero-logo-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.hero-logo-card:hover .hero-logo-cta { opacity: 1; }

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ─── Services ──────────────────────────────────────────────────── */
.services { background: var(--off-white); }

.services-header { text-align: center; margin-bottom: 3rem; }
.services-header p { max-width: 54ch; margin-inline: auto; margin-top: 0.6rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border-top: 3px solid var(--gold);
}
.service-card:hover { transform: translateY(-4px); }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--gold);
}

.service-card h3 { color: var(--navy); margin-bottom: 0.4rem; }

/* ─── Why Us ────────────────────────────────────────────────────── */
.why { background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 { color: var(--navy); margin-bottom: 1rem; }
.why-text > p { margin-bottom: 2rem; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.why-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.why-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-list .check svg { color: var(--navy); }

.why-list strong { display: block; color: var(--navy); font-size: 0.95rem; }
.why-list span { font-size: 0.88rem; color: var(--muted); }

.why-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-stat {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.why-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.why-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ─── Discounts ─────────────────────────────────────────────────── */
.discounts {
  background: var(--navy);
  padding-block: 4.5rem;
}

.discounts-header { text-align: center; margin-bottom: 2.5rem; }
.discounts-header h2 { color: var(--white); }
.discounts-header p  { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

.discounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.discount-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: background 0.2s;
}
.discount-card:hover { background: rgba(201, 168, 76, 0.1); }

.discount-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.discount-card h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.discount-card p { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ─── Areas ─────────────────────────────────────────────────────── */
.areas { background: var(--off-white); }

.areas-header { text-align: center; margin-bottom: 3rem; }
.areas-header h2 { color: var(--navy); }

.route-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin-inline: auto;
}

.route-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(13,31,60,0.07);
}

.route-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.route-item span { font-weight: 500; color: var(--navy); font-size: 0.95rem; }

/* ─── CTA / Contact ─────────────────────────────────────────────── */
.contact {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  text-align: center;
  padding-block: 5rem;
}

.contact h2 { color: var(--white); margin-bottom: 0.75rem; }
.contact > .container > p { color: rgba(255,255,255,0.65); max-width: 48ch; margin-inline: auto; margin-bottom: 2.5rem; }

.contact-options {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  min-width: 220px;
  text-align: center;
}

.contact-box-icon {
  width: 48px; height: 48px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.contact-box-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}

.contact-box a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: block;
}
.contact-box a:hover { color: var(--gold-light); }

.contact-box-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  background: #070f1e;
  padding-block: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

footer strong { color: rgba(255,255,255,0.6); }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding-block: 3.5rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust  { justify-content: center; }

  .hero-logo-card {
    width: 100%;
    order: -1;
    transform: rotate(0deg); /* no tilt on mobile */
  }

  .hero-logo-img {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .discounts-grid { grid-template-columns: 1fr; max-width: 280px; }

  .nav-logo { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero { padding-block: 3.5rem 3rem; }
  .hero h1 { font-size: 1.9rem; }
}
