/* =============================================
   VIBE VEGAS — Global Styles
   Casino Event Company | Poland | 2026
   ============================================= */

/* Fonts loaded via <link rel="preload"> in HTML for performance — no @import here */

/* ---- CSS Variables ---- */
:root {
  --gold:        #d4af37;
  --gold-light:  #f0d060;
  --gold-dark:   #a8870a;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #242424;
  --dark-4:      #2e2e2e;
  --white:       #ffffff;
  --white-80:    rgba(255,255,255,0.80);
  --white-50:    rgba(255,255,255,0.50);
  --white-20:    rgba(255,255,255,0.20);
  --gold-20:     rgba(212,175,55,0.20);
  --gold-10:     rgba(212,175,55,0.10);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-gold: 0 0 30px rgba(212,175,55,0.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- Selection ---- */
::selection { background: var(--gold); color: var(--black); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 500; }
p  { font-size: clamp(0.9rem, 1.5vw, 1.05rem); color: var(--white-80); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--gold); }
.section-desc {
  color: var(--white-80);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* =============================================
   LAYOUT
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

/* Gold divider line */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}
.section-center .gold-line { margin: 0 auto 1.5rem; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-20);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--white-80);
  border: 1.5px solid var(--white-20);
}
.btn-ghost:hover {
  border-color: var(--white-80);
  color: var(--white);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--gold-20);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.nav-logo:hover { color: var(--gold); }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white-80);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--gold); }

.nav-cta { margin-left: 16px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  z-index: 1100;
}
.burger:hover { background: var(--gold-10); }
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white-80);
  padding: 12px 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 20px; font-size: 1rem; padding: 16px 48px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-20);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--white-20);
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; color: var(--white-50); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--white-20);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--white-50);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); transform: translateY(-3px); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--white-50);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--white-50);
}
.footer-bottom a { color: var(--white-50); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(212,175,55,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(212,175,55,0.05) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0f0f0f 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles .particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
  opacity: 0;
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-80);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-50);
  animation: bounce 2.5s infinite;
  z-index: 2;
}
.hero-scroll .arrow {
  width: 20px; height: 30px;
  border: 1.5px solid var(--white-20);
  border-radius: 10px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 5px;
}
.hero-scroll .arrow::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* Decorative cards grid (right side hero) */
.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.hero-cards {
  position: relative;
  width: 380px; height: 420px;
}
.hero-card {
  position: absolute;
  width: 200px; height: 280px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--dark-3), var(--dark-2));
  border: 1px solid var(--gold-20);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: transform 0.6s ease;
}
.hero-card:nth-child(1) { top: 0; left: 0; transform: rotate(-12deg); animation: card-float-1 6s ease-in-out infinite; }
.hero-card:nth-child(2) { top: 80px; left: 90px; z-index: 3; animation: card-float-2 6s ease-in-out infinite 1s; }
.hero-card:nth-child(3) { top: 30px; right: 0; transform: rotate(10deg); animation: card-float-3 6s ease-in-out infinite 0.5s; }
@keyframes card-float-1 {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%       { transform: rotate(-12deg) translateY(-15px); }
}
@keyframes card-float-2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes card-float-3 {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50%       { transform: rotate(10deg) translateY(-12px); }
}

/* =============================================
   NUMBERS / STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--gold-20);
  border-bottom: 1px solid var(--gold-20);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {
  padding: 20px;
  transition: var(--transition);
  cursor: default;
}
.stat-item:hover { transform: translateY(-4px); }
.stat-item:not(:last-child) {
  border-right: 1px solid var(--white-20);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--dark-2);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold-10), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover { border-color: var(--gold-20); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold-20), var(--gold-10));
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.card:hover .card-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-color: var(--gold); transform: rotate(-5deg) scale(1.1); }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--gold-20); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-20);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--white-80); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.78rem; color: var(--white-50); }

/* =============================================
   PROCESS / HOW IT WORKS
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-20), var(--gold-20), transparent);
}
.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.step-number {
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
  background: var(--dark);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover .step-number { background: var(--gold); color: var(--black); box-shadow: 0 0 30px rgba(212,175,55,0.5); }
.step-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.step-card p { font-size: 0.88rem; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--dark-2);
  border-top: 1px solid var(--gold-20);
  border-bottom: 1px solid var(--gold-20);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,55,0.06), transparent);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { margin: 0 auto 40px; max-width: 560px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--gold-20);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(212,175,55,0.06), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { margin: 0 auto; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-50);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form {
  background: var(--dark-2);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-xl);
  padding: 50px;
  transition: var(--transition);
}
.contact-form:hover { border-color: var(--gold-20); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark-3);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-50); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-10); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark-3); }
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select { border-color: #e05252 !important; box-shadow: 0 0 0 3px rgba(224,82,82,0.15) !important; }
.form-group.has-error input[type="checkbox"] { outline: 2px solid #e05252; outline-offset: 2px; box-shadow: none !important; }
.form-error-msg { color: #e05252; font-size: 0.78rem; margin-top: 2px; display: none; }
.form-group.has-error .form-error-msg { display: block; }

/* =============================================
   CONTACT INFO
   ============================================= */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--dark-2);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.info-item:hover { border-color: var(--gold-20); transform: translateX(4px); }
.info-icon {
  width: 48px; height: 48px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-value { color: var(--white); font-size: 0.95rem; }

/* =============================================
   ABOUT PAGE SPECIFICS
   ============================================= */

/* About photo */
.about-photo {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: 0 auto;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px var(--gold-20);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.about-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px var(--gold-20), var(--shadow-gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text-content .section-desc { max-width: 100%; }
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-circle {
  width: 400px; height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 0 80px rgba(212,175,55,0.12);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 60px rgba(212,175,55,0.1); }
  50%       { box-shadow: 0 0 100px rgba(212,175,55,0.2); }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.value-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--white-20);
  transition: var(--transition);
}
.value-item:hover { border-color: var(--gold-20); }
.value-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.value-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 0 100px;
}
.policy-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
  color: var(--gold);
  font-family: var(--font-display);
}
.policy-content h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  color: var(--white);
}
.policy-content p {
  color: var(--white-80);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.policy-content ul {
  list-style: none;
  margin: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-content ul li {
  padding-left: 20px;
  position: relative;
  color: var(--white-80);
  font-size: 0.95rem;
  line-height: 1.75;
}
.policy-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.policy-content a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold-20); }
.policy-content a:hover { text-decoration-color: var(--gold); }
.policy-meta {
  background: var(--dark-2);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--white-50);
}
.policy-meta strong { color: var(--gold); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--white-20);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.gallery-item::after {
  content: 'Powiększ';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover { border-color: var(--gold-20); transform: scale(1.02); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   SKIP LINK (Accessibility)
   ============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.2s ease;
  white-space: nowrap;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}

/* =============================================
   FOCUS VISIBLE (Accessibility)
   ============================================= */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Remove focus ring from mouse users only */
:focus:not(:focus-visible) {
  outline: none;
}
/* Ensure interactive elements always show focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =============================================
   PRINT STYLES (Performance / SEO)
   ============================================= */
@media print {
  .header, .mobile-menu, .cookie-banner, .hero-particles,
  .hero-scroll, .btn, .burger, .skip-link, .form-modal { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .section { padding: 20pt 0; }
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  background: var(--dark-2);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 900px;
  margin: 0 auto;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { flex: 1; font-size: 0.88rem; color: var(--white-80); line-height: 1.6; }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* =============================================
   FORM MODAL
   ============================================= */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.form-modal.show {
  opacity: 1;
  pointer-events: all;
}
.form-modal-inner {
  background: var(--dark-2);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-xl);
  padding: 52px 44px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), var(--shadow-gold);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.form-modal.show .form-modal-inner {
  transform: translateY(0) scale(1);
}
.form-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--dark);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.12), 0 8px 32px rgba(212, 175, 55, 0.3);
}
.form-modal-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
}
.form-modal-inner p {
  color: var(--white-70);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--white-20); }
  .stat-item:nth-child(odd):last-child { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-circle { width: 280px; height: 280px; font-size: 6rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .hero-visual { display: none; }
  .hero { min-height: 100svh; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .process-steps { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .values-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px; }
  .cookie-actions { justify-content: flex-end; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .nav { height: 64px; padding: 0 16px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--white-20); }
  .stat-item:last-child { border-bottom: none; }
  .btn { padding: 12px 24px; font-size: 0.83rem; }
  .about-circle { width: 220px; height: 220px; font-size: 5rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .card { padding: 24px 18px; }
  .policy-content { padding: 50px 0 70px; }
}

@media (max-width: 300px) {
  .container { padding: 0 10px; }
  .nav-logo-icon { width: 30px; height: 30px; font-size: 0.9rem; }
  .nav-logo { font-size: 1.2rem; }
  .btn { padding: 10px 18px; font-size: 0.78rem; }
}
