:root{
  /* Brand palette */
  --navy:#0b1b2b;
  --navy2:#07131f;
  --black:#070a0f;
  --white:#ffffff;
  --gray:#9aa7b6;

  --accent:#c79a12;
  --accent2:#e3b21b;

  /* Background (single, clean) */
  --bg: linear-gradient(180deg, var(--navy2), var(--black));

  /* Text */
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);

  /* Surfaces / borders */
  --soft: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.10);

  --surface-1: rgba(255,255,255,.02);  /* cards */
  --surface-2: rgba(7,10,15,.35);      /* mini cards */
  --surface-3: rgba(7,10,15,.55);      /* fields */

  /* Layout */
  --r:16px;
  --shadow: 0 18px 60px rgba(0,0,0,.50);
  --shadow-soft: 0 18px 50px rgba(0,0,0,.35);
  --container: 1240px;
}

/* ========== BASE ========== */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html, body{ overflow-x: hidden; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3{
  font-family: Manrope, Inter, system-ui, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 800;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

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

.dot{ color: rgba(255,255,255,.35); }

/* ========== HEADER ========== */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,19,31,.55);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

.brand__logo{
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* NAV */
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav__link{
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255,255,255,.72);
  padding: 10px 8px;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav__link:hover{
  color: rgba(227,178,27,.95);
  background: rgba(199,154,18,.08);
}

/* Optional active state (if you add .is-active via JS later) */
.nav__link.is-active{
  color: rgba(227,178,27,.95);
  background: rgba(199,154,18,.10);
}

.header__cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 12px;
  border:1px solid transparent;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn--primary{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color:#111;
  box-shadow: 0 12px 34px rgba(199,154,18,.18);
}

.btn--primary:hover{ transform: translateY(-1px); }

.btn--ghost{
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}

.btn--ghost:hover{ border-color: rgba(199,154,18,.35); }
.btn--lg{ padding:12px 16px; border-radius: 14px; }
.btn--block{ width:100%; padding:12px 16px; }

/* Burger */
.burger{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  display:none;
  padding:10px;
}

.burger span{
  display:block;
  height:2px;
  background: rgba(255,255,255,.85);
  margin:5px 0;
  border-radius:2px;
}

/* Mobile menu */
.mobile{
  background: rgba(7,19,31,.82);
  backdrop-filter: blur(12px);
  border-top:1px solid rgba(255,255,255,.06);
}

.mobile__inner{
  padding: 14px 0 18px;
  display:grid;
  gap:10px;
}

.mobile__link{
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.88);
  font-weight:900;
}

.mobile__actions{
  display:flex;
  gap:10px;
  margin-top: 6px;
}

/* ========== HERO ========== */
.hero{
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero--bg{
  background:
    linear-gradient(180deg, rgba(7,19,31,.72), rgba(7,10,15,.80)),
    url("../img/hero2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 15% 35%, rgba(0,0,0,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(199,154,18,.10), transparent 60%);
  pointer-events:none;
}

.hero__inner{ position: relative; z-index: 2; }
.hero__inner--single{ display:block; }
.hero__copy{ max-width: 760px; }

.eyebrow{
  color: rgba(227,178,27,.95);
  font-weight:800;
  margin:0 0 10px;
  font-size:13px;
}

.hero h1{
  margin:0 0 12px;
  font-size: 52px;
  line-height:1.06;
  letter-spacing:-.7px;
}

.lead{
  margin:0 0 18px;
  color: rgba(227,178,27,.95);
  font-size:16px;
  line-height:1.65;
  max-width: 62ch;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* ========== SECTIONS ========== */
.section{ padding: 72px 0; }
.section__head{ max-width: 72ch; margin-bottom: 18px; }

.section__head h2{
  margin:0 0 8px;
  font-size: 28px;
  letter-spacing:-.3px;
}

.section__head p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

/* =========================
   SECTION SOFT (dark base)
   ========================= */
.section--soft{
  position: relative;
  isolation: isolate;
}

.section--soft::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(
      180deg,
      rgba(15,32,48,.7) 0%,
      rgba(12,24,36,.65) 40%,
      rgba(10,20,32,.7) 100%
    );
}

.section--soft::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  backdrop-filter: blur(1px);
  opacity:.5;
}

/* ========== SOCIAL PROOF ========== */
.social{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.social__item{
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(199,154,18,.10), transparent 55%),
    rgba(255,255,255,.02);
  border-radius:18px;
  padding:22px 18px;
  text-align:center;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social__item:hover{
  transform: translateY(-3px);
  border-color: rgba(199,154,18,.35);
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(199,154,18,.16), transparent 55%),
    rgba(255,255,255,.03);
}

.social__number{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.3px;
  margin-bottom: 6px;
  color: rgba(227,178,27,.95);
}

.social__label{
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
  font-weight: 700;
}

/* ========== GRID / CARDS ========== */
.grid{ display:grid; gap:14px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  border:1px solid var(--border);
  background: var(--surface-1);
  border-radius: var(--r);
  padding:18px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.card:hover{
  transform: translateY(-3px);
  border-color: rgba(199,154,18,.32);
  background: rgba(255,255,255,.03);
}

.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 12px; color:var(--muted); line-height:1.6; }

/* ========== SERVICES ========== */
.services{ margin-top: 10px; }

.service-card{
  position: relative;
  padding: 20px;
  border: 1px solid var(--border);
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(199,154,18,.08), transparent 55%),
    var(--surface-1);
  display:flex;
  flex-direction:column;
  min-height: 100%;
}

.service-card::before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  opacity:.9;
}

.service-card:hover{
  transform: translateY(-3px);
  border-color: rgba(199,154,18,.30);
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(199,154,18,.12), transparent 55%),
    var(--surface-1);
}

.service-card__top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 10px;
}

.service-card__icon{
  width:42px; height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(199,154,18,.12);
  border: 1px solid rgba(199,154,18,.22);
  font-size: 18px;
  flex: 0 0 auto;
}

.service-card h3{ margin:0; font-size: 18px; letter-spacing: -.2px; }

.service-card p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
}

.service-card__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
  padding-top: 14px;
  border-top: 1px solid var(--soft);
}

.service-card__meta{
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.service-card__cta{
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(199,154,18,.45);
  background: rgba(199,154,18,.10);
  color: rgba(255,255,255,.95);
  font-weight: 900;
  transition: all .2s ease;
}

.service-card__cta:hover{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color:#111;
  border-color: transparent;
  transform: translateY(-1px);
}

/* ========== SPLIT ========== */
.split{
  display:grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 22px;
  align-items:center;
}

.split__copy, .split__media{ min-width: 0; }

.list{
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.7;
}

.actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ========== EQUIPMENT CAROUSEL ========== */
.carousel{
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border:1px solid var(--border);
  background: var(--surface-1);
  box-shadow: var(--shadow);
}

.carousel__viewport{ overflow:hidden; }

.carousel__track{
  display:flex;
  transition: transform .35s ease;
  will-change: transform;
}

.carousel__slide{ min-width:100%; }

.carousel__slide img{
  width: 100%;
  height: clamp(300px, 28vw, 420px);
  object-fit: cover;
  object-position: center 60%;
  display:block;
  cursor: zoom-in;
}

.carousel__btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,10,15,.55);
  color: rgba(255,255,255,.92);
  font-size: 26px;
  cursor:pointer;
  display:grid;
  place-items:center;
  backdrop-filter: blur(10px);
}

.carousel__btn--prev{ left: 12px; }
.carousel__btn--next{ right: 12px; }
.carousel__btn:hover{ border-color: rgba(199,154,18,.35); }

.carousel__dots{
  position:absolute;
  left:0; right:0;
  bottom: 10px;
  display:flex;
  justify-content:center;
  gap:8px;
  padding: 0 12px;
}

.carousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  cursor:pointer;
}

.carousel__dot.is-active{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  border-color: rgba(199,154,18,.35);
}

/* ========== GALLERY ========== */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

.gallery__item{
  border-radius: 14px;
  overflow:hidden;
  border:1px solid var(--border);
  background: var(--surface-1);
  transition: transform .2s ease, border-color .2s ease;
}

.gallery__item:hover{
  transform: translateY(-3px);
  border-color: rgba(199,154,18,.32);
}

.gallery__item img{
  width:100%;
  height: 210px;
  object-fit: cover;
}

/* ========== FAQ ========== */
.faq{
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq__item{
  border: 1px solid var(--border);
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(199,154,18,.08), transparent 55%),
    var(--surface-1);
  border-radius: 18px;
  padding: 14px 18px;
  transition: all .25s ease;
}

.faq__item:hover{
  border-color: rgba(199,154,18,.35);
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(199,154,18,.14), transparent 55%),
    var(--surface-1);
}

.faq__item summary{
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.2px;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.faq__item summary::-webkit-details-marker{ display:none; }

.faq__item summary::after{
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform .2s ease;
  color: rgba(227,178,27,.95);
}

.faq__item[open] summary::after{
  transform: translateY(-50%) rotate(90deg);
}

.faq__item p{
  margin: 10px 0 4px;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
}

/* ========== CONTACT ========== */
.contact{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:22px;
  align-items: stretch;
}

.contact__copy{
  border:1px solid var(--border);
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(199,154,18,.10), transparent 55%),
    var(--surface-1);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction: column;
  height: 100%;
}

.contact__copy h2{ margin:0 0 8px; }

/* stack cards */
.contact__cards--stack{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin: 0 0 14px;
}

.mini{
  display:block;
  border:1px solid var(--border);
  background: var(--surface-2);
  border-radius: 16px;
  padding: 14px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.mini:hover{
  transform: translateY(-2px);
  border-color: rgba(199,154,18,.28);
  background: rgba(7,10,15,.45);
}

.mini__label{
  color: rgba(255,255,255,.60);
  font-size:12px;
  margin-bottom:6px;
  text-transform: uppercase;
  letter-spacing: .2px;
  font-weight: 800;
}

.mini__value{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.25;
  word-break: break-word;
}

/* accents */
.mini--wa{ border-color: rgba(199,154,18,.18); }
.mini--phone{ border-color: rgba(199,154,18,.28); background: rgba(199,154,18,.06); }
.mini--phone:hover{ border-color: rgba(199,154,18,.40); }

/* note */
.contact__note{
  margin-top: auto;
  padding-top: 12px;
  color: rgba(255,255,255,.60);
  font-size: 13px;
}

/* FORM */
.form{
  border:1px solid var(--border);
  background:
    radial-gradient(900px 280px at 80% 0%, rgba(199,154,18,.08), transparent 55%),
    var(--surface-1);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.form__row{ display:grid; gap:8px; margin-bottom: 12px; }

.form label{
  font-size:12px;
  color: rgba(255,255,255,.72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2px;
}

input, textarea{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: var(--surface-3);
  color: var(--text);
  padding: 12px 12px;
  outline:none;
}

input:focus, textarea:focus{ border-color: rgba(199,154,18,.45); }
textarea{ resize: vertical; min-height: 130px; }

/* ========== FOOTER (LEFT INFO + RIGHT NAV) ========== */
.footer{
  margin-top: 6px;
  padding: 20px 0 12px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(199,154,18,.08), transparent 55%),
    rgba(7,10,15,.28);
}

.footer__grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding-bottom: 18px;
}

.footer h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.2px;
}

.footer p{
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  max-width: 62ch;
}

.footer h4{
  margin: 16px 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__nav{
  justify-self: end;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 6px;
  min-width: 180px;
}

.footer__nav a{
  display: block;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.72);
  transition: color .18s ease, transform .18s ease;
}

.footer__nav a:hover{
  color: rgba(227,178,27,.95);
  transform: translateX(-3px);
}

.footer__bottom{
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.60);
  font-size: 13px;
  text-align: center;
}

/* ========== FLOATING BUTTONS ========== */
.floating{
  position: fixed;
  right: 14px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

.floating__btn{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: all .25s ease;
}

.floating__btn svg{
  width: 22px;
  height: 22px;
}

/* WhatsApp */
.floating__btn--wa{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color: #111;
  border-color: rgba(199,154,18,.35);
  box-shadow: 0 10px 28px rgba(199,154,18,.35);
}

.floating__btn--wa:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(199,154,18,.25);
}

/* Scroll top */
.floating__btn--top{
  opacity: 0;
  pointer-events: none;
}

.floating__btn--top.is-visible{
  opacity: 1;
  pointer-events: auto;
}

.floating__btn--top:hover{
  border-color: rgba(199,154,18,.35);
  transform: translateY(-2px);
}

/* ========== LIGHTBOX ========== */
.lightbox[hidden]{ display:none !important; }
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.86);
  isolation: isolate;
}

.lightbox img{
  display:block;
  max-width: min(1200px, 94vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 80px rgba(0,0,0,.65);
  background: #0b0f14;
}

.lightbox__close{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(10,12,16,.70);
  color: rgba(255,255,255,.95);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__close:hover{ border-color: rgba(199,154,18,.35); }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:inline-block; }

  .hero{ padding: 74px 0 60px; }
  .hero h1{ font-size: 38px; }

  .grid--3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .contact{ grid-template-columns: 1fr; }

  .carousel__slide img{
    height: 340px;
    object-position: center 55%;
  }
}

@media (max-width: 820px){
  .footer__grid{ grid-template-columns: 1fr; }
  .footer__nav{
    justify-self: start;
    align-items: flex-start;
    text-align: left;
    margin-top: 10px;
  }
  .footer__nav a:hover{ transform: translateX(3px); }
}

@media (max-width: 768px){
  .header__inner{ padding: 6px 0; }
  .brand__logo{ height: 36px; }
  .service-card{ padding: 16px; }
  .service-card p{ font-size: 14px; }
  .floating{ bottom: 18px; right: 10px; }

  .carousel__slide img{
    height: 240px;
    object-fit: cover;
  }
}

@media (max-width: 520px){
  .container{ width: min(var(--container), calc(100% - 28px)); }

  .header__inner{
    gap: 10px;
    padding: 8px 0;
  }

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

  .brand__logo{ height: 34px; }

  .header__cta{ gap: 8px; }

  /* Mobile: leave WhatsApp + burger, hide "Poziv" in header */
  .header__cta .btn--ghost{ display:none; }

  .header__cta .btn--primary{
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 12px;
  }

  .hero{ padding: 68px 0 54px; }

  .hero h1{
    font-size: 34px;
    line-height: 1.08;
  }

  .lead{
    font-size: 15px;
    line-height: 1.55;
  }

  .hero__actions .btn{
    width: 100%;
    justify-content: center;
  }

  .gallery{ grid-template-columns: 1fr; }
  .carousel__slide img{ height: 200px; }

  .social{ grid-template-columns: 1fr; }
}

/* =========================================================
   THEME TOGGLE BUTTON (your HTML uses .theme-fab)
   ========================================================= */
.theme-fab{
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* =========================================================
   LIGHT MODE (single consolidated block)
   Aktivira se kad: <html data-theme="light">
   ========================================================= */
html[data-theme="light"]{
  --bg: #fcf6f6;

  --text: rgba(10,14,20,.92);
  --muted: rgba(10,14,20,.68);

  --soft: rgba(10,14,20,.08);
  --border: rgba(10,14,20,.12);

  --surface-1: rgba(255,255,255,.92);
  --surface-2: rgba(255,255,255,.95);
  --surface-3: rgba(255,255,255,.98);

  --shadow: 0 18px 50px rgba(10,14,20,.10);
  --shadow-soft: 0 18px 40px rgba(10,14,20,.10);
}

html[data-theme="light"] body{
  background: var(--bg);
  color: var(--text);
}

html[data-theme="light"] .dot{ color: rgba(10,14,20,.35); }

/* HERO stays dark in light mode */
html[data-theme="light"] .hero{ color: rgba(255,255,255,.92); }
html[data-theme="light"] .hero .lead{ color: rgba(227,178,27,.95); }

/* HEADER: white bar, no blur */
html[data-theme="light"] .header{
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(10,14,20,.12);
}

/* NAV: black text, yellow hover/active */
html[data-theme="light"] .nav__link{
  color: rgba(10,14,20,.78);
  background: transparent;
}
html[data-theme="light"] .nav__link:hover{
  color: rgba(227,178,27,.95);
  background: rgba(199,154,18,.10);
}
html[data-theme="light"] .nav__link.is-active{
  color: rgba(227,178,27,.95);
  background: rgba(199,154,18,.12);
}

/* Ghost buttons in header */
html[data-theme="light"] .btn--ghost{
  background: rgba(10,14,20,.03);
  border-color: rgba(10,14,20,.14);
  color: rgba(10,14,20,.90);
}
html[data-theme="light"] .btn--ghost:hover{
  border-color: rgba(199,154,18,.35);
}

/* Burger */
html[data-theme="light"] .burger{
  border-color: rgba(10,14,20,.14);
  background: rgba(10,14,20,.03);
}
html[data-theme="light"] .burger span{
  background: rgba(10,14,20,.78);
}

/* Mobile menu in light */
html[data-theme="light"] .mobile{
  background: #fcf6f6;
  backdrop-filter: none;
  border-top: 1px solid rgba(10,14,20,.12);
}
html[data-theme="light"] .mobile__link{
  border-color: rgba(10,14,20,.12);
  background: rgba(10,14,20,.03);
  color: rgba(10,14,20,.88);
}
html[data-theme="light"] .mobile__link:hover{
  border-color: rgba(199,154,18,.35);
}

/* Inputs readable */
html[data-theme="light"] input,
html[data-theme="light"] textarea{
  border-color: rgba(10,14,20,.16);
  color: rgba(10,14,20,.92);
}

/* Dark-hardcoded texts -> readable in light */
html[data-theme="light"] .service-card p,
html[data-theme="light"] .faq__item p,
html[data-theme="light"] .social__label{
  color: rgba(10,14,20,.72);
}

/* Labels (forms) */
html[data-theme="light"] .form label{
  color: rgba(10,14,20,.78);
}

/* Contact mini cards: keep hover animation but avoid “turning grey” */
html[data-theme="light"] .mini__label{
  color: rgba(227,178,27,.95);
}
html[data-theme="light"] .mini:hover{
  transform: translateY(-2px);
  border-color: rgba(199,154,18,.28);
  background: var(--surface-2); /* keeps same background */
}

/* Footer light */
html[data-theme="light"] .footer{
  background: #fcf6f6;
}

html[data-theme="light"] .footer__bottom{
  border-top: 1px solid rgba(10,14,20,.10);
  color: rgba(10,14,20,.60);
}
html[data-theme="light"] .footer__nav a{
  color: rgba(10,14,20,.72);
}
html[data-theme="light"] .footer__nav a:hover{
  color: rgba(227,178,27,.95);
  transform: translateX(-3px);
}

/* Floating buttons in light */
html[data-theme="light"] .floating__btn{
  background: #fcf6f6;
  color: rgba(10,14,20,.92);
}

/* Keep WhatsApp floating identical in light */
html[data-theme="light"] .floating__btn--wa{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color: #111;
  border-color: rgba(199,154,18,.35);
  box-shadow: 0 10px 28px rgba(199,154,18,.35);
}

/* SECTION SOFT – LIGHT MODE (premium beige) */
html[data-theme="light"] .section--soft::before{
  background:
    linear-gradient(
      180deg,
      rgba(246,240,226,.75) 0%,
      rgba(241,233,215,.75) 100%
    );
  opacity:.85;
}
html[data-theme="light"] .section--soft::after{
  backdrop-filter: blur(1px);
  opacity:.5;
}

/* default (dark) */
.brand__logo--light { display: none; }
.brand__logo--dark  { display: block; }

/* light theme */
html[data-theme="light"] .brand__logo--dark  { display: none; }
html[data-theme="light"] .brand__logo--light { display: block; }

