/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-color: #020203;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Media Container */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

/* Overlay gradient for premium cinematic fade */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 9, 0.4) 0%,
    rgba(7, 7, 9, 0.7) 60%,
    rgba(7, 7, 9, 1) 100%
  );
  z-index: 2;
}

/* Hero Content Styling */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  padding-top: 60px;
}

.hero-tag {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) forwards;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) 0.2s forwards;
}

.hero-title span {
  display: block;
  font-weight: 300;
  color: var(--text-secondary);
}

.hero-title em {
  font-style: normal;
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) 0.6s forwards;
}

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

/* ==========================================================================
   2. Services Section
   ========================================================================== */
.services {
  background-color: var(--bg-color);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: rgba(214, 175, 55, 0.05);
  border: 1px solid rgba(214, 175, 55, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  background-color: var(--accent-gold);
  color: var(--text-inverse);
  transform: scale(1.05);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.service-features li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--accent-gold);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   3. Portfolio Section (Asymmetrical Lazy-Loaded Gallery)
   ========================================================================== */
.portfolio {
  background-color: var(--bg-secondary);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.section-intro {
  max-width: 600px;
}

.section-title-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Carousel Layout for Selected Works */
.portfolio-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 50px;
  overflow: visible; /* allow hover zoom cards to expand cleanly */
}

.portfolio-carousel {
  display: flex;
  gap: 0; /* no gap/padding between items */
  overflow-x: auto;
  overflow-y: visible; /* allow hover zoom cards to bleed without clipping */
  width: 100%;
  padding: 50px 0;
  scroll-behavior: auto; /* handled via JS requestAnimationFrame auto-scroll */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  position: relative;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.portfolio-carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari, Opera */
}

/* Horizontal Slide Items */
.portfolio-carousel-item {
  flex-shrink: 0;
  position: relative;
  overflow: visible; /* Let inner content card scale out of bounds */
  cursor: pointer;
  z-index: 1;
  border-radius: 0; /* flush, edge-to-edge layout */
}

/* Base aspect ratios with standardized height of 420px */
.portfolio-carousel-item.landscape {
  width: 580px;
  height: 420px;
}

.portfolio-carousel-item.portrait {
  width: 280px;
  height: 420px;
}

.portfolio-carousel-item.square {
  width: 420px;
  height: 420px;
}

.portfolio-carousel-item.collage {
  width: 580px;
  height: 420px;
}

/* Interactive Card Container */
.portfolio-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05); /* very subtle edge separator */
  background-color: var(--surface-color);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.45s var(--ease-out-expo),
    border-radius 0.45s var(--ease-out-expo);
  box-shadow: none;
}

/* Hover popup card zoom */
.portfolio-carousel-item:hover {
  z-index: 10;
}

.portfolio-carousel-item:hover .portfolio-card {
  transform: scale(1.15); /* Zoom item card */
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(212, 175, 55, 0.35);
  border-color: var(--accent-gold);
  border-radius: var(--radius-md); /* Add radius dynamically only on hover */
}

/* Main visual layer */
.portfolio-media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

/* Cinematic Video Hover Preview Layer */
.portfolio-video-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.portfolio-carousel-item:hover .portfolio-video-preview {
  opacity: 1;
}

/* Collage style layout */
.portfolio-collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
}

.portfolio-collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.portfolio-carousel-item:hover .portfolio-collage-img {
  transform: scale(1.05);
}

/* Overlay & Info Layer */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(7, 7, 9, 0.95) 0%,
    rgba(7, 7, 9, 0.4) 60%,
    rgba(7, 7, 9, 0.1) 100%
  );
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-carousel-item:hover .portfolio-overlay {
  opacity: 1;
}

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

.portfolio-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  transform: translateY(15px);
  transition: transform 0.4s var(--ease-out-expo);
}

.portfolio-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
  transform: translateY(20px);
  transition: transform 0.45s var(--ease-out-expo);
}

.portfolio-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  transform: translateY(25px);
  transition: transform 0.5s var(--ease-out-expo);
  max-width: 95%;
}

.portfolio-carousel-item:hover .portfolio-category,
.portfolio-carousel-item:hover .portfolio-title,
.portfolio-carousel-item:hover .portfolio-desc {
  transform: translateY(0);
}

/* Play button overlay indicators */
.portfolio-play-indicator {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(7, 7, 9, 0.65);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 1;
  transition: var(--transition-medium);
}

.portfolio-play-indicator svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-left: 2px;
}

.portfolio-carousel-item:hover .portfolio-play-indicator {
  background-color: var(--accent-gold);
  color: var(--text-inverse);
  border-color: var(--accent-gold);
  transform: scale(1.1);
}

/* ==========================================================================
   4. Social Proof (Stats & Infinite Marquee)
   ========================================================================== */
.social-proof {
  background-color: var(--bg-secondary);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* Logo Marquee */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
  gap: 80px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}

.marquee-item {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: var(--transition-fast);
  cursor: default;
}

.marquee-item:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   5. Why Choose Us Section
   ========================================================================== */
.why-us {
  background-color: var(--bg-secondary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.why-us-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 5;
}

.why-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 9, 0.1) 0%,
    rgba(7, 7, 9, 0.8) 100%
  );
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.why-us-quote {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
}

.why-us-quote span {
  color: var(--accent-gold);
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 12px;
}

.why-us-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-feature {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-medium);
}

.why-feature:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.why-feature-num {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.why-feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   6. Testimonials Section (3-Column Horizontal Carousel)
   ========================================================================== */
.testimonials {
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out-expo);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 16px);
  opacity: 0.4;
  transform: scale(0.96);
  transition:
    opacity 0.5s ease,
    transform 0.5s var(--ease-out-expo);
}

.testimonial-slide.active-view {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-slide.active-view .testimonial-card:hover {
  border-color: rgba(214, 175, 55, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  color: rgba(214, 175, 55, 0.05);
  z-index: 1;
}

.testimonial-quote-icon svg {
  width: 60px;
  height: 60px;
  fill: currentColor;
}

.testimonial-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.testimonial-comment {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.testimonial-author-name {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-author-title {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Slider Controls */
.testimonial-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--accent-gold);
  width: 24px;
}

.testimonial-nav-btns {
  display: flex;
  gap: 12px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-medium);
}

.testimonial-nav-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  background-color: rgba(214, 175, 55, 0.04);
}

.testimonial-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   7. About Section
   ========================================================================== */
.about {
  background-color: var(--bg-color);
}

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

.about-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 24px;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.about-highlight-card {
  background-color: var(--surface-color);
  border-left: 3px solid var(--accent-gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-highlight-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-highlight-desc {
  font-size: 12px;
  color: var(--text-secondary);
}

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

.about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-glow);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-badge-num {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.about-badge-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--text-primary);
}

/* ==========================================================================
   8. Contact Section
   ========================================================================== */
.contact {
  background-color: var(--bg-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-medium);
}

.contact-card:hover {
  border-color: var(--accent-gold);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-sm);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-card-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-card-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-card-value a:hover {
  color: var(--accent-gold);
}

/* Map frame */
.contact-map-wrapper {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* Contact form */
.contact-form-panel {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 48px;
  border-radius: var(--radius-lg);
}

.contact-form-panel h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-form-panel p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* ==========================================================================
   Fullview Lightbox Modal
   ========================================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 2, 3, 0.95);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-out-expo);
}

.lightbox.active .lightbox-content-wrapper {
  transform: scale(1);
}

.lightbox-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: rgba(7, 7, 9, 0.6);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2001;
  transition: var(--transition-medium);
}

.lightbox-close-btn:hover {
  background-color: var(--accent-gold);
  color: var(--text-inverse);
  border-color: var(--accent-gold);
  transform: rotate(90deg);
}

.lightbox-close-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lightbox-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 24px 30px;
  z-index: 2002;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition:
    background 0.4s ease,
    padding 0.4s ease;
}

.lightbox-caption.collapsed {
  background: transparent;
  padding: 16px 20px;
}

.lightbox-caption-info {
  display: flex;
  flex-direction: column;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  opacity: 1;
  transform: translateY(0);
}

.lightbox-caption.collapsed .lightbox-caption-info {
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
}

.lightbox-caption-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lightbox-caption-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.lightbox-toggle-btn {
  background: rgba(7, 7, 9, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-medium);
  flex-shrink: 0;
  margin-left: 20px;
}

.lightbox-toggle-btn:hover {
  background-color: var(--accent-gold);
  color: var(--text-inverse);
  border-color: var(--accent-gold);
}

.lightbox-toggle-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Lightbox Collage Grid */
.lightbox-collage-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 80px 24px 100px; /* space for close button and captions */
  box-sizing: border-box;
  overflow-y: auto;
}

.lightbox-collage-container::-webkit-scrollbar {
  width: 6px;
}

.lightbox-collage-container::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: var(--radius-full);
}

.lightbox-collage-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-gold);
}

.lightbox-collage-item {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.4s var(--ease-out-expo);
}

.lightbox-collage-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-gold);
}

/* FAQ Accordion Styling */
.faq-container {
  margin-top: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--accent-gold);
}

.faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo);
}

.faq-icon-wrapper svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-content p {
  padding: 0 28px 24px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .faq-trigger {
    padding: 20px 20px;
    font-size: 15px;
  }
  .faq-content p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}
