:root {
  --bg: #08131b;
  --bg-soft: #102635;
  --surface: rgba(255,255,255,0.08);
  --surface-strong: rgba(255,255,255,0.12);
  --text: #f4f8fb;
  --muted: #c6d2db;
  --accent: #ff9a00;
  --accent-2: #35a6f4;
  --dark: #061018;
  --shadow: 0 24px 50px rgba(0,0,0,0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #061018 0%, #0b1822 50%, #0d1e2c 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 1000; background: #fff; color: #000; padding: .75rem 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(6,16,24,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 78px;
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand img {
  width: 56px; height: 56px; object-fit: cover; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}
.brand strong { display:block; font-size: 1.15rem; letter-spacing: .04em; }
.brand span { color: var(--muted); font-size: .9rem; }
.main-nav { display: flex; gap: 1.2rem; align-items: center; }
.main-nav a { color: var(--muted); font-weight: 500; }
.main-nav a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.lang-toggle {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff; border-radius: 999px; padding: .8rem 1rem; cursor: pointer;
}
.divider { opacity: .45; padding: 0 .25rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.3rem; border-radius: 999px; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff5d2c 100%);
  color: #071018; box-shadow: 0 16px 30px rgba(255, 117, 24, 0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-call { background: linear-gradient(135deg, #1db5ff 0%, #45e6ff 100%); color: #071018; }

.hero { position: relative; min-height: 92vh; display: flex; align-items: center; }
.hero-media, .hero-media img, .hero-overlay {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-media img { object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,11,18,0.9) 0%, rgba(3,11,18,0.6) 40%, rgba(3,11,18,0.35) 100%),
    linear-gradient(180deg, rgba(8,15,22,0.2) 0%, rgba(8,15,22,0.8) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 7rem 0 4rem; }
.hero-copy { max-width: 720px; }
.glass-card {
  background: rgba(7,18,28,0.56); border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow); backdrop-filter: blur(16px); border-radius: var(--radius-lg);
  padding: 2rem;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; font-weight: 700;
  color: #9ed9ff; margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); line-height: 1.04; margin: 0 0 1rem; }
.lead { font-size: 1.08rem; line-height: 1.7; color: var(--muted); max-width: 60ch; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin-top: 1.6rem;
}
.badge-item {
  border-radius: 20px; padding: 1rem; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.badge-item strong { display:block; margin-bottom: .35rem; }
.badge-item span { color: var(--muted); font-size: .9rem; }

.section { padding: 5.5rem 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.04) 100%); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 2.3rem; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.1; margin: 0 0 .9rem; }
.section-heading p:last-child { color: var(--muted); line-height: 1.7; }

.stats-grid, .services-grid, .contact-grid { display: grid; gap: 1.2rem; }
.stats-grid { grid-template-columns: repeat(3, 1fr); }
.stat-card, .service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 1.45rem; box-shadow: var(--shadow);
}
.stat-card h2, .service-card h3 { margin-top: 0; }
.stat-card p, .service-card p { color: var(--muted); line-height: 1.7; margin-bottom: 0; }
.service-icon { font-size: 1.8rem; margin-bottom: .7rem; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.5rem; align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .9rem; }
.feature-list li {
  background: rgba(255,255,255,0.05); border-radius: 18px; padding: 1rem 1.1rem; color: var(--muted);
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-gallery-card img { border-radius: 22px; width: 100%; max-height: 500px; object-fit: cover; }
.gallery-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  padding: 0; border: 0; cursor: pointer; background: transparent;
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); position: relative;
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  opacity: .65; transition: opacity .2s ease;
}
.gallery-item:hover::after { opacity: .2; }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.video-layout, .social-layout { align-items: start; }
.video-frame, .map-frame, .facebook-embed-wrap {
  border-radius: 26px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow);
}
.video-frame iframe { width: 100%; min-height: 360px; display: block; }
.facebook-embed-wrap iframe { width: 100%; max-width: 100%; display: block; }
.social-link-card {
  display: flex; align-items: center; gap: 1rem; width: fit-content; margin-top: 1.2rem;
  background: rgba(255,255,255,0.07); padding: .9rem 1rem; border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-link-card img { width: 60px; height: 60px; object-fit: cover; border-radius: 50%; }
.social-link-card span { display: block; color: var(--muted); margin-top: .2rem; }
.contact-grid { grid-template-columns: .95fr 1.05fr; }
.contact-list { display: grid; gap: .9rem; }
.contact-list a {
  display: grid; gap: .25rem; padding: 1rem; border-radius: 18px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
}
.contact-list span { color: var(--muted); }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .45rem; }
.contact-form span { color: var(--muted); font-size: .95rem; }
.contact-form input, .contact-form textarea {
  width: 100%; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06); color: #fff; padding: .95rem 1rem;
}
.form-note { color: var(--muted); font-size: .93rem; margin: 0; }
.map-frame iframe { width: 100%; min-height: 450px; display:block; }
.site-footer {
  padding: 1.4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.15);
}
.footer-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-wrap p { margin: 0; color: var(--muted); }
.footer-wrap a { color: #fff; }

.floating-whatsapp, .floating-call {
  position: fixed; right: 1rem; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; z-index: 90; box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}
.floating-whatsapp { bottom: 1rem; background: #25d366; color: white; }
.floating-whatsapp svg { width: 30px; fill: currentColor; }
.floating-call { bottom: 5.5rem; background: linear-gradient(135deg, #1db5ff 0%, #45e6ff 100%); color: #071018; font-size: 1.55rem; }

.lightbox {
  position: fixed; inset: 0; background: rgba(2,8,13,0.88); display: none;
  align-items: center; justify-content: center; padding: 2rem; z-index: 120;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 86vh; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; border: 0; background: rgba(255,255,255,0.12); color: white;
  width: 46px; height: 46px; border-radius: 50%; font-size: 2rem; cursor: pointer;
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .desktop-only { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 6rem; }
  .hero-copy { max-width: none; }
  .hero-badges, .stats-grid, .services-grid, .gallery-grid, .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .video-frame iframe, .facebook-embed-wrap iframe { min-height: 420px; }
}

@media (max-width: 640px) {
  .nav-wrap { min-height: 72px; }
  .brand strong { font-size: 1rem; }
  .brand span { font-size: .82rem; }
  .hero-copy, .contact-card, .form-card, .mini-gallery-card { padding: 1.2rem; }
  .section { padding: 4.2rem 0; }
  .hero h1 { font-size: 2.2rem; }
  .lead { font-size: 1rem; }
  .footer-wrap { justify-content: center; text-align: center; }
  .floating-whatsapp, .floating-call { width: 54px; height: 54px; right: .85rem; }
  .floating-call { bottom: 5rem; }
}
