/* ===========================
   LAY FILMS PRODUCTIONS
   CLEAN CONSOLIDATED STYLESHEET
   =========================== */

/* ===== 1. RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== 2. NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-logo {
    z-index: 1002;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Theme Toggle */
.theme-toggle-desktop {
    display: flex;
}

.theme-toggle {
    display: flex;
    align-items: center;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    position: relative;
    display: flex;
    align-items: center;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.toggle-handle {
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    left: 4px;
    z-index: 2;
}

.sun-icon,
.moon-icon {
    font-size: 12px;
    transition: all 0.3s ease;
    z-index: 1;
}

.sun-icon {
    margin-right: auto;
    opacity: 1;
}

.moon-icon {
    margin-left: auto;
    opacity: 0.7;
}

.toggle-checkbox:checked+.toggle-label {
    background: rgba(0, 0, 0, 0.2);
}

.toggle-checkbox:checked+.toggle-label .toggle-handle {
    transform: translateX(30px);
    background: #333;
}

.toggle-checkbox:checked+.toggle-label .sun-icon {
    opacity: 0.7;
}

.toggle-checkbox:checked+.toggle-label .moon-icon {
    opacity: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger-line {
    width: 26px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== 3. HERO SECTION ===== */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 3rem 4rem;
    background: #000;
    min-height: 100vh;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    position: relative;
}

/* Hero Text */
.text .availability {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.text .dot {
    width: 10px;
    height: 10px;
    background: #19d27c;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    display: inline;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.intro {
    max-width: 450px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0;
}

.intro strong {
    color: white;
    font-weight: 600;
}

.message-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #000;
    padding: 0.9rem 1.6rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.message-btn img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 10px;
}

.message-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    background: #f0f0f0;
}

/* Hero Images Stack */
.hero-images {
    position: relative;
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hero-images .img {
    position: absolute;
    width: 70%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.6s ease,
        filter 0.6s ease;
}

.img1 {
    transform: rotate(-5deg) translateX(-80px) translateY(10px);
    z-index: 3;
}

.img2 {
    transform: rotate(2deg) translateY(-10px);
    z-index: 2;
}

.img3 {
    transform: rotate(6deg) translateX(80px) translateY(10px);
    z-index: 1;
}

.hero-images:hover .img1 {
    transform: rotate(-10deg) translateX(-220px) translateY(-10px) scale(0.95);
    filter: brightness(1.05);
}

.hero-images:hover .img2 {
    transform: rotate(0deg) translateY(-10px) scale(1.06);
    filter: brightness(1.1);
}

.hero-images:hover .img3 {
    transform: rotate(10deg) translateX(220px) translateY(-10px) scale(0.95);
    filter: brightness(1.05);
}

/* ===== 4. PORTFOLIO SHOWCASE ===== */
.portfolio-showcase {
    padding: 100px 0;
    background: #000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title em {
    font-style: normal;
    font-weight: 400;
    color: #19d27c;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.portfolio-category {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.portfolio-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.1);
}

.category-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.category-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image,
.category-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-category:hover .category-image,
.portfolio-category:hover .category-video {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: background 0.3s ease;
}

.portfolio-category:hover .category-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.category-info {
    width: 100%;
    text-align: center;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.category-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 300;
}

.view-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.view-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.portfolio-category:hover .view-button {
    background: #19d27c;
    color: white;
    transform: translateX(5px);
}

/* ===== 5. REEL SHOWCASE ===== */
.reel-showcase {
    padding: 100px 0;
    background: #000;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.showcase-title em {
    font-style: normal;
    font-weight: 400;
    color: #19d27c;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.showcase-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.showcase-track {
    display: flex;
    gap: 25px;
    padding: 0 60px;
    cursor: grab;
    will-change: transform;
    width: max-content;
}

.showcase-track:active {
    cursor: grabbing;
}

.reel-card {
    flex: 0 0 280px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.reel-player {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: #000;
}

.reel-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.reel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reel-card:hover .reel-thumbnail img {
    transform: scale(1.05);
}

.reel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reel-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #000;
    font-size: 1.8rem;
    margin-left: 5px;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reel-card:hover .reel-overlay {
    opacity: 1;
}



.reel-card:hover {
    transform: translateY(0);
}

.reel-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.reel-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.reel-duration {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

/* Video Embed Functionality */
.video-embed-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.video-embed-container.active {
    opacity: 1;
    pointer-events: all;
}

.video-embed {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.reel-player.playing .reel-thumbnail,
.reel-player.playing .play-button,
.reel-player.playing .reel-overlay {
    opacity: 0;
    pointer-events: none;
}

.reel-player.playing .video-embed-container {
    opacity: 1;
    pointer-events: all;
}

.video-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.reel-player.playing .video-close {
    opacity: 1;
}

.video-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Showcase Controls */
.showcase-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.control-btn {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.control-btn:hover {
    background: white;
    color: black;
    border-color: white;
    transform: scale(1.1);
}

.showcase-cta {
    text-align: center;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.youtube-btn i {
    font-size: 1.5rem;
}

/* ===== 6. FOOTER ===== */
.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #19d27c;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #19d27c;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== 7. FLOATING WHATSAPP BUTTON ===== */
.floating-message-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 999;
    animation: floatWhatsApp 3s ease-in-out infinite;
}

.floating-message-icon:hover {
    background: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes floatWhatsApp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== 8. LIGHT MODE ===== */
body.light-mode {
    background: #ffffff;
    color: #111;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .nav-link {
    color: rgba(0, 0, 0, 0.8);
}

body.light-mode .nav-link:hover {
    color: #000;
}

body.light-mode .nav-link::after {
    background: #000;
}

body.light-mode .hamburger-line {
    background: #333;
}

body.light-mode .hero-section {
    background: #ffffff;
}

body.light-mode .hero-title {
    color: #111;
}

body.light-mode .hero-title span {
    color: #666;
}

body.light-mode .text .availability {
    background: #f6f6f6;
    color: #444;
}

body.light-mode .tagline {
    color: #111;
}

body.light-mode .intro {
    color: #333;
}

body.light-mode .message-btn {
    background: #111;
    color: #fff;
}

body.light-mode .portfolio-showcase,
body.light-mode .reel-showcase {
    background: #f8f9fa;
}

body.light-mode .section-title {
    color: #111;
}

body.light-mode .section-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .control-btn {
    border-color: rgba(0, 0, 0, 0.3);
    color: #111;
}

body.light-mode .control-btn:hover {
    background: #111;
    color: white;
}

body.light-mode .portfolio-category {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

body.light-mode .category-overlay {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(0, 0, 0, 0.8) 100%);
}

/* ===== 9. MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {

    /* Navigation Mobile */
    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .hamburger {
        display: flex;
    }

    .theme-toggle-desktop {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.4s ease;
        width: 100%;
        text-align: center;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem;
        display: block;
    }

    /* Hero Mobile */
    .hero-section {
        padding: 5rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span {
        font-size: 2rem;
    }

    .intro {
        max-width: 100%;
        font-size: 1rem;
    }

    .message-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero Images Mobile */
    .hero-images {
        height: 300px;
        order: -1;
    }

    .hero-images .img {
        width: 85%;
    }

    .img1 {
        transform: rotate(-3deg) translateX(-40px) translateY(5px);
    }

    .img2 {
        transform: rotate(1deg) translateY(-5px);
    }

    .img3 {
        transform: rotate(3deg) translateX(40px) translateY(5px);
    }

    /* Disable hover effects on mobile */
    .hero-images:hover .img1,
    .hero-images:hover .img2,
    .hero-images:hover .img3 {
        transform: none;
        filter: none;
    }

    /* Enhanced Portfolio for Mobile */
    .portfolio-showcase {
        padding: 60px 0 !important;
    }

    .portfolio-grid-large {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 10px;
    }

    .portfolio-category {
        aspect-ratio: 3/4 !important;
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .category-overlay {
        padding: 30px !important;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.9) 100%);
    }

    .category-title {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }

    .category-count {
        font-size: 1.2rem !important;
        margin-bottom: 25px !important;
    }

    .view-button {
        padding: 15px 30px !important;
        font-size: 1.1rem !important;
        border-radius: 30px !important;
    }

    .section-header {
        margin-bottom: 50px !important;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Reel Showcase Mobile */
    .reel-showcase {
        padding: 60px 1.5rem;
    }

    .showcase-track {
        padding: 0 1.5rem;
        gap: 15px;
    }

    .reel-card {
        flex: 0 0 220px;
    }

    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-column {
        min-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    /* WhatsApp Button Mobile */
    .floating-message-icon {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    /* Light mode mobile */
    body.light-mode .nav-menu {
        background: rgba(255, 255, 255, 0.98);
    }
}

/* ===== 10. SMALL MOBILE (< 480px) ===== */
@media screen and (max-width: 480px) {

    /* Hide images on small phones */
    .hero-images {
        display: none !important;
    }

    /* Enhanced hero for small mobile */
    .hero-section {
        padding: 5rem 1.5rem 2rem;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title span {
        font-size: 2.2rem;
    }

    /* Enhanced portfolio for small mobile */
    .portfolio-grid-large {
        gap: 25px !important;
    }

    .portfolio-category {
        aspect-ratio: 2/3 !important;
        max-width: 100%;
    }

    .category-overlay {
        padding: 25px !important;
    }

    .category-title {
        font-size: 1.8rem !important;
    }

    .category-count {
        font-size: 1.1rem !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .reel-card {
        flex: 0 0 180px;
    }

    .showcase-track {
        gap: 12px;
    }

    .floating-message-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ===== 11. TABLET OPTIMIZATIONS ===== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .portfolio-grid-large {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .portfolio-category {
        aspect-ratio: 4/3 !important;
    }
}

/* ===== 12. TOUCH-FRIENDLY INTERACTIONS ===== */
@media (pointer: coarse) {
    .portfolio-category:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* ===== 13. UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

em {
    font-style: normal;
    color: #19d27c;
}

/* Hide scrollbar but keep functionality */
.showcase-container {
    overflow: hidden;
    position: relative;
}

.showcase-container::-webkit-scrollbar {
    display: none;
}

.showcase-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Loading state */
body.loaded {
    opacity: 1;
}

/* Ensure cloned reel cards are visible */
.reel-card.clone {
    opacity: 1;
    visibility: visible;
}

/* ===== 14. ACCESSIBILITY ===== */
a:focus,
button:focus,
.nav-link:focus {
    outline: 2px solid #19d27c;
    outline-offset: 4px;
}

.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
}

.skip-to-main:focus {
    left: 0;
    background: #19d27c;
    color: white;
    padding: 10px 20px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== 8. LIGHT MODE ===== */
body.light-mode {
    background: #ffffff;
    color: #111;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .nav-link {
    color: rgba(0, 0, 0, 0.8);
}

body.light-mode .nav-link:hover {
    color: #000;
}

body.light-mode .nav-link::after {
    background: #000;
}

body.light-mode .hamburger-line {
    background: #333;
}

body.light-mode .hero-section {
    background: #ffffff;
}

body.light-mode .hero-title {
    color: #111;
}

body.light-mode .hero-title span {
    color: #666;
}

body.light-mode .text .availability {
    background: #f6f6f6;
    color: #444;
}

body.light-mode .tagline {
    color: #111;
}

body.light-mode .intro {
    color: #333;
}

/* FIX FOR STRONG TAGS IN LIGHT MODE */
body.light-mode .intro strong {
    color: #000 !important;
    /* Force black color in light mode */
    font-weight: 700;
    background: none !important;
    /* Remove any gradient backgrounds */
    -webkit-text-fill-color: #000 !important;
    /* Ensure WebKit browsers use black */
    background-clip: unset !important;
    /* Reset background clip */
}

body.light-mode .message-btn {
    background: #111;
    color: #fff;
}

body.light-mode .portfolio-showcase,
body.light-mode .reel-showcase {
    background: #f8f9fa;
}

body.light-mode .section-title {
    color: #111;
}

body.light-mode .section-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .control-btn {
    border-color: rgba(0, 0, 0, 0.3);
    color: #111;
}

body.light-mode .control-btn:hover {
    background: #111;
    color: white;
}

body.light-mode .portfolio-category {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

body.light-mode .category-overlay {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(0, 0, 0, 0.8) 100%);
}

/* Additional fixes for any other strong tags */
body.light-mode strong {
    color: #000 !important;
    font-weight: 700;
}

/* Ensure no white text remains in light mode */
body.light-mode .hero-content .text * {
    color: #333 !important;
}

body.light-mode .hero-content .text strong {
    color: #000 !important;
    font-weight: 800;
}

/* ===== REELS PAGE STYLES ===== */
.reels-page {
    padding: 120px 0 80px;
    background: #000;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-title em {
    font-style: normal;
    font-weight: 400;
    color: #19d27c;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Reels Grid */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reel-item {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.reel-thumb {
    position: relative;
    aspect-ratio: 9/16;
    /* Enforce vertical reel format */
    overflow: hidden;
    background: #000;
}

.reel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reel-item:hover .reel-thumb img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reel-item:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: white;
    background: rgba(25, 210, 124, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}



.reel-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.reel-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.reel-duration {
    font-size: 0.85rem;
    color: #19d27c;
    font-weight: 600;
    background: rgba(25, 210, 124, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* CTA Button */
.reels-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.cta-button:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.cta-button i {
    font-size: 1.5rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
}

.video-container {
    width: 100%;
    aspect-ratio: 9/16;
    /* Enforce vertical reel format in modal */
    background: #000;
    max-height: 90vh;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Light Mode */
body.light-mode .reels-page {
    background: #f8f9fa;
}

body.light-mode .page-title {
    color: #111;
}

body.light-mode .page-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .reel-item {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .reel-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body.light-mode .reel-name {
    color: #111;
}

body.light-mode .reel-category {
    color: rgba(0, 0, 0, 0.7);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .reels-page {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .reels-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }

    .reel-name {
        font-size: 1.1rem;
    }

    .modal-content {
        margin: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .theme-toggle-mobile {
        display: flex;
        justify-content: center;
    }

    .theme-toggle-desktop {
        display: none;
    }
}

body.light-mode .footer {
    background: #ffffff;
    color: #333;
    border-top: 1px solid #e9ecef;
}

body.light-mode .footer-column h3 {
    color: #111;
}

body.light-mode .footer-column a {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .footer-column p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode .social-icons a {
    color: rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .social-icons a:hover {
    background: #19d27c;
    color: white;
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.5);
}

/* Services section light mode */
body.light-mode .gk-services .gk-black {
    color: #000;
}

body.light-mode .gk-services .gk-gray {
    color: #989898;
}

body.light-mode .gk-services .gk-right li {
    color: #000;
}