/* ============================
   CSS VARIABLES & RESET
   ============================ */
:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1a2340;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #8a6f32;
  --off-white: #f5f0e8;
  --white: #ffffff;
  --gray: #8892a4;
  --gray-light: #b8c2d0;
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(201,168,76,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius: 1.25rem;
  --shadow: 0 8px 40px rgba(0,0,0,0.45);
}
[data-theme="light"] {
  --navy: #f5f0e8;
  --navy-mid: #ebe4d8;
  --navy-light: #ddd5c6;
  --off-white: #1a1a2e;
  --white: #0a0f1e;
  --gray: #5a6070;
  --gray-light: #444c5e;
  --glass-bg: rgba(0,0,0,0.04);
  --glass-border: rgba(201,168,76,0.25);
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ============================
   PAGE TRANSITION
   ============================ */
.page-fade {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 9999;
  pointer-events: none;
  animation: fadeOut 0.6s ease forwards;
}
@keyframes fadeOut { from { opacity:1; } to { opacity:0; } }

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 99px; }

/* ============================
   UTILITY
   ============================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.gold-text { color: var(--gold); }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 10px;
  border-radius: 10px;
  border:none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(201,168,76,0.5), 0 8px 24px rgba(0,0,0,0.3);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding:10px;
  border:none;
  border-radius: 10px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 25px rgba(201,168,76,0.4);
  padding:10px;
  border:none;
  border-radius: 10px;
}
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ============================
   ANIMATED GRADIENT BG
   ============================ */
.gradient-bg {
  position: fixed; inset: 0; z-index: -1;
  background: var(--navy);
  overflow: hidden;
}
.gradient-bg::before, .gradient-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: drift 20s ease-in-out infinite alternate;
}
.gradient-bg::before {
  width: 60vw; height: 60vw;
  top: -20%; left: -10%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}
.gradient-bg::after {
  width: 50vw; height: 50vw;
  bottom: -20%; right: -10%;
  background: radial-gradient(circle, #2a4a8a 0%, transparent 70%);
  animation-delay: -10s;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(5%, 5%) scale(1.1); }
}

/* ============================
   TOP BAR
   ============================ */
.topbar {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0;
  display: none;
}
@media(min-width:768px){ .topbar { display: block; } }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--navy); opacity: 0.85; }
.topbar a:hover { opacity: 1; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,15,30,0.92);
  border-bottom-color: var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
}
[data-theme="light"] .navbar.scrolled { background: rgba(245,240,232,0.92); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--off-white);
  white-space: nowrap;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
@media(max-width:1023px){ .nav-links { display: none; } }
.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gray-light);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.theme-toggle {
  width: 40px; height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--gold); color: var(--navy); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
@media(max-width:1023px){ .hamburger { display: flex; } }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--off-white);
  border-radius: 99px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy-mid);
  border-left: 1px solid var(--glass-border);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  transition: right var(--transition);
  overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  display: block; padding: 0.875rem 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.95rem; font-weight: 600;
  color: var(--gray-light);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--off-white); font-size: 1.1rem;
}


/* ============================
   REDESIGNED HERO SECTION - FULL WIDTH
   ============================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    max-height: 900px;
    width: 100%;
    background: linear-gradient(135deg, #0a0f1e 0%, #111827 50%, #0a0f1e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(42, 74, 138, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
    height: 100%;
    min-height: 80vh;
}

/* Left Content */
.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    width: fit-content;
}

.hero-content-left h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--off-white);
    margin: 0;
}

.hero-content-left h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--gray-light);
    max-width: 500px;
    line-height: 1.7;
    margin: 0;
}

.hero-celebrity {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: var(--gold);
    font-weight: 500;
    margin: 0;
}

.hero-celebrity strong {
    color: var(--off-white);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 700;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    padding: 0.9rem 2.6rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 168, 76, 0.4);
    background: linear-gradient(135deg, #dbb95a, #f0da8a);
    color: var(--navy);
    text-decoration: none;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--gold);
    font-weight: 700;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    padding: 0.85rem 2.2rem;
    border-radius: 9999px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.03em;
}

.btn-hero-secondary:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
    text-decoration: none;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    margin-top: 0.5rem;
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 0.3rem;
}

/* Right Content - Poster */
.hero-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-poster-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.4s ease;
}

.hero-poster-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 60px rgba(201, 168, 76, 0.1);
}

.hero-poster-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-poster-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(201, 168, 76, 0.9);
    color: var(--navy);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Hero Carousel Indicators (Dots) */
.hero-carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

/* ============================
   HERO RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 0.9fr;
        gap: 3rem;
    }
    .hero-poster-wrapper {
        max-width: 420px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        height: auto;
        max-height: none;
        padding: 6rem 0 4rem;
    }
    .hero-container {
        padding: 0 2rem;
    }
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
    }
    .hero-content-left {
        text-align: center;
        align-items: center;
    }
    .hero-tag {
        align-self: center;
    }
    .hero-description {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    .hero-stat {
        text-align: center;
    }
    .hero-poster-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }
    .hero-carousel-indicators {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 1.5rem;
    }
    .hero-content-left h1 {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 0.8rem;
        padding: 0.7rem 1.8rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .hero-stat .stat-number {
        font-size: 1.8rem;
    }
    .hero-poster-wrapper {
        max-width: 320px;
    }
    .hero-poster-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.5rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
    }
    .hero-content-left h1 {
        font-size: 1.8rem;
    }
    .hero-description {
        font-size: 0.9rem;
    }
    .hero-celebrity {
        font-size: 0.8rem;
    }
    .hero-buttons {
        gap: 0.6rem;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 0.7rem;
        padding: 0.6rem 1.4rem;
    }
    .hero-stats {
        gap: 1rem;
    }
    .hero-stat .stat-number {
        font-size: 1.5rem;
    }
    .hero-stat .stat-label {
        font-size: 0.6rem;
    }
    .hero-poster-wrapper {
        max-width: 260px;
    }
}

/* ============================
   POPUP FORM ROW STYLES (Redesigned)
   ============================ */
.popup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.popup-form-group {
    margin-bottom: 12px;
}

.popup-form-group input,
.popup-form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    color: var(--off-white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.popup-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.popup-form-group input:focus,
.popup-form-group select:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.popup-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.popup-form-group select option {
    background: var(--navy-mid);
    color: var(--off-white);
    padding: 8px;
}

.popup-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.popup-form-note {
    font-size: 0.7rem;
    color: var(--gray);
    text-align: center;
    margin-top: 12px;
}

/* Popup Form Responsive */
@media (max-width: 768px) {
    .popup-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .popup-form-group input,
    .popup-form-group select {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .popup-form-group input,
    .popup-form-group select {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    .popup-submit-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
}


/* ============================
   FIX: POPUP MOBILE SCROLL
   ============================ */
@media (max-width: 768px) {
    .popup-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 1rem;
    }
    
    .popup-container {
        max-height: 98vh;
        overflow-y: auto;
        border-radius: 1rem;
        margin: 0.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .popup-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .popup-poster {
        min-height: 180px;
        max-height: 220px;
        flex-shrink: 0;
        order: 0;
    }
    
    .popup-form-wrapper {
        padding: 1.25rem 1rem;
        overflow-y: auto;
        flex: 1;
        max-height: none;
        order: 1;
    }
    
    .popup-form-header h2 {
        font-size: 1.2rem;
    }
    
    .popup-form-header p {
        font-size: 0.75rem;
    }
    
    .popup-form-group input,
    .popup-form-group select {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .popup-submit-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .popup-form-note {
        font-size: 0.65rem;
    }
    
    .popup-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        z-index: 20;
        background: rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    .popup-overlay.open .popup-container {
        transform: scale(1);
        max-height: 95vh;
        height: auto;
        min-height: 80vh;
    }
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 0.25rem;
        padding-top: 0.5rem;
    }
    
    .popup-container {
        border-radius: 0.75rem;
        max-height: 96vh;
    }
    
    .popup-poster {
        min-height: 140px;
        max-height: 170px;
    }
    
    .popup-form-wrapper {
        padding: 1rem 0.75rem 1rem 0.75rem;
    }
    
    .popup-form-header {
        margin-bottom: 12px;
    }
    
    .popup-form-header h2 {
        font-size: 1rem;
    }
    
    .popup-form-header p {
        font-size: 0.7rem;
    }
    
    .popup-form-group input,
    .popup-form-group select {
        padding: 7px 10px;
        font-size: 0.7rem;
    }
    
    .popup-submit-btn {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .popup-form-note {
        font-size: 0.6rem;
        margin-top: 8px;
    }
    
    .popup-close {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        top: 0.35rem;
        right: 0.35rem;
    }
    
    .popup-form-wrapper .row.g-2 {
        --bs-gutter-x: 0.35rem;
        --bs-gutter-y: 0.35rem;
    }
}







/* ============================
   POPUP FORM WITH BOOTSTRAP GRID
   ============================ */

.popup-form-wrapper {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.popup-form-header {
    margin-bottom: 20px;
}

.popup-form-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 99px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.popup-form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--off-white);
    margin: 0 0 4px 0;
}

.popup-form-header h2 span {
    color: var(--gold);
}

.popup-form-header p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.popup-nomination-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup-form-group {
    margin-bottom: 0;
}

.popup-form-group input,
.popup-form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    color: var(--off-white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.popup-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.popup-form-group input:focus,
.popup-form-group select:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.popup-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.popup-form-group select option {
    background: var(--navy-mid);
    color: var(--off-white);
    padding: 8px;
}

.popup-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.popup-form-note {
    font-size: 0.7rem;
    color: var(--gray);
    text-align: center;
    margin-top: 12px;
}

/* Override Bootstrap row gap for popup */
.popup-form-wrapper .row.g-2 {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
    margin-left: 0;
    margin-right: 0;
}

.popup-form-wrapper .row.g-2 > * {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .popup-form-wrapper .row.g-2 > .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .popup-form-wrapper {
        padding: 1.5rem;
    }
    
    .popup-form-header h2 {
        font-size: 1.4rem;
    }
    
    .popup-form-group input,
    .popup-form-group select {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .popup-form-wrapper {
        padding: 1.25rem;
    }
    
    .popup-form-group input,
    .popup-form-group select {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .popup-submit-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* ============================
   POPUP OVERLAY STYLES
   ============================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.popup-container {
    max-width: 950px;
    width: 100%;
    max-height: 90vh;
    background: linear-gradient(145deg, #111827, #0a0f1e);
    border-radius: 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 168, 76, 0.05);
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.open .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    color: var(--gray-light);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold);
    transform: rotate(90deg);
}

.popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Left Poster */
.popup-poster {
    position: relative;
    background: var(--navy-mid);
    overflow: hidden;
    min-height: 500px;
}

.popup-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.popup-poster-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(201, 168, 76, 0.9);
    color: var(--navy);
    padding: 0.3rem 1rem;
    border-radius: 99px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.popup-poster-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.9) 0%, transparent 100%);
    z-index: 2;
}

.popup-poster-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--off-white);
    margin-bottom: 0.25rem;
}

.popup-poster-text h3 span {
    color: var(--gold);
}

.popup-poster-text p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

/* Popup Responsive */
@media (max-width: 768px) {
    .popup-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-poster {
        min-height: 280px;
        max-height: 300px;
    }
    
    .popup-poster-text h3 {
        font-size: 1.1rem;
    }
    
    .popup-container {
        max-width: 100%;
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .popup-poster {
        min-height: 200px;
        max-height: 220px;
    }
    
    .popup-poster-text {
        padding: 1rem;
    }
    
    .popup-poster-text h3 {
        font-size: 0.95rem;
    }
    
    .popup-poster-text p {
        font-size: 0.7rem;
    }
}





/* ============================
   POPUP FORM HEADER UPDATES
   ============================ */
.popup-form-header {
    margin-bottom: 20px;
}

.popup-form-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 99px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.popup-form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--off-white);
    margin: 0 0 4px 0;
}

.popup-form-header h2 span {
    color: var(--gold);
}

.popup-form-header p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* ============================
   POPUP OVERLAY UPDATES
   ============================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.popup-container {
    max-width: 950px;
    width: 100%;
    max-height: 90vh;
    background: linear-gradient(145deg, #111827, #0a0f1e);
    border-radius: 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 168, 76, 0.05);
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.open .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    color: var(--gray-light);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold);
    transform: rotate(90deg);
}

.popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.popup-poster {
    position: relative;
    background: var(--navy-mid);
    overflow: hidden;
    min-height: 500px;
}

.popup-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.popup-poster-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(201, 168, 76, 0.9);
    color: var(--navy);
    padding: 0.3rem 1rem;
    border-radius: 99px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.popup-poster-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.9) 0%, transparent 100%);
    z-index: 2;
}

.popup-poster-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--off-white);
    margin-bottom: 0.25rem;
}

.popup-poster-text h3 span {
    color: var(--gold);
}

.popup-poster-text p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.popup-form-wrapper {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

/* Popup Responsive */
@media (max-width: 768px) {
    .popup-grid {
        grid-template-columns: 1fr;
    }
    .popup-poster {
        min-height: 280px;
        max-height: 300px;
    }
    .popup-poster-text h3 {
        font-size: 1.1rem;
    }
    .popup-form-wrapper {
        padding: 1.5rem;
    }
    .popup-container {
        max-width: 100%;
        max-height: 95vh;
    }
    .popup-form-header h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .popup-poster {
        min-height: 200px;
        max-height: 220px;
    }
    .popup-poster-text {
        padding: 1rem;
    }
    .popup-poster-text h3 {
        font-size: 0.95rem;
    }
    .popup-poster-text p {
        font-size: 0.7rem;
    }
    .popup-form-wrapper {
        padding: 1.25rem;
    }
    .popup-form-group input,
    .popup-form-group select {
        padding: 0.6rem 0.85rem;
        font-size: 0.75rem;
    }
    .popup-submit-btn {
        font-size: 0.75rem;
        padding: 0.7rem;
    }
}




/* ============================
   WHAT WE OFFER
   ============================ */
.what-we-offer {
  padding: 5rem 0;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.offer-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.offer-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3);
}
.offer-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--off-white);
}
.offer-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================
   NOMINATION SECTION
   ============================ */
.nomination-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
}
.nomination-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .nomination-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.nomination-info {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.nomination-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  padding: 0.3rem 1.2rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.nomination-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.nomination-info p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
}
.nomination-benefits {
  margin: 2rem 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-light);
}
.benefit-item::before {
  content: '✦';
  color: var(--gold);
  font-weight: bold;
}
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .form-group-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  color: var(--off-white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option {
  background: var(--navy-mid);
}
.exp-banner {
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  margin: 0 0 3rem;
}
.exp-banner::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}
.exp-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.exp-text p {
  color: rgba(10,15,30,0.7);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .exp-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
  }
  .exp-num {
    font-size: 3.5rem;
  }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.about-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.service-tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: all var(--transition);
}
.service-tag:hover {
  border-color: var(--gold);
  color: var(--off-white);
}
.service-tag::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ============================
   AWARDS BANNER
   ============================ */
.awards-banner {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.06) 50%, transparent);
}
.awards-banner .section-title {
  max-width: 650px;
  margin: 0 auto 1.5rem;
}
.awards-banner p {
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 2rem;
}


/* ============================
   AWARDEES SECTION - UPDATED WITH IMAGES
   ============================ */
.awardees-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.02) 50%, transparent);
}

.awardees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.awardee-card {
    text-align: center;
    padding: 1.8rem 1.2rem 1.5rem;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.awardee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.awardee-card:hover::before {
    opacity: 1;
}

.awardee-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 168, 76, 0.05);
}

/* Awardee Image */
.awardee-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    overflow: hidden;
    border: 3px solid var(--glass-border);
    transition: all var(--transition);
    position: relative;
}

.awardee-card:hover .awardee-img {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
    transform: scale(1.05);
}

.awardee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.awardee-card:hover .awardee-img img {
    transform: scale(1.08);
}

/* Glow effect on image */
.awardee-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), transparent 50%);
    pointer-events: none;
}

/* Awardee Info */
.awardee-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 0.25rem;
    transition: color var(--transition);
}

.awardee-card:hover h5 {
    color: var(--gold);
}

.awardee-card p {
    font-size: 0.75rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

/* Awardee Badge (Optional) */
.awardee-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border-radius: 99px;
    margin-top: 0.5rem;
}

/* ============================
   AWARDEES RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
    .awardees-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .awardees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .awardee-img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .awardees-section {
        padding: 3rem 0;
    }
    
    .awardees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .awardee-card {
        padding: 1.2rem 0.8rem 1rem;
    }
    
    .awardee-img {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }
    
    .awardee-card h5 {
        font-size: 0.8rem;
    }
    
    .awardee-card p {
        font-size: 0.65rem;
    }
}

@media (max-width: 400px) {
    .awardees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .awardee-img {
        width: 60px;
        height: 60px;
    }
    
    .awardee-card h5 {
        font-size: 0.7rem;
    }
    
    .awardee-card p {
        font-size: 0.6rem;
    }
}

/* ============================
   AWARDEES ANIMATION
   ============================ */
.awardee-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--transition), box-shadow var(--transition);
}

.awardee-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.awardee-card.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.awardee-card:nth-child(1) { transition-delay: 0.05s; }
.awardee-card:nth-child(2) { transition-delay: 0.1s; }
.awardee-card:nth-child(3) { transition-delay: 0.15s; }
.awardee-card:nth-child(4) { transition-delay: 0.2s; }
.awardee-card:nth-child(5) { transition-delay: 0.25s; }
.awardee-card:nth-child(6) { transition-delay: 0.3s; }
.awardee-card:nth-child(7) { transition-delay: 0.35s; }
.awardee-card:nth-child(8) { transition-delay: 0.4s; }



/* ============================
   STATS
   ============================ */
.stats-section {
  padding: 5rem 0 0;
}
.stats-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ============================
   CLIENT MARQUEE
   ============================ */
.marquee-section {
  padding: 3rem 0 4rem;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  margin-bottom: 2rem;
}
.marquee-track-wrap {
  overflow: hidden;
  position: relative;
}
.marquee-track-wrap::before,
.marquee-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
}
.marquee-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.marquee-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-logo {
  flex-shrink: 0;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gray);
  white-space: nowrap;
  transition: all var(--transition);
}
.client-logo:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
  padding: 5rem 0;
}
.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.test-track-wrap {
  overflow: hidden;
}
.test-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.test-slide {
  flex: 0 0 100%;
  padding: 0 0.75rem;
}
@media (min-width: 768px) {
  .test-slide {
    flex: 0 0 50%;
  }
}
@media (min-width: 1024px) {
  .test-slide {
    flex: 0 0 33.333%;
  }
}
.test-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  position: relative;
}
.test-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
}
.test-text {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.75;
  flex: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.test-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--off-white);
}
.test-role {
  font-size: 0.75rem;
  color: var(--gray);
}
.test-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================
   PUBLICATIONS
   ============================ */
.publications {
  padding: 5rem 0;
}
.pub-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .pub-grid {
    grid-template-columns: 1fr;
  }
}
.pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.pub-visual {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

/* ============================
   EVENTS CAROUSEL
   ============================ */
.events-section {
  padding: 5rem 0;
}
.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 280px;
  aspect-ratio: 4/3;
  border-radius: 0.875rem;
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.carousel-slide:hover img {
  transform: scale(1.05);
}
.carousel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.event-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.carousel-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: center;
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--gray);
  transition: all var(--transition);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  width: 20px;
}
@media (max-width: 767px) {
  .carousel-slide {
    flex: 0 0 calc(100% - 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

/* ============================
   BLOG
   ============================ */
.blog-section {
  padding: 5rem 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-card {
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.blog-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-body {
  padding: 1.5rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}
.blog-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}
.blog-read-time {
  font-size: 0.72rem;
  color: var(--gray);
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 0.625rem;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================
   TEAM (updated: 4 cards in one row)
   ============================ */
.team-section {
  padding: 5rem 0;
  background: var(--bg, #0b1120); /* fallback */
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns = 4 cards in one row */
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive: tablets */
@media (max-width: 1024px) and (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    gap: 1.5rem;
  }
}

/* Responsive: mobile */
@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr; /* single column on mobile */
    gap: 1.5rem;
  }
}

.team-card {
  border-radius: var(--radius, 12px);
  overflow: hidden;
  background: var(--glass-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
  transition: all var(--transition, 0.3s ease);
  text-align: center;
  backdrop-filter: blur(2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
  border-color: var(--gold, #c9a84c);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.15);
}

.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-light, #1a2a4a), var(--navy-mid, #0f1a30));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 1.5rem 1rem;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--off-white, #f0f0f0);
  letter-spacing: 0.3px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold, #c9a84c);
  margin: 0.25rem 0 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 0.78rem;
  color: var(--gray, #b0b8c8);
  margin-bottom: 0.5rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* optional LinkedIn button style (if you add later) */
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold, #c9a84c);
  font-size: 0.8rem;
  transition: all var(--transition, 0.3s ease);
  text-decoration: none;
}
.team-linkedin:hover {
  background: var(--gold, #c9a84c);
  color: var(--navy, #0b1120);
}

/* container & text utilities (if not defined globally) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.reveal {
  opacity: 1; /* keep visible, JS can handle reveal */
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold, #c9a84c);
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--off-white, #f0f0f0);
  margin-top: 0;
}

.gold-text {
  color: var(--gold, #c9a84c);
}


}




/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  padding: 5rem 0;
}
.cta-inner {
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-light) 0%, rgba(201,168,76,0.08) 50%, var(--navy-light) 100%);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.06), transparent);
  transform: skewX(-15deg);
}
.cta-inner .section-title {
  margin-bottom: 1rem;
}
.cta-inner p {
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ============================
   CONTACT
   ============================ */
.contact-section {
  padding: 5rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.contact-item p {
  font-size: 0.9rem;
  color: var(--off-white);
  font-weight: 500;
}
.map-placeholder {
  aspect-ratio: 16/7;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.875rem;
}
.map-placeholder .map-icon {
  font-size: 3rem;
  color: var(--gold);
}
.form-success {
  display: none;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(80,200,120,0.1);
  border: 1px solid rgba(80,200,120,0.25);
  text-align: center;
  color: #6ddc9b;
  font-weight: 600;
  margin-top: 1rem;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media(max-width:1023px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.625rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.625rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  color: var(--off-white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  outline: none;
}
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 0.625rem 1rem;
  background: var(--gold);
  border: none;
  border-radius: 0.5rem;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--gold-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

/* ============================
   CHAT WIDGET
   ============================ */
.chat-widget {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 50;
}
.chat-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: all var(--transition);
}
.chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  border-radius: var(--radius);
  background: var(--navy-mid);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transform: scale(0.9) translateY(10px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.chat-header-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.chat-header-info p {
  font-size: 0.72rem;
  color: rgba(10,15,30,0.7);
}
.chat-body {
  padding: 1rem;
  min-height: 140px;
}
.chat-msg {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem 0.75rem 0.75rem 0.25rem;
  padding: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 0.75rem;
  max-width: 85%;
}
.chat-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 0.5rem;
}
.chat-footer input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  color: var(--off-white);
  font-size: 0.78rem;
  font-family: 'Manrope', sans-serif;
  outline: none;
}
.chat-footer button {
  padding: 0.5rem 0.875rem;
  background: var(--gold);
  border: none;
  border-radius: 0.5rem;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

/* ============================
   REVEAL ANIMATION
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   SWEETALERT OVERRIDE
   ============================ */
.swal2-popup {
  background: linear-gradient(135deg, #111827 0%, #0a0f1e 100%) !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  border-radius: 1.25rem !important;
  font-family: 'Manrope', sans-serif !important;
  color: #f5f0e8 !important;
}
.swal2-title {
  color: #c9a84c !important;
  font-family: 'Cormorant Garamond', serif !important;
}
.swal2-confirm {
  background: linear-gradient(135deg, #c9a84c, #e8c97a) !important;
  color: #0a0f1e !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
}








/* ============================
   3D VIDEO SECTION - LEFT + RIGHT LAYOUT
   ============================ */
.video-3d-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.02) 30%, transparent);
}

.video-3d-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.video-3d-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.video-3d-content .section-label {
    margin-bottom: 0;
}

.video-3d-content .section-title {
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.video-feature-icon {
    color: var(--gold);
    font-size: 0.8rem;
}

.video-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.video-cta span {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Right Video */
.video-3d-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.video-3d-wrapper:hover {
    transform: scale(1.005);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 168, 76, 0.08);
}

.video-3d-container {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: var(--navy-mid);
}

.video-3d-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Overlay */
.video-3d-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.6) 0%, rgba(10, 15, 30, 0.3) 50%, rgba(10, 15, 30, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 2;
    transition: all 0.5s ease;
    cursor: pointer;
}

.video-3d-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-3d-badge {
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 99px;
    backdrop-filter: blur(4px);
}

.video-3d-play-btn {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-3d-play-btn:hover {
    transform: scale(1.12);
}

.video-3d-play-btn svg {
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
    transition: filter 0.3s ease;
}

.video-3d-play-btn:hover svg {
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5));
}

.video-3d-text {
    text-align: center;
    color: var(--off-white);
}

.video-3d-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.video-3d-text p {
    font-size: clamp(0.75rem, 0.9vw, 0.95rem);
    color: var(--gray-light);
    margin: 0.25rem 0 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Sound Toggle Button */
.video-sound-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--off-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.video-sound-btn:hover {
    background: rgba(201, 168, 76, 0.3);
    border-color: var(--gold);
    transform: scale(1.1);
}

.video-sound-btn.muted svg path:last-child {
    opacity: 0.3;
}

/* ============================
   3D VIDEO RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .video-3d-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .video-3d-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .video-3d-section {
        padding: 3rem 0;
    }
    
    .video-3d-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-3d-content {
        text-align: center;
        align-items: center;
    }
    
    .video-3d-content .section-title {
        font-size: 1.8rem;
    }
    
    .video-3d-content p {
        text-align: center;
    }
    
    .video-features {
        align-items: center;
    }
    
    .video-cta {
        justify-content: center;
    }
    
    .video-3d-container {
        height: 350px;
    }
    
    .video-3d-wrapper {
        border-radius: 0.75rem;
    }
    
    .video-3d-text h3 {
        font-size: 1rem;
    }
    
    .video-3d-text p {
        font-size: 0.7rem;
    }
    
    .video-3d-play-btn svg {
        width: 44px;
        height: 44px;
    }
    
    .video-3d-badge {
        font-size: 0.55rem;
        padding: 0.3rem 0.8rem;
    }
    
    .video-sound-btn {
        width: 34px;
        height: 34px;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .video-3d-container {
        height: 240px;
    }
    
    .video-3d-content .section-title {
        font-size: 1.4rem;
    }
    
    .video-3d-text h3 {
        font-size: 0.85rem;
    }
    
    .video-3d-text p {
        font-size: 0.6rem;
    }
    
    .video-3d-play-btn svg {
        width: 36px;
        height: 36px;
    }
    
    .video-3d-badge {
        font-size: 0.45rem;
        padding: 0.2rem 0.6rem;
    }
    
    .video-feature {
        font-size: 0.75rem;
    }
    
    .video-sound-btn {
        width: 30px;
        height: 30px;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .video-sound-btn svg {
        width: 16px;
        height: 16px;
    }
}