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

:root {
  --bg-primary: #09090b;
  --bg-secondary: #101014;
  --bg-card: rgba(22, 22, 28, 0.7);
  --bg-card-hover: rgba(30, 30, 38, 0.85);
  --bg-glass: rgba(14, 14, 18, 0.8);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  
  --accent-gold: #d4af37;
  --accent-gold-hover: #e5be42;
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(212, 175, 55, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.2);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ====================================
   CUSTOM TATTOO NEEDLE CURSOR
==================================== */
@media (pointer: fine) {
  body, html {
    cursor: url("assets/tattoo-cursor.svg") 1 1, auto;
  }

  a, button, .gallery-item, .filter-btn, input, textarea, .contact-card, .insta-card, label {
    cursor: url("assets/tattoo-cursor-hover.svg") 1 1, pointer !important;
  }
}

/* ====================================
   STUDIO INTRO REVEAL ANIMATION
==================================== */
.intro-screen {
  position: fixed;
  inset: 0;
  background: #050508;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-screen.loaded {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.intro-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.intro-needle-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
  animation: needleSpin 3s infinite ease-in-out;
}

@keyframes needleSpin {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(8deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.intro-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
}

.intro-logo span {
  color: var(--accent-gold);
}

.intro-tag {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.intro-progress-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}

.intro-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold);
  transition: width 0.15s linear;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #272730;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography */
h1, h2, h3, h4, .brand-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Common Components */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 120px 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #b8b8c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.85rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b89326 100%);
  color: #09090b;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e6be44 0%, #c8a12e 100%);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ====================================
   HEADER & NAVIGATION
==================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.brand-logo span {
  color: var(--accent-gold);
  margin: 0;
  padding: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--accent-gold);
  color: #09090b;
}

.lang-btn:hover:not(.active) {
  color: #fff;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

@media (max-width: 1023px) {
  .nav-cta-btn {
    display: none !important;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  background: rgba(9, 9, 11, 0.98);
  backdrop-filter: blur(20px);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(0.8) contrast(1.1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 85%),
              linear-gradient(to bottom, rgba(9, 9, 11, 0.4) 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.25rem;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.35rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 600px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ====================================
   ABOUT SECTION
==================================== */
.about {
  position: relative;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-box:hover img {
  transform: scale(1.03);
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-heading {
  font-size: 2rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .about-heading {
    font-size: 2.5rem;
  }
}

.about-paragraphs p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-ggd-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ggd-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.ggd-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.ggd-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ====================================
   PORTFOLIO & GALLERY
==================================== */
.portfolio {
  position: relative;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.filter-btn.active {
  background: var(--accent-gold);
  color: #09090b;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-style-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.gallery-zoom-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.gallery-zoom-icon:hover {
  background: var(--accent-gold);
  color: #09090b;
}

@keyframes galleryFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ====================================
   LIGHTBOX MODAL
==================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.94);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  margin-top: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent-gold);
  color: #09090b;
  border-color: var(--accent-gold);
}

.lightbox-close {
  top: 28px;
  right: 28px;
  position: fixed;
}

.lightbox-prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  position: fixed;
}

.lightbox-next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  position: fixed;
}

@media (max-width: 640px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 16px; right: 16px; }
}

/* ====================================
   POLICY & CONTRAINDICATIONS SECTION
==================================== */
.policy-page-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.policy-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 36px;
}

@media (min-width: 900px) {
  .policy-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.policy-card {
  background: linear-gradient(145deg, rgba(22, 22, 30, 0.9) 0%, rgba(14, 14, 20, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
}

.policy-card.contra-card {
  border-color: rgba(255, 94, 98, 0.35);
}

.policy-card.contra-card:hover {
  border-color: rgba(255, 94, 98, 0.6);
  box-shadow: 0 25px 60px rgba(255, 94, 98, 0.15);
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-card-icon.contra-icon {
  background: rgba(255, 94, 98, 0.12);
  border-color: rgba(255, 94, 98, 0.35);
}

.policy-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.policy-card-subtitle {
  font-size: 0.9rem;
  color: #FF8B8E;
  margin-top: 4px;
  font-weight: 500;
}

.policy-card-body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #C0C0D0;
}

.contra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contra-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #D1D1DF;
}

.contra-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 94, 98, 0.18);
  color: #FF5E62;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.contra-list li strong {
  color: #FFF;
}

/* ====================================
   CONTACT & BOOKING
==================================== */
.contact {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
}

.booking-form {
  background: linear-gradient(145deg, rgba(22, 22, 30, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  padding: 38px 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.booking-cta-card {
  background: linear-gradient(145deg, rgba(22, 22, 30, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  padding: 48px 38px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.booking-form::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .booking-form {
    padding: 46px 42px;
  }
}

.booking-form-header {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.booking-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 8px;
  letter-spacing: -0.3px;
}

.booking-form-desc {
  font-size: 0.92rem;
  color: #B5B5C3;
  line-height: 1.5;
}

.booking-form-divider {
  height: 2px;
  width: 75px;
  background: linear-gradient(90deg, #D4AF37 0%, rgba(212, 175, 55, 0.1) 100%);
  margin: 18px 0 0;
  border-radius: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #E2E2EB;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(8, 8, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 15px 18px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(14, 14, 22, 0.95);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.22), inset 0 0 10px rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.form-input:hover, .form-textarea:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(12, 12, 20, 0.9);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* File Upload Zone */
.file-upload-zone {
  border: 2px dashed rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  position: relative;
}

.file-upload-zone:hover, .file-upload-zone.dragover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.09);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.file-input-hidden {
  display: none;
}

.upload-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--accent-gold);
}

.upload-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.file-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.file-tag {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-gold);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* VIP Booking Policy Box & Checkbox */
.booking-policy-box {
  margin-top: 18px;
  background: rgba(14, 14, 20, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.04);
  transition: all 0.3s ease;
}

.policy-toggle-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 4px;
  user-select: none;
  color: #E2E2EB;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.policy-toggle-bar:hover {
  color: var(--accent-gold);
}

.policy-toggle-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-toggle-arrow {
  color: var(--accent-gold);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-policy-box.open .policy-toggle-arrow {
  transform: rotate(180deg);
}

.policy-content {
  margin-top: 14px;
  padding: 16px 18px;
  background: rgba(8, 8, 12, 0.9);
  border-left: 2px solid var(--accent-gold);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #B5B5C3;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.policy-content::-webkit-scrollbar {
  width: 6px;
}

.policy-content::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}

.policy-doc-title {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 8px;
}

.policy-subtitle {
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 6px;
}

.policy-list {
  margin: 8px 0 12px 18px;
  padding: 0;
  list-style: disc;
}

.policy-list li {
  margin-bottom: 6px;
  color: #D1D1DD;
}

.policy-footer-note {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  color: #E2E2EB;
}

.policy-checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  user-select: none;
}

.policy-checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.policy-custom-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(8, 8, 14, 0.9);
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 6px;
  transition: all 0.25s ease;
  flex-shrink: 0;
  color: transparent;
}

.policy-checkbox-container:hover .policy-custom-checkbox {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.policy-checkbox-container input[type="checkbox"]:checked ~ .policy-custom-checkbox {
  background: linear-gradient(135deg, #F9EECC 0%, #D4AF37 50%, #A37C09 100%);
  border-color: #D4AF37;
  color: #0B0B10;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.policy-custom-checkbox svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-checkbox-container input[type="checkbox"]:checked ~ .policy-custom-checkbox svg {
  transform: scale(1);
}

.policy-label-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: #E2E2EB;
  line-height: 1.4;
}

.req-star {
  color: var(--accent-gold);
  font-weight: 700;
}

.booking-form button[type="submit"] {
  background: linear-gradient(135deg, #F9EECC 0%, #D4AF37 50%, #A37C09 100%);
  color: #0B0B10;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
  margin-top: 14px;
}

.booking-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, #FFF7DC 0%, #E6C454 50%, #B89016 100%);
}

/* Direct Contact Sidebar */
.direct-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-card-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-card-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ====================================
   SOCIAL MEDIA & FOOTER
==================================== */
.social-section {
  position: relative;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.insta-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 1 / 1;
  group: true;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-card:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.social-links-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
  color: var(--accent-gold);
}

.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 48px 0;
  text-align: center;
}

.footer-content p {
  color: var(--text-dark);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-legal {
  color: #6b7280;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-link:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-sep {
  color: #4b5563;
}

/* Success Notification Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #101014;
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
}

/* Custom Validation Alert Modal */
.custom-alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-alert-overlay.show {
  opacity: 1;
  visibility: visible;
}

.custom-alert-box {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.15);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-alert-overlay.show .custom-alert-box {
  transform: translateY(0) scale(1);
}

.custom-alert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.custom-alert-icon svg {
  width: 32px;
  height: 32px;
}

.custom-alert-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.custom-alert-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 28px;
}

.custom-alert-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  border-radius: 8px;
}

/* ====================================
   ULTIMATE MOBILE, IPAD & TABLET RWD
==================================== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

/* Zapobiegaj ucinaniu dłuższego tekstu na telefonach */
h1, h2, h3, h4, h5, p, span, a, label, .hero-title, .section-title, .booking-form-title, .policy-card-title {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Płynne skalowanie nagłówków dla każdego ekranu (od telefonu 320px do tabletu i PC) */
.hero-title {
  font-size: clamp(1.75rem, 6.8vw, 4.25rem) !important;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 3.8vw, 1.35rem) !important;
  padding: 0 10px;
}

.section-title {
  font-size: clamp(1.6rem, 5.5vw, 2.85rem) !important;
}

.booking-form-title {
  font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
}

.policy-card-title {
  font-size: clamp(1.15rem, 4vw, 1.35rem) !important;
}

/* Dostosowanie dla iPadów i Tabletów (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  .about-grid, .contact-wrapper, .policy-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }
  .hero-content {
    max-width: 90vw;
  }
}

/* Dostosowanie dla Telefonów (do 767px) */
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .booking-form {
    padding: 26px 18px !important;
  }
  .booking-cta-card {
    padding: 28px 20px !important;
  }
  .policy-card {
    padding: 24px 18px !important;
  }
  .contact-card {
    padding: 18px;
  }
  .social-links-bar {
    flex-direction: column;
    width: 100%;
  }
  .social-btn {
    width: 100%;
    justify-content: center;
  }
  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
  .lightbox-prev, .lightbox-next {
    width: 40px;
    height: 40px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
  .footer-sep {
    display: none;
  }
}

/* Bardzo małe ekrany telefonów (do 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.6rem !important;
  }
  .section-title {
    font-size: 1.4rem !important;
  }
  .btn {
    width: 100%;
    padding: 12px 20px;
  }
  .hero-buttons {
    width: 100%;
  }
}
