/* ═══════════════════════════════════════════════════════════
   BLACKSHEEP DETAILING STUDIO — glavni stylesheet
   Paleta: obsidian #090A0C / zlatni akcenat #D4AF37
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #090A0C;
  --panel: #1a1a1b;
  --card: #131313;
  --line: #1d1d1d;
  --line-light: #1a1a1a;
  --gold: #D4AF37;
  --gold-hover: #E5C158;
  --text: #F5F5F7;
  --muted: #A1A1AA;
  --muted-2: #9CA3AF;
  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 10px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.eyebrow {
    width: 80px;
    height: 2px;
    background: #D4AF37;
}

.eyebrow-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom:5px;
  }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--bg); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-light); border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.container {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 24px;
}

section[id], footer[id] { scroll-margin-top: var(--header-h); }

/* ── Dugmad ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--gold);
  color: #090A0C;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-light);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 11px 20px; font-size: 12px; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background-color 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9, 10, 12, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(35, 40, 50, 0.8);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  flex-shrink: 0;
} */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.logo-black {
    color: #ffffff;
    font-size: 23px;
}

.logo-sheep {
    color: #8a8f98;
    font-size: 13px;
    font-weight: 500;
    margin-left: 6px;
    margin-top: 4px;
    letter-spacing: 0;
}
@media (max-width: 1200px){

    .logo-black{
        font-size:1.8rem;
    }

    .logo-sheep{
        font-size:.9rem;
    }
}
@media (max-width: 992px){

    .logo-black{
        font-size:1.5rem;
    }

    .logo-sheep{
        font-size:.8rem;
    }
}
@media (max-width: 768px){

    .logo-black{
        font-size:1.3rem;
    }

    .logo-sheep{
        font-size:.75rem;
    }

}
@media (max-width: 576px){

    .logo-black{
        display:none;
    }
    .logo-sheep{
        display:none;
    }

}
.logo-mark { width: 40px; height: 40px; }
.logo-img { height: 50px; width: auto; }

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: var(--text);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-text small {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--muted);
}
#logo-text-img {
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-nav { display: flex; gap: 34px; }
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
  position: relative;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.25s, color 0.25s;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-btn svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute;
  top: -7px; right: -7px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #090A0C;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  height: 1.6px;
  width: 100%;
  background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobilni meni */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(9, 10, 12, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav {
  width: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.25s;
}
.mobile-menu.open .mobile-nav-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-book { margin-top: 28px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-slides, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 7s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-video { object-fit: cover; display: none; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,10,12,0.72) 0%, rgba(9,10,12,0.55) 45%, rgba(9,10,12,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  padding-bottom: 90px;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero-title em { font-style: normal; color: var(--gold); }

/* Maskirani line-by-line reveal */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: block;
  transform: translateY(112%);
  animation: line-up 1s var(--ease-out) forwards;
}
.hero-kicker.reveal-line > span { animation-delay: 0.15s; }
.hero-title .reveal-line:nth-child(1) > span { animation-delay: 0.3s; }
.hero-title .reveal-line:nth-child(2) > span { animation-delay: 0.45s; }
@keyframes line-up { to { transform: translateY(0); } }

.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #D1D5DB;
  animation: fade-up 0.9s var(--ease-out) 0.75s backwards;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  animation: fade-up 0.9s var(--ease-out) 0.95s backwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-dots {
  position: absolute;
  bottom: 42px;
  left: 24px;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 26px; height: 2px;
  background: rgba(245, 245, 247, 0.25);
  transition: background-color 0.4s;
}
.hero-dot.is-active { background: var(--gold); }

/* ── Marquee ────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  background: rgba(18, 20, 24, 0.6);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track i {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.7;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sekcije ────────────────────────────────────────────── */
.section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-lead { margin-top: 16px; color: var(--muted); font-size: 16px; }

/* On-scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Akcija meseca ──────────────────────────────────────── */
.promo-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: #181B22;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  overflow: hidden;
}
.promo-media { position: relative; min-height: 340px; }
.promo-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-body {
    background: rgba(4, 4, 4, 0.6);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  border-left: 1px solid var(--line);
}
.promo-note { color: var(--muted); font-size: 15px; }
.promo-inactive {
  border: 1px dashed var(--line-light);
  border-radius: 14px;
  padding: 64px 32px;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.04em;
}

/* ── Usluge ─────────────────────────────────────────────── */
/* ── Paketi usluga ──────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.package-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 30px 26px 26px;
  display: flex;
    flex-direction: column;
    transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
    justify-content: space-between;
}
.package-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45), 0 0 26px rgba(212, 175, 55, 0.08);
}
.package-card.featured {
  border-color: rgba(212, 175, 55, 0.65);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.07), rgba(21, 24, 30, 0) 40%), var(--card);
}
.package-badge {
  position: absolute;
  top: -1px; right: 22px;
  background: var(--gold);
  color: #090A0C;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 8px 8px;
}
.package-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.package-head h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
.package-tagline {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 14px;
}
.package-includes {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.package-includes li, .package-addons li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.package-includes li::before, .package-addons li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.85;
}
.package-addons {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px dashed rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
}
.package-addons h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: 12px;
}
.package-addons li { font-size: 13.5px; margin-bottom: 7px; }
.package-addons li::before { background: var(--line-light); }
.package-addons-all { text-align: center; }
.package-addons-all h4 { margin-bottom: 0; }
.package-select { margin-top: auto; width: 100%; margin-top: 24px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ── Zakazivanje / procena vozila ───────────────────────── */
.booking {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.booking-points { margin-top: 26px; }
.booking-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
}
.booking-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.booking-safe {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--gold-hover);
}
.booking-form {
  background: var(--card);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23D4AF37' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 96px; }
.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 18px;
  border: 1.5px dashed var(--line-light);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s, background-color 0.25s;
}
.file-drop:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.04); }
.file-drop-text { color: var(--muted); font-size: 14px; }
.file-preview {
  max-height: 150px;
  border-radius: 8px;
  border: 1px solid var(--line-light);
  object-fit: cover;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gold-hover);
}
.form-hint { color: var(--muted); font-size: 12.5px; }

/* =========================
   BOOKING RESPONSIVE
========================= */

.booking {
    padding: 80px 24px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Veliki laptopi */

@media (max-width: 1200px) {

    .booking {
        padding: 70px 32px;
    }

    .booking-grid {
        gap: 40px;
    }
}

/* Tablet */

@media (max-width: 992px) {

    .booking {
        padding: 60px 28px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .booking-info {
        max-width: 100%;
    }

    .booking-form {
        width: 100%;
    }
}

/* Mobilni */

@media (max-width: 768px) {

    .booking {
        padding: 50px 20px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-form {
        padding: 24px;
        border-radius: 12px;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
    }

    .section-lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .booking-points li {
        font-size: 14px;
    }

    .cta-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .field input,
    .field select,
    .field textarea {
        width: 100%;
        font-size: 16px;
    }

    .file-drop {
        padding: 20px;
    }

    .file-preview {
        max-width: 100%;
        height: auto;
    }

    #bk-submit {
        width: 100%;
    }
}

/* Mali telefoni */

@media (max-width: 480px) {

    .booking {
        padding: 40px 16px;
    }

    .booking-form {
        padding: 20px 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-tag {
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .booking-points {
        margin-top: 18px;
    }

    .booking-safe,
    .form-note,
    .form-hint {
        font-size: 11px;
        line-height: 1.6;
    }

    .field label {
        font-size: 14px;
    }

    .file-drop-text {
        font-size: 13px;
    }
}


/* .education-section{
    width:min(1400px, calc(100% - 48px));
    margin:120px auto;
}

.education-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
    margin-top:48px;
}

.edu-card{
    background:#131313;

    border:1px solid rgba(212,175,55,.18);
    border-radius:18px;

    min-height:140px;

    color:#fff;
    font-size:1.1rem;
    font-weight:600;

    padding:28px;

    text-align:left;

    cursor:pointer;

    transition:.3s;
}

.edu-card:hover{
    border-color:#D4AF37;
    transform:translateY(-4px);
}

.edu-modal{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.75);

    display:none;
    justify-content:center;
    align-items:center;

    z-index:9999;
}

.edu-modal.active{
    display:flex;
}

.edu-modal-content{
    width:min(700px, calc(100% - 32px));

    background:#131313;

    border:1px solid rgba(212,175,55,.2);

    border-radius:20px;

    padding:40px;

    position:relative;
}

.edu-modal-content h3{
    margin-bottom:20px;
    color:#fff;
}

.edu-modal-content p{
    color:#c7c7c7;
    line-height:1.8;
}

.close-modal{
    position:absolute;
    top:16px;
    right:16px;

    background:none;
    border:none;

    color:#fff;

    font-size:32px;
    cursor:pointer;
}


@media (max-width: 992px){

    .education-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width: 768px){

    .education-grid{
        grid-template-columns:1fr;
    }

} */


/*<----------edu2----------->*/

/* =========================
   EDUCATION SECTION
========================= */

.education-section{
    padding:120px 0;
}

.education-wrapper{

    width:min(700px, calc(100% - 48px));

    margin:auto;

    text-align:center;
}

.education-book{

    width:100%;
    max-width:500px;

    display:block;

    margin:auto;

    transition:.4s ease;
}

.education-book:hover{
    transform:translateY(-8px);
}

.education-title{

    margin-top:30px;

    color:#fff;

    font-size:clamp(2rem,4vw,3rem);

    letter-spacing:.08em;
}

.education-btn{
    margin-top:25px;
}

/* =========================
   MODAL 1
========================= */

.education-modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.85);

    display:none;

    justify-content:center;
    align-items:flex-start;

    overflow-y:auto;

    z-index:9999;

    padding:60px 0;
}

.education-modal.active{
    display:flex;
}

.education-modal-box{

    width:min(900px, calc(100% - 32px));

    max-height:85vh;

    overflow-y:auto;

    background:#111;

    border:1px solid rgba(212,175,55,.18);

    border-radius:24px;

    padding:50px;
}

.education-modal-header{

    /* position:sticky; */

    top:0;

    background:#111;

    padding-bottom:25px;

    z-index:10;
}

.education-modal-header h2{

    color:#fff;

    margin-bottom:10px;
}

.education-subtitle{

    color:#bfbfbf;
}

.education-close{

    position:absolute;

    top:0;
    right:0;

    width:44px;
    height:44px;

    border:none;

    background:none;

    color:#fff;

    font-size:30px;

    cursor:pointer;
}

/* =========================
   TOPICS
========================= */

.education-topics{

    display:grid;

    gap:16px;

    margin-top:30px;
}

.edu-topic{

    background:#171717;

    border:1px solid rgba(212,175,55,.15);

    border-radius:14px;

    color:#fff;

    text-align:left;

    padding:18px 22px;

    cursor:pointer;

    transition:.3s ease;
}

.edu-topic:hover{

    border-color:#D4AF37;

    transform:translateX(6px);
}

/* =========================
   MODAL 2
========================= */

.edu-detail-modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:10000;

    padding:24px;
}

.edu-detail-modal.active{
    display:flex;
}

.edu-detail-box{

    width:min(700px,100%);

    max-height:85vh;

    overflow-y:auto;

    background:#111;

    border:1px solid rgba(212,175,55,.18);

    border-radius:20px;

    padding:40px;

    position:relative;
}

.edu-detail-box h3{

    color:#fff;

    margin-bottom:20px;
}

.edu-detail-box p{

    color:#d0d0d0;

    line-height:1.9;
}

.edu-detail-close{

    position:absolute;

    top:15px;
    right:15px;

    width:40px;
    height:40px;

    border:none;

    background:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;
}

/* =========================
   SCROLLBAR
========================= */

.education-modal-box::-webkit-scrollbar,
.edu-detail-box::-webkit-scrollbar{
    width:8px;
}

.education-modal-box::-webkit-scrollbar-thumb,
.edu-detail-box::-webkit-scrollbar-thumb{
    background:#D4AF37;
    border-radius:20px;
}

.education-modal-box::-webkit-scrollbar-track,
.edu-detail-box::-webkit-scrollbar-track{
    background:#1a1a1a;
}

@media (max-width:992px){

    .education-section{
        padding:90px 0;
    }

    .education-book{
        max-width:420px;
    }
}

@media (max-width:768px){

    .education-section{
        padding:70px 0;
    }

    .education-wrapper{
        width:calc(100% - 32px);
    }

    .education-book{
        max-width:320px;
    }

    .education-title{
        font-size:2rem;
    }

    .education-btn{
        width:100%;
        max-width:280px;
    }

    .education-modal{
        padding:12px;
    }

    .education-modal-box{

        width:100%;

        max-height:90vh;

        padding:28px 20px;
    }

    .edu-topic{

        padding:16px;

        font-size:.95rem;
    }

    .edu-detail-box{

        width:100%;

        padding:24px;
    }
}

@media (max-width:480px){

    .education-book{
        max-width:260px;
    }

    .education-wrapper{
        width:calc(100% - 24px);
    }
}







/* ── Modal usluge ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 6, 8, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  transform: translateY(26px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
}
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(9, 10, 12, 0.72);
  border: 1px solid var(--line-light);
  color: var(--text);
  transition: color 0.25s, border-color 0.25s;
}
.modal-close:hover { color: var(--gold); border-color: var(--gold); }
.modal-close svg { width: 18px; height: 18px; }

.modal-hero { aspect-ratio: 16 / 8; overflow: hidden; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 36px 38px 42px; }
.modal-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 14px;
}
.modal-desc { color: #D1D5DB; font-size: 15.5px; }
.modal-audience {
  margin-top: 16px;
  padding: 14px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.06);
  color: var(--muted);
  font-size: 14.5px;
  border-radius: 0 8px 8px 0;
}
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.meta-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold-hover);
  background: #2A2415;
  border: 1px solid #856B24;
  border-radius: 999px;
  padding: 7px 14px;
}
.modal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}
.modal-cols h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.modal-cols li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14.5px;
}
.modal-cols li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.85;
}
.modal-cols .excludes li::before { background: var(--line-light); }
.modal-extras { margin-top: 28px; }
.modal-extras h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.modal-subtitle {
  margin-top: 36px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.subservice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.subservice h5 { font-family: var(--font-heading); font-size: 16px; font-weight: 600; }
.subservice p { grid-column: 1; color: var(--muted-2); font-size: 14px; }
.subservice .sub-price {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
}
.subservice .btn { grid-column: 2; grid-row: 2; }
.modal-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.modal-gallery img {
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--line);
}
.modal-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Kartice usluga ─────────────────────────────────────────────── */

.service-grid{
    display:grid;

    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:24px;

    width:min(1400px, calc(100% - 48px));

    margin:60px auto;

    align-items:stretch;
}
@media (max-width: 1200px){
    .service-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .service-grid{
        grid-template-columns:1fr;
    }
}
.section-head-services{
    max-width:640px;
    margin:0 auto 56px;
    text-align:center;
}

@media (max-width: 768px){
    .section-head-services{
        margin:0 auto 56px;
    }
}
.service-card{
    width: 100%;
    min-width: 0;
    background: #131313;
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.service-card:hover {
    /* transform: translateY(-8px); */
    border-color: #D4AF37;
}

.service-image{
    height:260px;
    background:
    repeating-linear-gradient(
        -45deg,
        rgba(212,175,55,.04) 0,
        rgba(212,175,55,.04) 2px,
        transparent 2px,
        transparent 18px
    );

    position:relative;
}
.service-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    display:block;
}

.service-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    url("images/service-placeholder.jpg")
    center/cover;
    opacity:.12;
}

.service-content{
    padding:32px;
}

.service-content h3{
    color:#fff;
    font-size:2rem;
    margin-bottom:18px;
}

.service-content p{
    color:#a8adb8;
    line-height:1.7;
    margin-bottom:28px;
}

.service-btn {
    /* margin-top: auto; */

    width: 100%;
    height: 64px;

    background: var(--card);
    border: 1px solid #D4AF37;
    border-radius: 14px;

    color: #ffffff;
    font-size: 18px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    cursor: pointer;
    transition: .3s ease;
}
.service-btn:hover{
  /* border: 2px solid #D4AF37; */
  background-color: #4e4d4d;
  transition: 0.3s;
}

.service-modal{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.85);

    display:none;
    justify-content:center;
    align-items:center;

    z-index:9999;

    padding:24px;
}

.service-modal.active{
    display:flex;
}

.service-modal-box{

    width:min(1300px, 100%);
    height:min(800px, 90vh);

    background:#111;

    border:1px solid rgba(212,175,55,.18);

    border-radius:28px;

    overflow:hidden;

    display:grid;
    grid-template-columns:40% 60%;

    position:relative;
}

.service-modal-image{
    height:100%;
}

.service-modal-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    display:block;
}

.service-modal-content{

    padding:60px;

    overflow-y:auto;
}

.service-modal-tag{

    color:#D4AF37;

    font-size:.8rem;
    letter-spacing:.18em;

    display:block;

    margin-bottom:18px;
}

.service-modal-content h2{

    color:#fff;

    margin-bottom:30px;

    font-size:clamp(2rem,3vw,3.5rem);

    line-height:1.1;
}

.service-modal-content p{

    color:#c8c8c8;

    line-height:1.9;

    margin-bottom:18px;
}

.service-modal-content ul{

    margin-top:25px;
    padding-left:20px;
}

.service-modal-content li{

    color:#d6d6d6;

    margin-bottom:10px;
}

.service-modal-close{

    position:absolute;

    top:20px;
    right:20px;

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:#1d1d1d;

    color:#fff;

    font-size:28px;

    cursor:pointer;

    z-index:5;
}

@media (max-width: 992px){

    .service-modal-box{

        grid-template-columns:1fr;
        height:90vh;
    }

    .service-modal-image{

        height:300px;
    }

    .service-modal-content{

        padding:32px;
    }
}

@media (max-width: 768px){

    .service-modal{
        padding:12px;
    }

    .service-modal-box{

        height:95vh;
        border-radius:20px;
    }

    .service-modal-image{

        height:220px;
    }

    .service-modal-content{

        padding:24px;
    }
}




/* ── Prostorija za kupce ─────────────────────────────────────────────── */

.client-lounge-section{
    padding:120px 0;
}

.client-lounge-container{
    width:min(1400px, calc(100% - 48px));

    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

.client-lounge-content h2{
    margin:18px 0 28px;

    color:#fff;

    font-size:clamp(2.4rem, 4vw, 4rem);

    line-height:1.1;
}

.client-lounge-text{
    color:#a9adb8;

    line-height:1.9;

    margin-bottom:18px;

    font-size:1.05rem;
}

.client-features{
    margin-top:32px;

    display:grid;
    gap:14px;
}

.client-features li{
    position:relative;

    padding-left:28px;

    color:#e4e4e4;
}

.client-features li::before{
    content:"";

    position:absolute;

    left:0;
    top:8px;

    width:8px;
    height:8px;

    background:#D4AF37;

    transform:rotate(45deg);
}

.client-lounge-image{
    position:relative;

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.15);
}

.client-lounge-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .6s ease;
}

.client-lounge-image:hover img{
    transform:scale(1.04);
}

@media (max-width: 992px){

    .client-lounge-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .client-lounge-image{
        order:-1;
    }

}

@media (max-width: 768px){

    .client-lounge-section{
        padding:80px 0;
    }

    .client-lounge-container{
        width:calc(100% - 32px);
    }

    .client-lounge-image img{
        min-height:280px;
    }

}

/* ── O nama ─────────────────────────────────────────────── */
.about { background: var(--panel); border-block: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-light);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.12);
  border-radius: 14px;
  pointer-events: none;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; }
.about-intro {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}
.about-text { margin-top: 16px; color: var(--muted); font-size: 15.5px; }
.trust-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trust-list li {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--card);
  transition: border-color 0.3s;
}
.trust-list li:hover { border-color: rgba(212, 175, 55, 0.5); }
.trust-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.trust-list span { font-size: 13px; color: var(--muted-2); }

.elfsight-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;

    width:min(1400px, calc(100% - 48px));

    margin:80px auto;
    align-items:stretch;
}

.elfsight-app,
.maps-embed{
    width:100%;
    min-width:0;

    border-radius:20px;
    overflow:hidden;
}
.maps-embed iframe{
    width:100%;
    height:100%;
    min-height:500px;

    display:block;
    border:none;
    border-radius:20px;
}
.maps-link{
    display:flex;
    justify-content:center;
    align-items:center;

    margin-top:16px;

    min-height:56px;

    border:1px solid rgba(212,175,55,.3);
    border-radius:12px;

    text-decoration:none;
    color:#fff;

    transition:.3s ease;
}

.maps-link:hover{
    border-color:#D4AF37;
    color:#D4AF37;
}
@media (max-width: 992px){

    .elfsight-wrapper{
        grid-template-columns:1fr;
        gap:24px;

        width:min(100%, calc(100% - 40px));

        margin:60px auto;
    }

    .maps-embed iframe{
        min-height:420px;
    }

}
@media (max-width: 768px){

    .elfsight-wrapper{
        width:calc(100% - 32px);

        gap:20px;

        margin:48px auto;
    }

    .maps-embed iframe{
        min-height:350px;
    }

}
@media (max-width: 480px){

    .elfsight-wrapper{
        width:calc(100% - 24px);

        margin:40px auto;
    }

    .maps-embed iframe{
        min-height:300px;
    }

}

/* ── Shop ───────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.product-card:hover { border-color: rgba(212, 175, 55, 0.55); transform: translateY(-4px); }
.product-media { aspect-ratio: 1 / 0.85; overflow: hidden; background: #0D0F13; }
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 { font-family: var(--font-heading); font-size: 16.5px; font-weight: 600; line-height: 1.3; }
.product-body p { color: var(--muted-2); font-size: 13.5px; flex: 1; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.product-price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

/* ── Korpa ──────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(5, 6, 8, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 300;
  width: min(430px, 100vw);
  height: 100dvh;
  background: var(--panel);
  border-left: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.45s var(--ease-out);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; }
.cart-head .modal-close { position: static; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-empty { color: var(--muted); text-align: center; padding: 56px 0; font-size: 15px; }
.cart-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item img {
  width: 68px; height: 68px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.cart-item h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 600; line-height: 1.3; }
.cart-item .item-price { font-family: var(--font-mono); font-size: 12.5px; color: var(--gold); margin-top: 4px; }
.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-value { font-family: var(--font-mono); font-size: 13px; min-width: 20px; text-align: center; }
.item-remove {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  justify-self: end;
}
.item-remove:hover { color: #EF4444; }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cart-total span { color: var(--muted); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.cart-total strong { font-family: var(--font-mono); font-size: 22px; color: var(--gold); }
.cart-checkout { width: 100%; }
.cart-checkout.disabled { opacity: 0.4; pointer-events: none; }

/* ── Newsletter ─────────────────────────────────────────── */
.newsletter-panel {
  background: var(--panel);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 72px 48px;
}
.newsletter-panel .section-head { margin-inline: auto; text-align: left; }
.newsletter-form {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input {
  background: var(--bg);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--muted);
}
.consent input {
  appearance: none;
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--line-light);
  border-radius: 5px;
  background: var(--bg);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  position: relative;
}
.consent input:checked { background: var(--gold); border-color: var(--gold); }
.consent input:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: solid #090A0C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-error { color: #EF4444; font-size: 13.5px; }
.newsletter-form .btn { align-self: flex-start; }
.newsletter-success {
  max-width: 520px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.07);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.newsletter-success strong {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
}
.newsletter-success p { color: var(--muted); font-size: 14.5px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: #000000;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer-desc { margin-top: 18px; color: var(--muted); font-size: 14px; max-width: 34ch; }
.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-hours { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  padding: 3px 0;
}
.footer-hours div span:last-child { color: var(--text); font-family: var(--font-mono); font-size: 12px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 24px;
  border-top: 1px solid var(--line);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); font-size: 13px; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }
.copyright { color: #6B7280; font-size: 13px; }

/* ── Floating WhatsApp ──────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 150;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #090A0C;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: gold-pulse 2.6s ease-out infinite;
  transition: transform 0.25s var(--ease-out), background-color 0.25s;
}
.wa-float:hover { transform: scale(1.08); background: var(--gold-hover); }
.wa-float svg { width: 26px; height: 26px; }
@keyframes gold-pulse {
  0% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(212, 175, 55, 0.35); }
  70% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 16px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media img { aspect-ratio: 16 / 10; }
}

@media (max-width: 768px) {
  .section { padding: 76px 0; }
  .hero-slides { display: none; }
  .hero-video { display: block; }
  .hero-dots { display: none; }
  .hero-content { padding-bottom: 70px; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-body { border-left: none; border-top: 1px solid var(--line); padding: 32px 26px; }
  .promo-media { min-height: 240px; }
  .modal-cols { grid-template-columns: 1fr; }
  .modal-body { padding: 26px 22px 32px; }
  .subservice { grid-template-columns: 1fr; }
  .subservice .sub-price { grid-column: 1; grid-row: auto; text-align: left; }
  .subservice .btn { grid-column: 1; grid-row: auto; justify-self: start; margin-top: 6px; }
  .newsletter-panel { padding: 48px 24px; }
  .trust-list { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 100%; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-grid, .products-grid { grid-template-columns: 1fr; }
  .wa-float { right: 16px; bottom: 16px; }
}

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .wa-float { animation: none; }
  .reveal-line > span { animation: none; transform: none; }
  .hero-sub, .hero-cta { animation: none; }
  .hero-slide { transition: opacity 1s ease; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
