:root {
    --bg-dark: #08080a;
    --bg-card: #0e0e12;
    --accent-gold: #d4af37;
    --text-light: #ffffff;
    --text-muted: #888892;
    --border-light: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 1. TOP TICKER STRIP */
.top-ticker {
    background: #0d0d10;
    border-bottom: 1px solid var(--border-light);
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 10px;
    text-align: center;
    position: relative;
    z-index: 1001;
}

/* 2. HEADER */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 6%;
    z-index: 1000;
    background: #08080a;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-socials {
    display: flex;
    gap: 18px;
    width: 25%;
}
.header-socials a {
    color: var(--text-light);
    font-size: 13px;
    opacity: 0.85;
    transition: all 0.3s ease;
}
.header-socials a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    width: 50%;
}

.nav-links-wrapper {
    width: 25%;
    display: flex;
    justify-content: flex-end;
}
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.9;
    transition: all 0.3s;
}
.nav-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 22px;
    cursor: pointer;
}

/* MOBILE DRAWER NAV */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.mobile-nav-drawer.active {
    display: flex;
}
.mobile-nav-drawer a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.close-drawer-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--text-light);
    font-size: 30px;
    cursor: pointer;
}

/* 3. HERO SLIDER */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 700px;
    max-height: 980px;
    overflow: hidden;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain; /* Ye image ko pura dikhayega, katega nahi */
    background-repeat: no-repeat;
    background-position: center center; /* Image bilkul center mein rahegi */
    opacity: 0;
    will-change: opacity;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active {
    opacity: 1;
}

/* 4. BRAND INTRO */
.brand-intro-section {
    padding: 90px 6% 70px 6%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-light);
}

.brand-intro-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 8px;
}

.brand-intro-section .subtitle {
    font-size: 13px; /* Pehle shayad 11px tha */
    letter-spacing: 4px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 400; /* Font weight thora barha diya */
}

.brand-intro-section p {
    font-size: 16px; /* Text ko 16px kar diya taake parhne mein maza aaye */
    color: #e6e6eb; /* Text color bright kar diya */
    letter-spacing: 0.5px;
    line-height: 1.8;
    font-weight: 400; /* Text ab solid nazar aayega */
    max-width: 700px; /* Line ki chaurai thori kam ki hai taake parhne mein asani ho */
    margin: 0 auto;
}

/* 5. ABOUT / STORY SECTION */
.story-section {
    padding: 110px 6%;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.story-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.story-content h3 {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 400;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 25px;
}

.story-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #e6e6eb; /* Text ko thora aur bright/white kiya hai */
    letter-spacing: 0.3px; /* Spacing thori kam ki hai taake lafz bikhre hue na lagein */
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400; /* 300 (Light) se 400 (Normal) kar diya hai */
}

.btn-link {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 6px;
    transition: all 0.3s ease;
}
.btn-link:hover {
    color: var(--accent-gold);
    letter-spacing: 6px;
}

/* 6. CINEMATIC FILMS SHOWCASE */
.section-container {
    padding: 110px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 70px;
}
.section-title-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
}
.section-title-wrap p {
    font-size: 13px;         
    letter-spacing: 2px;    
    color: #ffffff;          
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 400;        
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.film-card {
    background: var(--bg-card);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.film-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
}

.film-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.film-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.6s ease, opacity 0.4s ease;
}
.film-card:hover .film-thumb img {
    transform: scale(1.04);
    opacity: 1;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(8, 8, 10, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.play-btn-overlay::after {
    content: '';
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 11px solid #ffffff;
    margin-left: 3px;
}
.film-card:hover .play-btn-overlay {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}
.film-card:hover .play-btn-overlay::after {
    border-left-color: #000;
}

.film-info {
    padding: 22px;
    text-align: center;
}
.film-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}
.film-info p {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-top: 4px;
}

/* 7. PHOTO GALLERY GRID */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.photo-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}
.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.6s ease, opacity 0.4s ease;
}
.photo-card:hover img {
    transform: scale(1.04);
    opacity: 1;
}
.photo-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(8,8,10,0.9), transparent);
    text-align: center;
}
.photo-overlay-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
}
.photo-overlay-info span {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* 8. EXPERIENCE & STATS BAR */
.stats-strip {
    background: #0d0d10;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 70px 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--accent-gold);
}
.stat-item p {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 6px;
}

/* 9. TESTIMONIALS SECTION */
.testimonials-section {
    padding: 110px 6%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.testimonials-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #f0f0f5;
}
.testimonials-section cite {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-style: normal;
}

/* 10. INQUIRY BANNER */
.inquiry-banner {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(8,8,10,1) 75%);
    border-top: 1px solid var(--border-light);
}
.inquiry-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
}
.inquiry-banner p {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent-gold);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}
.cta-btn:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 10px 30px rgba(212,175,55,0.25);
}

/* =========================================
   MOBILE RESPONSIVE MEDIA QUERIES (FIXED)
   ========================================= */
@media (max-width: 900px) {
    .top-ticker { font-size: 8px; letter-spacing: 1.5px; }
    
    header {
        position: relative !important; 
        top: 0 !important;
        background: #08080a !important; 
        padding: 20px 5%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .header-socials, .nav-links-wrapper { display: none; }
    .logo { width: auto; font-size: 15px; letter-spacing: 3px; }
    .mobile-menu-btn { display: block; }
    
    .hero-section { 
        width: 100%;
        aspect-ratio: 16 / 9; 
        height: auto; 
        max-height: none;
        min-height: 0; 
    }

    .brand-intro-section { padding: 30px 6% 15px 6%; }
    .brand-intro-section h1 { font-size: 26px; letter-spacing: 4px; }
    .brand-intro-section .subtitle { font-size: 9px; letter-spacing: 2.5px; }
    .brand-intro-section p { font-size: 11px; line-height: 1.2; }

    .story-section { grid-template-columns: 1fr; gap: 35px; padding: 60px 6%; text-align: center; }
    .story-content h2 { font-size: 28px; }

    .section-container { padding: 60px 6%; }
    .section-title-wrap { margin-bottom: 40px; }
    .section-title-wrap h2 { font-size: 26px; }

    .grid-3-col, .photo-grid { grid-template-columns: 1fr; gap: 25px; }

    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 25px; padding: 40px 6%; }
    .stat-item h3 { font-size: 30px; }

    .testimonials-section { padding: 60px 6%; }
    .testimonials-section blockquote { font-size: 20px; }

    .inquiry-banner h2 { font-size: 28px; }
    .cta-btn { padding: 14px 28px; font-size: 9px; }
}

/* --- Lightbox Modal (was missing — required for video/photo clicks to work) --- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(8, 8, 10, 0.94);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.modal-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/9;
}
.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#youtubeIframe {
    width: 100%;
    height: 100%;
    border: none;
}
.close-btn {
    position: absolute;
    top: -46px;
    right: 0;
    color: var(--text-light);
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}
@media (max-width: 900px) {
    .modal { padding: 16px; }
}

/* --- Reviews Page Specific Styles --- */
.reviews-page-hero {
    height: 200px;
    background: url('images/hero-1.webp') center/cover;
    border-bottom: 2px solid #c5a059;
}

.reviews-section {
    padding: 30px 15px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.reviews-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.reviews-subtitle {
    color: #c5a059;
    margin-top: 5px;
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
}

.review-card {
    background: #1a1a1f;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #c5a059;
    text-align: left;
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

.review-card h4 {
    color: #c5a059;
    margin-top: 15px;
    font-size: 0.85rem;
}

.back-btn {
    color: #c5a059;
    text-decoration: none;
    border: 1px solid #c5a059;
    padding: 10px 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .reviews-page-hero { height: 350px; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
}