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

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

: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 20px;
}

/* ============================================
   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;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 34px;
    width: auto;
    display: block;
}

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

.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 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

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

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.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);
}

.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: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* ============================================
   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(--gold);
    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 GRID
   ============================================ */

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

.service-card {
    background: var(--dark-gray);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 43, 43, 0.15);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   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(--gold);
    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;
}

.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);
}

.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);
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.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;
}

.category-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-header h2 {
    font-size: 2.2rem;
    font-family: var(--font-secondary);
    color: var(--gold);
    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;
}

.package-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.package-card {
    background: var(--dark-gray);
    border-radius: 18px;
    padding: 1.5rem 1.25rem 2rem;
    border: 1px solid rgba(255, 43, 43, 0.12);
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(255, 43, 43, 0.18);
}

.package-image-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(255, 43, 43, 0.18) 0%, rgba(10, 10, 10, 0.9) 100%);
    cursor: pointer;
}

.package-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image-card img {
    transform: scale(1.08);
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(26, 26, 26, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover .package-overlay,
.package-image-card:focus-visible .package-overlay {
    opacity: 1;
}

.package-zoom {
    font-size: 2.1rem;
    color: var(--gold);
    filter: drop-shadow(0 0 12px rgba(255, 43, 43, 0.45));
}

.package-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
    color: var(--text-light);
}

.package-enquire {
    align-self: center;
    padding-inline: 2rem;
    min-width: 70%;
    font-size: 0.95rem;
}

.package-enquire:hover {
    box-shadow: 0 12px 32px rgba(255, 43, 43, 0.35);
}

.package-category .package-card {
    backdrop-filter: blur(6px);
}

@media (max-width: 1024px) {
    .package-category {
        padding: 2.5rem 1.75rem;
    }

    .package-tier-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .package-filter-bar {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .package-filter-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.85rem;
    }

    .category-header h2 {
        font-size: 1.9rem;
    }

    .tier-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .package-card {
        padding: 1.25rem 1rem 1.75rem;
    }

    .package-enquire {
        width: 100%;
        min-width: unset;
    }

    .category-header p {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .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: 1;
    }

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

@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 {
        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);
}

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

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

.lightbox.active {
    display: flex;
}

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

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--gold);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

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

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

.lightbox-body img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-body iframe {
    width: 90vw;
    height: 70vh;
    max-width: 1200px;
    border-radius: 10px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 43, 43, 0.85);
    color: var(--primary-black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

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

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

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

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

.contact-description {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 43, 43, 0.15);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-details h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.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: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 43, 43, 0.15);
}

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

.contact-form-note {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 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;
    }

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

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

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

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

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

    .page-title {
        font-size: 2.5rem;
    }

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

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

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

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

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-body iframe {
        width: 95vw;
        height: 50vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

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

    .page-title {
        font-size: 2rem;
    }

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

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

    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }

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


/* 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;
}

/* 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);
}

/* Bottom Controls */
.bottom-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
}

.control-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    padding: 5px 0;
}

.control-btn.active,
.control-btn:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

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

/* 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 Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 100px 40px;
    height: 100%;
    overflow-y: auto;
    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 {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 0;
    /* Keep sharp */
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-column:nth-child(3) {
        display: none;
        /* Hide 3rd column on tablet */
    }

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

@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. */
}