:root {
    --primary: #D4AF37; /* Replaced Purple with Gold */
    --accent-gradient: linear-gradient(90.11deg, #D4AF37 0.1%, #F9F295 49.33%, #D4AF37 99.41%);
    --bg-black: #000000;
    --bg-dark-grey: #0a0a0a;
    --glass: rgba(18, 18, 18, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --text-white: #FFFFFF;
    --text-grey: #b0b0b0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
}

.spaced-text {
    letter-spacing: 8px;
    font-weight: 900;
}

.accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: block;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition-fast);
    background: transparent;
}

#navbar.scrolled {
    background: #000000;
    padding: 12px 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem; /* Tight, professional grouping */
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 28px;
    height: 28px;
    overflow: hidden;
    position: relative;
    border-radius: 4px; /* Scaled down rounding */
    background: transparent;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Crop magic to focus on the icon */
    transform: scale(1.1); /* Zoom the icon slightly */
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.2em;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition-slow);
}

.logo:hover .logo-text {
    letter-spacing: 0.25em; /* Subtle expansion breath on hover */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-links {
    flex: 1; /* Fill the center space */
    display: flex;
    justify-content: center; /* Center the links within the space */
    margin: 0 3rem;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(239, 236, 231, 0.7);
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
}

.nav-links a:hover {
    color: #D4AF37;
}

.nav-cta {
    background: linear-gradient(135deg, #FFEA00, #FFD700) !important;
    padding: 5px 12px !important; /* Tighter horizontal width */
    border-radius: 9999px;
    color: #0A0A0A !important;
    font-weight: 700 !important;
    text-decoration: none !important; /* Premium pill finish */
    text-transform: uppercase;
    font-size: 13px !important;
    display: flex;
    align-items: center;
    gap: 7px; /* Tight icon gap for smaller scale */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-cta i {
    width: 16px;
    height: 16px;
}

.nav-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
}

/* Fix iOS/Safari background-attachment: fixed zoom bug */
@media (max-width: 1024px), (pointer: coarse) {
    .hero {
        background-attachment: scroll;
    }
}
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8), var(--bg-black));
}

.hero-content {
    max-width: 1200px;
    width: 90%;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 16px;
    color: #c9a24a;
    font-weight: 600;
    margin-bottom: 2rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-family: var(--font-heading);
    line-height: 1.15;
    margin-bottom: 3.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    color: #EFECE7;
    width: 100%;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.btn {
    padding: 12px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: #FFF !important;
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 1.5px solid #D4AF37;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Social Proof Bar */
.social-proof-bar {
    background: var(--bg-dark-grey);
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* About Section */
.about-section {
    padding: 10rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: flex-start; /* Start from top */
}

.about-image {
    height: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 520px; /* Precise height to match main narrative text */
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the frame perfectly */
    border-radius: 20px;
    transition: var(--transition-slow);
}

.glow-effect {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.about-text p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.feature i {
    color: var(--accent);
    width: 20px;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.03), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

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

.service-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: all 0.5s var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
}

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

.service-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

.glass {
    background: var(--glass);
    
    border: 1px solid var(--glass-border);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Modern 16:9 layout */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.performance-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cinema-quality fill */
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: var(--transition-fast);
}

.video-container:hover .video-overlay {
    opacity: 0;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: black;
}

/* Gallery Section */
.gallery-section {
    padding: 10rem 0;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.masonry-item {
    aspect-ratio: 4 / 3; /* Fixed size for collage effect */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Uniformly fill the collage squares */
    transition: var(--transition-slow);
}

@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

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

/* Testimonials */
.testimonials-section {
    padding: 8rem 0;
    background: var(--bg-dark-grey);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.testimonials-slider.dragging {
    cursor: grabbing;
    scroll-behavior: auto; /* Smoother dragging without snap interference */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 400px;
    min-height: auto; /* Removed fixed 420px height to prevent empty gaps */
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px; /* Thinner for phones */
        padding: 1.5rem;
    }
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-white);
    flex-grow: 1;
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.testimonial-author {
    margin-top: auto;
}

.author-info h4 {
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-grey);
    text-transform: uppercase;
}

/* Booking Section */
.booking-section {
    padding: 10rem 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-grey);
}

.contact-item p {
    font-size: 1.2rem;
    font-weight: 600;
}

.booking-form-container {
    padding: 4rem;
    border-radius: 30px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

/* Instagram Section */
.instagram-section {
    padding: 8rem 0;
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.insta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.insta-info i {
    color: #E1306C;
}

.btn-text {
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.insta-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

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

/* Footer */
.footer {
    padding: 8rem 0 3rem;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand p {
    color: var(--text-grey);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--accent);
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

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

.social-icons a {
    color: white;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 0.8rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .social-proof-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-slow);
        z-index: 1000;
        display: flex;
    }

    .nav-links.open {
        right: 0;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.5);
    }

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

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .hero-ctas .btn {
        padding: 10px 22px !important;
        font-size: 13px !important;
        width: auto !important;
        min-width: 180px !important;
        justify-content: center;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 2rem;
    }

    .booking-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        columns: 1;
    }
}


/* Community Section */
.community-section {
    padding: 10rem 0;
    background: var(--bg-black);
}

/* Circular Icon Style (Matching Reference) */
.community-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 0;
}

.community-icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.03);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.community-icon-circle:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.community-icon-circle:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

.community-icon-circle:hover:after {
    opacity: 1;
}

.community-section {
    padding: 8rem 0;
    background: var(--bg-black);
}

/* Footer Section */
.footer {
    padding: 10rem 0 4rem;
    background: #010101;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    align-items: flex-start; /* Ensure all start at top */
    margin-bottom: 8rem;
}

.footer-desc {
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 450px;
    margin-top: 2rem;
}

.footer-title {
    color: white;
    margin-top: 0 !important; /* Force same vertical level */
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
}

.footer-links a {
    color: var(--text-grey);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--accent) !important;
    transform: translateX(5px);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-links a {
    color: var(--text-grey);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    transition: 0.3s;
}

.contact-links i {
    width: 20px;
    color: var(--accent);
}

.footer-social-icons {
    margin-top: 3.5rem;
    display: flex;
    gap: 1.8rem;
}

.community-icon-circle.footer-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.luxe-font {
    font-family: var(--font-heading);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

/* --- Small Screen Optimization (iPhone SE) --- */
@media (max-width: 480px) {
    .logo-icon {
        width: 38px !important;
        height: 38px !important;
    }
    .logo-text {
        font-size: 16px !important;
        letter-spacing: 0.1em !important;
    }

    .hero-title {
        font-size: 2.3rem !important;
        line-height: 1.2 !important;
    }

    .hero-content {
        padding-top: 5rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 2.5rem !important;
        padding: 0 1rem;
    }

    .whatsapp-float {
        bottom: 1.2rem !important;
        right: 1.2rem !important;
        width: 55px !important;
        height: 55px !important;
    }
    
    .whatsapp-float i {
        font-size: 1.8rem !important;
    }
    
    .section-title {
        font-size: 2.2rem !important;
    }
}

/* --- Mobile Bottom Bar Recovery & Fix --- */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 20px;
    display: none;
    justify-content: flex-end; /* Align WhatsApp to the right */
    align-items: center;
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }
    
    body {
        margin-bottom: 70px; /* Space for the bottom bar */
    }
    
    .whatsapp-float {
        display: none !important; /* Hide old float when bar is present */
    }
}

.mobile-whatsapp-btn {
    background: #25D366;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Prevent horizontal overflow */
body, html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* --- FINAL GLOBAL RESPONSIVENESS & OVERFLOW FIX --- */
* {
    max-width: 100%;
    box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5.5vw, 4rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 2.5rem !important;
    }
    
    .logo-icon {
        width: 32px !important;
        height: 32px !important;
    }
    .logo-text {
        font-size: 14px !important;
        letter-spacing: 0.05em !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .mobile-bottom-bar {
        display: flex !important;
        justify-content: center !important; /* Center for 1 button */
        padding: 10px 0 !important;
    }
    
    .mobile-whatsapp-btn {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Force layout reset for sections that might cause overflow */
.section, .about-section, .services-section, .booking-section, .footer {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* --- Final Mobile Button Position Adjustment --- */
@media (max-width: 480px) {
    .mobile-bottom-bar {
        justify-content: flex-end !important; /* Move to right corner */
        padding-right: 20px !important;
        background: transparent !important; /* Remove black bar for "floating" effect */
        border-top: none !important;
        pointer-events: none !important; /* Pass through to click elements behind bar if needed */
    }
    
    .mobile-whatsapp-btn {
        pointer-events: auto !important; /* Only button is clickable */
        width: 60px !important;
        height: 60px !important;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
    }
}

/* --- Luxe Musical Tooltip --- */
.tooltip {
    position: absolute;
    right: 80px;
    background: #000;
    color: var(--primary);
    border: 1px solid var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.1);
}

.tooltip i {
    color: var(--primary);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Subtle musical float animation */
@keyframes music-wiggle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.whatsapp-float:hover .tooltip i {
    animation: music-wiggle 1.5s ease-in-out infinite;
}

/* --- Horizontal Stats Styling (About Section) --- */
.about-stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.stat-box {
    flex: 1;
}

.stat-box .stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.stat-box .stat-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-grey);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        gap: 2.5rem 1rem;
    }
    
    .stat-box .stat-num {
        font-size: 1.8rem;
    }
}


/* --- Fixing Hero Element Overlaps (iPhone SE / Tiny Screens) --- */
@media (max-width: 480px) {
    .hero-content h1 {
        margin-bottom: 1.5rem !important;
        font-size: 13px !important;
        letter-spacing: 2px !important;
    }
    
    .hero-title {
        margin-bottom: 2rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        margin-bottom: 1.8rem !important;
        font-size: 0.9rem !important;
    }
    
    .hero-ctas {
        margin-bottom: 4rem !important; /* Push buttons up away from indicator */
    }
    
    /* Hide scroll indicator on very small screens to prevent overlap */
    .scroll-indicator {
        display: none !important;
    }
}

/* --- COMPREHENSIVE MULTI-DEVICE RESPONSIVENESS BOOSTER --- */

/* Universal Safety Lock - Prevents Horizontal Overflow */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
}

/* Tablet & Intermediate Screens (992px to 1200px) */
@media (max-width: 1200px) {
    .container { max-width: 950px; }
    .about-grid { gap: 4rem; }
    .hero-title { font-size: 4.5rem; }
}

/* Tablet Portrait & Small Laptops (768px to 991px) */
@media (max-width: 991px) {
    .hero-title { font-size: 3.8rem; }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image {
        margin-top: 0;
        margin-bottom: 3rem;
        display: flex;
        justify-content: center;
    }
    .image-wrapper {
        height: 450px;
        width: 100%;
        max-width: 500px;
    }
    .about-text {
        padding: 0 1rem;
    }
    .about-stats-grid {
        justify-content: center;
        gap: 3rem;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large Smartphones (481px to 767px) */
@media (max-width: 767px) {
    .section { padding: 6rem 0; }
    .hero-title { font-size: 3.2rem; }
    .stat-box .stat-num { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social-icons { justify-content: center; }
}

/* Tiny Mobile Devices (iPhone SE / etc. - Up to 480px) */
@media (max-width: 480px) {
    .hero-title { font-size: 2.3rem !important; }
    .hero-subtitle { font-size: 0.95rem !important; padding: 0 10px; }
    .hero-ctas { scale: 0.9; }
    
    .section-title { font-size: 2.1rem !important; }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
        padding-top: 2rem;
    }
    
    .booking-form-container { padding: 1.5rem; }
    
    .community-grid {
        gap: 1.5rem;
    }
    
    .community-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.4rem;
    }
    
    .navbar { padding: 10px 0; }
    .logo { font-size: 20px !important; }
}

/* Extra Height Safety for Landscape Mobiles */
@media (max-height: 500px) {
    .hero { height: auto; padding: 10rem 0; }
    .scroll-indicator { display: none; }
}

/* --- Mobile Footer Vertical Stack (Left-Aligned) --- */
@media (max-width: 768px) {
    .footer {
        padding: 6rem 0 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3.5rem !important;
        text-align: left !important; /* Force Left Alignment */
    }
    
    .footer-brand, .footer-links, .footer-contact {
        grid-column: span 1 !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start !important; /* No center alignment */
        width: 100%;
    }
    
    .footer-desc {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .footer-social-icons {
        justify-content: flex-start !important;
        margin-top: 2rem;
    }
    
    .contact-links {
        align-items: flex-start !important;
    }
    
    .footer-bottom {
        text-align: left !important;
        padding-top: 3rem;
    }
}

/* About Section Mobile Balancing */
@media (max-width: 768px) {
    .about-section .section-header {
        margin-bottom: 3.5rem !important;
    }
    .about-text p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.8rem;
        text-align: center; /* Clean centered mobile narrative */
    }
}

/* --- Navbar Alignment Refinement --- */
@media (max-width: 991px) {
    .nav-container {
        padding: 0 1.5rem !important; /* Proper padding for smaller screens */
    }
}

@media (min-width: 992px) {
    .nav-links {
        margin-left: auto; /* Force everything to the right */
        display: flex;
        gap: 2.5rem; /* Luxe spacing */
    }
}

/* --- Professional Navbar Utility --- */
.desktop-only {
    display: flex !important;
}

@media (max-width: 1100px) {
    .desktop-only {
        display: none !important; /* Hide secondary desktop-only elements */
    }
    
    .nav-cta {
        display: none !important; /* Total removal of Book Now from mobile */
    }
    
    .nav-container {
        padding: 0 1.5rem !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(1, 1, 1, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        margin: 0;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
}

/* --- Mobile Video Control Refinement --- */
@media (max-width: 768px) {
    .video-mute-btn {
        bottom: 1rem !important;
        right: 1rem !important;
        padding: 4px 10px !important;
        background: rgba(1, 1, 1, 0.6) !important;
    }
    .video-mute-btn i {
        width: 14px !important;
        height: 14px !important;
    }
}

/* --- iPad Pro & Large Tablet Range (1024px to 1366px) --- */
@media (max-width: 1366px) {
    .nav-container {
        padding: 0 2rem; /* Reduce wide padding but keep luxury feel */
    }
    
    .nav-links {
        gap: 1.5rem; /* Tighter menu for mid-range desktops */
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }
}

/* --- High-Fidelity Simple Mute Toggle --- */
.video-mute-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFEA00, #FFD700); /* Initial signal */
    border-radius: 50% !important;
    color: #111;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-mute-btn.has-interacted {
    background: rgba(1, 1, 1, 0.4) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
}

.video-mute-btn i {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .video-mute-btn {
        width: 32px !important;
        height: 32px !important;
        bottom: 0.7rem !important;
        right: 0.7rem !important;
    }
    .video-mute-btn i {
        width: 12px !important;
        height: 12px !important;
    }
}

.video-mute-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .video-mute-btn {
        width: 42px !important;
        height: 42px !important;
        bottom: 1.2rem !important;
        right: 1.2rem !important;
    }
    .video-mute-btn i {
        width: 16px !important;
        height: 16px !important;
    }
}

/* --- Mobile Conversion Cleanup Reverted --- */
@media (max-width: 991px) {
    body {
        margin-bottom: 0 !important; /* Proper edge-to-edge finish */
    }
}

/* --- Mobile-Only Scrolled WhatsApp Reveal --- */
@media (max-width: 991px) {
    .whatsapp-float {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(20px) !important;
        transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
    }
    
    .whatsapp-float.visible {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
}

/* --- FINAL FIXED MOBILE WHATSAPP REVEAL --- */
@media (max-width: 991px) {
    .whatsapp-float,
    .mobile-whatsapp-btn {
        display: none !important; /* Force complete hide first */
    }
    
    /* Only allow specific reveal */
    body.show-whatsapp .whatsapp-float {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
    
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(40px);
        transition: all 0.5s ease-in-out;
    }

    .whatsapp-float i {
        font-size: 1.5rem !important;
    }
}

/* --- Performance Gallery: Mobile Carousel Overhaul --- */
.desktop-only {
    display: grid !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }

    .mobile-gallery-carousel {
        position: relative;
        padding: 2rem 0;
        overflow: hidden;
        width: 100vw;
        margin-left: calc(-50vw + 50%); /* Full bleed */
    }

    .carousel-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        padding: 0 10%; /* Peek effect */
    }

    .carousel-slide {
        min-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        transition: all 0.6s ease;
        opacity: 0.4;
        transform: scale(0.9);
        filter: grayscale(100%);
    }

    .carousel-slide.active {
        opacity: 1;
        transform: scale(1.05); /* Slight zoom-in */
        filter: grayscale(0%);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(255, 234, 0, 0.1); /* Subtle gold glow */
    }

    .carousel-slide img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Controls */
    .carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .carousel-dots {
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .dot.active {
        width: 24px;
        background: #FFEA00;
        border-radius: 10px;
    }

    .carousel-arrow {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .mobile-gallery-carousel:active .carousel-arrow,
    .mobile-gallery-carousel:hover .carousel-arrow {
        opacity: 1;
    }
}

/* --- Performance Gallery: High-Fidelity Refined Mobile Carousel --- */
@media (max-width: 768px) {
    .mobile-gallery-carousel {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .carousel-track {
        padding: 0 !important; /* No peek effect */
        display: flex !important;
        align-items: center !important;
        transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) !important; /* Cinematic Ease-In-Out */
    }

    .carousel-slide {
        min-width: 100% !important; /* Exactly 1 per view */
        padding: 0 5vw !important; /* Breathing room without clipping */
        width: 100% !important;
        opacity: 0 !important;
        transform: scale(0.95) !important;
        transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    }

    .carousel-slide.active {
        opacity: 1 !important;
        transform: scale(1) !important;
        z-index: 2 !important;
    }

    .carousel-slide img {
        height: 50vh !important; /* Adjusted for better phone fit */
        border-radius: 16px !important;
        box-shadow: 0 20px 50px rgba(0,0,0,0.9) !important;
    }
}

/* --- Custom Luxury Dropdown Styles --- */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-grey);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.custom-select-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.custom-select-trigger i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.active .custom-select-trigger i {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 9999;
    overflow: hidden;
}

.custom-select-wrapper.active .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    padding-left: 1.5rem; /* Subtle focus slide */
}

.custom-option.selected {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    font-weight: 600;
}

/* Form Group Layout Fix */
.form-group {
    position: relative;
    width: 100%;
}

/* --- High-Fidelity Conversion & Hook Upgrades --- */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.3); }
}

.trust-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    overflow: hidden;
    z-index: 10;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
    gap: 3rem;
    align-items: center;
}

.marquee-content span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}

.marquee-content .dot {
    color: var(--accent);
    font-size: 1.5rem;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Navbar CTA Mobile Fix */
@media (max-width: 768px) {
    .nav-cta {
        display: flex !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.75rem !important;
        margin-right: 1rem;
    }
}

/* --- Comprehensive Mobile Responsiveness & Alignment Fixes --- */
@media (max-width: 480px) {
    /* Navbar Alignment */
    .nav-container {
        padding: 0 1rem !important;
    }

    .logo-text {
        font-size: 0.9rem !important; /* Shrink logo text to make room */
        letter-spacing: 2px !important;
    }

    .nav-cta {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.65rem !important;
        white-space: nowrap;
    }

    /* Hero Refinements */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .hero-badge {
        font-size: 0.65rem !important;
        padding: 0.4rem 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Trust Marquee Stability */
    .trust-marquee {
        padding: 1rem 0 !important;
    }

    .marquee-content span {
        font-size: 0.7rem !important;
        letter-spacing: 2px !important;
    }

    /* Gallery Alignment */
    .mobile-gallery-carousel {
        padding: 1rem 0 !important;
    }

    .carousel-slide {
        padding: 0 15px !important; /* More padding for better centering */
    }

    .carousel-slide img {
        height: 45vh !important; /* Perfect balance for mobile view */
        box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    }

    /* Section Spacing */
    .section {
        padding: 2.5rem 0 !important;
    }

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

    /* Global Overflow Protection */
    html, body {
        overflow-x: hidden !important;
        position: relative;
    }
}

/* Ensure container padding is consistent */
.container {
    padding: 0 1.5rem;
}

/* --- Mobile "Book Now" Button Refinement --- */
@media (max-width: 480px) {
    .nav-cta {
        padding: 0.35rem 0.8rem !important; /* Decreased height/padding */
        font-size: 0.62rem !important;
        height: auto !important;
        min-height: unset !important;
    }
}

/* --- Mobile Nav: Precision Alignment Fix --- */
@media (max-width: 480px) {
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 0.8rem !important; /* Tighter padding for mobile */
    }

    .logo {
        flex: 1 !important; /* Take remaining space */
        min-width: 0 !important;
        margin-right: 0.5rem !important;
    }

    .logo-text {
        font-size: 0.85rem !important; /* Ensure logo text doesn't overflow */
        display: block !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important; /* Fixed gap between button and 3 lines */
        flex-shrink: 0 !important; /* Never shrink the actions group */
    }

    .nav-cta {
        margin: 0 !important;
        padding: 0.35rem 0.7rem !important; /* Sleek height */
        font-size: 0.6rem !important;
        z-index: 1001 !important;
    }

    .menu-toggle {
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
}

/* --- High-Energy College Overhaul Styles --- */
.energy-section {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.energy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.energy-features {
    list-style: none;
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

.energy-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.energy-features i {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.image-stack {
    position: relative;
    z-index: 1;
}

.image-stack img {
    width: 100%;
    border-radius: 24px;
    z-index: 2;
    position: relative;
}

.energy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Mobile-First Re-Balancing */
@media (max-width: 768px) {
    .energy-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .energy-features {
        justify-items: center;
    }

    .energy-features li {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1rem;
    }

    .btn-full-mobile {
        width: 100% !important;
    }

    .section-header {
        text-align: center !important;
    }
}

/* --- High-Fidelity Refined Styles --- */
html {
    scroll-behavior: smooth;
}

/* Hero Trust Signals */
.hero-trust-signals {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.trust-signal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signal-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.signal-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

/* Emotional Breakout */
.emotional-breakout {
    padding: 6rem 0;
    text-align: center;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breakout-line {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    font-style: italic;
}

/* Gallery Section Refresh */
.section-desc {
    color: var(--text-grey);
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Universal Spacing Polish */
.section {
    padding: 10rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }
    
    .emotional-breakout {
        padding: 3rem 0;
    }
    .hero-trust-signals {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .breakout-line {
        font-size: 1.8rem;
    }
    
    .signal-num {
        font-size: 1.2rem;
    }
    
    .signal-label {
        font-size: 0.55rem;
    }
}

/* --- Premium Artist Grid --- */
.premium-artists-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Exactly 6 items in a single horizontal row */
    gap: 1.5rem;
    max-width: 1400px; /* Allow it to be wide so the 6 cards aren't too small */
    margin: 4rem auto 0;
    padding: 0 1.5rem;
}

.premium-artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.premium-artist-card:hover {
    transform: translateY(-5px);
}

.premium-artist-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.2rem;
    background-color: #111;
}

.premium-artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s ease;
    filter: brightness(0.9);
}

.premium-artist-card:hover .premium-artist-image {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.premium-artist-card:hover .premium-artist-image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.premium-artist-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.premium-artist-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.premium-artist-role {
    font-size: 0.75rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .premium-artists-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .premium-artists-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 pics in a row, 3 rows tall */
        gap: 0.8rem;
        padding: 0 0.5rem;
        margin-top: 2rem;
    }
    
    .premium-artist-image {
        border-radius: 10px;
        margin-bottom: 0.8rem;
    }

    .premium-artist-name {
        font-size: 0.95rem;
    }
    
    .premium-artist-role {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}
