:root{
  --bg:#0a0a0a;
  --bg2:#111;
  --card:#161616;
  --line: rgba(255,255,255,.10);
  --text:#f2f2f2;
  --muted:#b9b9b9;
  --yellow:#f5c400;
  --wa:#18c37d;
  --blue:#1f64ff;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --r:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 500px at 20% -10%, rgba(245,196,0,.14), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(31,100,255,.12), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto}

.nav{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,.68));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,196,0,.22);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand-badge{
  width:42px; height:42px;
  display:grid; place-items:center;
  background: radial-gradient(circle at 30% 30%, #ffd94a, var(--yellow));
  color:#121212;
  font-weight:900;
  border-radius:999px;
  box-shadow: 0 12px 28px rgba(245,196,0,.18);
}
.brand-text strong{display:block; letter-spacing:.3px}
.brand-text small{display:block; color:rgba(255,255,255,.72); margin-top:2px}

.menu{display:flex; gap:18px}
.menu a{
  padding:8px 10px;
  border-radius:12px;
  color:rgba(255,255,255,.90);
}
.menu a:hover{background:rgba(255,255,255,.06)}

.hero{padding:34px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}

h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.08;
}
.accent{color:var(--yellow)}
.lead{margin:0 0 16px; color:rgba(255,255,255,.78); max-width:58ch}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:800;
  transition: transform .08s ease, filter .15s ease, background .15s ease;
  box-shadow: 0 14px 35px rgba(0,0,0,.28);
}
.btn:active{transform: translateY(1px)}
.btn-wa{
  background: linear-gradient(180deg, rgba(24,195,125,.95), rgba(24,195,125,.72));
  border-color: rgba(24,195,125,.35);
}
.btn-wa:hover{filter:brightness(1.05)}
.btn-call{
  background: linear-gradient(180deg, rgba(31,100,255,.95), rgba(31,100,255,.72));
  border-color: rgba(31,100,255,.38);
}
.btn-call.yellow{
  background: linear-gradient(180deg, rgba(245,196,0,.98), rgba(245,196,0,.72));
  color:#121212;
  border-color: rgba(245,196,0,.45);
}

.badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color:rgba(255,255,255,.88);
}

.hero-media{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background:#0c0c0c;
}
.hero-media img{
  width:100%;
  height:380px;
  object-fit:cover;
  display:block;
  transform: scale(1.03);
}
.hero-glow{
  position:absolute; inset:0;
  background:
    radial-gradient(700px 300px at 70% 60%, rgba(245,196,0,.18), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.10));
  pointer-events:none;
}

.section{padding:30px 0 24px}
.section-dark{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section-title{
  text-align:center;
  font-size:28px;
  margin:0 0 16px;
  letter-spacing:.3px;
}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.card-media img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
}
.card-body{padding:14px 14px 16px}
.card-body h3{margin:0 0 6px}
.card-body p{margin:0; color:rgba(255,255,255,.74)}

.gallery{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
}
.gitem{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.gitem img{
  width:100%;
  height:150px;
  object-fit:cover;
  display:block;
  transition: transform .25s ease;
}
.gitem:hover img{transform: scale(1.06)}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.contact-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  padding:18px;
  background: rgba(255,255,255,.03);
}
.contact-card::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  pointer-events:none;
}
.contact-card > *{position:relative; z-index:1}

.bg-road{background-image: url("../img/hero.jpg"); background-size:cover; background-position:center;}
.bg-blur{background-image: url("../img/arac-1.jpg"); background-size:cover; background-position:center;}

.phone{
  font-size:26px;
  font-weight:900;
  margin:10px 0 14px;
}
.muted{color:rgba(255,255,255,.75); margin:8px 0 14px}

.footer{
  text-align:center;
  margin-top:20px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.70);
  font-size:13px;
}

.sticky{
  position:fixed;
  left:50%;
  transform: translateX(-50%);
  bottom:14px;
  width:min(520px, 92%);
  display:flex;
  gap:10px;
  z-index:60;
}
.sticky-btn{
  flex:1;
  text-align:center;
  font-weight:900;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.sticky-btn.wa{
  background: linear-gradient(180deg, rgba(24,195,125,.92), rgba(24,195,125,.72));
}
.sticky-btn.call{
  background: linear-gradient(180deg, rgba(31,100,255,.92), rgba(31,100,255,.72));
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .hero-media img{height:320px}
  .cards3{grid-template-columns:1fr}
  .gallery{grid-template-columns: repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
  .menu{display:none}
}