:root {
    --primary-black: #0B0B0B;
    --secondary-black: #111111;
    --accent-gold: #D4AF37;
    --accent-red: #C62828;
    --text-white: #F5F5F5;
    --text-gray: #CCCCCC;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: #0B0B0B !important;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Global Concert Atmosphere */
.concert-bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: var(--primary-black);
}

.stage-light {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: moveLight 20s infinite alternate ease-in-out;
}

.stage-light:nth-child(2) {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes moveLight {
    0% { transform: translate(-30%, -30%); }
    100% { transform: translate(130%, 130%); }
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
    color: var(--accent-gold) !important;
}

h1, h2 {
    font-weight: 700;
}

h3, h4, h5, h6 {
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.section-title, .about-title, .ceo-name, .booking-info h2, .footer h3 {
    color: var(--accent-gold) !important;
    font-size: 1.8rem !important;
}

.hero h1 {
    color: var(--accent-gold) !important;
    font-size: 1.4rem !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    transition: width 1s ease-out 0.5s;
}

.visible .section-title::after {
    width: 60px;
}

.btn-primary, .btn-primary-small, .btn-secondary, .btn-whatsapp {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-red);
    color: #FFF;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #a31d1d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--accent-gold);
}

.btn-primary-small {
    padding: 8px 20px;
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-primary-small:hover {
    background-color: var(--accent-red);
    color: var(--text-dark);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-black);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.gradient-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid rgba(230, 57, 70, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(155, 34, 38, 0.2) 0%, transparent 70%);
}

.gradient-bg i {
    color: rgba(230, 57, 70, 0.5);
    z-index: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

/* Mobile Header Background Fix */
@media (max-width: 768px) {
    .navbar {
        background: rgba(11, 11, 11, 0.98) !important;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px !important;
    }
}

.navbar.scrolled {
    padding: 15px 20px;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
}

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

.nav-links li a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-white);
}

.nav-links li a:hover {
    color: var(--accent-gold);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(11, 11, 11, 0.95);
    min-width: 200px;
    padding: 10px 0;
    list-style: none;
    border-top: 2px solid var(--accent-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    font-size: 0.85rem !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(230, 57, 70, 0.1);
    padding-left: 25px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 70px;
    padding-bottom: 60px;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(11, 11, 11, 0.7), rgba(11, 11, 11, 0.9)), url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease;
}

.tagline {
    display: block;
    font-family: var(--font-body);
    color: var(--accent-gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-logo {
    width: 420px;
    max-width: 90%;
    margin: 0 auto -10px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    animation: heroImageFadeZoom 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    display: block;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5)); }
}

@keyframes heroImageFadeZoom {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-title-reveal {
    overflow: hidden;
    display: block;
}

.hero-title-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: letterReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes letterReveal {
    to { transform: translateY(0); }
}

/* Music Equalizer */
.equalizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 30px;
    gap: 3px;
    margin: 5px 0;
}

.equalizer span {
    width: 5px;
    height: 25px;
    background: var(--accent-gold);
    animation: equalize 1s infinite alternate;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform-origin: bottom;
}

.equalizer span:nth-child(1) { animation-duration: 0.7s; animation-delay: 0.2s; }
.equalizer span:nth-child(2) { animation-duration: 1.2s; animation-delay: 0.4s; }
.equalizer span:nth-child(3) { animation-duration: 0.9s; animation-delay: 0.1s; }
.equalizer span:nth-child(4) { animation-duration: 1.1s; animation-delay: 0.5s; }
.equalizer span:nth-child(5) { animation-duration: 0.6s; animation-delay: 0.3s; }
.equalizer span:nth-child(6) { animation-duration: 1.0s; animation-delay: 0.2s; }
.equalizer span:nth-child(7) { animation-duration: 0.8s; animation-delay: 0.4s; }

@keyframes equalize {
    0% { transform: scaleY(0.2); opacity: 0.3; }
    100% { transform: scaleY(1); opacity: 1; }
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-white);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

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

.hero-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 5px;
}

.hero-social a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.hero-social a:hover {
    color: var(--accent-gold);
    transform: translateY(-5px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Sections Global Padding */
section {
    padding: 100px 0;
}

/* Cinematic About Section Redesign */
.about-cinematic-section {
    position: relative;
    padding: 140px 0;
    background: var(--secondary-black);
    overflow: hidden;
}

.about-cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.parallax-element {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: blur(2px);
    transition: transform 0.5s ease-out;
}

.lantern-1 {
    width: 150px;
    height: 250px;
    background-image: url('https://img.icons8.com/color/512/traditional-lantern.png'); /* Placeholder icon for cinematic feel */
    top: 10%;
    left: 5%;
    transform: translateY(var(--scroll-offset, 0));
}

.lantern-2 {
    width: 100px;
    height: 180px;
    background-image: url('https://img.icons8.com/color/512/traditional-lantern.png');
    bottom: 15%;
    right: 8%;
    transform: translateY(calc(var(--scroll-offset, 0) * -0.5));
}

.particles-overlay-about {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: floatingDust 20s infinite linear;
}

@keyframes floatingDust {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(5deg); }
}

.about-cinematic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0;
}

.visible .about-subtitle {
    animation: slideUpDelay 1s forwards 0.3s;
}

.glowing-separator {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin-bottom: 40px;
    box-shadow: 0 0 15px var(--accent-gold);
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 30px;
}

.visuals-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    transform: translateX(50px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.visible.visuals-container, 
.visible .visuals-container {
    transform: translateX(0);
    opacity: 1;
}

.band-image-wrapper {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.band-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 180px;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.logo-overlay img {
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.visible .scale-in-logo {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.visuals-container:hover .band-image-wrapper {
    transform: scale(1.03);
}

.visuals-container:hover .band-image-wrapper img {
    transform: scale(1.08);
}

.visuals-container:hover {
    box-shadow: 0 60px 120px rgba(230, 57, 70, 0.3);
}

@keyframes slideUpDelay {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 0.9; transform: translateY(0); }
}

@media (max-width: 992px) {
    .about-cinematic-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.8rem;
    }

    .glowing-separator {
        margin: 0 auto 40px;
    }

    .about-visuals-column {
        order: -1;
    }
}

/* Services Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-gold);
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .icon-circle {
    background: var(--accent-red);
    color: var(--text-dark);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

.text-link {
    color: var(--accent-red);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.text-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.text-link:hover i {
    transform: translateX(5px);
}

/* Live Performances */
.performances {
    background-color: #0F0F0F;
}

.tour-title {
    color: var(--accent-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-top: -20px;
    margin-bottom: 50px;
}

.concert-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.concert-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.concert-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.concert-date {
    font-weight: 700;
    color: var(--accent-gold) !important;
    font-size: 1.1rem;
    min-width: 150px;
}

.concert-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.concert-info p {
    color: #888;
    font-size: 0.9rem;
}

.concert-actions {
    min-width: 180px;
    text-align: right;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--accent-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.btn-status {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.btn-status.sold-out {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .concert-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    .concert-date, .concert-actions {
        min-width: auto;
        text-align: center;
    }
}

.gallery {
    background-color: var(--primary-black) !important;
    padding: 120px 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--secondary-black) !important;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(198, 40, 40, 0.7), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.hidden-gallery-item {
    display: none;
}

.gallery-actions {
    text-align: center;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(211, 47, 47, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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

/* Videos Section */
.videos {
    background-color: var(--primary-black);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.video-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    grid-column: span 2;
}

/* 3+2 Layout adjustment for desktop */
@media (min-width: 993px) {
    .video-card:nth-child(4) {
        grid-column: 2 / 4;
    }
    .video-card:nth-child(5) {
        grid-column: 4 / 6;
    }
}

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

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

.video-thumbnail {
    height: 220px;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
}

.video-thumbnail:hover::before {
    background: rgba(212, 175, 55, 0.3);
}

.video-thumbnail:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.video-thumbnail i {
    z-index: 2;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.video-thumbnail:hover i {
    color: var(--accent-red);
    transform: scale(1.1);
}

.why-choose-us {
    background-color: var(--secondary-black);
    padding: 100px 0;
}

.why-choose-us .features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    background: #1a1a1a;
    padding: 22px 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(198, 40, 40, 0.1);
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.feature-item h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.testimonials {
    background-color: var(--primary-black);
    padding: 120px 0;
}

.testimonial-card {
    background-color: #111;
    padding: 50px;
    border-radius: 20px;
    border-bottom: 3px solid var(--accent-gold);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-red);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.quote {
    font-style: italic;
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.author .stars {
    color: var(--accent-red);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.author h5 {
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(155, 34, 38, 0.9), rgba(155, 34, 38, 0.9)), url('https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    text-align: center;
    padding: 120px 20px;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    color: var(--accent-red);
    margin-bottom: 40px;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Booking Section */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.booking-info {
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.booking-info h2 {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.booking-info p {
    color: #ccc;
    margin-bottom: 40px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebc59;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.booking-form-container {
    padding: 60px 40px;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px 20px;
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #1a1a1a;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* Footer */
.footer {
    background: #080808;
    padding: 100px 0 40px;
    border-top: 2px solid var(--accent-gold);
}

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

.footer h3 {
    color: var(--accent-gold);
    font-size: 2.8rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p {
    color: #888;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    color: #888;
    font-size: 0.95rem;
}

.footer ul li a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.social-links a:hover {
    background: var(--accent-red);
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .item-1 { grid-column: 1 / -1; grid-row: 1 / 2; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .navbar .btn-primary-small { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Contact Details Section */
.contact-details {
    padding: 100px 0;
    background-color: var(--royal-black);
}

.contact-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(211, 47, 47, 0.1);
    text-align: center;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.1);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font-heading);
}

.contact-item p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
}
/* Achievements Section */
.achievements {
    background-color: var(--secondary-black);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.achievements-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.5);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-premium);
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Text wider than images */
    gap: 60px;
    align-items: center;
}

.achievement-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.8;
}

.achievement-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.achievement-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.achievement-img-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.achievement-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.achievement-img-wrapper:hover img {
    transform: scale(1.05);
}

.highlight-box {
    margin-top: 40px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 10px 10px 0;
}

.highlight-box p {
    color: var(--accent-gold);
    margin-bottom: 0;
    font-weight: 500;
}

.highlight-box strong {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.genre-highlight {
    margin-top: 50px;
    text-align: left; /* Aligned with text */
}

.genre-highlight h3 {
    font-size: 1.1rem;
    color: var(--accent-gold) !important;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .genre-highlight {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .achievements-content {
        padding: 30px 20px;
    }
    
    .achievement-text p {
        font-size: 1rem;
    }
    
    .genre-highlight h3 {
        font-size: 1.2rem;
    }
}

/* Band Journey Section */
.band-journey {
    background-color: #0d0d0d;
    position: relative;
}

.gradient-bg-alt {
    background: linear-gradient(135deg, #0d0d0d 0%, #151515 100%);
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-left-title {
    text-align: left !important;
    margin-bottom: 2rem;
}

.text-left-title::after {
    left: 30px !important;
    transform: none !important;
}

.journey-text p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
}

.journey-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(230, 57, 70, 0.1);
    transition: var(--transition);
}

.journey-image-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--accent-red);
}

.journey-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 1;
}

@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .text-left-title {
        text-align: center !important;
    }
    
    .text-left-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* Cinematic CEO Section Redesign */
.ceo-section.cinematic-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #050A1A 0%, #0B0B0B 100%);
    overflow: hidden;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.light-beam {
    position: absolute;
    width: 200px;
    height: 150%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.08), transparent);
    transform: rotate(25deg);
    top: -25%;
    left: -10%;
    filter: blur(60px);
    animation: moveBeam 12s infinite linear;
}

.light-beam:nth-child(2) {
    animation-delay: -5s;
    left: 110%;
}

@keyframes moveBeam {
    0% { left: -20%; opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { left: 120%; opacity: 0; }
}

.ceo-cinematic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ceo-text-content {
    padding-right: 20px;
}

.ceo-name {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    line-height: 1.2;
}

.glowing-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), transparent);
    margin-bottom: 30px;
    box-shadow: 0 0 10px var(--accent-red);
    transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.visible .glowing-line {
    width: 100%;
}

.ceo-description p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.8;
}

.ceo-image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(30px);
    animation: subtlePulse 4s infinite ease-in-out;
}

@keyframes subtlePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-container:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 40px 100px rgba(230, 57, 70, 0.3);
    border-color: rgba(230, 57, 70, 0.5);
}

.image-container:hover img {
    transform: scale(1.05);
}

.animate-zoom-fade {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.visible .animate-zoom-fade {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@media (max-width: 992px) {
    .ceo-cinematic-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .ceo-text-content {
        padding-right: 0;
        order: 2;
    }
    
    .ceo-image-content {
        order: 1;
    }

    .ceo-name {
        font-size: 2.5rem;
    }

    .glowing-line {
        margin: 0 auto 30px;
    }
}

/* USP Section */
.usp-section {
    background-color: var(--secondary-black);
    position: relative;
    padding: 100px 0;
}

.usp-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.usp-card i {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.usp-text p {
    margin-bottom: 25px;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.usp-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(230, 57, 70, 0.1);
    transition: var(--transition);
}

.usp-image-wrapper:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
}

.usp-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.usp-image-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
/* Professional Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.visible {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.visible.slide-in-left, .visible.slide-in-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Staggered Delays for Children */
.stagger-container > * { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.visible.stagger-container > * { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Enhanced Image Hovers */
.image-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(155, 34, 38, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-wrapper:hover::after {
    opacity: 1;
}

/* Band Member Hover Flip Effect (Subtle) */
.band-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.band-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.band-card .member-image img {
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Specific Entrance Animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.visible.slide-in-left, .visible.slide-in-right, .visible.slide-up {
    opacity: 1;
    transform: translate(0);
}

/* Timeline Animation */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    transform: translateX(-50%);
    transition: height 2s ease-out;
}

.visible .timeline-line {
    height: 100%;
}

.milestone-card {
    background: var(--secondary-black);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.milestone-card:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-red);
}

.milestone-year {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Spotlight Effect */
.spotlight-container {
    position: relative;
    overflow: hidden;
}

.spotlight-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.visible .spotlight-glow {
    transform: translate(-50%, -50%) scale(1);
}

/* Service Card Lift & Glow */
.service-card {
    background: var(--secondary-black);
    border: 1px solid var(--accent-gold);
    transition: var(--transition);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Video Border Glow */
.video-card {
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.video-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

/* Testimonials Carousel (Fade) */
.testimonial-carousel {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.testimonial-item.active {
    opacity: 1;
    pointer-events: auto;
}

/* Particle Style */
.particle {
    position: absolute;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    box-shadow: 0 0 5px var(--accent-gold);
}

/* USP Section Modernization */
.bg-dark-charcoal {
    background-color: var(--secondary-black);
}

.usp-cinematic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.usp-text-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.usp-card-minimal {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition);
}

.usp-card-minimal:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
}

.usp-card-minimal i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.usp-card-minimal h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.usp-card-minimal p {
    color: #ccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.usp-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.usp-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.usp-image-wrapper:hover img {
    transform: scale(1.05);
}

.usp-image-wrapper:hover {
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.2);
}

.glow-gold-soft {
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    /* Typography Scaling */
    .hero h1 { font-size: 1.2rem !important; letter-spacing: 1px; width: 100%; max-width: 100%; }
    .hero p { font-size: 1rem; }
    .section-title, .about-title, .ceo-name, .booking-info h2 { font-size: 1.2rem; }
    .tagline { font-size: 0.85rem; letter-spacing: 2px; }
    
    /* Layout Adjustments */
    .container { padding: 0 20px; width: 100%; overflow: hidden; }
    .hero { padding-top: 100px; padding-bottom: 60px; overflow: hidden; }
    .hero-logo { width: 300px; max-width: 100%; }
    .hero-content { width: 100%; padding: 0 10px; }
    
    /* Grid Stacking */
    .about-cinematic-grid, 
    .usp-cinematic-grid, 
    .ceo-cinematic-grid,
    .services-grid,
    .videos-grid,
    .gallery-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: left;
        width: 100%;
        overflow: hidden;
    }

    .journey-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        overflow: hidden;
    }

    /* Remove Horizontal Offsets */
    .visuals-container,
    .usp-visual-content,
    .usp-card-minimal,
    .journey-image-wrapper {
        transform: none !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Concert Row Refinement */
    .concert-row {
        flex-direction: column;
        padding: 20px !important;
        gap: 15px;
        text-align: center;
    }
    
    .concert-date, .concert-actions {
        min-width: unset !important;
        text-align: center !important;
    }

    /* CEO Section Mobile Fix */
    .ceo-cinematic-grid { text-align: center; }
    .ceo-text-content { padding-right: 0; margin-bottom: 30px; width: 100%; }
    .ceo-image-wrapper { max-width: 100%; margin: 0 auto; }

    /* USP Section Mobile Fix */
    .usp-text-content { text-align: center; width: 100%; }
    .usp-card-minimal { padding: 20px; border-left: none; border-bottom: 3px solid var(--accent-gold); }

    /* Navigation Drawer Fixes */
    .nav-links {
        background: rgba(11, 11, 11, 0.98) !important;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding-bottom: 40px !important;
    }

    .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        box-shadow: none !important;
        border-top: none !important;
        border-left: 2px solid var(--accent-red);
        margin: 10px 0;
        display: none; /* Controlled by JS */
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-link i {
        margin-left: auto;
    }

    /* Form Adjustments */
    .booking-form { padding: 25px 20px; width: 100%; }
    .form-group input, .form-group select, .form-group textarea { font-size: 1rem; }

    /* Hide overflowing decorative elements if they persist */
    .stage-light { max-width: 100vw; }
}

@media (max-width: 480px) {
    .logo { 
        font-size: 1.25rem; 
        letter-spacing: 1px; 
        gap: 8px;
    }
    .nav-logo { height: 60px; }
    .hero h1 { font-size: 1.0rem !important; }
    .hero-logo { width: 220px; }
    .container { padding: 0 15px; }
}
