/* =====================================================================
   AWWWARDS-LEVEL — iStar mobiltelefon szerviz
   Full redesign: Syne + Inter, dark gold, cinematic animations
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ====== VARIABLES ====== */
:root {
  --bg:        #050505;
  --bg-alt:    #0c0c0c;
  --gold:      #D4AF37;
  --gold-lt:   #F2D97A;
  --gold-dk:   #8C7222;
  --gold-rgb:  212, 175, 55;
  --text:      #E8ECF0;
  --muted:     #8A96A4;
  --border:    rgba(212,175,55,0.12);
  --border-h:  rgba(212,175,55,0.45);
  --glass:     rgba(255,255,255,0.025);
  
  --ff-head: 'Exo 2', sans-serif;
  --ff-body: 'Open Sans', sans-serif;
  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
  --ease:     cubic-bezier(0.37, 0, 0.63, 1);
  
  --radius:   16px;
  --radius-sm: 10px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
ul { list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
input, textarea, button { font-family: inherit; }
em { font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.text-center { text-align: center; }

/* ====== NOISE OVERLAY ====== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ====== BACKGROUND CANVAS ====== */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

/* ====== SCROLL PROGRESS ====== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  z-index: 9000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.6);
}

/* ====== PRELOADER ====== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.preloader-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(var(--gold-rgb), 0.08) 0%, transparent 70%);
  animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.preloader-logo {
  animation: starSpin 2s linear infinite;
}

@keyframes starSpin {
  to { transform: rotate(360deg); }
}

.loader-star {
  filter: drop-shadow(0 0 20px rgba(var(--gold-rgb), 0.8));
}

.preloader-name {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  display: flex;
  gap: 2px;
}

.loader-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: charIn 0.6s var(--ease-out) both;
  animation-delay: calc(var(--i) * 100ms);
}

.loader-char.gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes charIn {
  to { opacity: 1; transform: translateY(0); }
}

.preloader-line-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  border-radius: 1px;
}

.preloader-line {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.8);
}

.preloader-count {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.preloader.out {
  animation: preloaderOut 1s var(--ease-in) forwards;
}

@keyframes preloaderOut {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; pointer-events: none; }
}


/* ====== PAGE VIEWS (SPA) ====== */
.page-view { display: none; }
.page-view.active {
  display: block;
  animation: pageReveal 0.8s var(--ease-out) forwards;
}

@keyframes pageReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====== REVEAL ANIMATIONS (GPU safe: only opacity + transform) ====== */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal="fade-up"]    { transform: translateY(40px); }
[data-reveal="fade-down"]  { transform: translateY(-30px); }
[data-reveal="fade-left"]  { transform: translateX(40px); }
[data-reveal="fade-right"] { transform: translateX(-40px); }
[data-reveal="fade-in"]    { transform: scale(0.97); }

[data-reveal].revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ====== TEXT COLOURS ====== */
.gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Global text protection — words NEVER split mid-word, no hyphens */
h1, h2, h3, h4, .hero-title, .page-title, .section-title, .title-line, .btn-primary, .stat-val {
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  max-width: 100%;
  letter-spacing: 0.1em !important;
}

/* Localized Brand Font */
.font-jedi {
  font-family: inherit;
  font-weight: inherit;
}

/* Gallery images & videos */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.05); }

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.25);
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.35), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(var(--gold-rgb), 0.45);
}
.btn-primary:active { transform: scale(0.98); }

.btn-primary.small { padding: 10px 22px; font-size: 11px; }

.btn-icon {
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover .btn-icon { transform: translateX(4px) rotate(45deg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text);
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}
.btn-ghost:hover {
  border-color: rgba(var(--gold-rgb), 0.5);
  color: var(--gold-lt);
  background: rgba(var(--gold-rgb), 0.05);
  transform: translateY(-4px);
}

/* ====== NAVIGATION ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  padding: 0;
  transition: background 0.6s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.6s;
}

.nav.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(var(--gold-rgb), 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
}

.nav-link {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
  box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.5);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}
.nav-phone:hover {
  background: rgba(var(--gold-rgb), 0.08);
  border-color: rgba(var(--gold-rgb), 0.4);
  transform: translateY(-2px);
}
.nav-phone i { font-size: 11px; }

.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transition: border-color 0.3s;
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, width 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }

/* ====== MOBILE MENU ====== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 7500;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-link {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.3s;
  display: block;
  padding: 8px 0;
}
.mobile-link:hover { color: var(--gold-lt); }

.mobile-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.mobile-info a, .mobile-info div {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  color: var(--muted);
  transition: color 0.3s;
}
.mobile-info a:hover { color: var(--gold); }
.mobile-info i { color: var(--gold); }

.mobile-socials {
  display: flex;
  gap: 16px;
}
.mobile-socials a {
  width: 44px; height: 44px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.mobile-socials a:hover {
  background: rgba(var(--gold-rgb), 0.1);
  transform: scale(1.1);
}

/* ====== TICKER ====== */
.ticker {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: rgba(var(--gold-rgb), 0.04);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.08);
  padding: 12px 0;
  margin-top: 80px;
}

.ticker-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 25s linear infinite;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-track .sep { color: var(--gold); opacity: 0.6; font-size: 8px; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vline {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.02);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 100px;
  background: rgba(var(--gold-rgb), 0.04);
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.8);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(var(--gold-rgb), 0.6); }
  50% { box-shadow: 0 0 14px rgba(var(--gold-rgb), 1); }
}

.hero-meta-right {
  font-family: var(--ff-head);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sep-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5.5vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  display: block;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.title-line {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  padding-right: 0.15em;
}

@media (max-width: 600px) {
  .title-line {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    font-size: clamp(1.5rem, 7.5vw, 3.5rem);
  }

  .hero-title {
    font-size: clamp(1.4rem, 7vw, 3rem);
    letter-spacing: -0.02em;
  }
}

.gold-line {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 40%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.italic-line { font-style: italic; color: rgba(255,255,255,0.4); }

.hero-sub {
  max-width: 520px;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-track {
  width: 24px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding: 4px;
}

.scroll-thumb {
  width: 4px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(16px); opacity: 0.3; }
}

/* Hero orbs — STATIC, no animation, no filter (performance) */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.06) 0%, transparent 70%);
  top: 8%; right: -8%;
}
.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(60,80,180,0.05) 0%, transparent 70%);
  bottom: 12%; left: 5%;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.04), transparent 70%);
  top: 50%; left: 40%;
}


/* ====== REVIEWS ====== */
.reviews-section {
  padding: 0 0 60px;
}
.container--reviews {
  max-width: 1100px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.review-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-color: rgba(var(--gold-rgb), 0.3);
}
.rc-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}
.rc-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 20px;
}
.rc-meta h4 {
  font-family: var(--ff-head);
  color: #fff;
  font-size: 16px;
  margin-bottom: 2px;
}
.stars {
  color: #fbbc04; /* Google Star Yellow */
  font-size: 14px;
  letter-spacing: 2px;
}
.rc-icon {
  position: absolute;
  top: 0; right: 0;
  font-size: 24px;
  color: rgba(255,255,255,0.1);
}
.review-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ====== STATS ====== */
.stats-section {
  padding: 0 40px 60px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(20px);
}

.stat-card {
  padding: 48px 40px;
  position: relative;
  text-align: center;
  transition: background 0.4s;
  border-right: 1px solid rgba(var(--gold-rgb), 0.08);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(var(--gold-rgb), 0.04); }

.stat-number {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.stat-suffix {
  font-size: 0.5em;
  opacity: 0.7;
}

.stat-label {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.stat-bar {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 1s var(--ease-out) 0.3s;
  box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.5);
}
.stat-card.revealed .stat-bar { width: 80%; }

/* ====== SECTION HEADERS ====== */
.section-head { margin-bottom: 72px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

/* ====== FACEBOOK BANNER ====== */
.fb-section { padding: 0 40px 40px; }

.fb-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  max-width: 1100px;
  margin: 0 auto;
}

.fb-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(24,119,242,0.05), transparent);
  transition: opacity 0.5s;
  opacity: 0;
}
.fb-card:hover .fb-card-bg { opacity: 1; }
.fb-card:hover {
  border-color: rgba(var(--gold-rgb), 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.fb-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1877F2, #0d5fce);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(24,119,242,0.3);
}

.fb-text { flex: 1; }
.fb-text h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.fb-text p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.fb-arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
}
.fb-card:hover .fb-arrow {
  background: var(--gold);
  color: #000;
  transform: scale(1.1) rotate(45deg);
}

/* ====== SERVICES ====== */
.services-section { padding: 60px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.5s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.service-card:hover {
  border-color: rgba(var(--gold-rgb), 0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.service-card--featured {
  border-color: rgba(var(--gold-rgb), 0.15);
  background: rgba(var(--gold-rgb), 0.03);
}

.sc-num {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.15);
  margin-bottom: 32px;
  transition: color 0.4s;
}
.sc-num.gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card:hover .sc-num { color: rgba(255,255,255,0.3); }

.sc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  background: rgba(var(--gold-rgb), 0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 28px;
  transition: all 0.5s var(--ease-out);
}
.sc-icon.gold {
  border-color: rgba(var(--gold-rgb), 0.35);
  background: rgba(var(--gold-rgb), 0.1);
  -webkit-background-clip: padding-box;
  -webkit-text-fill-color: var(--gold-lt);
}
.service-card:hover .sc-icon {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.35);
}
.service-card:hover .sc-icon.gold {
  -webkit-text-fill-color: #000;
}

.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text);
  transition: color 0.3s;
}
.service-card h3.gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card:hover h3 { color: #fff; }

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.sc-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  transition: width 0.6s var(--ease-out);
}
.sc-line.gold { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.service-card:hover .sc-line { width: 100%; }

.sc-glow {
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 100px;
  background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.12), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.5s, bottom 0.5s var(--ease-out);
}
.sc-glow.gold { background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.2), transparent 70%); }
.service-card:hover .sc-glow { opacity: 1; bottom: -30px; }

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  padding: 5px 14px;
  border-radius: 100px;
}

/* ====== GALLERY ====== */
.gallery-section { padding: 0 0 60px; }
.gallery-section .container { padding-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--gold-rgb), 0.06);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-item:hover {
  border-color: rgba(var(--gold-rgb), 0.2);
  transform: scale(1.02);
}
.gallery-item:hover::before { opacity: 1; }

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ====== PAGE HERO ====== */
.page-hero {
  padding: 110px 0 40px;
}
.page-hero .container { max-width: 800px; }

.page-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0 30px;
}

.page-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ====== RÓLUNK ====== */
.rolunk-section { padding: 20px 0 60px; }

.services-list-panel {
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  border-radius: 24px;
  padding: 60px;
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(20px);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.services-list li:hover {
  background: rgba(var(--gold-rgb), 0.04);
  padding-left: 28px;
}

.list-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.4s;
}
.list-dot.gold { background: var(--gold); box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.6); }
.services-list li:hover .list-dot { background: var(--gold); box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.6); }

.gold-item span:not(.list-dot) {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* ====== CONTACT ====== */
.contact-section { padding: 20px 0 60px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(var(--gold-rgb), 0.1);
}

.map-placeholder {
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.02);
  font-family: var(--ff-head);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.015);
  transition: all 0.4s var(--ease-out);
}
.contact-card:not(.no-link):hover {
  border-color: rgba(var(--gold-rgb), 0.25);
  background: rgba(var(--gold-rgb), 0.04);
  transform: translateX(6px);
}

.cc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(var(--gold-rgb), 0.06);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
}

.cc-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.cc-text strong {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.cc-text span { font-size: 14px; color: var(--text); }

.cc-arrow {
  color: var(--muted);
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.contact-card:not(.no-link):hover .cc-arrow { opacity: 1; transform: translateX(4px); }

/* ====== CONTACT FORM ====== */
.contact-form {
  padding: 56px 52px;
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
}

.form-head {
  margin-bottom: 40px;
}
.form-head h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-head p { font-size: 14px; color: var(--muted); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}
.form-group:last-child { margin-bottom: 40px; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px 20px 14px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.4s, background 0.4s;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(var(--gold-rgb), 0.4);
  background: rgba(var(--gold-rgb), 0.03);
}

.form-group label {
  position: absolute;
  top: 18px; left: 20px;
  font-size: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: all 0.35s var(--ease-out);
  letter-spacing: 0.02em;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg);
  padding: 0 6px;
  border-radius: 4px;
}

.form-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  border-radius: 2px;
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.4);
}
.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line { width: 100%; }

/* ====== FOOTER ====== */
.footer {
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
}

.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.05), transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
}

.footer-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.footer-logo em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: all 0.4s var(--ease-out);
}
.footer-socials a:hover {
  background: rgba(var(--gold-rgb), 0.1);
  border-color: rgba(var(--gold-rgb), 0.4);
  transform: translateY(-4px);
}

.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(var(--gold-rgb), 0.5);
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-col > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-newsletter input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.footer-newsletter input:focus { border-color: rgba(var(--gold-rgb), 0.3); }
.footer-newsletter input::placeholder { color: var(--muted); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.24);
  font-family: var(--ff-head);
  letter-spacing: 0.04em;
}
.footer-bottom a:hover { color: var(--gold); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-bottom: 1px solid rgba(var(--gold-rgb), 0.08); }
  .stat-card:nth-child(2), .stat-card:nth-child(4) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 8px 14px; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { padding: 0 4px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-meta-right { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .services-list-panel { padding: 40px 28px; }
  .fb-card { padding: 32px 28px; gap: 24px; }
  .stats-section { padding: 0 20px 80px; }
  .fb-section { padding: 0 20px 60px; }
  .container { padding: 0 20px; }
}

@media (max-width: 768px) {
  .hero-title { 
    font-size: clamp(2rem, 8vw, 3.5rem); 
    letter-spacing: -0.02em;
  }
  .title-line { white-space: normal; word-break: keep-all; overflow-wrap: normal; hyphens: none; }
  .page-title { font-size: clamp(1.8rem, 7vw, 3rem); }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .page-hero { padding: 120px 0 60px; }
  .services-section { padding: 60px 0; }
  .gallery-section { padding: 0 0 80px; }
  .rolunk-section, .contact-section { padding: 20px 0 80px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding: 90px 16px 50px; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); border-radius: 14px; }
  .stat-card { padding: 28px 18px; }
  .stat-number { font-size: clamp(2rem, 8vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-wide { grid-column: auto; }
  .gallery-tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .fb-card { flex-direction: column; text-align: center; gap: 20px; padding: 28px 20px; }
  .fb-arrow { display: none; }
  .fb-icon-wrap { margin: 0 auto; }
  .section-title { text-align: left; }
  .services-list-panel { padding: 28px 16px; }
  .services-list { grid-template-columns: 1fr; }
  .nav-phone { display: none; }
  .ticker { display: none; }
  .contact-form { padding: 28px 20px; }
  .form-head h3 { font-size: 1.4rem; }
  .footer-col h4::after { width: 24px; }
  .nav-inner { padding: 0 20px; }
  .hero-scroll { display: none; }
  .hero-badge { font-size: 10px; padding: 6px 14px; }
  .section-head { margin-bottom: 48px; }
}

/* Lightbox Styling */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox-content {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
}
.lightbox-close:hover {
  color: #D4AF37;
}
.gallery-item img {
  cursor: zoom-in;
}
