:root {
  --color-primary: #0F2A4A;
  --color-primary-light: #1D4E89;
  --color-accent: #FF6A3D;
  --color-accent-dark: #E4562A;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F6F9;
  --color-text: #1C2430;
  --color-text-muted: #5B6472;
  --color-border: #E4E8EE;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --container-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.15rem; }

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

.eyebrow {
  color: var(--color-accent-dark);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(255,106,61,.55);
}
.btn-accent:hover { background: var(--color-accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-primary); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.icon-wa { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-primary);
  letter-spacing: .02em;
}
.brand-sub { font-size: .72rem; color: var(--color-text-muted); font-weight: 500; }

.main-nav { display: flex; gap: 28px; margin-left: auto; margin-right: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: .93rem;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--color-accent); }

.btn-header { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero { padding: 64px 0 80px; background: var(--color-bg-alt); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero-lead {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 52ch;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.hero-stats dt {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-primary);
}
.hero-stats dd { font-size: .85rem; color: var(--color-text-muted); margin-top: 2px; }

.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 48px -18px rgba(15,42,74,.35);
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-lead { color: var(--color-text-muted); margin-top: 10px; font-size: 1.02rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
.about-text p { color: var(--color-text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.about-text strong { color: var(--color-text); }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-values span {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--color-primary);
}

.about-facility {
  background: var(--color-primary);
  color: #fff;
  padding: 36px;
  border-radius: 16px;
}
.about-facility h3 { color: #fff; margin-bottom: 18px; }
.facility-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.facility-list li {
  padding-left: 22px;
  position: relative;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
}
.facility-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}
.facility-list strong { color: #fff; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 32px -20px rgba(15,42,74,.3);
  border-color: transparent;
}
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.service-card p { color: var(--color-text-muted); font-size: .92rem; }
.services-note { margin-top: 28px; color: var(--color-text-muted); font-size: .9rem; font-style: italic; }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
}
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--color-text-muted); font-size: .93rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.location-list li { color: var(--color-text-muted); font-size: 1rem; }
.location-list strong { color: var(--color-text); display: block; margin-bottom: 2px; }
.location-map {
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* CTA band */
.section-cta {
  background: var(--color-primary);
  text-align: center;
}
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.8); margin: 14px auto 32px; max-width: 50ch; font-size: 1.05rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-split > div { display: flex; flex-direction: column; gap: 8px; }
label { font-weight: 600; font-size: .88rem; color: var(--color-text); }
input, textarea {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: .95rem;
  background: var(--color-bg-alt);
  color: var(--color-text);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
}
textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .8rem; color: var(--color-text-muted); text-align: center; }
.form-honey { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { font-size: .88rem; text-align: center; min-height: 1.3em; }
.form-status.is-success { color: #1A7F4B; font-weight: 600; }
.form-status.is-error { color: #C0392B; font-weight: 600; }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
}
.contact-info-card h3 { font-size: .95rem; margin-bottom: 10px; color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
}
.contact-link:hover { color: var(--color-accent); }
.contact-info-card p { color: var(--color-text-muted); }

/* Footer */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,.7); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer-inner .brand-name { color: #fff; font-size: 1.1rem; margin-right: 8px; }
.footer-inner .brand-sub { color: rgba(255,255,255,.6); }
.footer-inner p { font-size: .85rem; }
.footer-copy { color: rgba(255,255,255,.45); font-size: .78rem; margin-top: 4px; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(255,106,61,.65);
  z-index: 90;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,16,26,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media img { height: 320px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 16px 24px -16px rgba(0,0,0,.15);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform .25s ease, opacity .2s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }

  .hero { padding: 40px 0 56px; }
  .section { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 24px; justify-content: space-between; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 20px 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-split { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
