:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Background Effects */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(5,5,5,0) 70%);
    filter: blur(100px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}
.glow-1 { top: -200px; left: -200px; }
.glow-2 { top: 30%; right: -300px; transform: translateY(-50%); background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, rgba(5,5,5,0) 70%); }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(5, 5, 5, 0.7);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--accent);
    white-space: nowrap;
}

.logo span {
    color: var(--text-primary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.text-gray {
    color: #888888;
}

.text-white {
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
}

.text-gradient {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    background: rgba(255,255,255,0.02);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.avatars {
    display: flex;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -12px;
    object-fit: cover;
}
.avatar:first-child { margin-left: 0; }

.proof-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.proof-text strong {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
}

.proof-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Timeline Process Section */
.process-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), rgba(255, 255, 255, 0.05));
    z-index: 1;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    z-index: 3;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.timeline-content {
    width: 42%;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 3rem;
}

.timeline-visual {
    width: 45%;
    display: flex;
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-visual {
    justify-content: flex-start;
}

.timeline-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Thumbnail Scroll Effect / Floating Box Styles */
.thumbnail-showcase-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-thumbnail {
    position: relative;
    width: 90%;
    transform: rotate(-6deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.floating-thumbnail:hover {
    transform: rotate(-2deg) scale(1.05);
}

.thumb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: rgba(139, 92, 246, 0.6); /* Purple glow matching MZ */
    filter: blur(80px);
    z-index: 0;
}

.thumbnail-scroll-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 1;
}

.scroll-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.thumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.thumb-fg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform: translateX(100%); /* Start from right like MZ Media */
    will-change: transform;
}

.thumb-fg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 3;
}

.thumb-fg {
    box-shadow: -10px 0 30px rgba(0,0,0,0.7);
}

.step-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.process-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 5%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

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

.section-title .highlight {
    font-size: 3rem;
    font-weight: 800;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
    border-radius: 999px;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.05);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Video Grids */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

.video-card:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.1);
}

/* Aspect ratio wrappers */
.aspect-video {
    aspect-ratio: 16/9;
    background: #111;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.aspect-reel {
    aspect-ratio: 9/16;
    background: #111;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Thumbnail image inside video cards */
.video-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.video-card:hover .video-thumb-img,
.testimonial-video-container:hover .video-thumb-img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* Play button overlay on thumbnails */
.video-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-thumb-play svg {
    margin-left: 3px; /* Visual centering for play icon */
}

.video-card:hover .video-thumb-play,
.testimonial-video-container:hover .video-thumb-play {
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* =========================================
   Video Modal / Lightbox
   ========================================= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 960px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.is-open .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    line-height: 1;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-modal-player {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
}

/* Modal aspect ratio containers */
.modal-aspect-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
}

.modal-aspect-reel {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: min(711px, 80vh); /* 9:16 capped to viewport */
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
    padding: 8rem 5%;
    border-top: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Footer */
footer {
    padding: 4rem 5%;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--card-border);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.social-links a:hover {
    color: var(--text-primary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* =========================================
   Hamburger Menu (hidden on desktop)
   ========================================= */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   Responsive — Tablet (≤ 900px)
   ========================================= */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Responsive — Mobile (≤ 768px)
   ========================================= */
@media (max-width: 768px) {

    /* --- Navigation & Hamburger Menu --- */
    .hamburger {
        display: flex;
    }

    nav {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 3rem 2.5rem;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(255,255,255,0.06);
        z-index: 100;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links .nav-link {
        font-size: 1.5rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        color: #fff;
    }

    .nav-links .btn-primary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Mobile nav overlay backdrop */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-backdrop.visible {
        opacity: 1;
        visibility: visible;
    }

    /* --- Hero Section --- */
    .hero {
        min-height: auto;
        padding: 120px 6% 60px;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }

    .text-white {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .hero-subtitle br {
        display: none;
    }

    .social-proof {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        width: 100%;
        padding: 0.85rem 1rem;
        margin-bottom: 2rem;
    }

    .avatars {
        justify-content: center;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }

    .proof-text {
        text-align: center;
    }

    .proof-text strong {
        font-size: 0.85rem;
    }

    .proof-text span {
        font-size: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    /* --- Testimonials Section --- */
    .testimonials-section {
        padding: 3rem 5% !important;
    }

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

    .testimonial-video-container {
        max-width: 280px !important;
        border-radius: 20px !important;
    }

    /* --- Portfolio Section --- */
    .portfolio {
        padding: 4rem 5%;
    }

    .portfolio-header {
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

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

    .portfolio-filters {
        border-radius: 999px;
        width: fit-content;
        gap: 0.25rem;
        padding: 0.35rem;
    }

    .filter-btn {
        border-radius: 999px;
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .video-card {
        border-radius: 16px;
    }

    /* Shorts grid - 2 columns on mobile for better use of space */
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .video-thumb-play {
        width: 48px;
        height: 48px;
    }

    .video-thumb-play svg {
        width: 18px;
        height: 18px;
    }

    /* --- Process / Timeline Section --- */
    .process-section {
        padding: 4rem 5% !important;
    }

    .process-section .portfolio-header {
        margin-bottom: 3rem !important;
    }

    .process-section .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }

    .timeline-line {
        left: 24px;
        transform: none;
    }

    .timeline-container {
        padding-bottom: 2rem;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
        padding-left: 0;
        position: relative;
    }

    .timeline-node {
        left: 24px;
        top: 0;
        transform: translate(-50%, 0);
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .timeline-content {
        width: 100% !important;
        padding: 0 0 0 60px !important;
        text-align: left !important;
        margin-bottom: 1.25rem;
    }

    .timeline-item:nth-child(even) .timeline-content {
        padding: 0 0 0 60px !important;
    }

    .step-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.75rem;
    }

    .process-title {
        font-size: 1.25rem !important;
        margin: 0.5rem 0 !important;
    }

    .process-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .timeline-visual {
        width: 100% !important;
        padding: 0 0 0 60px !important;
        justify-content: flex-start !important;
    }

    .timeline-item:nth-child(even) .timeline-visual {
        justify-content: flex-start !important;
    }

    .timeline-visual img {
        border-radius: 16px;
        max-width: 100%;
    }

    /* Thumbnail showcase on mobile */
    .thumbnail-showcase-box {
        padding: 1.5rem;
        aspect-ratio: auto;
        min-height: 200px;
        border-radius: 16px;
    }

    .floating-thumbnail {
        width: 95%;
        transform: rotate(-3deg);
    }

    .process-cta {
        margin-top: 3rem !important;
    }

    .process-cta .btn-primary {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }

    /* --- Booking Section --- */
    .booking-section {
        padding: 4rem 5%;
    }

    .booking-section .section-title {
        font-size: 1.75rem;
    }

    .booking-container {
        border-radius: 20px;
        padding: 1rem;
    }

    #my-cal-inline {
        height: 500px !important;
    }

    /* --- Footer --- */
    footer {
        padding: 2.5rem 5%;
    }

    footer .logo {
        font-size: 1.25rem;
    }

    footer p {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 0.9rem;
    }

    /* --- Video Modal on Mobile --- */
    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -44px;
        right: 4px;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .modal-aspect-reel {
        max-width: 100%;
        padding-bottom: 177.78%; /* Full 9:16 */
    }

    /* --- Background glows — smaller on mobile --- */
    .bg-glow {
        width: 300px;
        height: 300px;
        opacity: 0.4;
    }

    /* --- Animations — reduced motion for performance --- */
    .reveal {
        transform: translateY(20px);
    }
}

/* =========================================
   Responsive — Small phones (≤ 400px)
   ========================================= */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .text-white {
        font-size: 1.85rem;
    }

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

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

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

    .section-title .highlight {
        font-size: 1.75rem;
    }

    .testimonial-video-container {
        max-width: 240px !important;
    }
}
