:root {
  --navy: #0b1f44;
  --navy-2: #142c5e;
  --gold: #d9a441;
  --gold-soft: #f0d08e;
  --cream: #f7f2ea;
  --ink: #17212f;
  --muted: #6b7280;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 20, 40, 0.18);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  font-size: .92rem;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 10px 0;
}
.lang-switch { display: flex; gap: 8px; }
.lang-btn {
  border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff;
  padding: 6px 10px; border-radius: 999px; cursor: pointer; font-weight: 700;
}
.lang-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.header {
  position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10,20,40,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 60px; height: 60px; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow); }
.brand strong { display: block; font-size: 1.15rem; color: var(--navy); }
.brand span { display: block; color: var(--muted); font-size: .92rem; }
.nav { display: flex; align-items: center; gap: 20px; }
.nav a { font-weight: 600; color: var(--ink); position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: .25s ease;
}
.nav a:hover::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.9rem; cursor: pointer; color: var(--navy); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 800; transition: .25s ease; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy); box-shadow: var(--shadow); }
.btn-outline { border-color: rgba(255,255,255,.65); color: var(--white); background: rgba(255,255,255,.08); }
.desktop-cta { white-space: nowrap; }
.hero {
  position: relative; min-height: 88vh; display: grid; place-items: center; overflow: hidden;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { background-size: cover; background-position: center; transform: scale(1.02); }
.hero-overlay { background: linear-gradient(90deg, rgba(4,10,24,.8) 0%, rgba(4,10,24,.55) 40%, rgba(4,10,24,.28) 100%); }
.hero-content { position: relative; z-index: 1; color: white; padding: 64px 0; max-width: 760px; }
.eyebrow, .section-tag {
  display: inline-block; margin-bottom: 14px; padding: 8px 14px; border-radius: 999px; font-weight: 700; letter-spacing: .04em;
  background: rgba(217,164,65,.18); color: var(--gold-soft); border: 1px solid rgba(240,208,142,.25);
}
.hero h1, h2 {
  font-family: 'Cormorant Garamond', serif; line-height: .98; letter-spacing: -.02em;
}
.hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); margin: 0 0 18px; }
.hero-text { max-width: 700px; font-size: 1.1rem; color: rgba(255,255,255,.9); margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.stats-section { margin-top: -56px; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-card {
  background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); text-align: center;
}
.stat-card span { display: block; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); }
.stat-card p { margin: 8px 0 0; color: var(--muted); }
.section { padding: 96px 0; }
.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.section h2 { font-size: clamp(2.3rem, 5vw, 4rem); color: var(--navy); margin: 0 0 18px; }
.section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.section-head p { color: var(--muted); }
.about { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature-list div {
  background: rgba(255,255,255,.86); border: 1px solid rgba(11,31,68,.08); border-radius: 18px; padding: 16px 18px;
}
.feature-list strong { display: block; color: var(--navy); }
.feature-list span { color: var(--muted); }
.about-card img, .video-wrapper, .contact-form-card { border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%); padding: 28px; border-radius: var(--radius);
  border: 1px solid rgba(11,31,68,.08); box-shadow: 0 14px 30px rgba(10,20,40,.08);
}
.service-card h3 { color: var(--navy); margin-top: 0; font-size: 1.2rem; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.gallery { background: var(--navy); color: white; }
.gallery .section-head h2, .gallery .section-head p { color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  border: 0; padding: 0; cursor: pointer; overflow: hidden; border-radius: 18px; background: #0f2654;
  aspect-ratio: 1 / 1; box-shadow: 0 12px 26px rgba(0,0,0,.24);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-grid { align-items: stretch; }
.video-wrapper { min-height: 360px; background: #000; }
.video-wrapper iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.social-section { background: var(--cream); }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.social-card {
  display: flex; align-items: center; gap: 16px; background: white; padding: 22px; border-radius: var(--radius);
  border: 1px solid rgba(11,31,68,.08); box-shadow: 0 14px 30px rgba(10,20,40,.08);
}
.social-card img { width: 70px; height: 70px; object-fit: cover; border-radius: 50%; }
.social-card strong { display: block; color: var(--navy); font-size: 1.08rem; }
.social-card span { color: var(--muted); }
.contact-grid { align-items: start; }
.contact-info ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.contact-info li {
  background: #fff; border: 1px solid rgba(11,31,68,.08); border-radius: 16px; padding: 14px 16px;
}
.contact-form-card { background: linear-gradient(180deg, #fff 0%, #f9fafb 100%); padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; margin-bottom: 14px; }
label span { display: block; margin-bottom: 8px; font-weight: 700; color: var(--navy); }
input, textarea {
  width: 100%; border: 1px solid rgba(11,31,68,.12); border-radius: 14px; padding: 14px 16px; outline: none; background: white;
}
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217,164,65,.16); }
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; background: #25D366; color: white; box-shadow: var(--shadow);
}
.floating-whatsapp svg { width: 31px; height: 31px; }
.footer { background: var(--navy); color: rgba(255,255,255,.9); padding: 24px 0; }
.footer p { margin: 0; text-align: center; }
.footer a { color: var(--gold-soft); }
.lightbox {
  position: fixed; inset: 0; background: rgba(3, 10, 24, .9); display: none; align-items: center; justify-content: center;
  padding: 24px; z-index: 60;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; border-radius: 18px; }
.lightbox-close {
  position: absolute; top: 16px; right: 22px; border: 0; background: transparent; color: white; font-size: 2.5rem; cursor: pointer;
}
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .nav { position: fixed; top: 85px; left: 16px; right: 16px; background: white; padding: 20px; border-radius: 18px; box-shadow: var(--shadow); display: none; flex-direction: column; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .desktop-cta { display: none; }
  .split-grid, .cards-grid, .gallery-grid, .social-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topbar-inner, .nav-wrap { gap: 12px; }
  .hero { min-height: 78vh; }
  .hero-content { padding: 42px 0; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .stats-grid, .split-grid, .cards-grid, .gallery-grid, .social-grid, .form-row { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .brand img { width: 52px; height: 52px; }
  .floating-whatsapp { width: 58px; height: 58px; }
}
