:root {
  --primary: #0c4167;
  --secondary: #f05a7a;
  --accent: #8ad739;
  --gold: #f9ba2b;
  --bg: #f4f8fb;
  --text: #183041;
  --muted: #5f7381;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 54, 86, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: linear-gradient(90deg, var(--primary), #0e547f);
  color: var(--white);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.topbar-copy { font-size: 0.95rem; }
.lang-toggle {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12,65,103,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
}
.brand strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}
.nav a:hover { color: var(--secondary); }
.header-call {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 34, 53, 0.86) 0%, rgba(9, 52, 80, 0.6) 42%, rgba(9, 52, 80, 0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
  padding: 92px 0 72px;
}
.eyebrow {
  display: inline-block;
  background: rgba(249,186,43,0.18);
  border: 1px solid rgba(249,186,43,0.3);
  color: #ffe7a7;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}
.hero h1,
.section-heading h2 {
  margin: 18px 0 14px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  color: var(--white);
  max-width: 700px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero p {
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 650px;
  color: rgba(255,255,255,.95);
}
.hero-actions,
.hero-points,
.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions { margin: 28px 0 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #f38665);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.26);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-points li,
.mini-list span {
  padding: 10px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
}
.hero-card {
  display: flex;
  justify-content: flex-end;
}
.info-card,
.quote-panel,
.service-card,
.stat-card,
.social-card,
.contact-card,
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card {
  max-width: 390px;
  padding: 28px;
}
.info-card h3,
.quote-panel h3,
.service-card h3,
.social-card h3 { font-family: 'Montserrat', sans-serif; }
.info-card p,
.quote-panel p,
.section-heading p,
.service-card p,
.social-card p,
.contact-section p { color: var(--muted); line-height: 1.8; }
.mini-list { margin-top: 18px; }
.mini-list span {
  background: var(--bg);
  color: var(--primary);
  border-color: rgba(12,65,103,.08);
}
.stats-section {
  margin-top: -36px;
  position: relative;
  z-index: 3;
}
.stats-grid,
.services-grid,
.social-grid,
.contact-grid,
.form-grid {
  display: grid;
  gap: 22px;
}
.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}
.stat-card {
  padding: 24px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}
.stat-card span { color: var(--muted); }
.section { padding: 92px 0; }
.alt-section { background: var(--bg); }
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }
.section-heading .eyebrow {
  background: rgba(12,65,103,0.07);
  border-color: rgba(12,65,103,0.1);
  color: var(--primary);
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); }
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  padding: 28px;
  transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); }
.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240,90,122,.14), rgba(12,65,103,.12));
  font-size: 1.7rem;
}
.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.check-list {
  display: grid;
  gap: 18px;
}
.check-list div {
  padding: 22px;
  background: rgba(255,255,255,.9);
  border-radius: 20px;
  border: 1px solid rgba(12,65,103,.08);
}
.check-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}
.quote-panel {
  padding: 30px;
  background: linear-gradient(180deg, #0f4c77, #0a314f);
  color: var(--white);
}
.quote-panel h3 { margin-top: 0; }
.quote-panel ul {
  margin: 18px 0 24px;
  padding-left: 20px;
  line-height: 1.9;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.video-wrap {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #000;
}
.video-wrap iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
}
.social-grid {
  grid-template-columns: repeat(2, 1fr);
}
.social-card {
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.social-card.facebook .social-icon { background: #1877f2; }
.social-card.instagram .social-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.contact-card {
  padding: 20px 22px;
  display: block;
}
.contact-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.contact-form {
  padding: 26px;
}
.form-grid {
  grid-template-columns: repeat(2, 1fr);
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(12,65,103,.14);
  background: #fbfdff;
}
.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .95rem;
}
.site-footer {
  background: #071c2e;
  color: rgba(255,255,255,.9);
}
.footer-inner {
  padding: 26px 0;
  text-align: center;
}
.footer-inner a { color: #86d3ff; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0,0,0,.28);
  z-index: 99;
}
.whatsapp-float svg { width: 34px; height: 34px; }
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5,16,25,.82);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 120;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(900px, 100%);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.14);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 980px) {
  .nav { display: none; }
  .hero-content,
  .split-layout,
  .contact-grid,
  .stats-grid,
  .services-grid,
  .social-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 72px 0 56px;
  }
  .hero-card { justify-content: flex-start; }
  .video-wrap iframe { min-height: 320px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1120px); }
  .topbar-copy { font-size: .86rem; }
  .brand-logo { width: 50px; height: 50px; }
  .header-call { padding: 10px 14px; font-size: .92rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 72px 0; }
  .service-card,
  .contact-form,
  .info-card,
  .social-card,
  .quote-panel { padding: 22px; }
}
