@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   ROSMAN — Main Stylesheet
   ============================================================ */
/* ---- CSS Variables ---- */
:root {
  --gold:       #c9a84c;
  --gold-light: #e4c06e;
  --dark:       #0d0d0d;
  --dark-2:     #141414;
  --dark-3:     #1a1a1a;
  --dark-4:     #222;
  --border:     rgba(201,168,76,.2);
  --text:       #e8e8e8;
  --text-muted: #999;
  --radius:     8px;
  --transition: .25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.text-center { text-align: center; }
.mx-auto    { margin-left: auto; margin-right: auto; }
.gold       { color: var(--gold); }

/* ---- Section Labels & Titles ---- */
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 1rem;
}
.section-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.section-header { margin-bottom: 3.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.05); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #000; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   NAVBAR
   ============================================================ */
/*
 * Live HTML structure:
 *   <nav class="navbar">
 *     <div class="navbar-inner">  ← constrains to max-w-7xl
 *       <a class="navbar-logo"> <img> <div class="navbar-brand"> … </div> </a>
 *       <nav class="navbar-nav"> <a> … </nav>
 *       <div class="navbar-right"> phone + cta </div>
 *       <div class="hamburger"> … </div>
 *     </div>
 *   </nav>
 */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
/* Inner row — mirrors Manus max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 */
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* ---- Logo wrapper ---- */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.navbar-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 4px;
}

/* ---- Brand text block ---- */
.navbar-brand {
  line-height: 1.2;
}
.navbar-brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
}
.navbar-brand-sub {
  display: block;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Nav links ---- */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-nav a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { color: #fff; }

/* ---- Right side: phone + CTA ---- */
.navbar-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}
.navbar-phone:hover { color: #fff; }
.navbar-phone svg { color: var(--gold); }
/* ---- CTA button ---- */
.navbar-cta {
  flex-shrink: 0;
  padding: .6rem 1.25rem;
  font-size: .8rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2rem;
  gap: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu a {
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,.15) 100%
  );
}

/* Gold accent line on left edge */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 10;
}

/* Bottom fade into next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 5;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 6; flex: 1; display: flex; align-items: center; justify-content: flex-start; width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.hero-content { max-width: 640px; padding: 6rem 0 5rem; }

.hero-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-label-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 0;
}
/* Second line of hero title (gold) */
.hero-title-gold {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  display: block;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---- Hero Stats — inline row inside content (matches Manus preview) ---- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 2;
  background: none;
  backdrop-filter: none;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
  text-align: left;
}
.hero-stat-divider { display: none; }
.stat-icon { display: none; }
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .25rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: .97rem;
}
.about-text p strong { color: #fff; }

/* 2×2 grid of stat cards */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-stat-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.about-stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.about-stat-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: .25rem;
}
.about-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about-stat-number.gold { color: var(--gold); font-size: 1.4rem; font-weight: 700; }
.about-stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--dark-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-icon-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.service-body { padding: 1.5rem; }
.service-body h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .6rem;
}
.service-body p { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-list li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-list li:last-child { border-bottom: none; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  border-radius: 0;
}
.trust-card:hover { border-color: transparent; transform: none; }
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-card-body { flex: 1; }
.trust-card h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .4rem;
}
.trust-card p { font-size: .83rem; color: var(--text-muted); }

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects-section { background: var(--dark-2); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.project-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--dark-3);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover img { transform: scale(1.07); }
.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-info h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.project-cat {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-zoom {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

/* ============================================================
   CLIENTS / ZA KOGA RADIMO
   ============================================================ */
.clients-section { background: var(--dark); }
.clients-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.clients-text p { color: var(--text-muted); font-size: .97rem; }
.clients-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.client-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.client-card:hover img { transform: scale(1.05); }
.client-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.25rem 1rem;
  gap: .5rem;
}
.client-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.client-card-overlay span,
.client-card-overlay strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.client-card-overlay small {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section { background: var(--dark-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}
.review-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.review-author strong {
  display: block;
  font-size: .9rem;
  color: #fff;
}
.review-author span {
  font-size: .8rem;
  color: var(--gold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #1a1200 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.cta-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.cta-text p { color: var(--text-muted); font-size: .97rem; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo img { height: 40px; width: 40px; object-fit: contain; border-radius: 4px; }
.footer-logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  line-height: 1.2;
}
.footer-logo-sub {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); max-width: 280px; line-height: 1.7; }
.footer-col h4,
.footer-col h5 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: .6rem;
}
.footer-col ul li a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: var(--text-muted);
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; font-size: 1rem; line-height: 1.4; }
.footer-hours p { font-size: .88rem; color: var(--text-muted); margin-bottom: .4rem; }
.footer-hours p span { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.lightbox-nav button {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .85rem;
  transition: background var(--transition);
}
.lightbox-nav button:hover { background: rgba(255,255,255,.2); }
.lightbox-title {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin-top: .5rem;
}

/* ============================================================
   PAGE: O NAMA
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(to bottom, var(--dark-2), var(--dark));
  border-bottom: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--gold); }
.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h4 {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .5rem;
}
.value-card p { font-size: .88rem; color: var(--text-muted); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cert-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.cert-card:hover { border-color: var(--gold); }
.cert-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.cert-card-body { padding: .75rem 1rem; }
.cert-card-body span { font-size: .8rem; color: var(--text-muted); }
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--border); }

/* ============================================================
   PAGE: PROJEKTI
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.25rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}.page-hero .section-divider {
  margin-bottom: 0;
}
.projekti-page {
  padding-top: 3rem;
}

/* ============================================================
   PAGE: KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-size: .92rem;
  color: #fff;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #4ade80;
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.form-error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #f87171;
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-text strong { display: block; font-size: .85rem; color: #fff; margin-bottom: .2rem; }
.contact-info-text span { font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   PAGE: USLUGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-text .section-label { margin-bottom: .5rem; }
.service-detail-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 1rem;
}
.service-detail-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: .6rem; }
.service-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.service-feature svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-content { padding-bottom: 4rem; }
  .hero-stat { flex: 0 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-layout { grid-template-columns: 1fr; gap: 2rem; }
  .clients-cards { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-stat { flex: 0 0 auto; }
  .projects-grid { grid-template-columns: 1fr; }
  .clients-cards { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 1rem 0; }
  .about-stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE: USLUGE  (usluge.php class aliases)
   ============================================================ */

/* Page wrapper — adds top padding so content clears the fixed navbar */
.usluge-page {
  padding-top: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .75rem;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---- Service detail blocks ---- */
/* Mirrors .service-detail from style.css */
.usluge-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.usluge-detail:last-child { border-bottom: none; }

/* Alternate: even blocks flip image to the right */
.usluge-detail:nth-child(even) {
  direction: rtl;
}
.usluge-detail:nth-child(even) > * {
  direction: ltr;
}

/* Image */
.usluge-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.usluge-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.usluge-detail:hover .usluge-detail-img img { transform: scale(1.03); }

/* Service icon badge (if used) */
.usluge-detail-img .service-icon-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

/* Text */
.usluge-detail-text .section-label { margin-bottom: .5rem; }
.usluge-detail-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.usluge-detail-text p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1rem;
}
.usluge-detail-text ul {
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .75rem;
}
.usluge-detail-text ul li {
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.usluge-detail-text ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Divider variant with .left alignment */
.section-divider.left {
  margin-left: 0;
  margin-bottom: 1.5rem;
}

/* ---- CTA Banner (cta-banner vs cta-section) ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a1200 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-text .label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.cta-banner-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.cta-banner-text p { color: var(--text-muted); font-size: .97rem; }
.cta-banner-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .usluge-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 50px 0;
  }
  .usluge-detail:nth-child(even) { direction: ltr; }
  .usluge-detail-text ul { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-buttons { justify-content: center; }
}

/* ============================================================
   PAGE: O NAMA  (o-nama.php class aliases)
   ============================================================ */

/* ---- Story section: two-column text + stats ---- */
.o-nama-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.o-nama-story-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}
.o-nama-story-text p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1rem;
}
.o-nama-story-text p strong { color: #fff; }

/* ---- 2×2 stat cards ---- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.stat-card-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-card-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Values section ---- */
.o-nama-values {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.o-nama-values .section-divider {
  margin: 0 auto 2.5rem;
}
/* values-grid already defined (3-col), override to 4-col for this page */
.o-nama-values .values-grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
}
/* h3 inside value-card (PHP uses h3, style.css only had h4) */
.value-card h3 {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .5rem;
}
/* emoji icons inside .value-icon */
.value-icon {
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Certificates section ---- */
.sertifikati-section {
  padding: 80px 0;
  text-align: center;
}
.sertifikati-section .section-divider {
  margin: 0 auto 2.5rem;
}
.sertifikati-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.sertifikat-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.sertifikat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.sertifikat-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.sertifikat-title {
  padding: .6rem 1rem;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .o-nama-values .values-grid { grid-template-columns: repeat(2, 1fr); }
  .sertifikati-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .o-nama-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 50px 0;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .o-nama-values .values-grid { grid-template-columns: 1fr; }
  .sertifikati-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .sertifikati-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE: PROJEKTI  (projekti.php class aliases)
   ============================================================ */

/* ---- Filter bar alias ---- */
.projekti-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
/* filter-btn already styled globally — no changes needed */

/* ---- Projects grid: ensure 4 cols on projekti page ---- */
.projekti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 4rem;
}

/* ---- Image count badge ("+2" top-right corner) ---- */
.project-card-count {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--gold);
  color: #000;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .25rem .6rem;
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}

/* ---- Hover overlay (alias for .project-overlay) ---- */
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
  gap: .25rem;
}
.project-card:hover .project-card-overlay { opacity: 1; }

/* ---- Overlay text ---- */
.project-card-title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.project-card-cat {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-card-imgs {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: .15rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .projekti-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .projekti-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .projekti-grid { grid-template-columns: 1fr; }
}
