/* ============================================
   DJ Unit Page - بياع مزيكا
   Dark Theme with Neon Effects
   ============================================ */

/* CSS Variables */
:root {
    /* Neon Colors */
    --neon-purple: #9d4edd;
    --neon-purple-light: #c77dff;
    --neon-blue: #00b4d8;
    --neon-cyan: #00f5d4;
    --neon-pink: #ff006e;

    /* Dark Theme */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-card-hover: rgba(30, 30, 45, 0.9);

    /* Text */
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-muted: #666666;

    /* Gradients */
    --gradient-neon: linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--neon-cyan));
    --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);

    /* Shadows */
    --glow-purple: 0 0 20px rgba(157, 78, 237, 0.5), 0 0 40px rgba(157, 78, 237, 0.3);
    --glow-blue: 0 0 20px rgba(0, 180, 216, 0.5), 0 0 40px rgba(0, 180, 216, 0.3);
    --glow-cyan: 0 0 20px rgba(0, 245, 212, 0.5);

    /* Fonts */
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Orbitron', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: var(--font-ar);
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 5px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--neon-purple);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}


.hero-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 500px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 40px var(--neon-purple));
    animation: floatMove 10s infinite ease-in-out;
}

/* ============================================
   Header / Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0d0015 0%, #0a0a0f 50%, #050510 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(157, 78, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Sound Waves Animation */
.sound-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    opacity: 0.4;
}

.wave {
    width: 6px;
    background: var(--gradient-neon);
    border-radius: 10px;
    animation: wave 1.2s ease-in-out infinite;
    will-change: transform;
}

.wave:nth-child(1) {
    height: 40px;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    height: 80px;
    animation-delay: 0.2s;
}

.wave:nth-child(3) {
    height: 60px;
    animation-delay: 0.4s;
}

.wave:nth-child(4) {
    height: 100px;
    animation-delay: 0.6s;
}

.wave:nth-child(5) {
    height: 50px;
    animation-delay: 0.8s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

/* Light Beams */
.light-beams {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.beam {
    position: absolute;
    top: -50%;
    width: 2px;
    height: 200%;
    background: linear-gradient(180deg, transparent, var(--neon-purple), transparent);
    opacity: 0.3;
    animation: beam 8s linear infinite;
    will-change: transform, opacity;
}

.beam:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.beam:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
    background: linear-gradient(180deg, transparent, var(--neon-blue), transparent);
}

.beam:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
    background: linear-gradient(180deg, transparent, var(--neon-cyan), transparent);
}

@keyframes beam {
    0% {
        transform: translateY(-100%) rotate(15deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(100%) rotate(15deg);
        opacity: 0;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.float-item {
    position: absolute;
    opacity: 0.15;
    filter: drop-shadow(0 0 20px var(--neon-purple));
    animation: floatMove 20s infinite linear;
    will-change: transform;
}

.speaker-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.speaker-2 {
    bottom: 20%;
    right: 10%;
    width: 250px;
    animation-delay: -10s;
    transform: rotate(15deg);
}

.controller-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    width: 600px;
    opacity: 0.05;
    z-index: -1;
    animation: pulseGlow 10s infinite alternate;
}

.line-array-1 {
    top: 10%;
    right: 25%;
    width: 180px;
    opacity: 0.1;
    animation-delay: -5s;
    transform: rotate(10deg);
}

.line-array-2 {
    bottom: 15%;
    left: 25%;
    width: 200px;
    opacity: 0.1;
    animation-delay: -15s;
    transform: rotate(-10deg);
}

@keyframes floatMove {
    0% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.05;
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.6);
    }
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}



.logo-img {
    max-width: 100px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--neon-purple));
}

/* Nav Links (desktop) */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid rgba(157, 78, 237, 0.4);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animated X when open */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Close button inside the mobile menu */
.nav-close {
    display: none;
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

/* Mobile nav overlay */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        background: rgba(5, 5, 8, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 150;
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        font-weight: 700;
    }

    .nav-links a:hover {
        color: var(--neon-cyan);
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 2rem;
    }
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(157, 78, 237, 0.3);
    border-radius: 30px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(157, 78, 237, 0.2);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.unit-title {
    margin-bottom: 20px;
}

.title-en {
    display: block;
    font-family: var(--font-en);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(157, 78, 237, 0.8));
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.title-ar {
    display: block;
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: var(--text-gray);
    margin-top: 10px;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(157, 78, 237, 0.6));
    }

    100% {
        filter: drop-shadow(0 0 40px rgba(0, 180, 216, 0.8));
    }
}

.hero-tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--neon-purple);
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   Section Common Styles
   ============================================ */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border-radius: 50%;
    font-size: 1.2rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.gallery-overlay span {
    font-size: 1rem;
    color: white;
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--neon-cyan);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: var(--bg-card);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    right: 20px;
}

.lightbox-next {
    left: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 1rem;
}

/* ============================================
   Video Section (index.html)
   ============================================ */
.video-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    text-align: center;
    margin-top: 25px;
    font-family: var(--font-en);
    font-size: 1.3rem;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   Media Split Section (Image + Instagram Reel)
   ============================================ */
.media-split-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.media-image-side {
    flex: 1;
    max-width: 45%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(157, 78, 237, 0.4);
    box-shadow: 0 0 30px rgba(157, 78, 237, 0.2);
    background: var(--bg-card);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.media-image-side:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.media-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    aspect-ratio: 9/10;
    transition: transform 0.5s ease;
}

.media-image-side:hover .media-promo-img {
    transform: scale(1.04);
}

.media-reel-side {
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 180, 216, 0.4);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.15);
    background: #000;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.reel-container:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* إخفاء header وfooter إنستغرام بنفس تقنية صفحة الوحدة */
.reel-container iframe {
    position: absolute;
    top: -62px;
    left: 50%;
    transform: translateX(-50%);
    width: 155%;
    height: calc(100% + 217px);
    border: none;
    display: block;
}

.reel-caption {
    font-size: 1rem;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.reel-caption i {
    font-size: 1.2rem;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .media-split-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .media-image-side,
    .media-reel-side {
        max-width: 100%;
        width: 100%;
    }

    .reel-container {
        max-height: 500px;
    }
}

/* ============================================
   Unit Hero Section (unit.html)
   ============================================ */
.unit-hero {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #0d0015 0%, #0a0a0f 100%);
}

.unit-header {
    text-align: center;
    margin-bottom: 40px;
}

.unit-name-title {
    font-family: var(--font-en);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(157, 78, 237, 0.7));
    margin-bottom: 12px;
}

.unit-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 500;
}

/* ---- Showcase: صورة + فيديو جنب بعض ---- */
.unit-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* --- صورة الـ DJ --- */
.unit-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(157, 78, 237, 0.4);
    box-shadow: 0 0 30px rgba(157, 78, 237, 0.2);
    background: var(--bg-card);
    aspect-ratio: 9/10;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.unit-image-wrapper:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.unit-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.unit-image-wrapper:hover img {
    transform: scale(1.04);
}

/* --- wrapper الفيديو --- */
.unit-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 180, 216, 0.4);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.15);
    background: #000;
    height: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.unit-video-wrapper:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* فيديو عادي (YouTube/landscape) */
.unit-video-wrapper.landscape {
    aspect-ratio: 16/9;
}

/* فيديو عمودي (Instagram/TikTok) - يمتد بنفس ارتفاع الصورة */
.unit-video-wrapper.vertical {
    max-width: 100%;
}

.unit-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* fallback إذا لم يضف JS class بعد */
.unit-video-wrapper:not(.landscape):not(.vertical) {
    aspect-ratio: 16/9;
}

/* Instagram embed: overflow:hidden يقص الـ header والـ footer */
.unit-video-wrapper.instagram-embed {
    overflow: hidden;
    border-radius: 20px;
}

/* نكبّر الـ iframe في كل الاتجاهات ونزيحه للأعلى لإخفاء الـ header */
.unit-video-wrapper.instagram-embed iframe {
    position: absolute;
    top: -62px;
    left: 50%;
    transform: translateX(-50%);
    width: 155%;
    height: calc(100% + 217px);
    border: none;
    display: block;
}


/* Responsive: شاشات صغيرة → فوق بعض */
@media (max-width: 768px) {
    .unit-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .unit-image-wrapper {
        aspect-ratio: 4/3;
    }

    .unit-video-wrapper.vertical {
        max-width: 100%;
        aspect-ratio: 9/16;
    }
}



/* ============================================
   Details Section
   ============================================ */
.details {
    background: var(--bg-darker);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.detail-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(157, 78, 237, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.detail-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(157, 78, 237, 0.2), rgba(0, 180, 216, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-purple);
}

.card-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    background: var(--bg-dark);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(157, 78, 237, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.review-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.review-stars {
    margin-bottom: 15px;
    color: #ffd700;
    font-size: 1.1rem;
}

.review-stars i {
    margin-left: 2px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    color: var(--neon-cyan);
}

.author-event {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3,
.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--neon-purple);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 15px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid rgba(157, 78, 237, 0.2);
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: rgba(157, 78, 237, 0.2);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.phone-link i {
    color: var(--neon-cyan);
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(157, 78, 237, 0.3), rgba(0, 180, 216, 0.3));
    animation: gradientShift 5s ease infinite alternate;
}

@keyframes gradientShift {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 10;
}

.cta-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.cta-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--neon-cyan);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: white;
    box-shadow: var(--glow-purple);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(157, 78, 237, 0.6);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    padding: 40px 0;
    border-top: 1px solid rgba(157, 78, 237, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer .logo-img {
    height: 40px;
    background: transparent !important;
    mix-blend-mode: screen;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 40px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 5px 40px rgba(37, 211, 102, 0.8);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .back-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .sound-waves {
        height: 100px;
    }

    .wave {
        width: 4px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .title-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        right: 10px;
    }

    .lightbox-next {
        left: 10px;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .detail-card {
        padding: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .floating-whatsapp .whatsapp-text {
        display: none;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .floating-whatsapp i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-grid {
        text-align: center;
    }

    .phone-numbers {
        align-items: center;
    }

    .phone-link {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 3px;
}

/* ============================================
   Units Horizontal Showcase
   ============================================ */
.units-showcase {
    background: var(--bg-darker);
    overflow: hidden;
}

.units-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0 40px 0;
    scroll-snap-type: x mandatory;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.units-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.units-scroll-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.units-scroll-container::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 4px;
}

.unit-card-horizontal {
    flex: 0 0 300px;
    /* Fixed width for card */
    scroll-snap-align: center;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(157, 78, 237, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.unit-card-horizontal:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 245, 212, 0.2);
}

.unit-img-box {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.unit-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unit-card-horizontal:hover .unit-img-box img {
    transform: scale(1.1);
}

.unit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.unit-card-horizontal:hover .unit-overlay {
    opacity: 1;
}

.unit-overlay i {
    font-size: 2rem;
    color: var(--neon-cyan);
}

.unit-info-box {
    padding: 20px;
    text-align: center;
}

.unit-info-box h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.unit-info-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.scroll-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
    animation: fadePulse 2s infinite;
}

@keyframes fadePulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   Unit Detail Page Specific Styles
   ============================================ */
.unit-hero {
    padding-top: 50px;
    padding-bottom: 50px;
}

.unit-header {
    text-align: center;
    margin-bottom: 40px;
}

.unit-name-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: var(--font-en);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.unit-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.unit-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .unit-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

.unit-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.unit-image-wrapper img {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    border: 2px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
    object-fit: cover;
}

.unit-video-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    /* Fixed height for portrait video */
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--neon-blue);
    box-shadow: var(--glow-blue);
    max-width: 350px;
    margin: 0 auto;
}

.unit-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo-img {
    margin-bottom: 20px;
    animation: logoPulse 1.5s infinite alternate;
}

.loader-logo-img img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--neon-purple));
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-neon);
    animation: loadingProgress 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-purple);
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(157, 78, 237, 0.3);
    }

    100% {
        transform: scale(1.05);
        text-shadow: 0 0 40px rgba(157, 78, 237, 0.6);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 70%;
        left: 15%;
    }

    100% {
        width: 100%;
        left: 100%;
    }
}

/* ============================================
   DJ Bio Section
   ============================================ */
.dj-bio {
    background: var(--bg-dark);
    padding: 60px 0;
}

.bio-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   DJ Gallery Section
   ============================================ */
.dj-gallery {
    background: var(--bg-darker);
    padding: 60px 0;
}

/* ============================================
   DJ Reviews Section
   ============================================ */
.dj-reviews {
    background: var(--bg-dark);
    padding: 60px 0;
}

/* ============================================
   Booking Form Section
   ============================================ */
.booking-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 237, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 78, 237, 0.3);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-ar);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(157, 78, 237, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-ar);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.submit-btn i {
    font-size: 1.5rem;
}

/* Success Message */
.success-message {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #25d366;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.success-message i {
    font-size: 4rem;
    color: #25d366;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 80px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(157, 78, 237, 0.8);
}

.back-to-top i {
    animation: arrowBounce 1.5s infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE DESIGN — Mobile First
   ============================================ */

/* ── Tablets & Large Phones  (max 768px) ── */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo-img {
        max-width: 80px;
    }

    /* Hero */
    .hero-content {
        padding: 15px;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 1rem;
    }

    /* Units Scroll */
    .units-scroll-container {
        gap: 20px;
        padding-bottom: 16px;
    }

    .unit-card-horizontal {
        min-width: 300px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        gap: 10px;
        margin-bottom: 30px;
    }

    .title-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Unit page showcase */
    .unit-showcase {
        flex-direction: column;
    }

    .unit-image-wrapper img,
    .unit-video-wrapper {
        height: auto;
        width: 100%;
    }

    .unit-video-wrapper {
        aspect-ratio: 16 / 9;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Social icons */
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Booking Form */
    .booking-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .submit-btn {
        font-size: 1.1rem;
        padding: 14px 25px;
        width: 100%;
    }

    /* Reviews */
    .reviews-slider {
        grid-template-columns: 1fr;
    }

    /* Footer links */
    .footer-content>div {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 70px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    /* Floating WhatsApp button */
    .floating-whatsapp .whatsapp-text {
        display: none;
    }

    /* Lightbox navigation */
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* ── Small Phones  (max 480px) ── */
@media (max-width: 480px) {

    /* Navbar — stack logo + links vertically on tiny screens */
    .navbar {
        padding: 12px 16px;
        justify-content: space-between;
    }

    .logo-img {
        max-width: 65px;
    }

    /* Nav links — hide text, keep phone button */
    .navbar>div>a:not(.back-btn) {
        font-size: 0.85rem;
    }

    /* Hero */
    .hero-tagline {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 11px 22px;
        font-size: 0.95rem;
    }

    /* Unit cards */
    .unit-card-horizontal {
        min-width: 270px;
    }

    .unit-info-box h3 {
        font-size: 0.95rem;
    }

    /* Phone numbers — stack vertically */
    .phone-numbers {
        flex-direction: column;
        gap: 12px;
    }

    .phone-link {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        /* touch-friendly */
    }

    /* Details / Specs grid */
    .details-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews */
    .review-card {
        padding: 20px;
    }

    /* Booking form inputs — larger tap targets */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* prevents iOS auto-zoom */
        min-height: 44px;
    }

    /* Section padding tighter */
    section {
        padding: 40px 0;
    }
}

/* ── Large Tablets / Small Laptops  (769px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {

    .container {
        max-width: 960px;
    }

    .units-scroll-container {
        gap: 25px;
    }

    .unit-card-horizontal {
        min-width: 340px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* ── Landscape on short screens (phones in landscape) ── */
@media (orientation: landscape) and (max-height: 600px) {

    .hero {
        min-height: auto;
        padding: 50px 0 30px;
    }

    .sound-waves {
        height: 80px;
    }

    .light-beams {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-content {
        padding: 10px;
    }
}

/* Updated Video Container Styles */
.unit-video-wrapper.vertical {
    max-width: 350px;
    height: auto;
    /* Let aspect-ratio define height */
    aspect-ratio: 9/16;
}

.unit-video-wrapper.landscape {
    max-width: 800px;
    height: auto;
    aspect-ratio: 16/9;
}