/* Modern Gallery Styles - Simple & Clean */
.modern-gallery {
  column-count: 4;
  column-gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
  margin-bottom: 20px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Hidden items initially not visible */
.gallery-item.hidden-item {
  display: none !important;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
  filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1) saturate(1.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

.overlay-content p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Show More Button */
.btn-show-more {
  background: var(--primary-red);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  cursor: pointer;
}

.btn-show-more:hover {
  background: var(--primary-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.btn-show-more .count {
  opacity: 0.8;
  font-size: 0.95rem;
}/* Ugunsmeistars Enhanced Website Styles */

:root {
  --primary: #ff4444;
  --primary-dark: #cc3333;
  --secondary: #ff6b35;
  --dark: #0a0a0f;
  --light: #ffffff;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
  --primary-red: #dc2626;
  --primary-red-dark: #b91c1c;
  --black: #000000;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow-x: hidden;
  width: 100%;
  background: #000000;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  background-color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  color: var(--white);
}

.logo-container {
  position: relative;
  margin-bottom: 15px;
}

.loading-logo {
  width: 360px;
  height: 360px;
  object-fit: contain;
  filter: brightness(1.2);
  animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% { 
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(220, 38, 38, 0.5));
    transform: scale(1);
  }
  100% { 
    filter: brightness(1.4) drop-shadow(0 0 30px rgba(220, 38, 38, 0.8));
    transform: scale(1.05);
  }
}

.loading-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;
}

.loading-progress {
  width: 200px;
  height: 3px;
  background: var(--medium-gray);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-red), #ff4444);
  border-radius: 2px;
  animation: loadingProgress 2s ease-out forwards;
}

@keyframes loadingProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ========================================
   PREMIUM NAVIGATION BAR - GLASSMORPHISM 2026
   ======================================== */
.navbar {
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.2rem 0;
  padding-top: calc(1.2rem + env(safe-area-inset-top, 0px));
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}


.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  padding: 0.8rem 0;
  padding-top: calc(0.8rem + env(safe-area-inset-top, 0px));
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-weight: 700;
  color: var(--white) !important;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.brand-logo {
  height: 42px;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
  transition: all 0.3s ease;
}

.navbar.scrolled .brand-logo {
  height: 36px;
}

.navbar-brand:hover .brand-logo {
  filter: brightness(1.3) drop-shadow(0 4px 12px rgba(220, 38, 38, 0.5));
  transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav {
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 0.6rem 1.2rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover {
  color: var(--primary-red) !important;
  transform: translateY(-2px);
}

.nav-link:focus {
  outline: none !important;
  box-shadow: none !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--primary-red);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: var(--primary-red) !important;
}

.nav-link.active::after {
  width: 80%;
}

/* Mobile Toggle Button */
.navbar-toggler {
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  border-color: var(--primary-red);
  background: rgba(220, 38, 38, 0.1);
  transform: scale(1.05);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28220, 38, 38, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button in Navbar */
.btn-cta {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(220, 38, 38, 0.7));
  border: 1px solid rgba(220, 38, 38, 0.5);
  color: white !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-cta:hover::before {
  opacity: 1;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, rgba(220, 38, 38, 1), rgba(220, 38, 38, 0.9));
  border-color: var(--primary-red);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta:focus {
  outline: none !important;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(3px);
}

/* Mobile Menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }

  .navbar-nav {
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(220, 38, 38, 0.15);
    transform: translateX(5px);
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .brand-logo {
    height: 36px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.8) contrast(1.3);
  backface-visibility: hidden;
  perspective: 1000;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Hide default play button on iOS Safari */
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}

/* Video wrapper for fade effect */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Fade overlay for smooth video loop transition */
.fade-overlay {
  position: absolute;
  inset: 0;
  background: black;
  pointer-events: none;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #ffcccc 35%, #ff4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  font-weight: 300;
}

.btn-primary {
  background: var(--primary-red);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  background: transparent;
  padding: 13px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
  scroll-margin-top: 100px;
  padding: 80px 0;
}

.bg-dark {
  background: var(--black) !important;
  color: var(--white);
}

.bg-light {
  background: var(--light-gray) !important;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-accent {
  color: var(--primary-red);
}

/* Cards */
.card {
  border: 1px solid #e5e5e5;
  background: var(--white);
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.card.featured {
  border: 2px solid var(--primary-red);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: var(--black);
  color: var(--white);
}

.card:hover .icon-circle {
  background: var(--primary-red);
  transform: scale(1.1);
}

.price-tag {
  background: var(--black);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.card:hover .price-tag {
  background: var(--primary-red);
}

/* Modern Gallery Styles */
.modern-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Different sizes for visual interest */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.1) saturate(1.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

.overlay-content p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Modern Lightbox - Fixed for large images */
.modern-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
  padding: env(safe-area-inset-top, 20px) env(safe-area-inset-right, 20px) env(safe-area-inset-bottom, 20px) env(safe-area-inset-left, 20px);
}

.modern-lightbox.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 100px 100px 100px; /* Space for controls + thumbnails */
}

/* Instagram-style swipe slider */
.lightbox-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  user-select: none;
}

.lightbox-track {
  display: flex;
  width: 300%;
  height: 100%;
  transform: translateX(-33.333%);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lightbox-track.snapping {
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lightbox-slide {
  flex: 0 0 33.333%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.lightbox-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.lightbox-close {
  position: fixed;
  top: calc(20px + env(safe-area-inset-top, 0px));
  right: calc(20px + env(safe-area-inset-right, 0px));
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-close:hover {
  background: var(--primary-red);
  transform: scale(1.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 28px;
  padding: 15px 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10000;
}

.lightbox-nav:hover {
  background: var(--primary-red);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: calc(30px + env(safe-area-inset-left, 0px));
}

.lightbox-next {
  right: calc(30px + env(safe-area-inset-right, 0px));
}

.lightbox-counter {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  z-index: 10000;
}

/* Thumbnail carousel */
.lightbox-thumbnails {
  position: fixed;
  bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  max-width: 90vw;
  overflow: hidden;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 16px;
}

.thumbnails-track {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.thumbnail-item {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all 0.3s ease;
  position: relative;
}

.thumbnail-item:hover {
  opacity: 0.8;
}

.thumbnail-item.active {
  opacity: 1;
  border-color: var(--primary-red);
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.5);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .modern-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .gallery-item {
    margin-bottom: 0;
  }

  .lightbox-content {
    padding: 80px 60px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .modern-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }

  .gallery-item {
    margin-bottom: 0;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.large,
  .gallery-item.tall {
    grid-row: span 1;
  }

  .overlay-content i {
    font-size: 2.5rem;
  }

  .overlay-content p {
    font-size: 0.9rem;
  }

  .lightbox-content {
    padding: 70px 20px;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .lightbox-close {
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
    font-size: 20px;
    width: 44px;
    height: 44px;
  }

  .lightbox-thumbnails {
    bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    padding: 6px 10px;
    max-width: 85vw;
  }

  .thumbnail-item {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .lightbox-content {
    padding: calc(50px + env(safe-area-inset-top, 0px)) 5px calc(110px + env(safe-area-inset-bottom, 0px)) 5px;
  }
}

@media (max-width: 576px) {
  .modern-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }

  .gallery-item {
    margin-bottom: 0;
  }

  .lightbox-content {
    padding: calc(45px + env(safe-area-inset-top, 0px)) 0 calc(100px + env(safe-area-inset-bottom, 0px)) 0;
  }

  .lightbox-close {
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: calc(10px + env(safe-area-inset-right, 0px));
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lightbox-thumbnails {
    bottom: calc(45px + env(safe-area-inset-bottom, 0px));
    padding: 5px 8px;
    max-width: 90vw;
    border-radius: 12px;
  }

  .thumbnail-item {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    gap: 6px;
  }

  .lightbox-slide {
    padding: 0 5px;
  }

  .lightbox-slide img {
    border-radius: 6px;
  }
}

/* Extra small phones - single column gallery for better readability */
@media (max-width: 400px) {
  .modern-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 15px;
  }

  .gallery-item {
    margin-bottom: 0;
  }
}

/* ========================================
   PREMIUM FAQ SECTION
   ======================================== */
.faq-section {
  background: linear-gradient(180deg, #000 0%, #0a0a0f 50%, #000 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.05), transparent 70%);
  pointer-events: none;
}

.faq-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 30px;
  color: var(--primary-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out;
}

.faq-subtitle {
  color: #888;
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 0.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.faq-accordion {
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out both;
  animation-delay: calc(var(--item-index, 0) * 0.05s);
}

.faq-item:nth-child(1) { --item-index: 1; }
.faq-item:nth-child(2) { --item-index: 2; }
.faq-item:nth-child(3) { --item-index: 3; }
.faq-item:nth-child(4) { --item-index: 4; }
.faq-item:nth-child(5) { --item-index: 5; }
.faq-item:nth-child(6) { --item-index: 6; }
.faq-item:nth-child(7) { --item-index: 7; }
.faq-item:nth-child(8) { --item-index: 8; }
.faq-item:nth-child(9) { --item-index: 9; }
.faq-item:nth-child(10) { --item-index: 10; }
.faq-item:nth-child(11) { --item-index: 11; }
.faq-item:nth-child(12) { --item-index: 12; }

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateX(5px);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.1);
}

.faq-button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  text-align: left;
  position: relative;
}

.faq-button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-red);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.faq-button:not(.collapsed)::before,
.faq-item:hover .faq-button::before {
  transform: scaleY(1);
}

.faq-button:focus {
  outline: none;
  box-shadow: none;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-button:not(.collapsed) .faq-number,
.faq-item:hover .faq-number {
  background: linear-gradient(135deg, var(--primary-red), #b91c1c);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  transition: color 0.3s ease;
}

.faq-button:not(.collapsed) .faq-question,
.faq-item:hover .faq-question {
  color: var(--primary-red);
}

.faq-icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon {
  font-size: 1.25rem;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-red);
}

.faq-button:not(.collapsed) .faq-icon-wrapper,
.faq-item:hover .faq-icon-wrapper {
  background: rgba(220, 38, 38, 0.15);
  transform: scale(1.1);
}

.accordion-collapse {
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 0 2rem 2rem 2rem;
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.8;
  animation: fadeIn 0.4s ease-out;
}

.faq-answer p {
  margin-bottom: 1rem;
  color: #b8b8b8;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #fff;
  font-weight: 600;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.faq-answer ul li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: #b8b8b8;
  transition: all 0.2s ease;
}

.faq-answer ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-answer ul li:hover {
  color: #fff;
  transform: translateX(5px);
}

.faq-answer ul li:hover::before {
  transform: translateX(3px);
}

/* FAQ CTA Section */
.faq-cta {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 24px;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.faq-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.faq-cta p {
  font-size: 1.05rem;
  color: #c8c8c8;
}

.faq-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
}

.faq-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-button {
    padding: 1.25rem 1rem;
  }

  .faq-header {
    gap: 1rem;
  }

  .faq-number {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1.5rem 1rem;
    font-size: 0.95rem;
  }

  .faq-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .faq-icon {
    font-size: 1.1rem;
  }

  .faq-cta {
    padding: 2rem 1.5rem;
  }

  .faq-cta h3 {
    font-size: 1.5rem;
  }

  .faq-cta p {
    font-size: 1rem;
  }

  .faq-item:hover {
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .faq-button {
    padding: 1rem 0.75rem;
  }

  .faq-header {
    gap: 0.75rem;
  }

  .faq-number {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 0.75rem 1.25rem 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .faq-answer ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    font-size: 0.9rem;
  }

  .faq-answer ul li::before {
    font-size: 1rem;
  }

  .faq-cta {
    padding: 1.5rem 1rem;
  }

  .faq-cta h3 {
    font-size: 1.3rem;
  }

  .faq-cta .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Form */
.form-control {
  background: var(--white);
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15);
  background: var(--white);
}

.form-control::placeholder {
  color: #aaa;
  opacity: 1;
}

.form-label {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Contact section specific */
.contact-info .fs-5 {
  font-weight: 500;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 1.2rem;
}

/* Hover effects for social links */
.hover-red:hover {
  color: var(--primary-red) !important;
  transition: color 0.3s ease;
}

/* Responsive Design */
/* Large tablets and small laptops */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-img {
    height: 220px;
  }
  
  .loading-logo {
    width: 120px;
    height: 120px;
  }
  
  .loading-text {
    font-size: 1.4rem;
  }

  .close {
    top: 20px;
    right: 25px;
    font-size: 30px;
  }

  .nav-arrow {
    font-size: 1.5rem;
    padding: 10px 15px;
  }

  .prev-arrow {
    left: 15px;
  }

  .next-arrow {
    right: 15px;
  }

  .modal-info {
    bottom: 15px;
    padding: 15px 20px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .gallery-icon {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .card-body {
    padding: 1.5rem;
  }

  /* Touch-friendly navigation links */
  .nav-link {
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Touch-friendly buttons */
  .btn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
  }

  .btn-lg {
    min-height: 48px;
    padding: 14px 28px;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
/* Add this at the bottom of your styles.css file */
.gallery-item.hidden-item {
    display: none !important;
}

/* ========================================
   SERVICE CARDS ENHANCED STYLES
   ======================================== */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
}

.service-card .card-body {
    transition: all 0.3s ease;
}

.service-card:hover .card-body {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), transparent);
}

.service-card .icon-circle {
    transition: all 0.4s ease;
}

.service-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
}

/* Service Modal Styles - Premium Magazine Layout */
#serviceModal .modal-dialog {
    max-width: 1400px;
    margin: 1.75rem auto;
}

#serviceModal .modal-content {
    background: #000;
    border: none;
    border-radius: 16px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.95);
    overflow: hidden;
    max-height: 90vh;
    max-height: 90dvh;
}

/* Custom close button - Same as gallery */
.modal-close-custom {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1060;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 24px;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-close-custom:hover {
    background: var(--primary-red);
    transform: scale(1.1);
    opacity: 1;
}

/* Image side - full height */
.service-modal-image-side {
    position: relative;
    min-height: 700px;
    background: #000;
    overflow: hidden;
}

.service-modal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Red gradient overlay extending to content area */
.service-modal-image-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(220, 38, 38, 0.3) 0%,
        rgba(220, 38, 38, 0.2) 20%,
        rgba(220, 38, 38, 0.1) 35%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 65%,
        rgba(0, 0, 0, 0.95) 80%,
        #000 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Content side */
.service-modal-content-side {
    background: #000;
    position: relative;
}

.service-modal-inner {
    padding: 3rem 3.5rem;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

/* Title */
.service-modal-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
    overflow: visible;
    padding-bottom: 0.2rem;
}

/* Content styling */
.service-modal-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 1.5rem;
    max-height: 600px;
}

/* Individual service modal heights - Responsive (desktop only) */
.service-content-corporate {
    max-height: 530px;
}

.service-content-music {
    max-height: 575px;
}

.service-content-indoor {
    max-height: 550px;
}

.service-content-silent {
    max-height: 575px;
}

.service-content-stage {
    max-height: 550px;
}

.service-content-daytime {
    max-height: 575px;
}

/* Remove height constraints on tablets and below for better responsive behavior */
@media (max-width: 991px) {
    .service-content-corporate,
    .service-content-music,
    .service-content-indoor,
    .service-content-silent,
    .service-content-stage,
    .service-content-daytime {
        max-height: none;
        min-height: 300px;
    }
}

/* Custom scrollbar */
.service-modal-content::-webkit-scrollbar {
    width: 6px;
}

.service-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.service-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

/* Price styling - Large and bold */
.service-modal-content h6.text-primary {
    color: var(--primary-red) !important;
    font-size: 2rem;
    font-weight: 900;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1rem !important;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    border: none !important;
    padding: 0 !important;
}

.service-modal-content h6.text-primary::after {
    display: none;
}

/* Description text */
.service-modal-content .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #b8b8b8;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Section headers */
.service-modal-content h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem !important;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    position: relative;
    color: #fff !important;
}

.service-modal-content h6::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--primary-red);
}

/* Remove icon from section headers */
.service-modal-content h6 i {
    display: none;
}

/* List items */
.service-modal-content ul {
    padding-left: 0;
    margin-bottom: 0;
}

.service-modal-content ul li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: #c8c8c8;
    font-size: 0.92rem;
    line-height: 1.5;
}

.service-modal-content ul li:last-child {
    border-bottom: none;
}

.service-modal-content ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

.service-modal-content i {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tabs styling */
.service-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem !important;
}

/* Corporate modal tabs - positioned higher */
.service-content-corporate .service-tabs {
    margin-top: -15px;
}

.service-tab-btn {
    background: transparent;
    border: none;
    color: #999;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.service-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.service-tab-btn.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

.service-tab-btn i {
    opacity: 0.7;
}

.service-tab-btn.active i {
    opacity: 1;
}

/* Tab content */
.service-tab-content {
    min-height: 300px;
}

.service-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.service-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA section */
.service-modal-cta {
    margin-top: auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

.service-modal-cta .btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    border: none;
    padding: 1.2rem 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-modal-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-modal-cta .btn-primary:hover::before {
    left: 100%;
}

.service-modal-cta .btn-primary:hover {
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.6);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .service-modal-image-side {
        min-height: 350px;
        max-height: 400px;
        height: auto;
    }

    .service-modal-image-side::after {
        width: 100%;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(0, 0, 0, 0.95) 90%,
            #000 100%
        );
    }

    .service-modal-inner {
        padding: 2.5rem 2rem;
        min-height: auto;
    }

    .service-modal-title {
        font-size: 2rem;
    }

    .service-modal-content {
        max-height: none;
    }
}

@media (max-width: 768px) {
    #serviceModal .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
    }

    #serviceModal .modal-content {
        border-radius: 0;
        height: 100%;
        max-height: none;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-top: env(safe-area-inset-top, 0px);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    #serviceModal .modal-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
    }

    #serviceModal .modal-body > .row {
        flex-direction: column;
    }

    .modal-close-custom {
        top: calc(12px + env(safe-area-inset-top, 0px));
        right: calc(12px + env(safe-area-inset-right, 0px));
        width: 44px;
        height: 44px;
        font-size: 20px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        z-index: 1060;
    }

    .service-modal-image-side {
        height: 220px;
        min-height: 0;
        max-height: none;
        flex-shrink: 0;
    }

    .service-modal-image-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .service-modal-image-side::after {
        background: linear-gradient(180deg,
            rgba(220, 38, 38, 0.2) 0%,
            rgba(220, 38, 38, 0.1) 20%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.9) 80%,
            #000 100%
        );
    }

    .service-modal-inner {
        padding: 1.5rem;
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
        min-height: auto;
    }

    .service-modal-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .service-modal-content {
        max-height: none;
        overflow-y: visible;
    }

    .service-tabs {
        gap: 0;
    }

    .service-tab-btn {
        flex: 1;
        padding: 0.85rem 0.5rem;
        font-size: 0.7rem;
        letter-spacing: 0.3px;
        text-align: center;
        min-height: 44px;
        white-space: nowrap;
    }

    .service-tab-btn i {
        display: none;
    }

    .service-tab-content {
        min-height: auto;
    }

    .service-modal-content h6.text-primary {
        font-size: 1.5rem;
    }

    .service-modal-content h6 {
        font-size: 0.7rem;
        margin-top: 1rem;
    }

    .service-modal-content .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-modal-content ul li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        gap: 0.7rem;
    }

    .service-modal-cta {
        padding-top: 1rem;
        margin-top: 1.5rem;
    }

    .service-modal-cta .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(220, 38, 38, 0.3);
    padding: 1.5rem 0;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.cookie-text {
    flex: 1;
    color: white;
}

.cookie-text h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-text p {
    font-size: 0.95rem;
    color: #c8c8c8;
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-cookie-primary {
    background: linear-gradient(135deg, var(--primary-red), #b91c1c);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-cookie-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #ff0000, var(--primary-red));
}

.btn-cookie-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cookie-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cookie-consent {
        padding: 1rem 0;
    }

    .cookie-consent-content {
        padding: 0 1rem;
    }

    .cookie-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .cookie-text h5 {
        font-size: 1.1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .btn-cookie {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Cookie details - expandable section */
.cookie-details {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cookie-details.expanded {
    max-height: 200px;
    opacity: 1;
}

.cookie-details p {
    font-size: 0.85rem;
    color: #a8a8a8;
    margin: 0;
    line-height: 1.6;
}

.cookie-details a {
    color: var(--primary-red);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-details a:hover {
    color: #ff0000;
}

.cookie-more-btn {
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.cookie-more-btn:hover {
    color: #ff0000;
}

.cookie-more-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.cookie-more-btn.expanded i {
    transform: rotate(180deg);
}

/* ========================================
   HONEYPOT ANTI-SPAM FIELD
   ======================================== */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ========================================
   HIDE RECAPTCHA BADGE
   ======================================== */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ========================================
   LEGAL PAGES (Privacy, Cookies)
   ======================================== */
.legal-section {
    min-height: 100vh;
    min-height: 100svh;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #000000 0%, #1a0000 100%);
}

.legal-content {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: #a8a8a8;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section-content {
    margin-bottom: 2.5rem;
}

.legal-section-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
}

.legal-section-content h3,
.legal-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section-content p {
    color: #d4d4d4;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section-content ul,
.legal-section-content ol {
    color: #d4d4d4;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section-content li {
    margin-bottom: 0.5rem;
}

.legal-section-content strong {
    color: white;
    font-weight: 600;
}

.legal-section-content a {
    color: var(--primary-red);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-section-content a:hover {
    color: #ff6b6b;
}

.legal-section-content .table {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.legal-section-content .table th {
    background: rgba(220, 38, 38, 0.2);
    color: white;
    font-weight: 600;
    border-color: rgba(220, 38, 38, 0.3);
}

.legal-section-content .table td {
    color: #d4d4d4;
    border-color: rgba(255, 255, 255, 0.1);
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.legal-footer .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.legal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-section-content h2 {
        font-size: 1.5rem;
    }

    .legal-section-content h3,
    .legal-subtitle {
        font-size: 1.2rem;
    }
}

/* ========================================
   FOOTER LEGAL LINKS
   ======================================== */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-link {
    color: #a8a8a8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.footer-separator {
    color: #666;
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-separator {
        display: none;
    }
}

/* ========================================
   TOUCH DEVICE FIXES — prevent sticky hovers
   ======================================== */
@media (hover: none) {
  .gallery-item:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .gallery-item:hover img {
    transform: none;
    filter: brightness(0.95) contrast(1.05);
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 0;
  }

  .card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-link:hover {
    transform: none;
  }

  .navbar-brand:hover {
    transform: none;
  }

  .btn-cta:hover {
    transform: none;
  }

  .btn-show-more:hover {
    transform: none;
  }

  .faq-item:hover {
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-outline-light:hover {
    transform: none;
  }
}

/* GPU compositing fix for border-radius clipping on iOS */
.gallery-item {
  transform: translateZ(0);
}