:root {
  --primary: #22366f;
  --primary-dark: #18264f;
  --secondary: #d9e0ea;
  --accent: #eef3f8;
  --white: #ffffff;
  --text: #253049;
  --muted: #68738d;
  --shadow: 0 18px 45px rgba(17, 31, 69, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #f8fbff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.92);
  font-size: .92rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  align-items: center;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar a { color: white; font-weight: 700; }
.lang-switch {
  display: flex;
  gap: .35rem;
  padding: .2rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: .38rem .7rem;
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: 700;
}
.lang-btn.active {
  background: white;
  color: var(--primary-dark);
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34,54,111,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.brand strong { display:block; font-size: 1rem; color: var(--primary); }
.brand span { color: var(--muted); font-size: .88rem; }
.nav { display: flex; gap: 1.3rem; align-items: center; }
.nav a { font-weight: 600; color: var(--primary-dark); }
.menu-toggle { display: none; background: var(--primary); color: white; border: 0; border-radius: 12px; padding: .55rem .75rem; }
.hero { position: relative; min-height: 88vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,28,58,.88) 0%, rgba(27,42,84,.76) 46%, rgba(27,42,84,.28) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 5rem 0; }
.hero-text { max-width: 760px; color: white; }
.eyebrow, .section-tag {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: #c7d5f5;
}
.hero h1, h2, h3 { font-family: 'Playfair Display', serif; margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: 1.04; }
.hero-description { font-size: 1.06rem; line-height: 1.85; max-width: 680px; color: rgba(255,255,255,.92); }
.hero-actions, .pill-list { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .95rem 1.4rem;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: white; color: var(--primary); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: white; border: 1px solid rgba(255,255,255,.45); }
.btn-dark-outline { color: var(--primary); border-color: rgba(34,54,111,.25); }
.hero-badges { display: flex; flex-wrap: wrap; list-style: none; gap: .75rem; padding: 0; margin: 1.5rem 0 0; }
.hero-badges li {
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  font-size: .92rem;
}
.section { padding: 5.2rem 0; }
.section-soft { background: linear-gradient(180deg, #eef3f8 0%, #fbfdff 100%); }
.grid-two { display: grid; grid-template-columns: 1.08fr .92fr; gap: 2rem; align-items: center; }
.about-grid h2, .section-head h2, .video-grid h2, .extras-grid h2, .contact-grid h2 { font-size: clamp(2rem, 3vw, 3rem); color: var(--primary-dark); }
.about-grid p, .video-grid p, .extras-grid p, .contact-lead, .social-note { line-height: 1.9; color: var(--muted); }
.info-card, .form-wrap, .video-frame, .image-panel img, .social-card, .contact-card, .feature-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.info-card { padding: 2rem; }
.stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.stat-grid div { padding: 1.2rem; border-radius: var(--radius-md); background: var(--accent); }
.stat-grid strong { display: block; color: var(--primary); margin-bottom: .5rem; }
.stat-grid span { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 2rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.feature-card { overflow: hidden; }
.feature-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.feature-card div { padding: 1.25rem 1.25rem 1.4rem; }
.feature-card h3 { color: var(--primary); font-size: 1.45rem; }
.feature-card p { color: var(--muted); line-height: 1.7; margin: 0; }
.image-panel img { width: 100%; }
.pill-list span {
  display: inline-flex;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.video-frame { overflow: hidden; padding: .8rem; }
.video-frame iframe { width: 100%; min-height: 420px; border: 0; border-radius: 18px; }
.social-grid, .contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.social-card, .contact-card { padding: 1.4rem; transition: transform .25s ease; }
.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-card:hover, .contact-card:hover { transform: translateY(-3px); }
.social-card strong, .contact-card strong { display: block; color: var(--primary); margin-bottom: .3rem; }
.social-card span, .contact-card span { color: var(--muted); line-height: 1.6; }
.social-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--primary);
  color: white;
  font-size: 2rem;
  font-weight: 700;
}
.social-icon.instagram {
  background: linear-gradient(135deg, #22366f, #7d8fc8);
}
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 2rem; align-items: start; }
.contact-form { padding: 2rem; }
.contact-form h3 { color: var(--primary); font-size: 1.8rem; }
.contact-form label { display: block; margin-bottom: 1rem; font-weight: 600; color: var(--primary-dark); }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: .5rem;
  border: 1px solid #dbe3ef;
  background: #f9fbff;
  border-radius: 14px;
  padding: .95rem 1rem;
}
.full { width: 100%; border: 0; cursor: pointer; }
.form-note { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.map-section iframe { width: 100%; height: 400px; border: 0; display: block; }
.footer { background: var(--primary-dark); color: rgba(255,255,255,.86); padding: 2rem 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.footer strong { color: white; display: block; margin-bottom: .35rem; }
.footer p { margin: 0; line-height: 1.7; }
.footer a { color: white; font-weight: 700; }
.float-btn {
  position: fixed;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 40;
  color: white;
  box-shadow: var(--shadow);
}
.float-btn svg { width: 28px; height: 28px; }
.float-btn.whatsapp { bottom: 92px; background: #25D366; }
.float-btn.call { bottom: 24px; background: var(--primary); }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 28, .9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: min(960px, 100%); max-height: 86vh; border-radius: 20px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: white;
  color: var(--primary-dark);
  font-size: 2rem;
  cursor: pointer;
}
.reveal { opacity: 0; transform: translateY(28px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .grid-two, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav {
    position: absolute;
    top: calc(100% + .7rem);
    left: 1rem;
    right: 1rem;
    background: white;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 760px) {
  .social-grid, .contact-cards, .stat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar-inner, .topbar-actions, .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 78vh; }
  .hero-content { padding: 4rem 0; }
  .hero h1 { font-size: 2.4rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .video-frame iframe { min-height: 280px; }
}
