:root {
  --gold: #c9a84c;
  --gold-2: #e8cf7a;
  --gold-3: #8c6d22;
  --black: #080808;
  --black-2: #101010;
  --black-3: #181818;
  --text: #f7f3ea;
  --muted: #b9b4a9;
  --green: #25d366;
  --shadow: 0 30px 80px rgba(0, 0, 0, .45);
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: #080808; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 112px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-2);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800; letter-spacing: 3px; text-transform: uppercase; font-size: 13px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 7vw, 94px);
  line-height: .92; letter-spacing: .8px; margin-top: 16px;
}
.section-title span, .gold { color: var(--gold); }
.section-lead { max-width: 760px; color: var(--muted); font-size: 18px; margin-top: 22px; }
.section-head { display: flex; justify-content: space-between; gap: 36px; align-items: end; margin-bottom: 46px; }
.section-head .section-lead { max-width: 460px; margin-top: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid transparent; cursor: pointer; min-height: 54px;
  padding: 15px 24px; border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080808; box-shadow: 0 16px 34px rgba(201,168,76,.24); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(201,168,76,.34); }
.btn-ghost { color: var(--text); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.btn-ghost:hover { color: var(--gold-2); border-color: rgba(201,168,76,.5); transform: translateY(-3px); }

.top-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  height: 38px; background: linear-gradient(90deg, #080808, #171103, #080808);
  border-bottom: 1px solid rgba(201,168,76,.18); color: var(--muted); font-size: 13px;
}
.top-strip-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.top-strip strong { color: var(--gold-2); font-weight: 700; }
.top-links { display: flex; gap: 18px; align-items: center; }
.top-links a:hover { color: var(--gold-2); }

.navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 1999;
  height: 86px; transition: .3s ease;
}
.navbar.scrolled {
  background: rgba(8,8,8,.86); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,.16); box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 180px; }
.brand img { width: 150px; height: 58px; object-fit: contain; filter: drop-shadow(0 16px 26px rgba(0,0,0,.35)); }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a {
  font-family: "Barlow Condensed", sans-serif; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; font-size: 14px; color: rgba(247,243,234,.78); position: relative;
}
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.desktop-nav a:hover { color: var(--gold-2); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.burger { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.04); color: var(--gold-2); cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: currentColor; margin: 5px auto; transition: .25s ease; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 124px; left: 0; right: 0; bottom: 0; z-index: 1998;
  background: rgba(8,8,8,.96); backdrop-filter: blur(20px);
  transform: translateX(110%); transition: transform .35s ease; padding: 26px 20px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: var(--text); font-family: "Barlow Condensed", sans-serif; font-size: 23px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }

.hero {
  min-height: 100svh; position: relative; display: grid; place-items: center;
  padding: 168px 0 70px; overflow: hidden; isolation: isolate;
}
.hero-slider { position: absolute; inset: 0; z-index: -4; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; transform: scale(1.02); }
.hero-slide.active { opacity: 1; animation: heroZoom 10s linear forwards; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.08); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  background: radial-gradient(circle at 20% 22%, rgba(201,168,76,.26), transparent 32%),
    linear-gradient(90deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.72) 42%, rgba(8,8,8,.3) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(8,8,8,.35) 36%, rgba(8,8,8,.2) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 52px; }
.hero-copy { max-width: 760px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px;
  border: 1px solid rgba(201,168,76,.35); border-radius: 999px;
  background: rgba(201,168,76,.09); color: var(--gold-2);
  font-family: "Barlow Condensed", sans-serif; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: 13px;
}
.hero h1 { font-family: "Bebas Neue", sans-serif; font-size: clamp(64px, 11vw, 144px); line-height: .86; letter-spacing: 1px; margin-top: 22px; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(232,207,122,.95); text-stroke: 1.5px rgba(232,207,122,.95); }
.hero p { color: rgba(247,243,234,.82); max-width: 620px; margin-top: 22px; font-size: clamp(17px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-tags span { padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: 14px; }
.hero-card { align-self: stretch; min-height: 520px; border-radius: var(--radius); padding: 22px; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.035)); box-shadow: var(--shadow); backdrop-filter: blur(18px); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; right: -90px; top: -90px; background: rgba(201,168,76,.16); filter: blur(4px); }
.hero-card-img { height: 360px; border-radius: 22px; overflow: hidden; position: relative; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.64), transparent 55%); }
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.mini-stat { padding: 18px; border-radius: 20px; background: rgba(8,8,8,.58); border: 1px solid rgba(255,255,255,.08); }
.mini-stat strong { display: block; font-family: "Bebas Neue", sans-serif; font-size: 44px; color: var(--gold-2); line-height: 1; }
.mini-stat span { color: var(--muted); font-size: 14px; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(247,243,234,.55); font-family: "Barlow Condensed", sans-serif; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; }
.scroll-cue i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); display: block; animation: pulse 1.7s infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scaleY(.75); } }

.quick-bar { margin-top: -42px; position: relative; z-index: 3; padding: 0 0 70px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 26px; overflow: hidden; border: 1px solid rgba(201,168,76,.18); box-shadow: var(--shadow); }
.quick-item { min-height: 118px; padding: 26px; background: linear-gradient(180deg, #161616, #0e0e0e); border-right: 1px solid rgba(255,255,255,.06); }
.quick-item:last-child { border-right: 0; }
.quick-item b { display: block; color: var(--gold-2); font-family: "Bebas Neue", sans-serif; font-size: 42px; line-height: 1; }
.quick-item span { color: var(--muted); font-size: 15px; }

.about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.media-stack { position: relative; min-height: 640px; }
.media-main { position: absolute; inset: 0 70px 86px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.08); }
.media-main img, .media-small img { width: 100%; height: 100%; object-fit: cover; }
.media-small { position: absolute; right: 0; bottom: 0; width: 56%; height: 290px; border-radius: 24px; overflow: hidden; border: 8px solid var(--black); box-shadow: var(--shadow); }
.experience-badge { position: absolute; left: 24px; bottom: 36px; width: 178px; height: 178px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080808; display: grid; place-items: center; text-align: center; box-shadow: 0 24px 48px rgba(201,168,76,.26); }
.experience-badge strong { display: block; font-family: "Bebas Neue", sans-serif; font-size: 60px; line-height: .85; }
.experience-badge span { display: block; font-family: "Barlow Condensed", sans-serif; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; line-height: 1.1; }
.about-copy p { color: var(--muted); font-size: 17px; margin-top: 18px; }
.check-list { display: grid; gap: 14px; margin-top: 30px; }
.check { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: 18px; background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.07); }
.check i { width: 34px; height: 34px; border-radius: 50%; background: rgba(201,168,76,.15); color: var(--gold-2); display: grid; place-items: center; flex: 0 0 auto; font-style: normal; font-weight: 900; }
.check h3 { font-family: "Barlow Condensed", sans-serif; font-size: 19px; letter-spacing: 1px; text-transform: uppercase; }
.check small { color: var(--muted); display: block; margin-top: 2px; }

.services { background: linear-gradient(180deg, #101010, #080808); overflow: hidden; }
.services::before { content: "HİZMETLER"; position: absolute; top: 20px; right: -30px; color: rgba(255,255,255,.025); font-family: "Bebas Neue", sans-serif; font-size: 210px; line-height: 1; pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 410px; padding: 28px; border-radius: 26px; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; transition: .35s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,.36); box-shadow: 0 26px 70px rgba(0,0,0,.32); }
.service-card::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; right: -72px; bottom: -72px; background: rgba(201,168,76,.14); transition: .35s ease; }
.service-card:hover::after { transform: scale(1.8); }
.service-top { display: flex; justify-content: space-between; align-items: start; gap: 10px; }
.service-icon { width: 62px; height: 62px; border-radius: 20px; background: rgba(201,168,76,.13); border: 1px solid rgba(201,168,76,.24); display: grid; place-items: center; font-size: 28px; }
.service-no { font-family: "Bebas Neue", sans-serif; font-size: 54px; line-height: 1; color: rgba(232,207,122,.18); }
.service-card h3 { font-family: "Barlow Condensed", sans-serif; font-size: 28px; text-transform: uppercase; letter-spacing: 1px; line-height: 1.05; margin-top: 34px; }
.service-card p { color: var(--muted); margin-top: 14px; position: relative; z-index: 1; }
.service-card ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; position: relative; z-index: 1; }
.service-card li { font-size: 13px; color: var(--gold-2); border: 1px solid rgba(201,168,76,.25); border-radius: 999px; padding: 6px 10px; background: rgba(8,8,8,.28); }

.fleet { background: var(--black); }
.fleet-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fleet-card { border-radius: 30px; overflow: hidden; background: var(--black-2); border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.fleet-img { height: 340px; position: relative; overflow: hidden; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: .55s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-tag { position: absolute; left: 22px; bottom: 22px; background: rgba(8,8,8,.72); border: 1px solid rgba(201,168,76,.28); backdrop-filter: blur(12px); color: var(--gold-2); padding: 10px 14px; border-radius: 999px; font-family: "Barlow Condensed", sans-serif; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.fleet-body { padding: 30px; }
.fleet-body h3 { font-family: "Bebas Neue", sans-serif; font-size: 48px; line-height: .9; }
.fleet-body p { color: var(--muted); margin-top: 15px; }
.fleet-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.spec { padding: 14px; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06); }
.spec b { display: block; color: var(--gold-2); font-family: "Barlow Condensed", sans-serif; letter-spacing: 1px; text-transform: uppercase; }
.spec span { color: var(--muted); font-size: 14px; }

.process { background: #0f0f0f; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process-card { counter-increment: step; padding: 28px; border-radius: 24px; background: var(--black); border: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; }
.process-card::before { content: "0" counter(step); position: absolute; right: 20px; top: 10px; font-family: "Bebas Neue", sans-serif; font-size: 76px; color: rgba(201,168,76,.11); }
.process-card i { width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center; background: rgba(201,168,76,.13); color: var(--gold-2); font-style: normal; font-size: 24px; margin-bottom: 20px; }
.process-card h3 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 22px; }
.process-card p { color: var(--muted); margin-top: 10px; font-size: 15px; }

.gallery { background: var(--black); }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.gallery-tabs button { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--muted); border-radius: 999px; padding: 10px 15px; cursor: pointer; font-family: "Barlow Condensed", sans-serif; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; transition: .25s ease; }
.gallery-tabs button.active, .gallery-tabs button:hover { background: var(--gold); color: #080808; border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 180px; gap: 10px; }
.gallery-item { grid-column: span 3; border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; background: var(--black-2); border: 1px solid rgba(255,255,255,.07); }
.gallery-item.wide { grid-column: span 6; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .55s ease; }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.08) contrast(1.04); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 58%); opacity: .82; transition: .3s ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; transform: translateY(6px); transition: .3s ease; }
.gallery-item:hover figcaption { transform: translateY(0); }
.gallery-item b { display: block; font-family: "Barlow Condensed", sans-serif; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-2); }
.gallery-item span { display: block; color: rgba(255,255,255,.78); font-size: 13px; }
.gallery-item.hide { display: none; }

.areas { background: linear-gradient(180deg, #101010, #080808); overflow: hidden; }
.areas-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 50px; align-items: start; }
.districts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }


.cta-band { padding: 74px 0; background: linear-gradient(135deg, #b89032, #f0dc8a); color: #080808; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { font-family: "Bebas Neue", sans-serif; font-size: clamp(44px, 6vw, 80px); line-height: .9; }
.cta-band p { color: rgba(0,0,0,.72); font-size: 18px; max-width: 640px; margin-top: 12px; }
.cta-band .btn { background: #080808; color: var(--gold-2); box-shadow: 0 18px 36px rgba(0,0,0,.25); }

.faq { background: var(--black); }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; }
.accordion { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: rgba(255,255,255,.04); overflow: hidden; }
.faq-q { width: 100%; background: transparent; color: var(--text); border: 0; padding: 22px; text-align: left; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; font-size: 20px; }
.faq-q span:last-child { color: var(--gold-2); font-size: 26px; line-height: 1; transition: .25s ease; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--muted); padding: 0 22px 22px; }
.faq-item.open .faq-a { max-height: 190px; }
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }

.contact { background: linear-gradient(180deg, #101010, #080808); }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 42px; align-items: start; }
.contact-card { padding: 30px; border-radius: 28px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.contact-list { display: grid; gap: 14px; margin-top: 28px; }
.contact-line { display: flex; gap: 14px; align-items: center; padding: 18px; border-radius: 18px; background: rgba(8,8,8,.5); border: 1px solid rgba(255,255,255,.06); }
.contact-line i { width: 46px; height: 46px; border-radius: 16px; background: rgba(201,168,76,.14); color: var(--gold-2); display: grid; place-items: center; font-style: normal; }
.contact-line small { display: block; color: var(--muted); font-family: "Barlow Condensed", sans-serif; letter-spacing: 1.5px; text-transform: uppercase; }
.contact-line b { color: var(--text); }
.quote-form { padding: 34px; border-radius: 30px; background: #f8f5ec; color: #151515; box-shadow: var(--shadow); }
.quote-form h3 { font-family: "Bebas Neue", sans-serif; font-size: 48px; line-height: .95; }
.quote-form p { color: #5e5a50; margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: "Barlow Condensed", sans-serif; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #4a422b; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #ded7c5; border-radius: 15px; padding: 14px 15px; background: #fff; color: #181818; outline: 0; transition: .2s ease; }
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #b89032; box-shadow: 0 0 0 4px rgba(201,168,76,.16); }
.quote-form .btn { width: 100%; margin-top: 18px; background: #111; color: var(--gold-2); }
.form-note { font-size: 13px; color: #736b58; margin-top: 12px; }

footer { background: #060606; border-top: 1px solid rgba(201,168,76,.16); padding: 58px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.footer-logo { width: 170px; height: 66px; object-fit: contain; margin-bottom: 18px; }
.footer-brand p, footer a, .footer-bottom { color: var(--muted); }
footer h4 { font-family: "Barlow Condensed", sans-serif; color: var(--gold-2); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
footer a { display: block; margin-bottom: 10px; }
footer a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.08); margin-top: 42px; padding-top: 24px; font-size: 14px; }

.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 3000; display: flex; align-items: center; gap: 10px; background: var(--green); color: #fff; border-radius: 999px; padding: 12px 16px 12px 12px; box-shadow: 0 18px 44px rgba(37,211,102,.38); font-weight: 800; animation: waPulse 2.6s infinite; }
.wa-float i { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-style: normal; font-size: 24px; }
@keyframes waPulse { 50% { box-shadow: 0 18px 44px rgba(37,211,102,.48), 0 0 0 12px rgba(37,211,102,.08); } }
.call-float { position: fixed; left: 24px; bottom: 24px; z-index: 3000; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080808; display: grid; place-items: center; box-shadow: 0 18px 40px rgba(201,168,76,.25); font-size: 23px; }

.lightbox { position: fixed; inset: 0; z-index: 5000; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.92); padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 18px; box-shadow: var(--shadow); }
.lb-btn { position: absolute; border: 1px solid rgba(201,168,76,.3); background: rgba(8,8,8,.72); color: var(--gold-2); border-radius: 16px; cursor: pointer; width: 52px; height: 52px; font-size: 26px; }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1100px) {
  .desktop-nav, .nav-call { display: none; }
  .burger { display: block; }
  .hero-grid, .about-grid, .areas-layout, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; }
  .quick-grid, .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-wrap { grid-template-columns: 1fr; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .top-strip { display: none; }
  .navbar { top: 0; height: 78px; background: rgba(8,8,8,.82); backdrop-filter: blur(16px); }
  .mobile-menu { top: 78px; }
  .brand { min-width: auto; }
  .brand img { width: 128px; height: 52px; }
  .nav-quote { display: none; }
  .hero { padding-top: 110px; }
  .hero-card { display: none; }
  .hero h1 { font-size: clamp(62px, 18vw, 90px); }
  .hero-actions .btn { width: 100%; }
  .hero-tags span { font-size: 13px; }
  .section-head, .cta-grid { display: block; }
  .quick-grid, .services-grid, .process-grid, .districts, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .quick-item { min-height: 100px; }
  .section-pad { padding: 80px 0; }
  .media-stack { min-height: 470px; }
  .media-main { inset: 0 0 100px 0; }
  .media-small { width: 72%; height: 210px; }
  .experience-badge { width: 136px; height: 136px; left: 12px; bottom: 20px; }
  .experience-badge strong { font-size: 46px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item, .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .wa-float span { display: none; }
  .wa-float { padding: 10px; right: 18px; bottom: 18px; }
  .call-float { left: 18px; bottom: 18px; }
  .lb-prev, .lb-next { display: none; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 8px; }
}

/* THEME SUPPORT */
html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
  --black: #f6f1e6;
  --black-2: #fffaf0;
  --black-3: #f0e6d2;
  --text: #16130c;
  --muted: #665f50;
  --shadow: 0 26px 70px rgba(38, 30, 10, .14);
}

.theme-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, .32);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  color: var(--gold-2);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, .6);
  box-shadow: 0 14px 30px rgba(201, 168, 76, .18);
}
.theme-icon { line-height: 1; font-size: 18px; }
.mobile-theme-toggle {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 16px 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

html[data-theme="light"] body { background: #f6f1e6; color: var(--text); }
html[data-theme="light"] .top-strip {
  background: linear-gradient(90deg, #fff8e8, #f0dfac, #fff8e8);
  border-bottom-color: rgba(140, 109, 34, .22);
  color: #4d4639;
}
html[data-theme="light"] .top-strip strong,
html[data-theme="light"] .top-links a:hover { color: var(--gold-3); }
html[data-theme="light"] .navbar.scrolled,
html[data-theme="light"] .navbar {
  background: rgba(255, 250, 240, .86);
  border-bottom-color: rgba(140, 109, 34, .16);
  box-shadow: 0 16px 42px rgba(38, 30, 10, .1);
}
html[data-theme="light"] .desktop-nav a { color: rgba(22, 19, 12, .78); }
html[data-theme="light"] .desktop-nav a:hover { color: var(--gold-3); }
html[data-theme="light"] .btn-ghost {
  color: #1b1710;
  border-color: rgba(22, 19, 12, .14);
  background: rgba(255, 255, 255, .72);
}
html[data-theme="light"] .btn-ghost:hover { color: var(--gold-3); border-color: rgba(140, 109, 34, .45); }
html[data-theme="light"] .burger,
html[data-theme="light"] .theme-toggle {
  background: rgba(255,255,255,.8);
  border-color: rgba(140,109,34,.25);
  color: var(--gold-3);
}
html[data-theme="light"] .mobile-menu {
  background: rgba(255, 250, 240, .97);
}
html[data-theme="light"] .mobile-menu a {
  color: #18140d;
  border-bottom-color: rgba(22, 19, 12, .08);
}
html[data-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 20% 22%, rgba(201,168,76,.25), transparent 32%),
    linear-gradient(90deg, rgba(246,241,230,.94) 0%, rgba(246,241,230,.78) 42%, rgba(246,241,230,.35) 100%),
    linear-gradient(0deg, #f6f1e6 0%, rgba(246,241,230,.40) 36%, rgba(246,241,230,.20) 100%);
}
html[data-theme="light"] .hero::after {
  background-image: linear-gradient(rgba(22,19,12,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(22,19,12,.045) 1px, transparent 1px);
}
html[data-theme="light"] .hero h1,
html[data-theme="light"] .section-title,
html[data-theme="light"] .fleet-body h3,
html[data-theme="light"] .quote-form h3,
html[data-theme="light"] .cta-band h2 { color: #17130c; }
html[data-theme="light"] .hero p { color: rgba(22, 19, 12, .82); }
html[data-theme="light"] .hero h1 span { -webkit-text-stroke-color: rgba(140,109,34,.95); text-stroke-color: rgba(140,109,34,.95); }
html[data-theme="light"] .hero-kicker,
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .mini-stat strong,
html[data-theme="light"] .quick-item b,
html[data-theme="light"] .spec b { color: var(--gold-3); }
html[data-theme="light"] .hero-tags span,
html[data-theme="light"] .hero-card,
html[data-theme="light"] .check,
html[data-theme="light"] .service-card,
html[data-theme="light"] .fleet-card,
html[data-theme="light"] .process-card,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .contact-card {
  background: rgba(255,255,255,.68);
  border-color: rgba(22, 19, 12, .08);
}
html[data-theme="light"] .hero-card,
html[data-theme="light"] .fleet-card,
html[data-theme="light"] .contact-card { box-shadow: var(--shadow); }
html[data-theme="light"] .mini-stat,
html[data-theme="light"] .quick-item,
html[data-theme="light"] .spec,
html[data-theme="light"] .contact-line {
  background: rgba(255, 255, 255, .72);
  border-color: rgba(22,19,12,.08);
}
html[data-theme="light"] .quick-grid { border-color: rgba(140,109,34,.18); }
html[data-theme="light"] .about,
html[data-theme="light"] .fleet,
html[data-theme="light"] .gallery,
html[data-theme="light"] .faq { background: #f6f1e6; }
html[data-theme="light"] .services,
html[data-theme="light"] .areas,
html[data-theme="light"] .contact,
html[data-theme="light"] .process {
  background: linear-gradient(180deg, #fffaf0, #f6f1e6);
}
html[data-theme="light"] .service-card p,
html[data-theme="light"] .fleet-body p,
html[data-theme="light"] .process-card p,
html[data-theme="light"] .faq-a p,
html[data-theme="light"] .about-copy p,
html[data-theme="light"] .section-lead,
html[data-theme="light"] .quick-item span,
html[data-theme="light"] .mini-stat span,
html[data-theme="light"] .spec span,
html[data-theme="light"] .districts div,
html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer-col a,
html[data-theme="light"] .footer-bottom { color: var(--muted); }
html[data-theme="light"] .check small { color: var(--muted); }
html[data-theme="light"] .check h3,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .process-card h3,
html[data-theme="light"] .faq-q,
html[data-theme="light"] .contact-line b { color: #17130c; }
html[data-theme="light"] .media-small { border-color: #f6f1e6; }
html[data-theme="light"] .gallery-tabs button {
  color: #5d5546;
  background: rgba(255,255,255,.72);
  border-color: rgba(22,19,12,.09);
}
html[data-theme="light"] .gallery-tabs button.active,
html[data-theme="light"] .gallery-tabs button:hover { background: var(--gold); color: #080808; }
html[data-theme="light"] .areas .districts div,
html[data-theme="light"] .districts div,
html[data-theme="light"] .districts a {
  background: rgba(255,255,255,.66);
  border-color: rgba(22,19,12,.08);
}
html[data-theme="light"] .quote-form {
  background: #15120c;
  color: #f7f3ea;
}
html[data-theme="light"] .quote-form h3 { color: #f7f3ea; }
html[data-theme="light"] .quote-form p,
html[data-theme="light"] .form-note { color: #b9b4a9; }
html[data-theme="light"] .field label { color: var(--gold-2); }
html[data-theme="light"] .field input,
html[data-theme="light"] .field select,
html[data-theme="light"] .field textarea {
  background: #fff;
  color: #15120c;
}
html[data-theme="light"] footer {
  background: #fffaf0;
  border-top-color: rgba(140,109,34,.18);
}
html[data-theme="light"] .footer-bottom { border-top-color: rgba(22,19,12,.1); }
html[data-theme="light"] .wa-float { color: #fff; }

@media (max-width: 720px) {
  html[data-theme="light"] .navbar { background: rgba(255,250,240,.9); }
}


/* PRO ENHANCEMENTS */
.wizard-section { background: radial-gradient(circle at 85% 20%, rgba(201,168,76,.13), transparent 32%), linear-gradient(180deg, var(--black), var(--black-2)); }
.wizard-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: stretch; }
.wizard-card, .wizard-result, .compare-card, .usage-card { border: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)); border-radius: 28px; box-shadow: var(--shadow); }
.wizard-card { padding: 28px; display: grid; gap: 18px; }
.wizard-step { display: grid; gap: 8px; }
.wizard-step label { color: var(--gold-2); font-family: "Barlow Condensed", sans-serif; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; }
.wizard-step input, .wizard-step select { width: 100%; border: 1px solid rgba(255,255,255,.13); background: rgba(8,8,8,.55); color: var(--text); border-radius: 16px; padding: 15px 16px; outline: none; }
.wizard-step input:focus, .wizard-step select:focus { border-color: rgba(201,168,76,.62); box-shadow: 0 0 0 4px rgba(201,168,76,.12); }
.wizard-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.wizard-result { margin-top: 28px; padding: 22px; }
.wizard-result b { display: block; font-family: "Bebas Neue", sans-serif; font-size: 42px; line-height: 1; color: var(--gold-2); }
.wizard-result span { display: block; color: var(--muted); margin-top: 8px; }
.usage { background: linear-gradient(180deg, #101010, #080808); }
.usage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.usage-card { padding: 24px; transition: .28s ease; min-height: 220px; }
.usage-card:hover { transform: translateY(-7px); border-color: rgba(201,168,76,.35); }
.usage-card i { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 19px; background: rgba(201,168,76,.13); font-style: normal; font-size: 27px; margin-bottom: 18px; }
.usage-card h3 { font-family: "Barlow Condensed", sans-serif; letter-spacing: 1px; text-transform: uppercase; font-size: 22px; }
.usage-card p { color: var(--muted); margin-top: 9px; font-size: 15px; }
.compare-card { margin-top: 28px; padding: 28px; }
.compare-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.compare-head h3 { font-family: "Bebas Neue", sans-serif; font-size: clamp(38px, 5vw, 64px); line-height: .9; margin-top: 12px; }
.compare-table { display: grid; overflow: hidden; border-radius: 20px; border: 1px solid rgba(255,255,255,.08); }
.compare-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.compare-row > div { padding: 15px 16px; border-bottom: 1px solid rgba(255,255,255,.07); border-right: 1px solid rgba(255,255,255,.07); color: var(--muted); }
.compare-row > div:last-child { border-right: 0; }
.compare-row:last-child > div { border-bottom: 0; }
.compare-row.header > div { background: rgba(201,168,76,.14); color: var(--gold-2); font-family: "Barlow Condensed", sans-serif; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.districts a { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07); color: var(--muted); transition: .25s ease; }
.districts a:hover { color: var(--text); border-color: rgba(201,168,76,.32); transform: translateY(-2px); }
.local-hero { min-height: 74svh; padding: 160px 0 70px; display: grid; place-items: center; position: relative; overflow: hidden; isolation: isolate; }
.local-hero::before { content:""; position:absolute; inset:0; z-index:-2; background: linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.64)), url('../assets/galery-9.jpeg') center/cover; }
.local-content { max-width: 850px; }
.local-content h1 { font-family:"Bebas Neue",sans-serif; font-size: clamp(54px, 10vw, 118px); line-height:.88; }
.local-content p { color: var(--muted); max-width: 720px; font-size: 19px; margin-top: 20px; }
.local-card-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-top:34px; }
.local-card { padding:22px; border-radius:22px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); }
.local-card b { display:block; color:var(--gold-2); font-family:"Barlow Condensed",sans-serif; letter-spacing:1px; text-transform:uppercase; margin-bottom:6px; }
.local-card span { color: var(--muted); }
html[data-theme="light"] .wizard-section, html[data-theme="light"] .usage { background: linear-gradient(180deg, #fffaf0, #f6f1e6); }
html[data-theme="light"] .wizard-card, html[data-theme="light"] .wizard-result, html[data-theme="light"] .compare-card, html[data-theme="light"] .usage-card { background: rgba(255,255,255,.72); border-color: rgba(22,19,12,.09); }
html[data-theme="light"] .wizard-step input, html[data-theme="light"] .wizard-step select { background:#fff; color:#17130c; border-color: rgba(22,19,12,.12); }
html[data-theme="light"] .usage-card h3, html[data-theme="light"] .compare-head h3 { color:#17130c; }
html[data-theme="light"] .usage-card p, html[data-theme="light"] .compare-row > div { color: var(--muted); }
html[data-theme="light"] .compare-row > div { border-color: rgba(22,19,12,.08); }
html[data-theme="light"] .districts a { background: rgba(255,255,255,.66); border-color: rgba(22,19,12,.08); color: var(--muted); }
html[data-theme="light"] .districts a:hover { color:#17130c; }
@media (max-width: 1100px) { .wizard-grid, .usage-grid { grid-template-columns: repeat(2, 1fr); } .wizard-copy { grid-column: 1 / -1; } }
@media (max-width: 720px) { .wizard-grid, .usage-grid, .local-card-grid { grid-template-columns: 1fr; } .compare-head { display:block; } .compare-head .btn { margin-top:16px; width:100%; } .compare-row { grid-template-columns: 1fr; } .compare-row.header { display:none; } .compare-row > div { border-right:0; } .compare-row > div:first-child { background: rgba(201,168,76,.12); color: var(--gold-2); font-weight:800; } }


/* Ultimate additions */
.wizard-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}.wizard-progress{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:18px}.wizard-progress span{height:5px;border-radius:999px;background:rgba(255,255,255,.14)}.wizard-progress span.active,.wizard-progress span:first-child{background:linear-gradient(135deg,var(--gold),var(--gold-2))}.wizard-card textarea{width:100%;border:1px solid var(--field-border,rgba(255,255,255,.12));border-radius:16px;padding:14px 15px;background:var(--input-bg,rgba(255,255,255,.06));color:var(--text);outline:none;resize:vertical}.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.trust-card,.review-panel,.article-card,.map-box{border:1px solid rgba(255,255,255,.09);background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));border-radius:26px;box-shadow:var(--shadow)}.trust-card{padding:28px;min-height:245px}.trust-card i{width:56px;height:56px;border-radius:18px;display:grid;place-items:center;background:rgba(201,168,76,.13);color:var(--gold-2);font-style:normal;font-size:27px;margin-bottom:22px}.trust-card h3,.article-card h3{font-family:"Barlow Condensed",sans-serif;text-transform:uppercase;letter-spacing:1px;font-size:23px;line-height:1.05}.trust-card p,.article-card p,.review-panel p{color:var(--muted);margin-top:10px}.article-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.article-card{overflow:hidden;transition:.3s ease}.article-card:hover{transform:translateY(-6px);border-color:rgba(201,168,76,.35)}.article-card img{width:100%;height:190px;object-fit:cover}.article-card div{padding:22px}.article-card span{display:block;color:var(--gold-2);font-family:"Barlow Condensed",sans-serif;letter-spacing:1.4px;text-transform:uppercase;font-weight:800;font-size:13px;margin-bottom:10px}.article-card a{display:inline-flex;margin-top:16px;color:var(--gold-2);font-weight:800}.article-card.compact{min-height:255px}.article-card.compact div{height:100%;display:flex;flex-direction:column}.article-card.compact a{margin-top:auto}.reviews-grid,.map-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:42px;align-items:center}.review-panel{padding:34px}.review-panel b{font-family:"Bebas Neue",sans-serif;font-size:50px;line-height:.92}.stars{font-size:34px;color:var(--gold-2);letter-spacing:5px;margin:18px 0}.review-panel small{color:var(--muted)}.map-box{overflow:hidden;padding:0;min-height:390px}.map-box iframe{width:100%;height:390px;border:0;filter:saturate(.9) contrast(1.05)}.page-hero{padding:150px 0 80px;background:linear-gradient(135deg,rgba(8,8,8,.94),rgba(8,8,8,.78)),url('assets/galery-13.webp') center/cover}.page-wrap{padding:70px 0}.content-card{max-width:980px;margin:auto;border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.045);border-radius:28px;padding:34px}.content-card h2{font-family:"Bebas Neue",sans-serif;font-size:48px;line-height:.95;margin-top:24px}.content-card p,.content-card li{color:var(--muted);font-size:17px}.content-card ul{margin:16px 0 0 20px}.content-card img{border-radius:24px;margin-bottom:24px;width:100%;max-height:440px;object-fit:cover}.back-link{display:inline-flex;color:var(--gold-2);font-weight:800;margin-top:28px}.data-note{font-size:13px;color:var(--muted);margin-top:16px;padding:12px 14px;border-radius:14px;background:rgba(201,168,76,.09);border:1px solid rgba(201,168,76,.18)}
@media(max-width:1100px){.trust-grid,.article-grid{grid-template-columns:repeat(2,1fr)}.reviews-grid,.map-grid{grid-template-columns:1fr}}
@media(max-width:720px){.wizard-row,.trust-grid,.article-grid{grid-template-columns:1fr}.map-box,.map-box iframe{min-height:320px;height:320px}.review-panel b{font-size:40px}}

/* FINAL POLISH: stable desktop menu, visible dark logo and premium micro interactions */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 6000;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(201, 168, 76, .55);
}

.nav-inner {
  gap: 14px;
}

.brand {
  min-width: 150px;
  flex: 0 0 auto;
}

.brand img {
  width: 132px;
  height: 56px;
  object-fit: contain;
}

.desktop-nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  gap: clamp(14px, 1.15vw, 24px);
}

.desktop-nav a {
  font-size: clamp(12px, .78vw, 14px);
  letter-spacing: clamp(1px, .12vw, 1.8px);
  white-space: nowrap;
}

.nav-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 50px;
  padding: 13px 21px;
  font-size: 15px;
}

.theme-toggle,
.burger {
  flex: 0 0 48px;
}

html[data-theme="dark"] .site-logo {
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.45)) drop-shadow(0 0 18px rgba(201,168,76,.18));
}

html[data-theme="light"] .site-logo {
  filter: drop-shadow(0 12px 20px rgba(38,30,10,.12));
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 3000;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50%;
  background: rgba(8,8,8,.76);
  color: var(--gold-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px) scale(.94);
  pointer-events: none;
  transition: .25s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080808;
  transform: translateY(-3px) scale(1.02);
}

html[data-theme="light"] .back-to-top {
  background: rgba(255,250,240,.88);
  color: var(--gold-3);
  box-shadow: 0 16px 38px rgba(38,30,10,.14);
}

/* keep large desktop navigation from overflowing */
@media (max-width: 1500px) {
  .desktop-nav { gap: 15px; }
  .nav-actions .btn { padding-inline: 18px; }
  .brand { min-width: 140px; }
  .brand img { width: 124px; }
}

@media (max-width: 1370px) {
  .desktop-nav a[href="#projects"],
  .desktop-nav a[href="#blog"] {
    display: none;
  }
}

@media (max-width: 1240px) {
  .desktop-nav,
  .nav-call {
    display: none;
  }
  .burger {
    display: block;
  }
  .nav-inner {
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .scroll-progress { height: 2px; }
  .back-to-top { right: 18px; bottom: 86px; width: 46px; height: 46px; }
  .nav-quote { display: none; }
  .theme-toggle { width: 46px; height: 46px; flex-basis: 46px; }
}

/* =========================
   PREMIUM DESKTOP MEGA MENU
   ========================= */
.navbar,
.nav-inner,
.desktop-nav,
.nav-item {
  overflow: visible;
}

.desktop-nav {
  position: static;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
}

.desktop-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: clamp(12px, .78vw, 14px);
  color: rgba(247,243,234,.78);
  position: relative;
  white-space: nowrap;
}

.has-mega > .nav-link::before {
  content: "⌄";
  order: 2;
  font-size: 12px;
  color: var(--gold-2);
  transform: translateY(-1px);
  transition: transform .25s ease;
}

.has-mega:hover > .nav-link::before,
.has-mega:focus-within > .nav-link::before {
  transform: translateY(-1px) rotate(180deg);
}

.mega-panel {
  position: fixed;
  left: 50%;
  top: 124px;
  width: min(980px, calc(100vw - 46px));
  transform: translate(-50%, 16px) scale(.985);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2500;
  display: grid;
  grid-template-columns: 1.05fr 1.55fr .68fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 10%, rgba(201,168,76,.18), transparent 34%),
    linear-gradient(145deg, rgba(17,17,17,.97), rgba(7,7,7,.98));
  box-shadow: 0 36px 90px rgba(0,0,0,.55);
  backdrop-filter: blur(22px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.navbar.scrolled .mega-panel {
  background:
    radial-gradient(circle at 16% 10%, rgba(201,168,76,.18), transparent 34%),
    linear-gradient(145deg, rgba(17,17,17,.92), rgba(7,7,7,.95));
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.has-mega.mega-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 34px;
}

.mega-feature,
.mega-links,
.mega-mini,
.mega-districts {
  position: relative;
  z-index: 1;
}

.mega-feature {
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(201,168,76,.22), rgba(255,255,255,.055)),
    url('assets/galery-9.webp') center/cover;
  overflow: hidden;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mega-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.84), rgba(0,0,0,.28));
  z-index: -1;
}

.mega-feature.compact {
  min-height: 210px;
  background:
    linear-gradient(160deg, rgba(201,168,76,.22), rgba(255,255,255,.055)),
    url('assets/galery-15.webp') center/cover;
}

.mega-kicker {
  color: var(--gold-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mega-feature strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  line-height: .95;
  letter-spacing: .5px;
  color: #fffaf0;
}

.mega-feature p {
  color: rgba(255,250,240,.74);
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.mega-cta {
  align-self: flex-start;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080808 !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

.mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mega-links a,
.mega-districts a,
.mega-mini a {
  font-family: "Barlow", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.mega-links a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 112px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.mega-links a:hover {
  transform: translateY(-3px);
  background: rgba(201,168,76,.105);
  border-color: rgba(201,168,76,.34);
}

.mega-links i {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(201,168,76,.16);
  border: 1px solid rgba(201,168,76,.22);
  font-style: normal;
  flex: 0 0 auto;
}

.mega-links b {
  display: block;
  color: var(--gold-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mega-links small {
  display: block;
  color: rgba(247,243,234,.64);
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.45;
}

.mega-mini {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mega-mini a,
.mega-districts a {
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(247,243,234,.78);
  font-size: 15px !important;
  transition: .22s ease;
}

.mega-mini a:hover,
.mega-districts a:hover {
  color: var(--gold-2);
  border-color: rgba(201,168,76,.32);
  background: rgba(201,168,76,.08);
  transform: translateY(-2px);
}

.mega-panel-small {
  width: min(760px, calc(100vw - 46px));
  grid-template-columns: .92fr 1.08fr;
}

.mega-districts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.mega-districts.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.desktop-nav .mega-panel a::after {
  display: none !important;
}

html[data-theme="light"] .desktop-nav .nav-link {
  color: rgba(22, 19, 12, .78);
}

html[data-theme="light"] .desktop-nav .nav-link:hover,
html[data-theme="light"] .has-mega:hover > .nav-link,
html[data-theme="light"] .has-mega:focus-within > .nav-link {
  color: var(--gold-3);
}

html[data-theme="light"] .mega-panel {
  background:
    radial-gradient(circle at 16% 10%, rgba(201,168,76,.20), transparent 34%),
    linear-gradient(145deg, rgba(255,250,240,.97), rgba(244,237,218,.98));
  border-color: rgba(140,109,34,.22);
  box-shadow: 0 34px 86px rgba(38,30,10,.18);
}

html[data-theme="light"] .mega-links a,
html[data-theme="light"] .mega-mini a,
html[data-theme="light"] .mega-districts a {
  background: rgba(255,255,255,.72);
  border-color: rgba(38,30,10,.08);
  color: rgba(22,19,12,.76);
}

html[data-theme="light"] .mega-links b {
  color: var(--gold-3);
}

html[data-theme="light"] .mega-links small {
  color: rgba(22,19,12,.58);
}

html[data-theme="light"] .mega-links a:hover,
html[data-theme="light"] .mega-mini a:hover,
html[data-theme="light"] .mega-districts a:hover {
  background: rgba(201,168,76,.13);
  border-color: rgba(140,109,34,.28);
  color: #17130b;
}

@media (max-width: 1500px) {
  .mega-panel { top: 124px; }
  .desktop-nav { gap: clamp(12px, .85vw, 18px); }
}

@media (max-width: 1370px) {
  .desktop-nav a[href="#projects"],
  .desktop-nav a[href="#blog"] {
    display: inline-flex;
  }
}

@media (max-width: 1240px) {
  .nav-item { min-height: auto; }
  .mega-panel { display: none; }
}

/* =====================================================
   MEGA MENU FIX v2 - compact, solid and cleaner dropdown
   ===================================================== */
@media (min-width: 1241px) {
  .nav-item.has-mega {
    position: relative;
  }

  .mega-panel {
    position: absolute !important;
    top: calc(100% + 14px) !important;
    left: 50% !important;
    width: min(760px, calc(100vw - 48px)) !important;
    max-height: calc(100vh - 165px);
    overflow: auto;
    transform: translate(-50%, 10px) scale(.98) !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 24px !important;
    background: #0b0b0b !important;
    border: 1px solid rgba(201,168,76,.28) !important;
    box-shadow: 0 28px 70px rgba(0,0,0,.48) !important;
    backdrop-filter: none !important;
  }

  .mega-panel::before {
    top: -18px !important;
    height: 20px !important;
  }

  .has-mega:hover .mega-panel,
  .has-mega:focus-within .mega-panel,
  .has-mega.mega-open .mega-panel {
    transform: translate(-50%, 0) scale(1) !important;
  }

  .nav-item:first-of-type .mega-panel,
  .nav-item:nth-of-type(1) .mega-panel {
    left: 50% !important;
  }

  .mega-feature {
    display: none !important;
  }

  .mega-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .mega-links a {
    min-height: 82px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    background: #151515 !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: none !important;
  }

  .mega-links a:hover {
    background: linear-gradient(135deg, rgba(201,168,76,.16), rgba(255,255,255,.045)) !important;
    border-color: rgba(201,168,76,.42) !important;
    transform: translateY(-2px) !important;
  }

  .mega-links i {
    width: 38px !important;
    height: 38px !important;
    border-radius: 13px !important;
    background: rgba(201,168,76,.15) !important;
  }

  .mega-links b {
    font-size: 15px !important;
    color: var(--gold-2) !important;
  }

  .mega-links small {
    margin-top: 4px !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    color: rgba(247,243,234,.68) !important;
  }

  .mega-mini {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .mega-mini a {
    flex: 1 1 0 !important;
    text-align: center !important;
    padding: 12px 14px !important;
    border-radius: 999px !important;
    background: rgba(201,168,76,.12) !important;
    border-color: rgba(201,168,76,.22) !important;
    color: var(--gold-2) !important;
    font-family: "Barlow Condensed", sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
  }

  .mega-panel-small {
    width: min(560px, calc(100vw - 48px)) !important;
    grid-template-columns: 1fr !important;
  }

  .mega-panel-small .mega-feature {
    display: block !important;
    min-height: unset !important;
    padding: 0 0 10px 0 !important;
    background: transparent !important;
  }

  .mega-panel-small .mega-feature::before {
    display: none !important;
  }

  .mega-panel-small .mega-kicker {
    display: none !important;
  }

  .mega-panel-small .mega-feature strong {
    color: var(--gold-2) !important;
    font-family: "Barlow Condensed", sans-serif !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
  }

  .mega-panel-small .mega-feature p {
    color: rgba(247,243,234,.68) !important;
    margin-top: 6px !important;
    font-size: 13px !important;
  }

  .mega-districts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .mega-districts a {
    padding: 12px 14px !important;
    border-radius: 15px !important;
    background: #151515 !important;
    border-color: rgba(255,255,255,.08) !important;
    color: rgba(247,243,234,.76) !important;
  }

  html[data-theme="light"] .mega-panel {
    background: #fffaf0 !important;
    border-color: rgba(140,109,34,.22) !important;
    box-shadow: 0 26px 64px rgba(38,30,10,.18) !important;
  }

  html[data-theme="light"] .mega-links a,
  html[data-theme="light"] .mega-districts a {
    background: #ffffff !important;
    border-color: rgba(38,30,10,.09) !important;
    color: rgba(22,19,12,.76) !important;
  }

  html[data-theme="light"] .mega-links small,
  html[data-theme="light"] .mega-panel-small .mega-feature p {
    color: rgba(22,19,12,.58) !important;
  }

  html[data-theme="light"] .mega-mini a {
    background: rgba(201,168,76,.14) !important;
    color: var(--gold-3) !important;
  }

  html[data-theme="light"] .mega-panel-small .mega-feature strong,
  html[data-theme="light"] .mega-links b {
    color: var(--gold-3) !important;
  }
}

@media (min-width: 1241px) and (max-width: 1500px) {
  .mega-panel {
    width: min(700px, calc(100vw - 40px)) !important;
  }

  .mega-links a {
    min-height: 78px !important;
    padding: 12px !important;
  }

  .mega-links small {
    display: none !important;
  }
}

/* =====================================================
   MOBILE HOTFIX v3 - gerçek mobil görünüm ve menü düzeltmesi
   ===================================================== */
@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container {
    width: min(100% - 28px, var(--max));
    margin-inline: auto;
  }

  .top-strip {
    display: none !important;
  }

  .navbar {
    top: 0 !important;
    height: 76px !important;
    background: rgba(8,8,8,.96) !important;
    border-bottom: 1px solid rgba(201,168,76,.2);
    backdrop-filter: blur(18px);
  }

  html[data-theme="light"] .navbar {
    background: rgba(255,250,240,.97) !important;
    border-bottom-color: rgba(140,109,34,.18);
  }

  .nav-inner {
    width: 100%;
    height: 76px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    min-width: 0 !important;
    flex: 0 0 auto;
    max-width: 120px;
  }

  .brand img,
  .site-logo {
    width: 102px !important;
    height: 46px !important;
    object-fit: contain;
  }

  .desktop-nav,
  .nav-call,
  .nav-quote,
  .nav-actions > .theme-toggle:not(.mobile-theme-toggle) {
    display: none !important;
  }

  .nav-actions {
    margin-left: auto;
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .burger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    border-radius: 16px;
    border: 1px solid rgba(201,168,76,.42) !important;
    background: rgba(201,168,76,.12) !important;
    color: var(--gold-2) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.16);
  }

  html[data-theme="light"] .burger {
    color: var(--gold-3) !important;
    background: rgba(201,168,76,.16) !important;
    border-color: rgba(140,109,34,.26) !important;
  }

  .burger span {
    width: 22px !important;
    height: 2px !important;
    margin: 3px auto !important;
  }

  .mobile-menu {
    top: 76px !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 18px 20px 120px;
    overflow-y: auto;
    background: rgba(8,8,8,.98) !important;
    border-top: 1px solid rgba(201,168,76,.18);
  }

  html[data-theme="light"] .mobile-menu {
    background: rgba(255,250,240,.98) !important;
  }

  .mobile-menu a {
    font-size: 19px !important;
    line-height: 1.1;
    padding: 15px 0 !important;
    letter-spacing: 1.4px !important;
  }

  .mobile-theme-toggle {
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
    border-radius: 16px;
    display: inline-flex !important;
    justify-content: center;
  }

  .hero {
    min-height: auto !important;
    padding: 116px 0 54px !important;
    display: block !important;
    overflow: hidden;
  }

  .hero-grid {
    display: block !important;
    width: 100%;
  }

  .hero-copy {
    max-width: 100% !important;
    width: 100%;
  }

  .hero-kicker {
    max-width: 100%;
    white-space: normal;
    font-size: 11px !important;
    letter-spacing: 1.4px !important;
    line-height: 1.25;
    padding: 8px 11px !important;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 74px) !important;
    line-height: .9 !important;
    letter-spacing: .2px !important;
    margin-top: 18px !important;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero h1 span {
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
  }

  .hero p {
    max-width: 100% !important;
    font-size: 15.5px !important;
    line-height: 1.7 !important;
    margin-top: 18px !important;
  }

  .hero-actions {
    width: 100%;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 50px !important;
    padding: 13px 16px !important;
    font-size: 14px !important;
    letter-spacing: 1.2px !important;
  }

  .hero-tags {
    display: none !important;
  }

  .hero-card,
  .scroll-cue {
    display: none !important;
  }

  .quick-bar {
    margin-top: 0 !important;
    padding-top: 14px;
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr !important;
    border-radius: 20px !important;
  }

  .quick-item {
    min-height: 92px !important;
    padding: 18px 14px !important;
  }

  .quick-item b {
    font-size: 34px !important;
  }

  .section-title {
    font-size: clamp(40px, 13vw, 58px) !important;
    line-height: .95 !important;
  }

  .section-lead {
    font-size: 16px !important;
  }

  .wa-float {
    right: 16px !important;
    bottom: 16px !important;
    padding: 10px !important;
  }

  .wa-float span {
    display: none !important;
  }

  .call-float {
    left: 16px !important;
    bottom: 16px !important;
  }

  .back-to-top {
    right: 16px !important;
    bottom: 80px !important;
  }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 22px); }
  .brand img,
  .site-logo { width: 92px !important; }
  .hero h1 { font-size: clamp(50px, 16vw, 64px) !important; }
  .hero p { font-size: 14.5px !important; }
  .quick-grid { grid-template-columns: 1fr !important; }
}
