:root {
  --primary: #0c57b3;
  --primary-dark: #083c83;
  --accent: #f57c2d;
  --accent-soft: #ffd86b;
  --gold: #c7ad48;
  --aqua: #4cc8d7;
  --text: #17324f;
  --muted: #607086;
  --bg: #f6f9fe;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(10, 44, 94, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12,87,179,.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand strong, h1, h2, h3, .btn, .eyebrow, .section-tag {
  font-family: 'Baloo 2', cursive;
}
.brand strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  font-weight: 700;
}
.main-nav a:hover { color: var(--primary); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle, .menu-toggle {
  border: 0;
  background: #eff5ff;
  color: var(--primary-dark);
  border-radius: 999px;
}
.lang-toggle {
  min-width: 52px;
  height: 44px;
  font-weight: 800;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 10px;
}

.hero {
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 82px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}
.eyebrow, .section-tag {
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .95rem;
}
.eyebrow { color: var(--accent-soft); }
.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: .95;
  margin: 8px 0 16px;
}
.hero-text {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9d4e);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(245,124,45,.25);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-points li {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 10px 16px;
  border-radius: 999px;
}
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  padding: 26px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.hero-logo {
  width: 130px;
  margin: 0 auto 18px;
}
.hero-card-content {
  text-align: center;
}
.hero-card-content h2 {
  font-size: 2rem;
  margin: 0 0 4px;
}
.contact-mini {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.contact-mini span {
  background: rgba(255,255,255,.14);
  padding: 12px 14px;
  border-radius: 18px;
}

.section { padding: 84px 0; }
.section-soft { background: var(--bg); }
.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-heading h2, .contact-info h2, .video-grid h2, .social-grid h2, .about-grid h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  margin: 6px 0 14px;
  color: var(--primary-dark);
}
.section-heading p, .about-grid p, .video-grid p, .social-grid p, .contact-info p {
  color: var(--muted);
  line-height: 1.8;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 480px;
  object-fit: cover;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.stats article, .info-card, .contact-form, .contact-info, .social-link-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stats article {
  padding: 18px;
}
.stats strong {
  display: block;
  font-size: 1.45rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.stats span { color: var(--muted); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.info-card {
  padding: 28px;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--aqua));
  color: var(--white);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.info-card h3 {
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: var(--primary-dark);
}
.info-card p { color: var(--muted); line-height: 1.7; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.video-grid, .social-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.video-frame, .facebook-embed {
  background: var(--white);
  padding: 14px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.video-frame iframe, .facebook-embed iframe, .map-section iframe {
  width: 100%;
  border: 0;
  border-radius: 20px;
}
.video-frame iframe { aspect-ratio: 16/9; }
.facebook-embed iframe { min-height: 620px; }
.social-link-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  margin-top: 18px;
}
.social-link-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.social-link-card strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary-dark);
}
.social-link-card span { color: var(--muted); }

.contact-info, .contact-form {
  padding: 28px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  padding: 16px 18px;
  border-radius: 20px;
  background: #f7fbff;
}
.contact-list strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.contact-list a, .contact-list span {
  color: var(--muted);
  word-break: break-word;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: block;
  margin-bottom: 14px;
}
.contact-form span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(12,87,179,.14);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(12,87,179,.08);
}
.form-note { color: var(--muted); margin-top: 14px; }

.map-section iframe {
  min-height: 420px;
  display: block;
}
.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 24px 0;
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.site-footer a { color: var(--accent-soft); }

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 12px;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(0,0,0,.16);
  display: grid;
  place-items: center;
  color: var(--white);
}
.float-btn svg { width: 28px; height: 28px; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--accent); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 20, 43, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 80;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(950px, 100%);
  max-height: 88vh;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.14);
  color: var(--white);
  font-size: 1.8rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .cards-grid,
  .video-grid,
  .social-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid,
  .grid-2,
  .video-grid,
  .social-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { max-width: 540px; }
  .stats { grid-template-columns: 1fr; }
  .main-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .25s ease;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 720px) {
  .hero { padding-top: 60px; }
  .cards-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .section { padding: 68px 0; }
  .brand strong { font-size: 1.05rem; }
  .brand img { width: 48px; height: 48px; }
  .hero-actions, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .floating-actions { right: 12px; bottom: 14px; }
  .float-btn { width: 54px; height: 54px; }
  .facebook-embed iframe { min-height: 520px; }
}
