:root{
  --bg:#0b2b20;
  --bg2:#0f3a2c;
  --card:#0f3d2e;
  --text:#f5f7f6;
  --muted:rgba(245,247,246,.75);
  --gold:#c9a24d;
  --gold2:#a8893f;
  --border:rgba(255,255,255,.12);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(1200px 800px at 20% 0%, #134e3a 0%, var(--bg) 55%, #5A694E 100%);
  color:var(--text);
  font-family: Cairo, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}
[dir="ltr"] body{font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;}
a{color:inherit}
.container{width:min(1120px, 92%); margin-inline:auto}

.topbar{background:rgba(0,0,0,.25); border-bottom:1px solid var(--border)}
.topbar__inner{display:flex; justify-content:space-between; gap:14px; padding:10px 0; font-size:14px}
.topbar__left,.topbar__right{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.topbar__link{opacity:.9; text-decoration:none}
.sep{opacity:.5}
.lang{opacity:.85; text-decoration:none; font-weight:700; letter-spacing:.5px}
.lang:hover{opacity:1; color:var(--gold)}

.header{position:sticky; top:0; z-index:20; background:rgba(11,43,32,.72); backdrop-filter: blur(10px); border-bottom:1px solid var(--border)}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 0}
.brand__logo{height:44px; width:auto; display:block}
.nav{display:flex; gap:16px; align-items:center}
.nav a{opacity:.9; text-decoration:none; font-weight:600}
.nav a:hover{color:var(--gold)}

.burger{display:none; border:1px solid var(--border); background:transparent; border-radius:12px; padding:10px; cursor:pointer}
.burger span{display:block; width:22px; height:2px; background:var(--text); margin:5px 0; opacity:.9}
.mobile-nav{display:none; border-top:1px solid var(--border); padding:10px 0}
.mobile-nav a{display:block; padding:10px 0; text-decoration:none; opacity:.9}
.mobile-nav a:hover{color:var(--gold)}

.hero{position:relative; min-height:74vh; display:flex; align-items:center; background-size:cover; background-position:center}
.hero__overlay{position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.65) 100%)}
.hero__content{position:relative; padding:72px 0}
.hero h1{font-size:clamp(28px, 4vw, 48px); line-height:1.2; margin:0 0 12px}
.hero p{max-width:62ch; color:var(--muted); margin:0 0 22px; font-size:18px}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 16px; border-radius:14px; text-decoration:none; font-weight:700; border:1px solid var(--border)}
.btn--gold{background:linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%); color:#0b2b20; border-color: transparent}
.btn--ghost{background:transparent; color:var(--text)}
.btn:hover{transform:translateY(-1px)}
.hero__badges{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}
.badge{border:1px solid var(--border); padding:8px 10px; border-radius:999px; font-weight:700; background:rgba(255,255,255,.06)}

.section{padding:70px 0}
.section--alt{background:rgba(255,255,255,.03); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section__head{display:flex; justify-content:space-between; align-items:flex-end; gap:12px; margin-bottom:22px}
.section__head h2{margin:0}

h2{font-size:clamp(22px, 2.4vw, 34px)}
.lead{font-size:18px; color:var(--muted)}
.muted{color:var(--muted)}
.small{font-size:13px}

.split{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:center}
.stack{display:grid; gap:14px}

.grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
.card{background:rgba(15,61,46,.55); border:1px solid var(--border); border-radius:18px; overflow:hidden; box-shadow: var(--shadow)}
.card__img img,.media img{width:100%; height:180px; object-fit:cover; display:block}
.card__body{padding:14px}
.card__body h3{margin:0 0 6px; font-size:18px}

.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.chip{border:1px solid var(--border); background:rgba(201,162,77,.10); color:var(--text); padding:8px 10px; border-radius:999px; font-weight:700}

.list{margin:0; padding-inline-start:18px}
.list li{margin:10px 0; color:var(--muted)}

.why{display:grid; grid-template-columns:repeat(2, 1fr); gap:14px}
.why__item{display:flex; gap:12px; align-items:flex-start; padding:14px; border:1px solid var(--border); border-radius:16px; background:rgba(255,255,255,.04)}
.why__icon{color:var(--gold); font-weight:900}

.contact{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.contact__card{padding:16px}
.form label{display:block; margin-bottom:12px}
.form span{display:block; margin-bottom:6px; color:var(--muted); font-weight:700}
input,textarea{width:100%; padding:12px; border-radius:12px; border:1px solid var(--border); background:rgba(0,0,0,.22); color:var(--text); outline:none}
input:focus,textarea:focus{border-color:rgba(201,162,77,.6)}
.divider{height:1px; background:var(--border); margin:14px 0}
.map{margin-top:16px; overflow:hidden}

.footer{padding:40px 0; background:rgba(0,0,0,.25); border-top:1px solid var(--border)}
.footer__grid{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:16px}
.footer__logo{height:46px; width:auto}
.footer__bottom{margin-top:18px; padding-top:14px; border-top:1px solid var(--border)}

.whatsapp{position:fixed; bottom:18px; right:18px; width:54px; height:54px; display:grid; place-items:center; border-radius:16px; background:linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color:#0b2b20; text-decoration:none; font-size:24px; box-shadow:var(--shadow); z-index:50}

@media (max-width: 980px){
  .split{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(2, 1fr)}
  .why{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .section__head{flex-direction:column; align-items:flex-start}
}
@media (max-width: 720px){
  .nav{display:none}
  .burger{display:block}
  .mobile-nav{display:block}
  .grid{grid-template-columns:1fr}
  .hero{min-height:68vh}
}
