/*
Theme Name: TK Cinematic Studio
Theme URI: https://tkcinematicstudio.com/
Author: TK Cinematic Studio
Author URI: https://tkcinematicstudio.com/
Description: Custom WordPress theme for TK Cinematic Studio. Converted from a static HTML/CSS/JS site. Features a highly dynamic, SEO-safe, and plugin-friendly structure.
Version: 1.0.0
Text Domain: tkcinematic
Domain Path: /languages
*/
* { margin: 0; padding: 0; box-sizing: border-box; }


/* Global Headings Font */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif !important;
}

body, html { width: 100%; font-family: 'Montserrat', sans-serif; color: #ffffff; background-color: #050505; overflow-x: hidden; }
a { color: #fff; text-decoration: none; }

/* Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: #000000;
  transition: transform 0.3s ease;
}

.top-nav.nav-hidden {
  transform: translateY(-100%);
}

.main-logo, .custom-logo-link img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.nav-links a {
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  color: #fff;
  padding-bottom: 5px;
}

.nav-links a:hover, 
.nav-links a.active,
.nav-links .current-menu-item > a {
  opacity: 1;
  color: #d4af37;
}

/* Elegant Center-Expanding Underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: #d4af37;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after {
  width: 100%;
}

.mobile-nav-icon {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 768px) {
  .top-nav {
    padding: 15px 20px;
    min-height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top-nav .main-logo, .top-nav .custom-logo-link img { 
    position: absolute; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    max-height: 35px; 
    width: auto; 
    object-fit: contain; 
    margin: 0;
  }
  .mobile-nav-icon {
    display: block !important;
  }
  .nav-links {
    display: none !important;
  }
  .nav-links.mobile-active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.mobile-active a {
    font-size: 1.2rem;
    opacity: 0.8;
  }
}

.mobile-bottom-nav {
  display: none;
}

/* ========================================= */
/* 2026 Home Page Styles */
/* ========================================= */

/* 1. Immersive Hero Hook */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  /* Will be animated by GSAP parallax */
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  opacity: 0.6;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* 2. Modern Trust Pills (21st.dev inspired) */
/* 2. Cinematic 2-Row Marquee Ribbon */
.trust-marquee-section {
  width: 105vw; /* Wider than screen to cover corners when rotated */
  left: -2.5vw;
  background: #020202;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: rotate(-2deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin: 2rem 0;
  z-index: 5;
}

/* Add a subtle rotation for that high-end fashion ribbon look */
.trust-marquee-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  background: #000;
  z-index: -1;
}

.marquee-container {
  display: flex;
  width: fit-content;
  will-change: transform;
}

/* Top Row moves left */
.row-left {
  animation: scrollMarqueeLeft 40s linear infinite;
}

/* Bottom Row moves right */
.row-right {
  animation: scrollMarqueeRight 40s linear infinite;
  /* Start shifted so it doesn't align perfectly with the top row */
  transform: translate3d(-50%, 0, 0); 
}

.marquee-container:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

.marquee-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 3.5vw, 2rem); /* Responsive font scaling */
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  cursor: pointer;
}

/* Solid Text Style (Top Row) */
.marquee-text.solid {
  color: #fff;
}
.marquee-text.solid:hover {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* Outline Text Style (Bottom Row) */
.marquee-text.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}
.marquee-text.outline:hover {
  color: rgba(255, 255, 255, 0.8);
  -webkit-text-stroke: 1px transparent;
  transform: scale(1.05);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background-color: #d4af37;
  border-radius: 50%;
  opacity: 0.8;
}

.marquee-dot.outline-dot {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes scrollMarqueeLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes scrollMarqueeRight {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}


/* Draggable State */
.is-dragging {
  z-index: 9999 !important;
  cursor: grabbing !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.9) !important;
}

/* 3. Services & Expertise Section */
.expertise-section {
  padding: 100px 5%;
  background-color: #030303;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expertise-container {
  max-width: 1400px;
  margin: 0 auto;
}

.expertise-header {
  text-align: center;
  margin-bottom: 70px;
}

.expertise-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
}

.expertise-line {
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.expertise-card {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: #d4af37;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.expertise-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.expertise-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-section {
    padding: 70px 5%;
  }
}

/* 4. Featured Work (Polaroid Gallery) */
.polaroid-gallery.board-section {
  padding: 5rem 2rem 11rem; /* Reduced bottom padding by ~60px */
  background-color: #0a0a0a;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px; /* Subtle dark minimal grid/noise */
  position: relative;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 3rem;
  color: #fff;
}

/* Tab Navigation */
.board-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5rem;
  position: relative;
  z-index: 20; /* Keep above polaroids */
}

.board-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #888;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tab-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.board-container {
  position: relative;
  width: 100%;
}

/* Tab Contents */
.tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.tab-content.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Ensure video fits in polaroid */
.polaroid-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.polaroid-container {
  position: relative;
  width: 98%;
  max-width: 1600px; /* Expanded for much wider dragging */
  margin: 0 auto;
  height: 1200px; /* Expanded for lower dragging */
  transform: scale(0.85); /* Reduced card size for PC */
  transform-origin: top center;
  margin-bottom: -180px; /* Offset the 15% scale down layout gap */
}

.polaroid-card {
  position: absolute;
  background: #fdfdfd;
  padding: 12px 12px 75px 12px; /* Authentic Polaroid borders */
  box-shadow: 0 10px 25px rgba(0,0,0,0.4), 
              inset 0 0 20px rgba(0,0,0,0.03); /* subtle paper texture shadow */
  border-radius: 2px;
  border: 1px solid #eaeaea;
  cursor: grab;
}

button.polaroid-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 90px;
  height: 35px;
  background: rgba(235, 230, 220, 0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15), inset 0 0 5px rgba(0,0,0,0.05);
  z-index: 10;
  cursor: grab;
  border-radius: 1px;
  border: none;
  background-image: linear-gradient(to right, rgba(255,255,255,0.3), rgba(0,0,0,0.02), rgba(255,255,255,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

button.polaroid-tape:active {
  cursor: grabbing;
}

.tape-icon {
  width: 16px;
  height: 16px;
  color: rgba(0, 0, 0, 0.55); /* Darker for better visibility */
  transition: transform 0.4s ease, color 0.3s ease;
}

button.polaroid-tape:hover .tape-icon {
  color: rgba(0, 0, 0, 0.85);
  transform: rotate(90deg);
}

.polaroid-zoom-btn {
  display: none;
}

@media (max-width: 768px) {
  .polaroid-zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: #333;
    transition: all 0.2s ease;
    opacity: 0.8;
  }
  
  .polaroid-zoom-btn:hover {
    transform: scale(1.1);
    opacity: 1;
    background: #fff;
  }
}

.polaroid-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.polaroid-img {
  width: 220px;
  height: 293px; /* 3:4 Portrait default */
  background-size: cover;
  background-position: center 20%;
  filter: sepia(10%) contrast(1.05); /* Subtle vintage studio feel */
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.1); /* Inner shadow for printed photo look */
  border: 1px solid rgba(0,0,0,0.05);
}

.landscape-img {
  width: 360px;
  height: 240px; /* 3:2 Landscape */
  background-position: center;
}

.polaroid-caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Caveat', cursive; /* Handwritten marker font */
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* Initial static positions (GSAP overrides these smoothly on scroll) */
.p-1 { top: 6%; left: 6%; transform: rotate(-14deg); z-index: 3; }
.p-2 { top: 8%; left: 38%; transform: rotate(12deg); z-index: 2; }
.p-3 { top: 5%; right: 6%; transform: rotate(-16deg); z-index: 4; }
.p-4 { top: 38%; left: 12%; transform: rotate(15deg); z-index: 5; }
.p-5 { top: 34%; right: 14%; transform: rotate(-13deg); z-index: 1; }
.p-6 { top: 65%; left: 38%; transform: rotate(11deg); z-index: 6; }

/* 5. CTA Section */
.cta-section {
  padding: 60px 20px;
  background-color: #030303;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 30px;
  color: #fff;
}
.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cta-btn:hover {
  transform: scale(1.05) translateY(-2px);
}

/* 6. TK Promise Split Layout */
.split-layout {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  gap: 60px;
  align-items: center;
}
.split-layout .split-content {
  flex: 1 1 400px;
}
.split-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.2;
  color: #fff;
}
.split-para {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #d4af37;
}
.btn-outline {
  display: inline-block;
  padding: 15px 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* 7. Studio Experience Bento Grid */
.studio-experience-section {
  padding: 100px 20px;
  background-color: #0a0a0a;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.studio-container {
  max-width: 1000px;
  margin: 0 auto;
}
.studio-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
  line-height: 1.2;
}
.studio-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .studio-bento {
    grid-template-columns: 1fr !important;
  }
}
.bento-item {
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bento-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}
.bento-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.bento-item:hover::before { opacity: 1; }

.bento-icon {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 1.2rem;
  color: rgba(212, 175, 55, 0.8);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.bento-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.bento-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}
.studio-cta-wrap {
  text-align: center;
  margin-top: 50px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

  .trust-container { flex-direction: column; gap: 2.5rem; }
  .polaroid-container { 
    width: 900px !important; 
    max-width: none !important; 
    height: 1200px; /* Reduced from 1800px to remove excess empty space */
    left: 50%;
    margin-left: -450px; 
    transform: scale(0.55); /* Perfect middle ground size for mobile */
    transform-origin: top center; 
    margin-bottom: -540px; /* Offset the exact invisible height (1200px - 660px visual) */
  }
  
  .polaroid-gallery.board-section {
    padding-bottom: 2rem; /* Reduce the massive 15rem desktop padding on mobile */
  }
  
  /* Keep absolute positioning for polaroids to maintain the scattered board look */
  .polaroid-card { position: absolute; }
  /* Mobile-specific Polaroid Placements (900x1200 virtual canvas) */
  .p-1 { top: 80px; left: 120px; right: auto; z-index: 4; }
  .p-2 { top: 320px; left: 420px; right: auto; z-index: 3; }
  .p-3 { top: 580px; left: 100px; right: auto; z-index: 2; }
  .p-4 { top: 820px; left: 400px; right: auto; z-index: 5; }
  
  /* Hide the extra 2 PC polaroids on mobile */
  .p-5, .p-6 { display: none !important; }
  
  .mobile-bottom-nav { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; height: 70px; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 100; justify-content: space-around; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s ease-in-out; }
  .mobile-bottom-nav.nav-hidden { transform: translateY(100%); }
  .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.5); gap: 4px; transition: color 0.3s; }
  .nav-item svg { width: 22px; height: 22px; }
  .nav-item span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; }
  .nav-item.active, .nav-item:hover { color: #d4af37; }
}

/* --- Projector Room UI --- */
.projector-room {
  position: relative;
  width: 100%;
  height: auto;
  background: radial-gradient(circle at top, #1a1a1a 0%, #020202 100%);
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    inset 0 0 100px rgba(0,0,0,0.9),
    0 30px 60px rgba(0,0,0,0.6);
}

.projection-screen {
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  max-height: 75vh;
  height: auto;
  margin-top: 40px;
  background: #111;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(255,255,255,0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-noise {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.projector-room.playing .screen-noise {
  opacity: 1;
  animation: flicker 0.12s infinite;
}

.projector-video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  transition: opacity 1s ease;
  filter: sepia(0.3) contrast(1.1) brightness(0.9) grayscale(0.2);
  /* Force GPU Hardware Acceleration */
  transform: translateZ(0);
  will-change: filter, opacity;
}
.projector-room.playing .projector-video-player {
  opacity: 1;
}

.screen-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes spin-fast { 100% { transform: rotate(360deg); } }

.cassette-reel-left, .cassette-reel-right {
  animation: spin-fast 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Noise shows while loading too */
.projector-room.playing .screen-noise,
.projector-room.loading .screen-noise {
  opacity: 1;
  animation: flicker 0.12s infinite;
}

.projector-beam {
  position: absolute;
  bottom: 250px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 550px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.03) 0%, transparent 80%);
  clip-path: polygon(15% 0%, 85% 0%, 53% 100%, 47% 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 5;
  filter: blur(40px);
  mix-blend-mode: screen;
}

.projector-room.playing .projector-beam {
  opacity: 1;
  animation: beam-flicker 0.2s infinite;
}

@keyframes beam-flicker {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.projector-console {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  min-height: 380px;
  height: auto;
  background: transparent;
  border-top: none;
  position: relative;
  z-index: 10;
  padding: 20px 20px 40px 20px;
}

.projector-instructions {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  animation: pulse-glow 3s infinite alternate;
}
.projector-instructions h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}
.projector-instructions p {
  font-size: 0.85rem;
  line-height: 1.6;
}

@keyframes pulse-glow {
  0% { text-shadow: 0 0 5px rgba(255,255,255,0.1); }
  100% { text-shadow: 0 0 15px rgba(255,255,255,0.5); }
}

.projector-hardware {
  position: relative;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.projector-hardware:hover {
  transform: scale(1.05);
  filter: drop-shadow(5px 15px 25px rgba(255,255,255,0.1));
}

/* Photorealistic VHS Cassettes */
.cassette-rack {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  justify-content: center;
  align-items: stretch;
  margin-top: 20px;
}

.cassette {
  width: 180px;
  height: auto;
  min-height: 120px;
  background: linear-gradient(to bottom, #2a2a2a, #111);
  border-radius: 6px;
  border: 1px solid #000;
  box-shadow: 
    inset 0 1px 2px rgba(255,255,255,0.2),
    inset 0 -2px 4px rgba(0,0,0,0.8),
    5px 10px 15px rgba(0,0,0,0.6);
  position: relative;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: bold;
  padding-bottom: 10px;
}

.cassette-label {
  background: #fff;
  color: #111;
  padding: 3px 8px;
  border-radius: 3px;
  margin-top: 5px;
  width: 85%;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.cassette-icon {
  width: 75%;
  height: 45px;
  background: #000;
  margin-top: 20px;
  border-radius: 4px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
  margin-bottom: 8px;
}

.cassette-icon::before, .cassette-icon::after {
  content: '';
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, #444 30%, #111 70%);
  border-radius: 50%;
  border: 2px solid #333;
}

.cassette:hover {
  transform: translateY(-5px) scale(1.02) perspective(500px) rotateX(5deg);
  border-color: #d4af37;
  box-shadow: 
    inset 0 1px 2px rgba(255,255,255,0.3),
    inset 0 -2px 4px rgba(0,0,0,0.8),
    0 15px 25px rgba(212, 175, 55, 0.3),
    0 0 15px rgba(212, 175, 55, 0.5);
}

.cassette.active {
  transform: translateY(-3px) scale(1.02);
  border-color: #d4af37;
  box-shadow: 
    inset 0 1px 2px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,0,0,0.8),
    0 15px 30px rgba(212, 175, 55, 0.5),
    0 0 25px rgba(212, 175, 55, 0.8);
}

/* Dim inactive cassettes when one is playing */
.projector-room.playing .cassette:not(.active) {
  opacity: 0.5;
  filter: grayscale(80%);
}

@keyframes highlight-tape {
  0% { transform: translateY(0) scale(1); box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 5px 15px 25px rgba(0,0,0,0.8); border-color: #000; }
  50% { transform: translateY(-10px) scale(1.05); box-shadow: inset 0 1px 2px rgba(255,255,255,0.6), 0 0 30px rgba(212, 175, 55, 1); border-color: #d4af37; }
  100% { transform: translateY(0) scale(1); box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 5px 15px 25px rgba(0,0,0,0.8); border-color: #000; }
}

.cassette.highlight-anim {
  animation: highlight-tape 1.2s ease-in-out 2 !important;
}


.vhs-window {
  width: 75%;
  height: 35px;
  background: #050505;
  margin-top: 5px;
  border-radius: 4px;
  box-shadow: inset 0 3px 10px rgba(0,0,0,1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
  position: relative;
}

.vhs-reel {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, #e0e0e0 20%, #666 25%, #222 30%, #111 100%);
  border: 2px solid #333;
  position: relative;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.8);
}
.vhs-reel::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: #000;
  border-radius: 50%;
}
.cassette.active .vhs-reel {
  animation: spin 2s linear infinite;
}

/* Photorealistic Projector */
.photoreal-projector {
  position: relative;
  width: 250px;
  height: 300px;
  transform: scale(0.9);
  transform-origin: bottom center;
}

.proj-base {
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 200px;
  height: 30px;
  background: linear-gradient(to right, #111, #333, #111);
  border-radius: 10px 10px 4px 4px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.1), 0 10px 20px rgba(0,0,0,0.8);
  border: 1px solid #000;
}

.proj-stand {
  position: absolute;
  bottom: 30px;
  left: 90px;
  width: 70px;
  height: 50px;
  background: linear-gradient(to right, #222, #444, #222);
  border-left: 2px solid #111;
  border-right: 2px solid #111;
}

.proj-body {
  position: absolute;
  bottom: 80px;
  left: 50px;
  width: 150px;
  height: 120px;
  background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
  border-radius: 20px;
  box-shadow: 
    inset 2px 2px 5px rgba(255,255,255,0.2),
    inset -5px -5px 15px rgba(0,0,0,0.8),
    10px 10px 20px rgba(0,0,0,0.6);
  border: 2px solid #0a0a0a;
}

.proj-lens-tube {
  position: absolute;
  bottom: 110px;
  left: 190px;
  width: 60px;
  height: 60px;
  background: linear-gradient(to bottom, #555, #222);
  border-radius: 5px;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.3), 5px 5px 10px rgba(0,0,0,0.6);
  border: 1px solid #111;
  z-index: 10;
}

.proj-lens-glass {
  position: absolute;
  top: 5px;
  right: -10px;
  width: 20px;
  height: 50px;
  background: linear-gradient(135deg, #fff, #4dc3ff, #004466);
  border-radius: 50%;
  box-shadow: 0 0 15px #4dc3ff, inset 0 0 10px #fff;
  opacity: 0.8;
  transition: all 0.3s;
}
.projector-room.playing .proj-lens-glass {
  box-shadow: 0 0 40px #fff, inset 0 0 20px #fff;
  background: linear-gradient(135deg, #fff, #fff, #4dc3ff);
}

.proj-arm-left {
  position: absolute;
  bottom: 180px;
  left: 60px;
  width: 15px;
  height: 100px;
  background: linear-gradient(to right, #444, #777, #444);
  transform: rotate(-30deg);
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  border: 1px solid #111;
}

.proj-arm-right {
  position: absolute;
  bottom: 180px;
  left: 170px;
  width: 15px;
  height: 100px;
  background: linear-gradient(to right, #444, #777, #444);
  transform: rotate(30deg);
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  border: 1px solid #111;
}

.proj-reel {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #777;
  box-shadow: 
    inset 0 0 15px rgba(0,0,0,0.8),
    0 5px 15px rgba(0,0,0,0.6);
  background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.2) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-reel-left {
  bottom: 230px;
  left: -20px;
}
.proj-reel-right {
  bottom: 230px;
  left: 150px;
}
.projector-room.playing .proj-reel {
  animation: spin 2s linear infinite;
}

.proj-spoke {
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #777, #999, #777);
}
.proj-spoke:nth-child(2) { transform: rotate(60deg); }
.proj-spoke:nth-child(3) { transform: rotate(120deg); }

.proj-reel-center {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #555, #222);
  border-radius: 50%;
  z-index: 5;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.4), 0 2px 5px rgba(0,0,0,0.8);
  border: 2px solid #111;
}

.proj-film-path {
  position: absolute;
  top: 150px;
  left: 20px;
  width: 210px;
  height: 120px;
  z-index: -1;
}
.proj-film-path path {
  fill: none;
  stroke: #111;
  stroke-width: 8;
  stroke-dasharray: 6 3;
}

@media (max-width: 768px) {
  .projector-room { height: auto; min-height: 600px; overflow-x: hidden; }
  .projector-console {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 15px 0;
    gap: 5px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .projector-instructions {
    order: 1;
    position: relative;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    padding: 0 15px;
    border: none;
    background: transparent;
  }
  .projector-instructions h3 {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  .projector-instructions p {
    font-size: 0.75rem;
    margin-bottom: 0;
  }
  .projector-hardware {
    order: 2;
    transform: scale(0.55);
    margin: -40px 0 -40px 0;
  }
  .cassette-rack {
    order: 3;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100vw;
    padding: 10px 20px 20px 20px;
    gap: 12px;
    margin: 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cassette-rack::-webkit-scrollbar {
    display: none;
  }
  .cassette {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 160px !important;
    min-height: 100px !important;
    height: auto !important;
    margin: 0;
  }
  .cassette-icon {
    height: 35px;
    margin-top: 15px;
  }
  .cassette-icon::before, .cassette-icon::after {
    width: 24px;
    height: 24px;
  }
  .cassette-label {
    font-size: 0.7rem;
    padding: 2px 4px;
  }
  .projection-screen { 
    width: 100%; 
    height: auto; 
    aspect-ratio: auto !important; 
    min-height: 40vh;
    margin-top: 10px; 
    border-radius: 8px;
  }
  .projector-beam { display: none; }
}
/* Movie Projector Effect for Videos */
.projector-effect {
  position: relative;
}

.projector-effect::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.projector-effect::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  z-index: 3;
  pointer-events: none;
  animation: flicker 0.12s infinite;
}

@keyframes flicker {
  0% { opacity: 0.85; }
  50% { opacity: 1; }
  100% { opacity: 0.9; }
}

.projector-video {
  filter: sepia(0.3) contrast(1.1) brightness(0.9) grayscale(0.2);
}

/* --- Proper Footer Styles (Dark Theme) --- */
.proper-footer { 
  position: relative; z-index: 50; background-color: #0a0a0a; color: #cccccc; 
  padding: 80px 5% 40px; border-top: 1px solid rgba(255,255,255,0.05); 
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem; margin-bottom: 0; 
}
@media (max-width: 768px) { .proper-footer { padding-bottom: 120px; } }

.footer-top { 
  display: grid; 
  grid-template-columns: 2fr 1fr 2fr; 
  gap: 40px; 
  margin-bottom: 60px; 
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .brand-contact-column {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .brand-contact-column {
    order: -1;
  }
}

.footer-logo { margin-bottom: 25px; position: relative; }
.footer-logo img, .footer-logo .custom-logo-link img, .footer-logo .custom-logo { 
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
  width: auto !important; 
  max-width: 150px !important; 
  height: auto !important; 
  display: block; 
  margin: 0;
}
.footer-desc { margin-bottom: 30px; line-height: 1.8; max-width: 400px; color: rgba(255,255,255,0.7); }
.footer-subheading, .footer-heading { 
  font-family: 'Playfair Display', serif; color: #ffffff; font-size: 1.4rem; 
  font-weight: 400; text-transform: none; letter-spacing: 0; margin-bottom: 25px; 
}
.footer-contact-info { display: flex; flex-direction: column; gap: 15px; }
.contact-item { display: flex; align-items: center; gap: 12px; margin: 0; }
.contact-item a { color: #cccccc; text-decoration: none; transition: color 0.3s; font-size: 1rem; }
.contact-item a:hover { color: #d4af37; }

.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-menu li { margin: 0; }
.footer-menu a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; font-size: 1rem; }
.footer-menu a:hover { color: #d4af37; }

/* The third column contains two lists, flex them to sit side by side */
.services-column > div {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.services-column > div > div {
  flex: 1;
  min-width: 150px;
}

.footer-bottom { 
  display: flex; justify-content: center; align-items: center; 
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); 
  font-size: 0.9rem; color: rgba(255,255,255,0.5); 
}

/* Drag to scroll tabs */
.board-tabs {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  cursor: grab;
}
.board-tabs::-webkit-scrollbar {
  display: none;
}
.board-tabs.active {
  cursor: grabbing;
}

/* ========================================= */
/* FAQ Section Styles */
/* ========================================= */
.tk-faq-section {
  padding: 80px 5%;
  background: #020202;
  position: relative;
  z-index: 10;
}

.tk-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.tk-faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

.tk-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tk-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tk-faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tk-faq-question {
  width: 100%;
  text-align: left;
  padding: 25px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
}

.tk-faq-q-text {
  padding-right: 20px;
}

.tk-faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tk-faq-icon::before,
.tk-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #d4af37;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.tk-faq-icon::before {
  width: 14px;
  height: 2px;
}

.tk-faq-icon::after {
  width: 2px;
  height: 14px;
}

.tk-faq-question[aria-expanded="true"] .tk-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.tk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tk-faq-answer-inner {
  padding: 0 25px 25px 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 80px 5% 40px; border-top: 1px solid rgba(255,255,255,0.05); 
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem; margin-bottom: 0; 
}
@media (max-width: 768px) { .proper-footer { padding-bottom: 120px; } }

.footer-top { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 40px; 
  margin-bottom: 60px; 
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .brand-contact-column {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .brand-contact-column {
    order: -1;
  }
}

.footer-logo { margin-bottom: 25px; position: relative; }
.footer-logo img, .footer-logo .custom-logo-link img, .footer-logo .custom-logo { 
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
  width: auto !important; 
  max-width: 150px !important; 
  height: auto !important; 
  display: block; 
  margin: 0;
}
.footer-desc { margin-bottom: 30px; line-height: 1.8; max-width: 400px; color: rgba(255,255,255,0.7); }
.footer-subheading, .footer-heading { 
  font-family: 'Playfair Display', serif; color: #ffffff; font-size: 1.4rem; 
  font-weight: 400; text-transform: none; letter-spacing: 0; margin-bottom: 25px; 
}
.footer-contact-info { display: flex; flex-direction: column; gap: 15px; }
.contact-item { display: flex; align-items: center; gap: 12px; margin: 0; }
.contact-item a { color: #cccccc; text-decoration: none; transition: color 0.3s; font-size: 1rem; }
.contact-item a:hover { color: #d4af37; }

.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-menu li { margin: 0; }
.footer-menu a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; font-size: 1rem; }
.footer-menu a:hover { color: #d4af37; }

/* The third column contains two lists, flex them to sit side by side */
.services-column > div {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.services-column > div > div {
  flex: 1;
  min-width: 150px;
}

.footer-bottom { 
  display: flex; justify-content: center; align-items: center; 
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); 
  font-size: 0.9rem; color: rgba(255,255,255,0.5); 
}

/* Drag to scroll tabs */
.board-tabs {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  cursor: grab;
}
.board-tabs::-webkit-scrollbar {
  display: none;
}
.board-tabs.active {
  cursor: grabbing;
}

/* ========================================= */
/* FAQ Section Styles */
/* ========================================= */
.tk-faq-section {
  padding: 80px 5%;
  background: #020202;
  position: relative;
  z-index: 10;
}

.tk-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.tk-faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

.tk-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tk-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tk-faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tk-faq-question {
  width: 100%;
  text-align: left;
  padding: 25px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
}

.tk-faq-q-text {
  padding-right: 20px;
}

.tk-faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tk-faq-icon::before,
.tk-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #d4af37;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.tk-faq-icon::before {
  width: 14px;
  height: 2px;
}

.tk-faq-icon::after {
  width: 2px;
  height: 14px;
}

.tk-faq-question[aria-expanded="true"] .tk-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.tk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tk-faq-answer-inner {
  padding: 0 25px 25px 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tk-faq-answer-inner p {
  margin-bottom: 10px;
}
.tk-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.floating-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 80px; /* Stay above mobile bottom nav */
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}
