/* assets/css/style.css - Mobile-First Black & Gold Luxury Theme for Neeharika Mulpur Portfolio */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg-dark: #0A0A0C;
    --color-bg-card: #141418;
    --color-bg-elevated: #1C1C22;
    --color-bg-glass: rgba(20, 20, 24, 0.85);

    --color-gold-bright: #F7D568;
    --color-gold-accent: #D4AF37;
    --color-gold-muted: #AA8232;
    --color-gold-dark: #785A14;
    
    --color-text-light: #FAF8F5;
    --color-text-gold: #E8CF86;
    --color-text-muted: #9E9EB0;

    --gradient-gold: linear-gradient(135deg, #FFF0B3 0%, #D4AF37 50%, #9A7618 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(154, 118, 24, 0.05) 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0C 0%, #121216 100%);

    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-gold-sm: 0 4px 15px rgba(212, 175, 55, 0.15);
    --shadow-gold-lg: 0 10px 30px rgba(212, 175, 55, 0.25);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.6);

    --border-gold-subtle: 1px solid rgba(212, 175, 55, 0.2);
    --border-gold-bright: 1px solid rgba(212, 175, 55, 0.6);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Core Base Rules */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 74px; /* Space for 3-button sticky footer bar */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #08080A;
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-muted);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-bright);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    word-break: break-word;
}

.gold-gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-text { color: var(--color-gold-accent); }
.muted-text { color: var(--color-text-muted); }

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 18px;
}

/* Header & Mobile Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

header.scrolled {
    background: rgba(10, 10, 12, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-symbol {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold-subtle);
    color: var(--color-gold-bright);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold-sm);
}

.logo-text h1 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.1;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--color-gold-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-fast);
}

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

.nav-link:hover, .nav-link.active {
    color: var(--color-gold-bright);
}

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

.nav-cta {
    background: var(--gradient-gold);
    color: #0A0A0C !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    box-shadow: var(--shadow-gold-sm);
}

.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold-bright);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 6px;
}

/* FLOATING STICKY 3-BUTTON ACTION BAR */
.floating-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #0A0A0C;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 1500;
    display: flex;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(212, 175, 55, 0.15);
}

.sticky-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    border-right: 1px solid rgba(212, 175, 55, 0.25);
    padding: 4px;
}

.sticky-action-btn:last-child {
    border-right: none;
}

.sticky-btn-enquire {
    background: #141418;
    color: #FAF8F5;
}
.sticky-btn-enquire i {
    color: #F7D568;
    font-size: 1.15rem;
}
.sticky-btn-enquire:hover {
    background: rgba(212, 175, 55, 0.15);
}

.sticky-btn-call {
    background: linear-gradient(180deg, #1C1C22 0%, #121216 100%);
    color: #FAF8F5;
}
.sticky-btn-call i {
    color: #D4AF37;
    font-size: 1.15rem;
}
.sticky-btn-call:hover {
    background: rgba(212, 175, 55, 0.2);
}

.sticky-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
}
.sticky-btn-whatsapp i {
    color: #FFFFFF;
    font-size: 1.25rem;
}
.sticky-btn-whatsapp:hover {
    filter: brightness(1.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                var(--gradient-dark);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: var(--border-gold-subtle);
    color: var(--color-gold-bright);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.typewriter-box {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    color: var(--color-text-gold);
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.typewriter-cursor {
    color: var(--color-gold-bright);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    max-width: 580px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(20, 20, 24, 0.6);
    border: var(--border-gold-subtle);
    border-radius: var(--radius-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--color-gold-bright);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0A0A0C;
    box-shadow: var(--shadow-gold-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-light);
    border: var(--border-gold-bright);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold-bright);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--gradient-gold-subtle);
    border: var(--border-gold-bright);
    box-shadow: var(--shadow-dark), var(--shadow-gold-lg);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-lg) - 6px);
    display: block;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -10px;
    background: rgba(14, 14, 18, 0.94);
    backdrop-filter: blur(8px);
    border: var(--border-gold-bright);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-dark);
}

.hero-badge i {
    font-size: 1.5rem;
    color: var(--color-gold-bright);
}

/* General Sections */
.section {
    padding: 70px 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-bg-dark);
}

.section-alt {
    background-color: var(--color-bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px auto;
}

.subtitle {
    display: inline-block;
    color: var(--color-gold-accent);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.section-divider {
    width: 70px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 14px auto;
    border-radius: 2px;
}

/* Video Carousels & Cards */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.carousel-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 2px 18px 2px;
    scrollbar-width: thin;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 20, 24, 0.9);
    border: var(--border-gold-bright);
    color: var(--color-gold-bright);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-dark);
}

.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

/* 9:16 Instagram Reel Cards */
.reel-card {
    flex: 0 0 250px;
    height: 440px;
    background: var(--color-bg-card);
    border: var(--border-gold-subtle);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.reel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #FFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 5;
}

.reel-iframe-box {
    width: 100%;
    height: 100%;
    border: none;
}

.reel-iframe-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.reel-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 12, 0.95) 100%);
    z-index: 4;
    pointer-events: none;
}

.reel-title {
    font-size: 0.92rem;
    color: var(--color-text-light);
    font-family: var(--font-heading);
}

/* 16:9 YouTube Video Cards */
.youtube-card {
    flex: 0 0 310px;
    background: var(--color-bg-card);
    border: var(--border-gold-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.youtube-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF0000;
    color: #FFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 5;
}

.youtube-iframe-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.youtube-iframe-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-body {
    padding: 14px 16px;
}

.youtube-title {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-family: var(--font-heading);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--border-gold-subtle);
    box-shadow: var(--shadow-dark);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-quote {
    margin-top: 20px;
    padding: 18px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--color-gold-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-gold);
    font-size: 0.95rem;
}

/* Pillar Cards */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pillar-card {
    background: var(--color-bg-elevated);
    border: var(--border-gold-subtle);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    position: relative;
}

.pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    border: var(--border-gold-subtle);
}

.pillar-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

/* Emcee Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.project-chip {
    background: var(--color-bg-card);
    border: var(--border-gold-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.project-chip i {
    color: var(--color-gold-bright);
}

/* Filmography & Acting Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.showcase-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--border-gold-subtle);
}

.showcase-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.showcase-body {
    padding: 20px;
}

.showcase-tag {
    color: var(--color-gold-bright);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.showcase-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

/* 2-COLUMN MEDIA GALLERY LAYOUT (DESKTOP) */
.gallery-layout-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

/* Left Tree View Sidebar */
.gallery-tree-sidebar {
    background: var(--color-bg-card);
    border: var(--border-gold-bright);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    box-shadow: var(--shadow-dark);
}

.tree-sidebar-title {
    font-family: var(--font-heading);
    color: var(--color-gold-bright);
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tree-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tree-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.18);
    cursor: pointer;
}

.tree-nav-link i {
    color: var(--color-gold-bright);
    font-size: 1rem;
    margin-right: 6px;
}

.tree-nav-link:hover, .tree-nav-link.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold-bright);
    color: var(--color-gold-bright);
    font-weight: 600;
    box-shadow: var(--shadow-gold-sm);
}

.tree-count-tag {
    font-size: 0.78rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold-bright);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* Category Filter Bar (Top of Slider) */
.slider-category-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cat-filter-btn {
    background: var(--color-bg-card);
    color: var(--color-text-muted);
    border: var(--border-gold-subtle);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cat-filter-btn:hover, .cat-filter-btn.active {
    background: var(--gradient-gold);
    color: #0A0A0C;
    border-color: transparent;
    font-weight: 600;
    box-shadow: var(--shadow-gold-sm);
}

/* High-End Photo Slider Carousel */
.featured-photo-slider {
    position: relative;
    width: 100%;
    height: 480px;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--border-gold-bright);
    box-shadow: var(--shadow-dark), var(--shadow-gold-lg);
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    cursor: pointer;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 12, 0.95) 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.slide-caption-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold-bright);
}

.slide-caption-text {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(20, 20, 24, 0.85);
    border: var(--border-gold-bright);
    color: var(--color-gold-bright);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn.prev-slide { left: 14px; }
.slider-nav-btn.next-slide { right: 14px; }

.slider-indicators {
    position: absolute;
    bottom: 14px;
    right: 16px;
    display: flex;
    gap: 6px;
    z-index: 10;
    max-width: 200px;
    overflow-x: auto;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    flex-shrink: 0;
}

.slider-dot.active {
    background: var(--color-gold-bright);
    width: 22px;
    border-radius: 8px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 850px;
    width: 100%;
    background: var(--color-bg-card);
    border: var(--border-gold-bright);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.lightbox-img-wrapper {
    max-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.lightbox-img-wrapper img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
}

.lightbox-details {
    padding: 20px;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.8);
    border: var(--border-gold-bright);
    color: var(--color-gold-bright);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Testimonials / Guestbook Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--color-bg-elevated);
    border: var(--border-gold-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
}

.testimonial-quote-icon {
    font-size: 1.8rem;
    color: var(--color-gold-muted);
    margin-bottom: 12px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #0A0A0C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--color-gold-bright);
}

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

/* Booking / Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card, .contact-form {
    background: var(--color-bg-card);
    border: var(--border-gold-subtle);
    border-radius: var(--radius-md);
    padding: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: var(--border-gold-subtle);
    color: var(--color-gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    color: var(--color-gold-bright);
    margin-bottom: 2px;
}

.info-content p, .info-content a {
    color: var(--color-text-light);
    font-size: 0.9rem;
    text-decoration: none;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-gold);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    background: var(--color-bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 16px; 
    min-height: 46px;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-bright);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-alert {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    display: none;
    font-size: 0.88rem;
}

.form-alert.success {
    display: block;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid #28a745;
    color: #5dd879;
}

.form-alert.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid #dc3545;
    color: #f87171;
}

/* Footer */
footer {
    background: #060608;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 10px;
    max-width: 400px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: var(--border-gold-subtle);
    color: var(--color-gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-col h4 {
    color: var(--color-gold-bright);
    font-size: 1rem;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* ==========================================================
   MOBILE FIRST RESPONSIVE RULES FOR MEDIA DIRECTORY TREE & SLIDER
   ========================================================== */

@media (max-width: 992px) {
    .gallery-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Clean Mobile Folder Cards Grid */
    .tree-nav-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }

    .tree-nav-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .hero-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .featured-photo-slider { height: 380px; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 12, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: var(--transition-normal);
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: block; }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 12px;
        gap: 8px;
    }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.7rem; }

    .form-row {
        grid-template-columns: 1fr;
    }
    .featured-photo-slider {
        height: 320px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .reel-card {
        flex: 0 0 230px;
        height: 390px;
    }
    .youtube-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Directory Tree Grid */
    .gallery-tree-sidebar {
        padding: 14px;
        border-radius: 10px;
    }
    .tree-sidebar-title {
        font-size: 0.98rem;
        margin-bottom: 12px;
    }
    .tree-nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 Equal Folder Cards per row on phones! */
        gap: 8px;
    }
    .tree-nav-link {
        padding: 10px 10px;
        font-size: 0.82rem;
        border-radius: 8px;
    }
    .tree-count-tag {
        font-size: 0.72rem;
        padding: 2px 6px;
    }

    .featured-photo-slider {
        height: 260px;
    }
    .slide-caption-overlay {
        padding: 16px 14px;
    }
    .slide-caption-title {
        font-size: 1.05rem;
    }
    .slide-caption-text {
        font-size: 0.78rem;
    }
    .slider-category-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        scrollbar-width: none;
    }
    .cat-filter-btn {
        flex-shrink: 0;
    }
    .contact-info-card, .contact-form {
        padding: 20px 16px;
    }
}
