:root {
  --ink: #10141d;
  --muted: #6a7280;
  --soft: #f4f1ec;
  --panel: #ffffff;
  --line: #dfd8cd;
  --red: #0d4da8;
  --red-dark: #073873;
  --gold: #dba84a;
  --steel: #25313f;
  --blue: #1d6072;
  --dark: #0d1118;
  --shadow: 0 24px 70px rgba(16, 20, 29, 0.16);
  --radius: 6px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(13, 77, 168, 0.08), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(219, 168, 74, 0.12), transparent 26rem),
    var(--soft);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 29, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(16, 20, 29, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 70%);
}

body::after {
  right: -120px;
  top: 170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(13, 77, 168, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 48px rgba(219, 168, 74, 0.06),
    inset 0 0 0 104px rgba(13, 77, 168, 0.05);
  animation: slowSpin 28s linear infinite;
}

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

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

/* Header & Nav */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(var(--container), calc(100% - 32px));
  min-height: 78px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  box-shadow: 0 20px 54px rgba(16, 20, 29, 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: all 300ms ease;
}

.site-header.scrolled {
  min-height: 68px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(16, 20, 29, 0.18);
}

.site-header.transparent {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(16, 20, 29, 0.08);
  backdrop-filter: blur(14px);
}

.logo img {
  width: 178px;
  max-height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* Buttons */
.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action {
  color: #fff;
  background: #1a51a8;
  border-radius: 50px;
  padding: 0 28px;
  font-weight: 600;
}

.header-action:hover {
  background: #14438d;
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: #0d4da8;
  border-radius: 50px;
  padding: 0 36px;
  min-height: 60px;
  font-size: 18px;
  font-weight: 700;
}

.button.ghost {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  border-radius: 50px;
  padding: 0 36px;
  min-height: 60px;
  font-size: 18px;
  font-weight: 700;
}

.button.primary:hover {
  background: #093a80;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-action:hover,
.button:hover,
.header-action:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(13, 77, 168, 0.28);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--steel);
}

/* Hero Section */
.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 160px clamp(18px, 5vw, 74px) 58px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(180deg, transparent, rgba(244, 241, 236, 0.96));
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/heroenhanced.jpeg");
  background-size: cover;
  background-position: center;
  transition: transform 150ms ease-out;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 10, 16, 0.92), rgba(6, 10, 16, 0.62) 52%, rgba(6, 10, 16, 0.18)),
    linear-gradient(0deg, rgba(6, 10, 16, 0.78), rgba(6, 10, 16, 0.05) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  width: min(820px, 100%);
  color: #fff;
  animation: riseIn 760ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Poppins, Inter, Arial, sans-serif; letter-spacing: 0; }

h1 { margin-bottom: 22px; font-size: clamp(44px, 7vw, 88px); font-weight: 900; line-height: 0.96; }
h2 { margin-bottom: 18px; font-size: clamp(28px, 4vw, 48px); line-height: 1.05; }
h3 { margin-bottom: 12px; font-size: 24px; line-height: 1.12; }

.hero-content h1 { color: #f5f0e8; }
.hero-content h1 span { font-size: 0.75em; color: #1a51a8; }
.hero-content p { width: min(650px, 100%); color: rgba(255, 255, 255, 0.82); font-size: clamp(17px, 2vw, 21px); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-card {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin-left: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: riseIn 820ms 140ms ease both;
}

.hero-card div {
  padding: 24px;
  border-right: 1px solid var(--line);
  transition: transform 160ms ease;
}

.hero-card div:last-child { border-right: 0; }
.hero-card strong { display: block; color: var(--red); font-size: clamp(28px, 4vw, 42px); line-height: 1; }
.hero-card span { display: block; margin-top: 8px; color: var(--muted); font-weight: 800; }

/* Sections General */
.section, .stats-section, .location-section, .contact-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 5vw, 74px);
  overflow: hidden;
}

.section::before, .stats-section::before, .location-section::before, .contact-section::before {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  top: 36px;
  width: min(370px, 44vw);
  height: 150px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(13, 77, 168, 0.16) 47.4% 48.1%, transparent 48.4% 100%),
    repeating-linear-gradient(90deg, rgba(16, 20, 29, 0.08) 0 1px, transparent 1px 42px);
  opacity: 0.45;
}

.section-intro p, .about-copy, .stats-copy p, .service-card p, .location-copy p, .review-card span, .contact-info p {
  color: var(--muted);
  font-size: 15px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  margin-top: 42px;
}

.about-copy { display: grid; gap: 18px; }
.about-copy p { margin-bottom: 0; }

.image-pair { display: grid; grid-template-columns: 0.9fr 1fr; gap: 16px; align-items: end; }
.image-pair img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 340ms cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 340ms ease;
}

.image-pair img:first-child { height: 330px; margin-bottom: 42px; }
.image-pair img:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 32px 80px rgba(16, 20, 29, 0.22); }

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 20, 29, 0.95), rgba(16, 20, 29, 0.78)),
    url("assets/image.png") center/cover;
}

.stats-copy h2 { max-width: none; margin-bottom: 40px; line-height: 1.1; }
.feature-list { display: grid; gap: 16px; margin-top: 34px; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.feature-item i {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.feature-item p { margin-bottom: 0; color: rgba(255, 255, 255, 0.78); font-size: 16px; font-weight: 500; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 500px;
  justify-self: center;
  align-self: center;
}

.stat-grid div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1 / 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(37, 49, 63, 0.08);
  border-radius: 20px;
  color: var(--ink);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.stat-grid div:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 49, 63, 0.2);
  box-shadow: 0 12px 40px rgba(37, 49, 63, 0.12);
}

.stat-grid i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  color: #25313f;
  background: rgba(37, 49, 63, 0.1);
  border-radius: 50%;
  font-size: 20px;
}

.stat-grid strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: clamp(32px, 4vw, 44px); font-family: Poppins, sans-serif; font-weight: 800; line-height: 1; }
.stat-grid span { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }

/* Services Section */
.services-section { background: #fff; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 1140px;
  margin-inline: auto;
}

.service-card {
  position: relative;
  min-height: auto;
  padding: 0 0 20px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.service-card:hover { transform: translateY(-10px); box-shadow: 0 28px 70px rgba(16, 20, 29, 0.18); border-color: rgba(13, 77, 168, 0.35); }
.service-card img { width: 100%; height: 180px; margin: 0 0 20px; object-fit: cover; border-radius: 20px 20px 0 0; transition: transform 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-card:hover img { transform: scale(1.07); }

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: -45px 0 16px 20px;
  color: #fff;
  background: var(--red);
  border: 4px solid var(--soft);
  border-radius: 12px;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), background 280ms ease;
}

.service-card:hover .service-icon { transform: translateY(-4px) rotate(8deg); background: var(--red-dark); }
.service-card h3 { padding: 0 24px; margin-bottom: 10px; font-size: 20px; }
.service-card p { padding: 0 24px; margin: 0; font-size: 14px; line-height: 1.6; }

/* Location Section */
.location-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--soft);
}

.map-frame { overflow: hidden; min-height: 430px; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-frame iframe { display: block; width: 100%; height: 430px; border: 0; }

/* Reviews Section */
.reviews-section { background: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 38px; }

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0 34%, rgba(219, 168, 74, 0.28) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-44%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.review-card:hover::after { opacity: 1; transform: translateX(44%); }
.stars { margin-bottom: 22px; color: var(--gold); font-size: 19px; }
.review-card p { color: var(--steel); font-size: 18px; }
.review-card strong { margin-top: auto; font-size: 18px; }
.review-card span { display: block; margin-top: 6px; font-size: 13px; }

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  color: var(--ink);
  background: var(--soft);
}

.contact-info h2 { margin-bottom: 48px; font-size: clamp(38px, 5vw, 58px); line-height: 1.05; font-weight: 800; }
.info-list { display: grid; gap: 40px; margin-top: 0; }

.info-list a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: center;
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  transition: transform 180ms ease;
}

.info-list a:hover { transform: translateX(4px); }

.info-list i {
  width: 64px;
  height: 64px;
  color: #25313f;
  background: rgba(37, 49, 63, 0.08);
  border-radius: 50%;
  font-size: 24px;
  display: grid;
  place-items: center;
}

.info-list strong { display: block; margin-bottom: 4px; color: var(--red-dark); font-size: 22px; line-height: 1.1; font-weight: 800; }
.info-list span { display: block; color: var(--ink); font-size: 19px; line-height: 1.35; font-weight: 500; }
.info-list em { display: block; color: var(--muted); font-style: normal; font-size: 14px; margin-top: 2px; }

.contact-form {
  display: grid;
  gap: 28px;
  padding: clamp(34px, 4.8vw, 70px);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-form h3 { margin-bottom: 22px; font-size: clamp(36px, 4.4vw, 50px); line-height: 1.05; font-weight: 800; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }

label span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

input, select, textarea {
  width: 100%;
  min-height: 64px;
  padding: 16px 22px;
  border: 1px solid #dce2eb;
  border-radius: 18px;
  background: #f8fbff;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(13, 77, 168, 0.11); }
textarea { min-height: 162px; resize: vertical; }

.contact-form .button.primary {
  width: fit-content;
  min-height: 60px;
  padding: 0 40px;
  background: #25313f;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 49, 63, 0.2);
  font-size: 18px;
  font-weight: 700;
}

.contact-form .button.primary:hover { background: #1a2633; transform: translateY(-2px); }

/* Footer */
.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(170px, 0.5fr));
  gap: 36px;
  padding: 58px clamp(18px, 5vw, 74px) 76px;
  color: rgba(255, 255, 255, 0.76);
  background: #0d1118;
}

.site-footer img { width: 178px; margin-bottom: 18px; filter: brightness(1.1); }
.site-footer p { max-width: 520px; }
.site-footer h4 { margin: 0 0 14px; color: #fff; }
.site-footer a { display: block; margin: 9px 0; }
.site-footer small { position: absolute; right: clamp(18px, 5vw, 74px); bottom: 24px; color: rgba(255, 255, 255, 0.48); }

/* Whatsapp Button */
.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  font-size: 29px;
  transition: transform 180ms ease;
}

.whatsapp-button:hover { transform: translateY(-3px) scale(1.04); }

/* --- Media Queries --- */

@media (max-width: 1040px) {
  .section-heading { grid-template-columns: 1fr; }
  .stats-section { grid-template-columns: 1fr; gap: 60px; }
  .site-header { grid-template-columns: auto auto auto; }
  .menu-button { display: grid; place-items: center; justify-self: end; }
  .site-nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: max-height 300ms ease, opacity 300ms ease, padding 300ms ease, visibility 300ms;
  }
  .site-nav.active { max-height: 400px; padding: 18px; opacity: 1; visibility: visible; }
  .site-nav a { padding: 12px; }
  .about-grid, .stats-section, .location-section, .contact-section, .site-footer { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  :root { --container: 100%; }
  body { font-size: 14px; }
  .section, .stats-section, .location-section, .contact-section { padding: 40px 20px; }

  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    padding: 8px 16px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    transform: none;
  }

  .logo img { width: 130px; }
  .header-action { display: none; }
  .menu-button { display: flex; align-items: center; justify-content: center; background: transparent; color: var(--ink); font-size: 20px; }
  .site-nav { top: 60px; left: 0; right: 0; border-radius: 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

  .hero { min-height: 100vh; padding: 100px 20px 40px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
  h1 { font-size: 32px; line-height: 1.1; margin-bottom: 16px; }
  .hero-content h1 span { display: block; font-size: 0.8em; }
  .hero-content p { font-size: 16px; margin-inline: auto; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .button.primary, .button.ghost { width: 100%; min-height: 54px; font-size: 16px; }

  .hero-card { grid-template-columns: 1fr; margin-top: 40px; width: 100%; }
  .hero-card div { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px; }

  .about-grid, .stats-section, .location-section, .reviews-section, .contact-section, .site-footer {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    min-height: auto;
    padding: 24px;
  }

  .image-pair { grid-template-columns: 1fr; gap: 12px; }
  .image-pair img, .image-pair img:first-child { height: 240px; margin-bottom: 0; }

  .stat-grid { grid-template-columns: 1fr; gap: 16px; max-width: none; }
  .stat-grid div { aspect-ratio: auto; min-height: auto; padding: 24px; }

  .service-grid { grid-template-columns: 1fr; gap: 20px; margin-inline: 0; padding: 0; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-form { padding: 30px 20px; }
  .contact-info h2 { font-size: 32px; margin-bottom: 30px; }
  .info-list { gap: 24px; }
  .info-list a { grid-template-columns: 48px 1fr; gap: 16px; }
  .info-list i { width: 48px; height: 48px; font-size: 18px; }
  .info-list strong { font-size: 18px; }
  .info-list span { font-size: 16px; }

  .site-footer { padding: 40px 20px 80px; text-align: center; }
  .site-footer img { margin-inline: auto; }
  .site-footer small { position: static; display: block; margin-top: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
