*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --dark-card: #1a1a1a;
  --dark-border: #2a2a2a;
  --accent: #E8A020;
  --accent-hover: #F0B840;
  --accent-dim: rgba(232, 160, 32, 0.15);
  --white: #f5f5f0;
  --gray: #999;
  --gray-light: #bbb;
  --text: #d4d4d4;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-bar {
  width: 200px; height: 2px; background: var(--dark-border);
  margin-top: 20px; border-radius: 2px; overflow: hidden;
}
.preloader-bar::after {
  content: ''; display: block; width: 60%; height: 100%;
  background: var(--accent);
  animation: preload 1s ease-in-out infinite;
}
@keyframes preload {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(230%); }
}
.preloader-text {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 6px;
  color: var(--white);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled { border-bottom-color: var(--dark-border); background: rgba(10, 10, 10, 0.95); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 3px;
  color: var(--white); text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gray-light); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-condensed);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 10px 28px; border: 1px solid var(--accent);
  color: var(--accent); text-decoration: none;
  transition: all 0.3s ease; flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent); color: var(--black); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
  background-size: cover; background-position: center;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.75) 0%,
      rgba(10,10,10,0.62) 35%,
      rgba(10,10,10,0.62) 65%,
      rgba(10,10,10,0.88) 100%
    );
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-accent-glow {
  position: absolute; bottom: 0; left: 0;
  width: 60%; height: 50%;
  background: radial-gradient(ellipse at 20% 100%, rgba(232, 160, 32, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 120px 60px 60px;
}
.hero-content { max-width: 760px; }
.hero-tag {
  font-family: var(--font-condensed);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: ''; width: 40px; height: 1px; background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.95; color: var(--white);
  margin-bottom: 24px;
}

.hero-title .accent { color: var(--accent); }
.hero-desc {
  font-size: 17px; line-height: 1.7;
  color: var(--gray-light); max-width: 520px;
  margin-bottom: 36px; font-weight: 300;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed);
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 16px 36px;
  background: var(--accent); color: var(--black);
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed);
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 16px 36px;
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none; cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== MARQUEE ===== */
.marquee-section {
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 18px 0; overflow: hidden;
  background: var(--dark);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-condensed);
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gray); white-space: nowrap;
  display: flex; align-items: center; gap: 60px;
}
.marquee-item::after { content: '◆'; color: var(--accent); font-size: 6px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS SHARED ===== */
.section { padding: 120px 60px; }
.section-header { margin-bottom: 64px; }
.section-tag {
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ''; width: 30px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white); line-height: 1;
}
.section-subtitle {
  font-size: 16px; color: var(--gray);
  max-width: 560px; margin-top: 16px;
  line-height: 1.7; font-weight: 300;
}

/* ===== O NAMA ===== */
#o-nama { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(232, 160, 32, 0.2);
}
.about-image-accent {
  position: absolute; top: -16px; left: -16px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
}
.about-image-badge {
  position: absolute; bottom: -20px; right: 24px;
  background: var(--accent); color: var(--black);
  padding: 16px 24px; text-align: center; z-index: 2;
}
.about-image-badge-num {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1;
}
.about-image-badge-text {
  font-family: var(--font-condensed);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600;
}
.about-text p {
  font-size: 15px; line-height: 1.8;
  color: var(--text); margin-bottom: 16px;
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.about-highlight {
  padding: 20px;
  border: 1px solid var(--dark-border);
  transition: border-color 0.3s;
  display: flex; align-items: center; gap: 14px;
}
.about-highlight:hover { border-color: var(--accent); }
.about-highlight-icon { font-size: 24px; flex-shrink: 0; }
.about-highlight-text {
  font-family: var(--font-condensed);
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-light); font-weight: 500;
}

/* ===== USLUGE ===== */
#usluge { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--dark);
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease; z-index: 2;
}
.service-card:hover { border-color: var(--dark-border); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.6) contrast(1.1);
}
.service-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,20,20,0.9) 100%);
}
.service-num {
  position: absolute; top: 12px; right: 16px;
  font-family: var(--font-display);
  font-size: 48px; color: rgba(232, 160, 32, 0.25);
  line-height: 1; z-index: 1;
}
.service-card-body { padding: 28px 28px 32px; }
.service-title {
  font-family: var(--font-condensed);
  font-size: 20px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 12px;
}
.service-desc { font-size: 14px; line-height: 1.7; color: var(--gray); }

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--dark-border);
}
.gallery-strip-item {
  aspect-ratio: 16/10;
  overflow: hidden; position: relative;
}
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  transition: all 0.5s ease;
}
.gallery-strip-item:hover img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.03);
}
.gallery-strip-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.5) 100%);
}

/* ===== PREDNOSTI ===== */
#prednosti {
  background: var(--dark);
  position: relative;
}
#prednosti::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.advantages-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--dark-border);
  position: relative; z-index: 1;
}
.advantage {
  padding: 48px 28px;
  border-right: 1px solid var(--dark-border);
  text-align: center; transition: background 0.3s;
  background: var(--black);
}
.advantage:last-child { border-right: none; }
.advantage:hover { background: #111; }
.advantage-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.advantage-title {
  font-family: var(--font-condensed);
  font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--white); margin-bottom: 12px;
}
.advantage-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== CJENIK ===== */
#cjenik { background: var(--black); }
.pricing-note {
  font-size: 15px; color: var(--gray);
  max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.pricing-table thead th {
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent); text-align: left;
  padding: 14px 20px;
  border-bottom: 2px solid var(--accent);
}
.pricing-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--dark-border);
  font-size: 14px; color: var(--text);
}
.pricing-table tbody tr { transition: background 0.2s; }
.pricing-table tbody tr:hover { background: rgba(232, 160, 32, 0.04); }
.pricing-table .price-col {
  font-family: var(--font-condensed);
  font-weight: 600; font-size: 15px; color: var(--white);
}
.pricing-cta {
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid var(--dark-border);
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  background: var(--dark);
}
.pricing-cta p { font-size: 15px; color: var(--gray-light); }
.pricing-cta p strong { color: var(--white); font-weight: 600; }

/* ===== KONTAKT ===== */
#kontakt { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block-label {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent); margin-bottom: 8px;
}
.contact-block-value {
  font-size: 17px; color: var(--white); line-height: 1.6;
}
.contact-block-value a {
  color: var(--white); text-decoration: none; transition: color 0.3s;
}
.contact-block-value a:hover { color: var(--accent); }
.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.contact-social a {
  width: 44px; height: 44px;
  border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light); text-decoration: none;
  font-size: 18px; transition: all 0.3s;
}
.contact-social a:hover { border-color: var(--accent); color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid var(--dark-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
  outline: none; resize: vertical;
  -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { min-height: 110px; }
.contact-form .btn-primary { width: 100%; justify-content: center; }
.map-section {
  height: 400px;
  border-top: 1px solid var(--dark-border);
  background: var(--dark-card);
  position: relative; overflow: hidden;
}
.map-section iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(0.8) contrast(1.1) brightness(0.7);
  transition: filter 0.4s;
}
.map-section:hover iframe { filter: grayscale(0.4) contrast(1) brightness(0.8); }

/* ===== FOOTER ===== */
.footer {
  padding: 48px 60px;
  border-top: 1px solid var(--dark-border);
  background: var(--black);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 3px; color: var(--white);
}
.footer-logo span { color: var(--accent); }
.footer-text { font-size: 12px; color: var(--gray); letter-spacing: 1px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-family: var(--font-condensed);
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

/* ===== SCROLL REVEAL — MULTIPLE VARIANTS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== HERO ENTRANCE ANIMATIONS ===== */
.hero-bg-image {
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.hero-tag {
  opacity: 0; animation: heroFadeUp 0.8s ease forwards 0.6s;
}
.hero-title {
  opacity: 0; animation: heroFadeUp 0.8s ease forwards 0.8s;
}
.hero-desc {
  opacity: 0; animation: heroFadeUp 0.8s ease forwards 1.0s;
}
.hero-buttons {
  opacity: 0; animation: heroFadeUp 0.8s ease forwards 1.2s;
}
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hero tag line grow animation */
.hero-tag::before {
  width: 0;
  animation: lineGrow 0.6s ease forwards 1.4s;
}
@keyframes lineGrow {
  to { width: 40px; }
}

/* ===== FLOATING PARTICLES in hero ===== */
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
.particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 15s; animation-delay: 2s; }
.particle:nth-child(3) { left: 45%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4) { left: 65%; animation-duration: 14s; animation-delay: 1s; }
.particle:nth-child(5) { left: 80%; animation-duration: 11s; animation-delay: 3s; }
.particle:nth-child(6) { left: 92%; animation-duration: 13s; animation-delay: 5s; }
@keyframes particleFloat {
  0% { bottom: -10px; opacity: 0; transform: translateX(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { bottom: 110%; opacity: 0; transform: translateX(40px); }
}

/* ===== ACCENT LINE ANIMATION on section tags ===== */
.section-tag::before {
  width: 0;
  transition: width 0.6s ease 0.3s;
}
.reveal.visible .section-tag::before,
.reveal-left.visible .section-tag::before,
.reveal-right.visible .section-tag::before {
  width: 30px;
}

/* ===== SERVICE CARD stagger ===== */
.services-grid .service-card { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ===== ABOUT IMAGE accent corner grow ===== */
.about-image-accent {
  width: 0; height: 0;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, height 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}
.reveal-left.visible .about-image-accent {
  width: 80px; height: 80px;
}

/* ===== GALLERY parallax tilt on hover ===== */
.gallery-strip-item {
  transition: transform 0.4s ease;
}
.gallery-strip-item:hover {
  transform: scale(1.02);
  z-index: 2;
}

/* ===== ADVANTAGE CARDS — staggered pop ===== */
.advantage {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s;
}
.advantages-row.visible .advantage:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.advantages-row.visible .advantage:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.advantages-row.visible .advantage:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.advantages-row.visible .advantage:nth-child(4) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }

/* ===== PRICING ROW slide-in ===== */
.pricing-table tbody tr {
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s;
}
.pricing-table.animated tbody tr { opacity: 1; transform: translateX(0); }
.pricing-table.animated tbody tr:nth-child(1) { transition-delay: 0s; }
.pricing-table.animated tbody tr:nth-child(2) { transition-delay: 0.06s; }
.pricing-table.animated tbody tr:nth-child(3) { transition-delay: 0.12s; }
.pricing-table.animated tbody tr:nth-child(4) { transition-delay: 0.18s; }
.pricing-table.animated tbody tr:nth-child(5) { transition-delay: 0.24s; }
.pricing-table.animated tbody tr:nth-child(6) { transition-delay: 0.30s; }
.pricing-table.animated tbody tr:nth-child(7) { transition-delay: 0.36s; }
.pricing-table.animated tbody tr:nth-child(8) { transition-delay: 0.42s; }

/* ===== GLOW PULSE on accent elements ===== */
.btn-primary {
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-primary:hover::after {
  width: 300px; height: 300px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--accent);
  z-index: 1001; width: 0%;
  transition: width 0.05s linear;
}

/* ===== SMOOTH PARALLAX for hero bg ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg-image {
    will-change: transform;
  }
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .section { padding: 80px 32px; }
  .hero-inner { padding: 120px 32px 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .advantages-row { grid-template-columns: 1fr 1fr; }
  .advantage:nth-child(2) { border-right: none; }
  .about-grid { gap: 48px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav-logo { font-size: 20px; letter-spacing: 2px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 20px; }

  /* HERO mobile */
  .hero { min-height: 100svh; align-items: center; }
  .hero-bg-image { background-position: 65% center; }
  .hero-inner {
    padding: 100px 20px 40px;
  }
  .hero-tag { font-size: 11px; letter-spacing: 3px; margin-bottom: 16px; }
  .hero-tag::before { width: 24px; }
  .hero-title { font-size: clamp(38px, 12vw, 56px); margin-bottom: 16px; }
  .hero-desc { font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary {
    justify-content: center; text-align: center;
    padding: 16px 24px; font-size: 13px; min-height: 52px;
  }

  /* Marquee */
  .marquee-section { padding: 14px 0; }
  .marquee-item { font-size: 11px; gap: 40px; }
  .marquee-track { gap: 40px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image-wrap { order: -1; }
  .about-image { aspect-ratio: 16/9; }
  .about-image-accent { width: 48px; height: 48px; top: -10px; left: -10px; }
  .about-image-badge { bottom: -14px; right: 16px; padding: 12px 16px; }
  .about-image-badge-num { font-size: 28px; }
  .about-highlights { grid-template-columns: 1fr; gap: 10px; }
  .about-highlight { padding: 16px; }
  .section-header { margin-bottom: 40px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .service-card-body { padding: 20px; }
  .service-title { font-size: 18px; }

  /* Gallery */
  .gallery-strip { grid-template-columns: 1fr 1fr; }

  /* Advantages */
  .advantages-row { grid-template-columns: 1fr 1fr; }
  .advantage {
    padding: 32px 20px;
    border-right: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
  }
  .advantage:nth-child(2n) { border-right: none; }
  .advantage:nth-child(n+3) { border-bottom: none; }

  /* Pricing */
  .pricing-cta {
    flex-direction: column; text-align: center;
    padding: 24px 20px; gap: 16px;
  }
  .pricing-cta .btn-primary { width: 100%; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; padding: 16px; }

  /* Map */
  .map-section { height: 280px; }

  /* Footer */
  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

}

/* ===== MOBILE MENU (van nav-a, nema stacking context problema) ===== */
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 9999;
  flex-direction: column;
  padding: 48px 28px;
  overflow-y: auto;
  gap: 0;
}
.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.mobile-menu a {
  font-family: var(--font-condensed);
  font-size: 24px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gray-light); text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--dark-border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

/* ===== MOBILE NAV BACKDROP ===== */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.4);
}
.nav-backdrop.open { display: block; }

/* ===== HAMBURGER OPEN STATE ===== */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* ===== SMALL MOBILE ===== */
@media (max-width: 380px) {
  .hero-title { font-size: 36px; }
  .advantages-row { grid-template-columns: 1fr; }
  .advantage { border-right: none !important; border-bottom: 1px solid var(--dark-border); }
  .advantage:last-child { border-bottom: none; }
  .gallery-strip { grid-template-columns: 1fr; }
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
