/* ============================================
   FASHION STUDIO - STYLESHEET
   Dark Elegant Theme with Gold Accents
   ============================================ */

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

.first-letter {
    color: #ff2b2b !important;
    /* Fashion Studio Red */
}

.hero-title .first-letter {
    font-size: 1.6em;
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    /* Red theme accents */
    --gold: #ff2b2b;
    --gold-light: #ff5252;
    --gold-dark: #cc1e1e;
    --white: #ffffff;
    --text-gray: #cccccc;
    --text-light: #e0e0e0;
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    /* Increased for mobile side margins */
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 43, 43, 0.15);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo a.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    min-width: 40px;
}

/* Consolidated logo img rules below */

.logo .brand-text {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo-greeting {
    font-family: var(--font-secondary);
    font-size: 1.7rem;
    color: #ffffff;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: none;
    /* Hidden by default */
}

.animate-greeting .logo-greeting {
    display: block;
    animation: greetingHide 2.5s ease-in-out forwards;
}

.logo img {
    height: 34px;
    width: auto;
    display: block;
    margin: 0 auto;
    opacity: 1;
    /* Visible by default */
}

.animate-greeting .logo img {
    opacity: 0;
    animation: logoShow 2.5s ease-in-out forwards;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align for logo/names */
    text-align: center;
}

.footer-logo {
    width: 120px;
    /* Adjust as needed */
    height: auto;
    margin-bottom: 1rem;
    display: block !important;
    /* Ensure it overrides any onerror hiding if image exists */
}

@keyframes logoShow {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    80% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    display: none;
}

.static-hero {
    background: var(--black);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Remove or simplify pseudo-elements since background is gone */
.static-hero::after,
.static-hero::before {
    display: none;
}

.hero-overlay {
    display: none;
    /* Handled by static-hero::before */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-brand-group {
    display: flex;
    flex-direction: column;
    /* Stacked by default (Desktop) */
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.hero-logo {
    width: 140px;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
    /* Vertical spacing for desktop layout */
    animation: floating 3.5s ease-in-out infinite;
}

/* Ensure the floating animation persists even when combined with fade-in */
.hero-logo.fade-in {
    animation: fadeIn 1s ease-in, floating 3.5s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    /* Align perfectly with logo center */
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    pointer-events: auto;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    /* Improved contrast */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

/* removed tamil-greeting welcomeFade */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    max-width: 100%;
    white-space: normal;
    /* Allow text wrapping on small screens */
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 43, 43, 0.35);
}

.btn-secondary {
    background: var(--gold);
    color: var(--primary-black);
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--gold-light);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7), 0 0 10px rgba(255, 255, 255, 0.2);
    border-color: var(--gold-light);
}

/* Glowing Offer Button */
.hero-offer-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.btn-offer {
    background: linear-gradient(135deg, #ff3d00, #ff8f00);
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.4);
    animation: glowPulse 2s infinite ease-in-out;
    border: none;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 61, 0, 0.7);
    background: linear-gradient(135deg, #ff5722, #ffa000);
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 61, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 61, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 61, 0, 0.4);
    }
}

/* Offer Modal */
.offer-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-modal.show {
    display: flex;
    opacity: 1;
}

.offer-modal .modal-content {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--gold);
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    transform: scale(0.7) translateY(50px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.offer-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.offer-header h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.discount-badge {
    background: linear-gradient(90deg, #ff3d00, #ff8f00);
    color: #fff;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(255, 61, 0, 0.3);
}

.offer-validity {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.offer-validity span {
    color: var(--gold);
    font-weight: 600;
}

.offer-details {
    color: #eee;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: left;
}

.offer-details p {
    margin-bottom: 1rem;
}

.offer-details strong {
    color: var(--gold);
}

/* ============================================
   FADE ANIMATIONS
   ============================================ */

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ============================================
   SECTIONS
   ============================================ */

.about-section,
.services-preview {
    padding: 5rem 0;
    background: var(--secondary-black);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================
   SERVICES UNIFIED BOX
   ============================================ */

.services-unified-box {
    display: flex;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 43, 43, 0.15);
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
    transition: var(--transition);
}

.services-unified-box:hover {
    border-color: rgba(255, 43, 43, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Navigation Side */
.services-nav {
    width: 35%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.service-nav-item {
    padding: 1.2rem 2rem;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    position: relative;
    font-family: var(--font-primary);
}

.service-nav-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.service-nav-item.active {
    color: var(--gold);
    background: rgba(255, 43, 43, 0.1);
    font-weight: 600;
}

.service-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
}

.nav-icon {
    font-size: 1.2rem;
    filter: grayscale(1);
    transition: var(--transition);
}

.service-nav-item:hover .nav-icon,
.service-nav-item.active .nav-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}


/* Display Side */
.services-display {
    width: 65%;
    position: relative;
    padding: 3rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 43, 43, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.service-content {
    position: absolute;
    top: 50%;
    left: 3rem;
    right: 3rem;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(-40%);
}

.service-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.service-details h3 {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.service-details h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 10px;
    border-radius: 2px;
}

.service-details p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-text {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-text:hover {
    gap: 12px;
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 768px) {
    .services-unified-box {
        flex-direction: column;
        min-height: auto;
    }

    .services-nav {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        scrollbar-width: none;
        /* Firefox */
        -webkit-overflow-scrolling: touch;
    }

    .services-nav::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .service-nav-item {
        width: auto;
        padding: 1rem 1.5rem;
        white-space: nowrap;
        justify-content: center;
        flex-shrink: 0;
    }

    .service-nav-item.active {
        background: rgba(255, 43, 43, 0.15);
        /* Stronger background for clarity */
        border-bottom: 2px solid var(--gold);
        /* Bottom border instead of left */
    }

    .service-nav-item.active::before {
        display: none;
        /* Hide desktop side border */
    }

    .services-display {
        width: 100%;
        padding: 2rem 1.5rem;
        min-height: 350px;
        /* Ensure height for content */
        display: flex;
        align-items: flex-start;
        /* Top align content */
    }

    .service-content {
        position: relative;
        /* Relative for flow */
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        display: none;
        /* Use display toggle for mobile simplicity */
        width: 100%;
        opacity: 0;
        animation: fadeIn 0.4s ease forwards;
        text-align: center;
        /* Center text on mobile */
    }

    .service-content.active {
        display: block;
        opacity: 1;
        transform: none;
    }

    .service-details h3 {
        font-size: 1.8rem;
        display: block;
        /* Full width block */
        margin-bottom: 1.5rem;
    }

    .service-details h3::after {
        margin: 10px auto 0;
        /* Center the underline */
    }
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 43, 43, 0.15);
}

.page-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.packages-section {
    padding: 5rem 0;
    background: var(--primary-black);
}

.package-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    /* Allow wrapping on desktop/tablet */
}

.package-filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 43, 43, 0.4);
    color: var(--text-light);
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    font-family: var(--font-secondary);
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(6px);
}

/* Make sections semi-transparent to show background */
.hero-background {
    display: none !important;
    /* Hide original video background globally as requested */
}

/* Global Transparency for Content Sections */
/* Global Transparency for Content Sections */
.hero,
.services-preview,
.packages-section,
.contact-section,
.page-hero {
    background-color: var(--primary-black);
}

/* Ensure Page Hero (top title area) is Opaque ONLY on Packages Page */
.packages-page .page-hero {
    background: var(--primary-black);
    position: relative;
    z-index: 1;
}

/* Ensure About, Contact, and Footer are opaque (hides the scrolling background) */
/* Ensure Footer is opaque globally */
.footer {
    background: var(--secondary-black);
    position: relative;
    z-index: 1;
}

/* Ensure 'Important Places' (Forms, Cards) are readable */
.contact-form-wrapper,
.package-card,
.service-card {
    background: rgba(26, 26, 26, 0.95);
    /* High opacity for readability */
    backdrop-filter: blur(10px);
}

/* Floating Animation for Package Filter Buttons */
.package-filter-btn {
    animation: floating 3s ease-in-out infinite;
}

.package-filter-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.package-filter-btn:nth-child(3) {
    animation-delay: 0.4s;
}

.package-filter-btn:nth-child(4) {
    animation-delay: 0.6s;
}

.package-filter-btn:hover,
.package-filter-btn:focus-visible {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 43, 43, 0.2);
}

.package-filter-btn.active {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(255, 43, 43, 0.3);
}


.package-category {
    display: none;
    background: var(--secondary-black);
    border: 1px solid rgba(255, 43, 43, 0.18);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.package-category.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.package-category::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 43, 43, 0.15);
    pointer-events: none;
}

.packages-full-width {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.category-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    /* Centering for flex */
    text-align: center;
    /* Centering for text */
    margin-bottom: 1rem;
}

.category-header h2 {
    font-size: 2.2rem;
    font-family: var(--font-secondary);
    color: var(--white);
    letter-spacing: 1px;
}

.category-header p {
    color: var(--text-gray);
    max-width: 620px;
    font-size: 1rem;
}

.package-tier {
    margin-top: 2.5rem;
}

.package-tier+.package-tier {
    margin-top: 3rem;
}

.tier-title {
    font-size: 1.4rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-align: center;
    /* Center tier labels */
}

.package-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Forced 3-column layout for 3x2 look */
    gap: 3rem;
    justify-content: center;
    /* Centers the grid columns */
    justify-items: center;
    /* Centers the cards within columns */
    align-items: start;
    width: 100%;
}

.package-card {
    background: transparent;
    /* Removed background */
    border-radius: 0;
    /* Removed border radius */
    padding: 0;
    /* Removed padding */
    border: none;
    /* Removed border */
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    /* border-color: var(--gold); Removed border color on hover */
    /* box-shadow: ... Removed box shadow on container */
    z-index: 10;
}


.package-image-card {
    position: relative;
    background: transparent;
    cursor: pointer;
    aspect-ratio: 2 / 3;
    overflow: visible;
    /* Prevent cropping on zoom */
}

/* Image styling */
.package-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 14px;
    /* Move radius to image itself */
}

/* ==========================================================================
   Packages Page - Hybrid Design (Original Styles + Toggle)
   ========================================================================== */

.packages-page {
    background-color: var(--primary-black);
    color: var(--text-light);
}

/* Page Hero Reversion */
.packages-page .page-hero {
    height: 50vh;
    padding-top: 120px;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
        url('assets/images/home-hero.webp') no-repeat center center/cover;
}

.packages-page .page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-secondary);
}

/* Category Sections Reversion */
.package-category {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

/* Tier Switcher Integration */
.showcase-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.tier-switcher {
    display: flex;
    background: #1a1a1a;
    padding: 5px;
    border-radius: 12px;
    border: 1px solid rgba(255, 43, 43, 0.2);
    position: relative;
    width: 280px;
}

.tier-btn {
    flex: 1;
    padding: 0.8rem 0;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    z-index: 2;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-btn.active {
    color: var(--white);
}

.tier-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    background: var(--gold);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 43, 43, 0.3);
}

.tier-switcher[data-active="4K"] .tier-slider {
    transform: translateX(100%);
}

/* Standardized Responsive Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.package-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tier-content {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    animation: fadeIn 0.5s ease;
}

.tier-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Upgrade Link Styling */
.upgrade-link {
    margin-top: 1.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.view-4k-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-4k-link:hover {
    color: var(--white);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Image Loading Experience */
.package-image-card,
.gallery-image-wrapper,
.video-thumbnail {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    min-height: 50px;
    /* Ensure height for scrolling before load, but small enough to avoid gaps */
}

.lazy-load {
    filter: blur(10px);
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s ease;
    transform: scale(1.05);
    /* Slight zoom during blur */
}

.lazy-load.loaded {
    filter: blur(0);
    transform: scale(1);
}

.image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    z-index: 5;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.image-loader::before,
.image-loader::after {
    content: '';
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
}

.image-loader::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
}

.image-loader::after {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--gold-light);
    opacity: 0.6;
    animation: spin 1.5s linear infinite;
}

.image-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .category-header h2 {
        font-size: 2rem;
    }

    .package-category {
        padding: 3rem 0;
    }

    .packages-grid,
    .tier-content.active {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

/* Unified Carousel Logic */
.package-tier-grid.unified-carousel {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 1.5rem !important;
    padding: 4rem 1.5rem 3rem !important;
    margin: 0 -1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.package-tier-grid.unified-carousel::-webkit-scrollbar {
    display: none;
}

.package-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    padding: 0 7.5% !important;
    /* Force 85% visual width with 7.5% side margins */
    box-sizing: border-box;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.package-image-card {
    aspect-ratio: 4/5;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.package-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.package-enquire {
    width: 100%;
    padding-block: 0.85rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.category-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-header p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero {
    min-height: 80vh;
    padding-inline: 1rem;
}

.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
}

.footer-section {
    align-items: center;
}

.footer-section ul {
    align-items: center;
}

.contact-section .contact-info,
.contact-section .contact-form-wrapper {
    padding: 0;
}

.contact-section .contact-info {
    order: 2;
}

.contact-section .contact-form-wrapper {
    order: 1;
}

@media (max-width: 480px) {
    .package-image-card {
        aspect-ratio: 16 / 11;
    }

    .package-filter-btn {
        width: 100%;
    }

    .packages-grid {
        gap: 2rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-icons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    background: var(--secondary-black);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 0;
    margin-bottom: 0;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gold);
    color: var(--primary-black);
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(255, 43, 43, 0.15);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 43, 43, 0.35);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-icon {
    font-size: 3rem;
    color: var(--gold);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 43, 43, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    transition: var(--transition);
}

.gallery-item:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
}

/* ============================================
   VIDEO GRID (Cinematics)
   ============================================ */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 100px 40px 180px;
    /* Extra bottom padding to clear controls */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.video-item {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-item:hover img {
    opacity: 0.6;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}

.video-item:hover .video-play-button {
    opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-body {
    width: 100%;
    max-width: 1200px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    /* Place caption below image */
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    gap: 15px;
    /* Space between image and caption */
}

.lightbox-caption {
    color: var(--gold);
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

@media (max-width: 768px) {
    .lightbox-caption {
        font-size: 1.1rem;
        padding: 0 10px;
    }
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 4rem;
    cursor: pointer;
    z-index: 2100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--gold);
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 2.5rem;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-body {
        max-width: 85%;
        /* Leave room for arrows on sides */
    }
}

.lightbox-video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1100px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-body {
        max-width: 100%;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 5rem 0;
    background: var(--primary-black);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    font-family: var(--font-secondary);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
    background: var(--secondary-black);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 43, 43, 0.3);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-family: var(--font-secondary);
}

.contact-details p {
    color: var(--text-gray);
}

.contact-details a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.phone-link {
    font-size: 1.2rem;
    font-weight: 500;
}

.map-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.whatsapp-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: #25D366;
}

.social-section {
    margin-top: 2rem;
}

.social-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    padding: 0.8rem 1.5rem;
    background: var(--dark-gray);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid rgba(255, 43, 43, 0.2);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 43, 43, 0.35);
}

.social-icon.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.youtube:hover {
    background: #FF0000;
    color: white;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.contact-form-wrapper h2 {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.contact-form-note {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

#packageTierGroup {
    transition: opacity 0.3s ease;
}

#packageTierGroup.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-gray);
    border: 1px solid rgba(255, 43, 43, 0.25);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 43, 43, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--secondary-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 43, 43, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-location {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 43, 43, 0.15);
    color: var(--text-gray);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .gallery-toggle-wrapper {
        bottom: 20px;
        top: auto;
    }

    .gallery-mode-toggle {
        min-width: 280px;
        transform: scale(0.9);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        height: calc(100vh - 70px);
        justify-content: center;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 4rem 0;
        border-right: 1px solid rgba(255, 43, 43, 0.15);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }



    .page-title {
        font-size: 2.2rem;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-wrapper {
        background: transparent;
        border: none;
        padding: 0 1.25rem;
        box-shadow: none;
    }

    .contact-form-wrapper h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .btn-offer {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .package-filter-bar {
        /* overflow-x: auto;  Removed scroll to allow wrapping */
        justify-content: center;
        /* Center aligned wrapping */
        padding-top: 1.5rem;
        /* Space for upward float */
        padding-bottom: 2rem;
        /* Space for shadow */
        padding-left: 0;
        /* Remove left padding for centered layout */
        /* -webkit-overflow-scrolling: touch; */
        /* scrollbar-width: none; */
        flex-wrap: wrap;
        /* Allow wrapping to adjust places */
    }

    .package-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .package-filter-btn {
        /* flex-shrink: 0; Removed for wrapping layout */
        /* Don't shrink buttons in scroll bar */
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        /* Blur removal is for mobile overlap issue, floating animation is kept as requested */
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for better mobile view */
        gap: 0.8rem;
    }

    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-brand-group {
        display: flex;
        flex-direction: row;
        gap: 5px;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        white-space: nowrap;
        /* Prevent wrapping */
    }

    .hero-logo {
        width: 50px;
        margin-bottom: 0;
        animation: none !important;
        /* Disable floating on mobile */
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
        word-spacing: 4px;
        /* Increased space as requested */
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 8.5rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .scroll-column:nth-child(3) {
        display: none;
        /* Hide 3rd column on tablet */
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-img {
        max-width: 95vw;
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .back-home {
        position: static;
    }

    .scroll-column:nth-child(2) {
        display: block;
    }

    /* Actually for mobile, 2 columns is good. */
}

/* ============================================
   HOME PAGE BACKGROUND
   ============================================ */

#home-gallery-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    opacity: 1;
    /* 100% opacity */
    filter: blur(1px);
    /* 1px blur */
    display: flex;
    gap: 0;
    padding: 0;
    background: #000;
    pointer-events: none;
    overflow: hidden;
}

/* Increase Top Left Logo Size */
.logo img {
    height: 60px;
    /* Adjusted to standard/fitting size */
    width: auto;
}

/* Floating Animation for Hero Elements */
@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


.hero-buttons .btn {
    animation: floating 3.5s ease-in-out infinite;
    /* Add slight delay for staggered effect if desired, but user asked for float all */
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-buttons .btn:nth-child(3) {
    animation-delay: 1s;
}

.bg-scroll-column {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.bg-scroll-content {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.bg-scroll-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 0;
    filter: grayscale(30%);
}

@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Exhibition Gallery Styles - Full Screen & Auto Scroll */

/* Hide scrollbar for the exhibition page look */
body.gallery-mode {
    overflow: hidden;
    background: #000;
}

.exhibition-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #050505;
    /* Very dark background */
    z-index: 100;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Keep the main container fixed but allow internal scrolling */
}

/* Header / Top Navigation */
.exhibition-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    /* Black bar as requested */
    backdrop-filter: blur(10px);
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

/* Gallery Mode Toggle (Bottom Pill) */
.gallery-toggle-wrapper {
    position: fixed;
    bottom: 30px;
    /* Moved back to bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    pointer-events: none;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: floatingCenter 3s ease-in-out infinite;
}

@keyframes floatingCenter {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

.gallery-mode-toggle {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 43, 43, 0.2);
    padding: 4px;
    border-radius: 40px;
    display: flex;
    position: relative;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 320px;
}

.mode-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
    z-index: 2;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
    outline: none;
}

.mode-btn.active {
    color: var(--white);
}

.mode-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(45deg, var(--gold-dark), var(--gold));
    border-radius: 35px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 43, 43, 0.3);
}

/* videography active state for slider */
.gallery-mode-toggle[data-active="videography"] .mode-slider {
    transform: translateX(100%);
}

/* Gallery Panels */

/* Gallery Panels */
.gallery-panel {
    display: none;
    width: 100%;
}

.gallery-panel.active {
    display: block;
    /* Simpler than flex for grid children scroll */
    flex: 1;
    overflow-y: auto;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

/* Hide scrollbar for Chrome/Safari */
.gallery-panel.active::-webkit-scrollbar {
    display: none;
}

/* Photography: Auto-Scrolling columns */
.scroll-track-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 0;
    /* No gap between columns */
    justify-content: center;
}

.scroll-column {
    flex: 1;
    height: 100%;
    overflow-y: hidden;
    /* Default hidden */
    position: relative;
    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scroll-column:hover {
    overflow-y: auto;
    /* Allow manual scroll on hover */
}

.scroll-column::-webkit-scrollbar {
    display: none;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    /* Animation defined below */
}

/* Individual Images */
.scroll-content img {
    grid-column: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    /* Sharp corners */
    object-fit: cover;
    margin-bottom: 0;
    /* No gaps */
    cursor: pointer;
    transition: filter 0.3s ease;
    filter: brightness(0.9);
}

.scroll-content img:hover {
    filter: brightness(1.1);
    z-index: 10;
}

/* Blur Overlays */
.blur-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 10;
    pointer-events: none;
}

.blur-overlay.top {
    top: 0;
    /* Soft blur fade from top */
    background: linear-gradient(to bottom, rgba(5, 5, 5, 1) 10%, rgba(5, 5, 5, 0));
    backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.blur-overlay.bottom {
    bottom: 0;
    /* Soft blur fade from bottom */
    background: linear-gradient(to top, rgba(5, 5, 5, 1) 10%, rgba(5, 5, 5, 0));
    backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to top, black 50%, transparent 100%);
    mask-image: linear-gradient(to top, black 50%, transparent 100%);
}

/* Animations moved to JS for Manual Scroll support */

/* Pause on hover handled by JS or simple CSS if using marquee, but JS is better for seamless resume */



/* Videography Sub-Navigation */
.sub-controls-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding-top: 100px;
    /* Offset for fixed header */
    padding-inline: 1rem;
}

.sub-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.sub-control-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-gray);
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    white-space: nowrap;
    /* Prevent text breaking */
}

.sub-control-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.sub-control-btn.active {
    background: var(--gold);
    color: var(--primary-black);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 43, 43, 0.3);
}

/* Video Section Categories */
.video-category-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100%;
}

.video-category-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Placeholders */
.coming-soon-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    text-align: center;
    border: 1px dashed rgba(255, 43, 43, 0.3);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 600px;
    background: rgba(26, 26, 26, 0.5);
    padding: 2rem;
}

.coming-soon-placeholder h3 {
    color: var(--gold);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coming-soon-placeholder p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Videography Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    /* padding: 100px 40px;  Removed top padding as sub-nav handles spacing now */
    padding: 20px 40px 100px;
    height: auto;
    /* Remove fixed height/scroll if present, let content flow */
    overflow-y: visible;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    display: block;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    aspect-ratio: 16/9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.video-play-button span {
    color: #fff;
    font-size: 24px;
    margin-left: 4px;
    /* Optical center adjustment */
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-item:hover .video-play-button {
    background: #d4af37;
    /* Gold accent */
    border-color: #d4af37;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox - Clean Popup */
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .back-home {
        position: static;
    }

    .scroll-column:nth-child(2) {
        display: none;
        /* Single column on mobile? Or 2? 2 is usually fine on mobile masonry. Let's keep 2. */
        display: block;
    }

    /* Actually for mobile, 2 columns is good. */
}

/* Highlight Pulse Animation for Offer Reveal */
@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
        transform: scale(1);
        border-color: var(--gold);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(255, 215, 0, 0);
        transform: scale(1.05);
        border-color: #fff;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        transform: scale(1);
        border-color: var(--gold);
    }
}

.highlight-pulse {
    animation: highlightPulse 1.5s ease-in-out infinite;
    z-index: 100 !important;
    position: relative;
    background: var(--gold) !important;
    color: var(--primary-black) !important;
}


/* Safe Scroll Animation */
.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight Pulse Animation for Offer Reveal */
@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
        transform: scale(1);
        border-color: var(--gold);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(255, 215, 0, 0);
        transform: scale(1.05);
        border-color: #fff;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        transform: scale(1);
        border-color: var(--gold);
    }
}

.highlight-pulse {
    animation: highlightPulse 1.5s ease-in-out infinite;
    z-index: 100 !important;
    position: relative;
    background: var(--gold) !important;
    color: var(--primary-black) !important;
}

/* Safe Scroll Animation */
.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lazy Load Transition Fix */
img.lazy-load {
    filter: blur(8px);
    transition: filter 0.5s ease-in-out, transform 0.5s ease !important;
}

img.lazy-load.loaded {
    filter: blur(0);
}

/* Close @media (max-width: 480px)? No, let's check. */