:root {
    /* Premium Palette Variables */
    --primary: #8B1E3F;
    /* Luxury Crimson Maroon */
    --primary-rgb: 139, 30, 63;
    --secondary: #D4AF37;
    /* Antique Champagne Gold */
    --accent: #1A1A1A;
    /* Dark Charcoal Accent Layer */
    --bg-light: #121212;
    /* Rich Velvet Black Main Background */
    --bg-dark: #0A0A0A;
    /* Deep Pitch Black Canvas */

    /* Text Readability Tiers */
    --text-dark: #F8F4EF;
    /* Ivory White for Premium Primary Text */
    --text-light: #F8F4EF;
    /* Universal Light Text Fallback */
    --text-muted: #A0A0A0;
    /* Mid-Tone Grey for Sub-titles & Descriptions */

    /* Typography & Structure Elements */
    --font-heading: 'Georgia', Times New Roman, Times, serif;
    --font-body: 'Inter Tight', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-premium: 0 20px 40px rgba(139, 30, 63, 0.3);
}

/* Reset & Global Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden !important;

}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden !important;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 80px 8% 80px 8%;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 5%;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Base Typography Components */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    /* opacity: 0; */
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

/* .section-header.revealed {
    opacity: 1;
    transform: translateY(0);
} */

.section-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary);
}

/* Universal Premium Button Modern Gradient Style */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.95rem;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: all 0.4s var(--transition-smooth);
}

.btn-primary-grad {
    background: linear-gradient(135deg, var(--primary) 0%, #b12d55 100%);
    color: var(--text-light);
}

.btn-primary-grad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b12d55 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s var(--transition-smooth);
}

.btn-primary-grad:hover::before {
    opacity: 1;
}

.btn-primary-grad:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-secondary-outline:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* 1. Sticky Transparent Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    padding: 5px 8%;
    background: #000000 !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); */
    /* border-bottom: 1px solid rgba(139, 30, 63, 0.1); */
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--text-light);
}

.navbar.scrolled .nav-links a.active {
    color: var(--primary);
}

.logo {
    width: 120px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--secondary);
}

.nav-btn {
    display: flex;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* Mobile Nav State */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-light);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 20px;
        text-align: center;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.mobile-active a {
        color: var(--text-dark);
    }
}

/* 2. Fullscreen Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 5% 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.623), rgba(0, 0, 0, 0.651)), url('../images/banner.jpeg') center/cover no-repeat;
    color: var(--text-light);
    overflow: hidden;
}



.hero-content {
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 500;
    animation: fadeInDown 1.2s var(--transition-smooth);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    color: rgba(248, 244, 239, 0.9);
    animation: fadeInUp 1.2s var(--transition-smooth) 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1.2s var(--transition-smooth) 0.4s backwards;
}

/* Floating Statistics Container */
.stats-container {
    /* position: absolute;
    bottom: 40px;
    left: 50%; */
    margin: 70px auto;
    /* transform: translateX(-50%); */
    width: 100%;
    max-width: 1100px;
    background: var(--primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 25px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1100fr);
    gap: 20px;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s var(--transition-smooth) 0.6s backwards;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        bottom: 20px;
        padding: 15px;
        position: relative;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 40px;
        background: rgba(18, 18, 18, 0.8);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .hero {
        height: auto;
        padding-top: 180px;
        padding-bottom: 60px;
    }
}

/* 3. Marquee Section */
.marquee-section {
    background: var(--bg-dark);
    padding: 25px 0;
    overflow: hidden;
    display: flex;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.marquee-item span {
    color: var(--secondary);
    margin-left: 60px;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* 4. About Weddfilmy */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    /* opacity: 0; */
    transform: translateX(-50px);
    transition: all 1s var(--transition-smooth);
}

.about-image.revealed {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    /* opacity: 0; */
    transform: translateX(50px);
    transition: all 1s var(--transition-smooth);
}

.about-text.revealed {
    opacity: 1;
    transform: translateX(0);
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 1rem;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    margin-bottom: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.badge-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }
}

/* 5. Services Section */
.services-section {
    background-color: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.service-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    /* opacity: 0; */
    /* transform: translateY(40px); */
}


.service-card:hover {
    transform: translateY(1px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card.highlighted {
    grid-column: span 1;
    border: 1px solid rgba(214, 175, 87, 0.4);
    background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
}

.service-card.highlighted::after {
    content: 'POPULAR FOCUS';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
}


.service-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-btn i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.style-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-subtle);
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.style-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.style-card:hover img {
    transform: scale(1.08);
}

.style-overlay h3 {
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.style-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .styles-grid {
        grid-template-columns: 1fr;
    }

    .style-card {
        height: 380px;
    }
}

/* 6. Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.568);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    transform: scale(0.9);
    opacity: 0;
    will-change: transform;
    display: inline-block;
}

/* .why-card.revealed {
    opacity: 1;
    transform: scale(1);
} */

.why-card:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.why-card:hover i {
    color: var(--text-light);
}

.why-card h4 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


.gallery-container {
    max-width: 800px;
    margin: auto;
    width: 100%;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-image {
    /* width: 30%; */
    max-width: 100%;
    margin: 5px;
    opacity: 0;
    will-change: transform;
    border-radius: 5px;
}


/* 7. Gallery Section */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 22px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    /* height: 400px; */
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
    /* opacity: 0; */
    transform: translateY(20px);
}

/* .gallery-item.revealed {
    opacity: 1;
    transform: translateY(0);
} */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(139, 30, 63, 0.85), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-overlay h5 {
    color: var(--text-light);
    font-size: 1.2rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Container */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
}

/* 8. Wedding Experience Timeline */
.timeline-section {
    background-color: var(--accent);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(139, 30, 63, 0.15);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    background: var(--secondary);
    transform: translateX(-50%);
    height: 0;
    transition: height 0.5s ease;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    opacity: 0;
    transition: all 0.8s ease;
}

.timeline-item.left {
    left: 0;
    text-align: right;
    transform: translateX(-40px);
}

.timeline-item.right {
    left: 50%;
    text-align: left;
    transform: translateX(40px);
}

.timeline-item.revealed {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 4px solid var(--primary);
    z-index: 10;
    transition: background 0.3s ease;
}

.timeline-item.left .timeline-dot {
    right: -10px;
}

.timeline-item.right .timeline-dot {
    left: -10px;
}

.timeline-item.revealed .timeline-dot {
    background: var(--secondary);
}

.timeline-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
}

.timeline-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .timeline-line,
    .timeline-progress {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item.left {
        transform: translateX(30px);
    }

    .timeline-item.right {
        left: 0;
        transform: translateX(30px);
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 10px;
    }
}

.cinema-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.cinema-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1200&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    background: #FFF;
}

.cinema-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cinema-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s;
}

.cinema-item:hover,
.cinema-item.active {
    background: rgba(139, 30, 63, 0.2);
    border-color: var(--primary);
}

.cinema-thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.cinema-info h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.cinema-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .cinema-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 9. Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.6s var(--transition-smooth);
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
}

.client-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid var(--secondary);
}

.rating {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-slide p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.client-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* 10. FAQ Section */
.faq-section {
    background-color: var(--accent);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
    padding: 0 30px;
}

.faq-content p {
    padding-bottom: 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* 11. Call-To-Action Section */
.cta-banner {
    background: linear-gradient(rgba(139, 30, 63, 0.342), rgba(18, 18, 18, 0.9)), url('../images/cta-banner.jpeg') center/cover no-repeat fixed;
    text-align: center;
    color: var(--text-light);
    padding: 120px 5%;
}

.cta-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 2.5rem;
    }
}

/* 12. Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.contact-form-container {
    background: var(--bg-light);
    padding: 45px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.527);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background-color: #1A1A1A;
    color: #FFF;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: #222;
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.contact-info-container {
    display: flex;
    padding: 80px 0;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 30, 63, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    height: 350px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 550px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* 13. Footer Layout */
.footer {
    background: black;
    color: var(--text-light);
    padding: 80px 8% 30px 8%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating Action Sticky Quick Contact Utilities */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: #007bff;
    display: none;
}

@media (max-width: 768px) {
    .float-call {
        display: flex;
    }
}

/* Core Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Universal JS Reveal Trigger CSS Component */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}



.container-fluid {
    width: 100%;
    /* margin-top: 50px; */
    /* padding-top: 200px; */
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}


.horiz-gallery-strip,
.horiz-gallery-wrapper {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
    position: relative;
}

.project-wrap {
    height: 80vh;
    width: 25vw;
    padding: 2rem;
    box-sizing: content-box;
}

.project-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/5;
    object-fit: cover;
    border-radius: 18px;
}

@media (max-width:767px) {


    .project-wrap {
        width: 95vw;
    }
}




#portfolio {
    overflow-x: hidden !important;
}

/* ==========================================================================
   WEDDFILMY HIGH-CONVERSION POPUP MODULE
   ========================================================================== */
.studio-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999999 !important;
    /* Overrides smooth scroll translation panels securely */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    padding: 20px;
}

/* Modal Open Visibility State Variable Trigger */
.studio-popup-overlay.show-wedding-popup {
    opacity: 1;
    pointer-events: auto;
}

.studio-popup-window {
    background: #121212;
    width: 100%;
    max-width: 850px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.studio-popup-overlay.show-wedding-popup .studio-popup-window {
    transform: scale(1) translateY(0);
}

/* Close Control Configuration */
.studio-popup-close-btn {
    position: absolute;
    top: 35px;
    right: 15px;
    background: transparent;
    border: none;
    color: #F8F4EF;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 100;
    transition: color 0.3s;
    line-height: 1;
}

.studio-popup-close-btn:hover {
    color: #D4AF37;
}

/* Left Side Layout Branding */
.studio-popup-brand-side {
    background: linear-gradient(rgba(139, 30, 63, 0.699), rgba(10, 10, 10, 0.95)), url('../images/27.jpeg') center/cover no-repeat;
    padding: 40px;
    display: flex;
    align-items: center;
}

.studio-popup-tag {
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
}

.studio-popup-brand-message h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: #FFF;
    margin: 15px 0;
    line-height: 1.2;
}

.studio-popup-brand-message p {
    color: #A0A0A0;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Right Side Layout Form inputs context container */
.studio-popup-form-side {
    padding: 45px;
    background-color: #0A0A0A;
}

.studio-popup-form-side h3 {
    font-family: 'Georgia', serif;
    font-size: 1.7rem;
    color: #FFF;
    margin: 0 0 8px 0;
}

.studio-popup-form-side p {
    color: #A0A0A0;
    font-size: 0.85rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.studio-popup-group {
    margin-bottom: 16px;
}

.studio-popup-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #F8F4EF;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.studio-popup-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background-color: #161616;
    color: #FFF;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.studio-popup-control:focus {
    outline: none;
    border-color: #D4AF37;
}

/* Conversion Premium Submit Control button */
.studio-popup-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8B1E3F 0%, #b12d55 100%);
    color: #FFF;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(139, 30, 63, 0.3);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    margin-top: 10px;
}

.studio-popup-submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.studio-popup-security-note {
    display: block;
    text-align: center;
    font-size: 0.68rem;
    color: #A0A0A0;
    margin-top: 12px;
}

/* Fluid Responsive overrides media rules */
@media (max-width: 768px) {
    .studio-popup-window {
        grid-template-columns: 1fr;
        max-width: 460px;
        max-height: 90vh;
        /* Prevents overflow clipping on small screen heights */
        /* overflow-y: auto; */
    }

    .studio-popup-brand-side {
        display: none;
    }

    .studio-popup-form-side {
        padding: 35px 20px;
    }

    /* Converts custom inner grids to single column layouts seamlessly on mobile ports */
    .studio-popup-form-side div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
}

@media (max-width:375px){
    .studio-popup-close-btn{
        right: 10px;
        top: 10px;
    }
}


/* ==========================================================================
   INSTAGRAM PORTRAIT REELS & CINEMA LAYOUT SECTION
   ========================================================================== */
.insta-reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.reel-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.4s var(--transition-smooth);
}

.reel-card:hover {
    transform: translateY(-5px);
}

.reel-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16; /* Locked production scale standard for mobile reels viewports */
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
}

.reel-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

/* Hover Overlay Parameters Blueprint */
.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(139, 30, 63, 0.4), rgba(10, 10, 10, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.4s var(--transition-smooth);
}

.reel-overlay i {
    font-size: 2.2rem;
    color: var(--secondary);
}

.reel-overlay span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #FFF;
}



.reel-card:hover .reel-overlay {
    opacity: 1;
}

/* Text Content Caption Description Box */
.reel-caption {
    padding: 18px 20px;
    background-color: var(--bg-dark);
}

.reel-caption p {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Truncates long captions neatly onto two line threads */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Dynamic Fluids Responsive Layout Adaptation Rules */
@media (max-width: 1024px) {
    .insta-reels-grid {
        grid-template-columns: repeat(2, 1fr); /* Scales to 2 column tracks for tablets */
        gap: 20px;
    }
}

@media (max-width: 550px) {
    .insta-reels-grid {
        grid-template-columns: 1fr; /* 1 clean full-bleed column grid stack on phones */
        gap: 25px;
    }
}