:root {
  --orange: #f47c20;
  --green: #9ac93c;
  --dark: #262626;
  --dark-2: #1a1a1a;
  --light: #f7f6f2;
  --text: #f2f1ec;
  --muted: #d0cec7;
  --card: rgba(33, 33, 33, 0.78);
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #181818 0%, #20211d 45%, #151515 100%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

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

.bg-glow {
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  z-index: -1;
}
.glow-1 { background: var(--orange); top: 10%; left: -100px; }
.glow-2 { background: var(--green); bottom: 8%; right: -100px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12,12,12,.52);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.18);
}
.brand strong {
  display: block;
  font-size: 1.1rem;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  margin-top: 2px;
}
.nav {
  display: flex;
  gap: 22px;
}
.nav a {
  color: #f5f5f5;
  font-weight: 600;
  font-size: .95rem;
  opacity: .92;
}
.nav a:hover { color: var(--green); }
.lang-toggle {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--orange), #ff9f48);
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,10,10,.84) 0%, rgba(10,10,10,.54) 42%, rgba(10,10,10,.58) 100%),
    linear-gradient(180deg, rgba(154,201,60,.16), rgba(244,124,32,.1));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 0 90px;
}
.eyebrow, .section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: .95;
  margin: 18px 0;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.32rem);
  line-height: 1.7;
  color: #f3f0ea;
  max-width: 700px;
}
.hero-actions, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9f48);
  color: #fff;
  box-shadow: 0 20px 40px rgba(244,124,32,.26);
}
.btn-secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-badges span {
  background: rgba(0,0,0,.36);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
}

.section { padding: 88px 0; }
.alt-section { background: rgba(255,255,255,.03); }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.card, .stat-card, .experience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card {
  padding: 30px;
}
.card h2, .section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 16px 0 14px;
}
.card p, .section-head p, .experience-card p, .contact-list, .contact-form input, .contact-form textarea {
  color: var(--muted);
  line-height: 1.7;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 24px;
}
.stat-card strong {
  display: block;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 8px;
}
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.experience-card {
  overflow: hidden;
}
.experience-card img {
  width: 100%;
  aspect-ratio: 1 / .75;
  object-fit: cover;
}
.experience-card div { padding: 22px; }
.experience-card h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 20px;
  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-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.video-box {
  position: relative;
  padding-top: 56.25%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.social-links a {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.contact-list li { margin: 0 0 10px; }
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: 15px 18px;
  color: white;
}
.contact-form textarea { resize: vertical; }
.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 26px 0 50px;
  background: rgba(0,0,0,.22);
}
.footer-wrap {
  text-align: center;
  color: var(--muted);
}
.footer-wrap a { color: #fff; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
  z-index: 70;
}
.whatsapp-float svg {
  width: 31px;
  fill: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 100;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 22px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .two-col, .video-layout, .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 20px, 1120px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .hero-content { padding: 96px 0 72px; }
  .section { padding: 70px 0; }
  .card { padding: 22px; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-badges { gap: 10px; }
  .hero-badges span { font-size: .9rem; }
}
