/* ==========================================================================
   YELLOWPIX — Luxury Photography Studio Web Design System
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --bg-main: #0B0B0B;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --bg-surface: #1E1E1E;
  
  --text-primary: #F8F7F4;
  --text-secondary: #C0BFB9;
  --text-muted: #80807B;

  --accent-gold: #E5B82A;
  --accent-gold-light: #FFD700;
  --accent-gold-glow: rgba(229, 184, 42, 0.25);
  --accent-gold-dark: #B89018;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(229, 184, 42, 0.3);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1320px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- Custom Cursor --- */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
  }

  .cursor-outline {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(229, 184, 42, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, transform 0.1s ease-out;
  }

  body:hover .cursor-dot, body:hover .cursor-outline {
    opacity: 1;
  }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
  width: 0%;
  z-index: 10001;
  transition: width 0.1s ease-out;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 7rem 0;
}

.text-center { text-align: center; }
.text-italic { font-style: italic; font-family: var(--font-serif); }

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gap-small { gap: 1.5rem; }
.gap-large { gap: 4rem; }
.align-center { align-items: center; }

.margin-top-small { margin-top: 1.5rem; }
.margin-top-large { margin-top: 3.5rem; }

/* --- Section Headers & Labels --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  margin-right: 0.75rem;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--accent-gold-glow);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

/* --- Typography Helpers --- */
.text-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.text-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000000;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-primary:hover {
  background-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  background-color: rgba(229, 184, 42, 0.05);
}

.btn-full {
  width: 100%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.btn-link .arrow {
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.btn-link:hover .arrow {
  transform: translateX(6px);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-main);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: logoFadeIn 0.8s ease forwards;
}

.preloader-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(229, 184, 42, 0.5));
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(229, 184, 42, 0.4)); }
  50% { filter: drop-shadow(0 0 30px rgba(229, 184, 42, 0.8)); }
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(229, 184, 42, 0.3));
  transition: filter var(--transition-fast);
}

.footer-logo-img:hover {
  filter: drop-shadow(0 4px 18px rgba(229, 184, 42, 0.6));
}

.preloader-bar {
  width: 180px;
  height: 2px;
  background-color: var(--border-subtle);
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.preloader-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
  transition: width 0.4s ease;
}

.preloader-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.75rem 0;
  transition: padding var(--transition-normal), background-color var(--transition-normal), backdrop-filter var(--transition-normal);
}

.navbar.scrolled {
  padding: 1rem 0;
  background-color: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Remove white background — logo has transparent bg on PNG */
  filter: drop-shadow(0 2px 8px rgba(229, 184, 42, 0.25));
  transition: filter var(--transition-fast), height var(--transition-normal);
}

.navbar.scrolled .nav-logo-img {
  height: 50px;
}

.mobile-drawer-logo {
  display: flex;
  justify-content: center;
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.mobile-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(229, 184, 42, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 1002;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background-color: var(--bg-main);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-inner {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-primary);
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
}

.mobile-drawer-footer p {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 11, 11, 0.3) 0%, rgba(11, 11, 11, 0.75) 100%),
              linear-gradient(to bottom, rgba(11, 11, 11, 0.6) 0%, transparent 40%, rgba(11, 11, 11, 0.9) 100%);
  z-index: 3;
}

.hero-container {
  position: relative;
  text-align: center;
  z-index: 10;
  margin-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold-light);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  z-index: 2;
  transition: color var(--transition-fast);
}

.scroll-indicator svg {
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  color: var(--accent-gold);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* ==========================================================================
   INTRO / BRAND STATEMENT
   ========================================================================== */
.intro-section {
  background-color: var(--bg-main);
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary);
  max-width: 900px;
  margin: 1.5rem auto 2.5rem;
}

.intro-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  background-color: var(--bg-main);
}

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

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.about-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-frame:hover .about-img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.badge-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ==========================================================================
   ACHIEVEMENTS / STATS
   ========================================================================== */
.stats-section {
  padding: 4.5rem 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background-color: var(--border-subtle);
}

.stat-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-gold);
  vertical-align: top;
  margin-left: 0.15rem;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  background-color: var(--bg-card-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.service-img-container {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #0f0f0f;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img {
  transform: scale(1.04);
}

.service-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: auto;
}

.service-btn .arrow {
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-btn .arrow {
  transform: translateX(6px);
}

.service-line {
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
  transition: width var(--transition-normal);
}

.service-card:hover .service-line {
  width: 100%;
}

/* ==========================================================================
   FEATURED PORTFOLIO
   ========================================================================== */
.portfolio-section {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 3rem 0 3.5rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000000;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-card);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.portfolio-item-inner {
  position: relative;
  padding-bottom: 125%; /* 4:5 ratio */
  overflow: hidden;
  background: #0f0f0f;
}

.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.2) 60%, transparent 100%);
  opacity: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity var(--transition-normal);
}

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

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

.portfolio-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
}

.portfolio-zoom-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(229, 184, 42, 0.9);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform var(--transition-fast);
}

.portfolio-item:hover .portfolio-zoom-icon {
  transform: scale(1);
}

.portfolio-item.hide {
  display: none;
}

/* ==========================================================================
   FEATURED STORY BANNER
   ========================================================================== */
.story-banner-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background-color: var(--bg-main);
}

.story-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.6);
  z-index: 1;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.7);
  z-index: 2;
}

.story-content {
  position: relative;
  z-index: 3;
}

.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   WHY CHOOSE US (FEATURES)
   ========================================================================== */
.features-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-card {
  padding: 2.5rem 1.5rem;
  background-color: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(229, 184, 42, 0.08);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1);
  background-color: var(--accent-gold);
  color: #000000;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PHOTOGRAPHY PROCESS
   ========================================================================== */
.process-section {
  background-color: var(--bg-main);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
}

.process-line {
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light));
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-num {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem;
  background-color: var(--bg-main);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--accent-gold-glow);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.process-step:hover .process-num {
  transform: scale(1.15);
  background-color: var(--accent-gold);
  color: #000000;
}

.process-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.process-step:hover .process-card {
  border-color: var(--border-accent);
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #c8860a);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.google-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #4285F4;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Product Sans', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  flex: 1;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.author-event {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(229, 184, 42, 0.1);
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dots .dot.active {
  background-color: var(--accent-gold);
  width: 28px;
  border-radius: 10px;
}

/* ==========================================================================
   CURATED GALLERY
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-main);
}

.artistic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #0f0f0f;
}

.gallery-item.portrait-tall {
  grid-row: span 2;
}

.gallery-item.landscape {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

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

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner-section {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.8);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

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

.contact-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
}

.contact-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background-color: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

.form-control option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--accent-gold);
  text-align: center;
  display: none;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(229, 184, 42, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-val {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.info-val:hover {
  color: var(--accent-gold);
}

/* Studio Map Embed Frame */
.map-embed-frame {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.map-embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  filter: grayscale(20%) contrast(1.1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #070707;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.3fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-brand-col .footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand-col .footer-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-fast);
  width: fit-content;
}

.footer-nav a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-contact-list svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--accent-gold);
}

.footer-socials-icons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  width: fit-content;
}

.social-icon-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(200, 168, 75, 0.08);
  transform: translateY(-2px);
}

.social-icon-btn.social-icon-wa:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.08);
}

.footer-hours {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 0.85rem;
  margin-top: 0.5rem;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  background-color: #040404;
  padding: 1.25rem 0;
}

.footer-bottom-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-bar strong {
  color: var(--text-primary);
}

.footer-rating {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

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

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-caption-bar {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--text-primary);
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.lightbox-counter {
  font-size: 0.85rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }

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

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-accent);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.75rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--accent-gold);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.booking-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

/* ==========================================================================
   ANIMATIONS & REVEALS
   ========================================================================== */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .artistic-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-logo-img {
    height: 48px !important;
  }

  .navbar.scrolled .nav-logo-img {
    height: 40px !important;
  }

  .nav-links, .nav-actions .btn-primary { display: none; }
  .hamburger-btn { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2)::after { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .artistic-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }

  .gallery-item.portrait-tall, .gallery-item.landscape {
    grid-row: span 1;
    grid-column: span 1;
  }

  .hero-ctas, .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn { width: 100%; }
  
  .contact-form-wrapper, .info-card { padding: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

/* ==========================================================================
   WATERMARK REMOVAL & CLEAN LOGO CROP UTILITIES
   ========================================================================== */
.crop-clean {
  overflow: hidden !important;
}

.crop-clean img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.12) !important;
  transform-origin: center top !important;
  transition: transform var(--transition-slow) !important;
}

.portfolio-item:hover .crop-clean img,
.gallery-item:hover .crop-clean img,
.client-story-card:hover .crop-clean img {
  transform: scale(1.18) !important;
}

/* Show full portrait — only crop bottom corner logo */
.crop-logo-bottom {
  overflow: hidden !important;
}

.crop-logo-bottom img {
  width: 100% !important;
  height: 108% !important;
  object-fit: cover !important;
  object-position: top center !important;
  transform: none !important;
  transition: transform var(--transition-slow) !important;
}

.portfolio-item:hover .crop-logo-bottom img,
.gallery-item:hover .crop-logo-bottom img,
.client-story-card:hover .crop-logo-bottom img,
.photo-ticker-item:hover .crop-logo-bottom img,
.hero-slide .crop-logo-bottom img {
  transform: scale(1.04) !important;
  transform-origin: center top !important;
}

/* ==========================================================================
   REAL CLIENT SHOWCASE (SIVAM DIGITAL & YELLOWPIX FEATURED COLLECTION)
   ========================================================================== */
.client-stories-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.client-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.client-story-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.client-story-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.client-story-card.featured-wide {
  grid-column: span 2;
}

.client-story-img-wrap {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.client-story-body {
  padding: 1.75rem;
}

.client-story-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
  display: block;
}

.client-story-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.client-story-partner {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   HERO SLIDER CROSSFADE STYLES
   ========================================================================== */
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2;
}

.hero-slide .hero-bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.15) !important;
  transform-origin: center top !important;
}

.hero-slide.active .hero-bg-img {
  transform: scale(1.15);
}

.hero-slider-nav {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.65);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.hero-slider-btn:hover {
  background: var(--accent-gold);
  color: #000;
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.hero-slider-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-dot.active {
  background: var(--accent-gold);
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

/* ==========================================================================
   PHOTO TICKER CAROUSEL STRIP
   ========================================================================== */
.photo-ticker-section {
  width: 100%;
  background: #111111;
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 1.5rem 0;
}

.photo-ticker-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: tickerScroll 12s linear infinite;
}

.photo-ticker-item {
  width: 320px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  cursor: pointer;
}

.photo-ticker-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   STUDIO ADMIN PORTAL MODAL STYLES
   ========================================================================== */
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-trigger-btn {
  background: rgba(200, 168, 75, 0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-trigger-btn:hover {
  background: var(--accent-gold);
  color: #000;
  box-shadow: 0 0 12px var(--accent-gold-glow);
}

.admin-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.admin-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.admin-modal-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.admin-badge-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.admin-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 600px) {
  .admin-stats-row {
    grid-template-columns: 1fr;
  }
}

.admin-stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-stat-box .stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.admin-stat-box .stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.75rem;
}

.admin-tab-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-tab-btn.active, .admin-tab-btn:hover {
  background: rgba(200, 168, 75, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.tab-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.tab-header-flex h4 {
  font-size: 1rem;
  color: var(--text-primary);
}

.enquiries-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 340px;
  overflow-y: auto;
}

.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-subtle);
}

.enquiry-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.enquiry-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enquiry-client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.enquiry-client-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.enquiry-detail-row {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.enquiry-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.align-end {
  display: flex;
  align-items: flex-end;
}

.admin-gallery-manage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.admin-gallery-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.admin-gallery-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.admin-gallery-card-info {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-gallery-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-danger-small {
  background: rgba(235, 64, 52, 0.15);
  border: 1px solid #eb4034;
  color: #eb4034;
  font-size: 0.72rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-fast);
}

.btn-danger-small:hover {
  background: #eb4034;
  color: #fff;
}

.services-admin-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}

.service-admin-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

.service-admin-thumb {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-admin-info {
  flex: 1;
}

.services-admin-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.service-admin-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HIGHLIGHTS & VIDEO SHOWCASE SECTION
   ========================================================================== */
.highlights-section {
  background: radial-gradient(circle at 50% 30%, rgba(229, 184, 42, 0.08) 0%, rgba(11, 11, 11, 1) 75%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.highlights-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(229, 184, 42, 0.12);
  border: 1px solid var(--border-accent);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.highlights-badge-pill span.live-pulse {
  width: 8px;
  height: 8px;
  background-color: #E5B82A;
  border-radius: 50%;
  box-shadow: 0 0 10px #E5B82A;
  animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {
  0%, 100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 6px #E5B82A; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px #FFD700; }
}

/* Featured Video Player Container */
.featured-video-wrapper {
  position: relative;
  max-width: 1080px;
  margin: 2.5rem auto 3.5rem auto;
  border-radius: var(--radius-lg);
  padding: 6px;
  background: linear-gradient(135deg, rgba(229, 184, 42, 0.45) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(229, 184, 42, 0.25) 100%);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 45px rgba(229, 184, 42, 0.18);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.featured-video-wrapper:hover {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95), 0 0 65px rgba(229, 184, 42, 0.28);
}

.video-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(229, 184, 42, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity var(--transition-normal);
}

.video-player-inner {
  position: relative;
  background: #000;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  z-index: 1;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  background: #000;
}

/* Video Header Floating Info */
.video-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.video-top-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.video-title-tag {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.video-quality-badge {
  background: rgba(229, 184, 42, 0.25);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

/* Big Center Play Button Overlay */
.video-center-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 4;
  transition: all var(--transition-fast);
}

.video-player-inner.is-playing .video-center-overlay {
  opacity: 0;
  pointer-events: none;
}

.big-play-btn {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(229, 184, 42, 0.92);
  color: #0B0B0B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 0 35px rgba(229, 184, 42, 0.7);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  padding-left: 5px;
}

.big-play-btn:hover {
  transform: scale(1.12);
  background: #FFD700;
  box-shadow: 0 0 50px rgba(229, 184, 42, 0.95);
}

.video-prompt-text {
  margin-top: 1rem;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

/* Custom Bottom Controls Bar */
.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
  padding: 1.25rem 1.5rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 6;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.video-player-inner.is-playing.hide-controls .video-controls-bar,
.video-player-inner.is-playing.hide-controls .video-top-bar {
  opacity: 0;
  pointer-events: none;
}

/* Seek Bar */
.video-timeline {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: height 0.15s ease;
}

.video-timeline:hover {
  height: 10px;
}

.video-progress-filled {
  height: 100%;
  background: linear-gradient(90deg, #E5B82A, #FFD700);
  border-radius: 4px;
  width: 0%;
  position: relative;
}

.video-progress-filled::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: transform 0.15s ease;
}

.video-timeline:hover .video-progress-filled::after {
  transform: translateY(-50%) scale(1);
}

/* Controls Row */
.video-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.video-controls-left, .video-controls-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.video-ctrl-btn {
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.video-ctrl-btn:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

.video-time-display {
  font-size: 0.82rem;
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.volume-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.volume-slider {
  width: 70px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
}

.speed-select {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  outline: none;
}

.speed-select option {
  background: #111;
  color: #FFF;
}

/* Video Highlight Feature Cards Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(229, 184, 42, 0.1);
}

.highlight-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.highlight-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.highlight-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.highlight-duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  z-index: 2;
}

.highlight-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(229, 184, 42, 0.9);
  color: #0B0B0B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 3px;
  opacity: 0.85;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 2;
}

.highlight-card:hover .highlight-play-icon {
  transform: translate(-50%, -50%) scale(1.05);
  opacity: 1;
  background: #FFD700;
  box-shadow: 0 0 25px rgba(229, 184, 42, 0.8);
}

.highlight-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.highlight-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.highlight-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.highlight-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Features ribbon / highlight stats */
.highlight-features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.highlight-feature-box {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.highlight-feature-box:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.highlight-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.highlight-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.highlight-feature-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .video-top-bar {
    padding: 0.75rem 1rem;
  }
  .video-title-tag {
    font-size: 0.8rem;
  }
  .video-controls-bar {
    padding: 0.75rem 1rem 0.5rem;
  }
  .big-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  .volume-slider {
    width: 45px;
  }
  .highlights-section {
    padding: 4rem 0;
  }
}



