:root {
  --navy: #0e3760;
  --navy-dark: #0a2745;
  --navy-light: #16487a;
  --coral: #f16a5c;
  --coral-dark: #e2523f;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --text: #1c2b3a;
  --text-muted: #5b6b7c;
  --border: #e3e9ef;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 55, 96, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 55, 96, 0.14);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.2;
}

p { margin: 0 0 16px; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(241, 106, 92, 0.35);
}
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* Topbar */
.topbar {
  background: var(--navy-dark);
  color: #cfe0f0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 24px;
}
.brand img { height: 56px; width: auto; }

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 120px 0 130px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10,39,69,0.94) 0%, rgba(14,55,96,0.9) 55%, rgba(10,39,69,0.95) 100%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 85% 15%, rgba(241,106,92,0.35) 0, transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(255,255,255,0.08) 0, transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; text-align: center; max-width: 780px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--coral);
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
}
.hero-sub {
  color: #d7e3ef;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-outline { border-color: #fff; color: #fff; }
.hero .btn-outline:hover { background: #fff; color: var(--navy); }

/* Section heading */
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-sub { font-size: 1.02rem; }

/* Promo */
.promo { background: var(--bg); padding: 0 0 0; margin-top: -1px; }
.promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: -40px;
  padding: 32px 40px;
  background: #fff;
  border: 2px dashed var(--coral);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.promo-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--coral-dark);
  margin-bottom: 6px;
}
.promo-card h2 { margin-bottom: 6px; font-size: 1.5rem; }
.promo-card p:last-child { margin: 0; }

/* Services */
.services { padding: 100px 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-media {
  margin: -32px -28px 20px;
  height: 150px;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { margin: 0; font-size: 0.95rem; }

/* Why us */
.why-us { padding: 100px 0; background: var(--bg-alt); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-list li {
  padding-left: 32px;
  position: relative;
  color: var(--text-muted);
}
.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-list strong { color: var(--navy); }
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.google-rating:hover { box-shadow: var(--shadow); border-color: transparent; }
.google-rating-stars { color: #f5a623; letter-spacing: 1px; font-size: 0.85rem; }
.why-us-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.why-us-image {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  flex: 1;
}
.testimonial-name {
  margin: 12px 0 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.testimonials-cta { text-align: center; }

/* Service area */
.service-area {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.service-area-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.service-area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10,39,69,0.93) 0%, rgba(14,55,96,0.88) 100%);
}
.service-area > .container { position: relative; z-index: 1; }
.service-area h2 { color: #fff; }
.service-area .eyebrow { color: var(--coral); }
.service-area .section-sub { color: #d7e3ef; }
.service-area .btn { margin-top: 8px; }
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
}
.area-list li {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
}

/* FAQ */
.faq { padding: 100px 0; background: var(--bg-alt); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.faq-item p { margin: 0; font-size: 0.95rem; }

/* Contact */
.contact { padding: 100px 0; background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.contact-detail svg { color: var(--coral); flex-shrink: 0; }
.contact-map {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-map iframe { display: block; }

.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(241, 106, 92, 0.15);
}
.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--coral-dark);
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: #cfe0f0;
  padding-top: 60px;
}
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: luminosity;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,39,69,0.4) 0%, var(--navy-dark) 70%);
}
.site-footer .footer-inner,
.site-footer .footer-bottom { position: relative; z-index: 2; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  height: 60px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 14px;
}
.footer-brand p { color: #9fb4c8; max-width: 280px; }
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a, .footer-contact a {
  color: #cfe0f0;
  font-weight: 500;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--coral); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #7f96ac;
}

/* Responsive */
@media (max-width: 900px) {
  .why-us-inner, .contact-inner { grid-template-columns: 1fr; }
  .why-us-image { order: -1; max-width: 320px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .topbar span { display: none; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 70px 0 80px; }
  .services, .why-us, .service-area, .contact { padding: 64px 0; }
}
