/* ==========================================================================
   PAISAJE SAM - MASTER STYLESHEET
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #f5f1e6;
    color: #4a4a4a;
    scroll-behavior: smooth;
}

body {
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.page-transition {
    opacity: 0;
    transform: scale(1.01);
    transition: all 0.5s ease;
}

/* ==========================================================================
   PREMIUM LOADER
   ========================================================================== */

#premium-loader {
    position: fixed;
    inset: 0;
    z-index: 100000000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4eee1;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#premium-loader.hide-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    position: relative;
    color: #8e8362;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-logo::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8e8362, transparent);
    transform: translateX(-50%);
    animation: loaderLine 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loaderLine {
    0%,
    100% {
        width: 40px;
        opacity: 0.35;
    }

    50% {
        width: 150px;
        opacity: 1;
    }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999998;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   UNIVERSAL FIXED NAVBAR
   ========================================================================== */

.custom-global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px !important;
    background-color: #f4eee1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10% !important;
    z-index: 999999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(142, 131, 98, 0.15);
}

.custom-global-nav .logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.custom-global-nav .logo-img {
    height: 60px !important;
    width: auto !important;
    max-height: 60px !important;
    object-fit: contain;
    display: block;
}

.custom-global-nav .logo-text {
    font-size: 24px !important;
    font-weight: 800;
    letter-spacing: 2px;
    color: #8e8362;
    text-transform: uppercase;
}

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

.custom-global-nav .nav-links li a {
    font-size: 14px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-global-nav .nav-links li a:hover,
.custom-global-nav .nav-links li a.active {
    color: #8e8362;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: #8e8362;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* ==========================================================================
   HOME HERO
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.video-slide.active {
    opacity: 1;
    z-index: 2;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

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

.desktop-video {
    display: block !important;
}

.hero-water-content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.hero .water-wave {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.hero .water-wave span {
    display: inline-block;
    font-size: 82px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: smoothWater 3s infinite ease-in-out;
}

.hero .water-wave span:nth-child(1) { animation-delay: 0s; }
.hero .water-wave span:nth-child(2) { animation-delay: 0.1s; }
.hero .water-wave span:nth-child(3) { animation-delay: 0.2s; }
.hero .water-wave span:nth-child(4) { animation-delay: 0.3s; }
.hero .water-wave span:nth-child(5) { animation-delay: 0.4s; }
.hero .water-wave span:nth-child(6) { animation-delay: 0.5s; }
.hero .water-wave span:nth-child(7) { animation-delay: 0.6s; }
.hero .water-wave span:nth-child(8) { animation-delay: 0.7s; }
.hero .water-wave span:nth-child(9) { animation-delay: 0.8s; }
.hero .water-wave span:nth-child(10) { animation-delay: 0.9s; }

@keyframes smoothWater {
    0%,
    100% {
        transform: translateY(0);
        color: #ffffff;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-15px);
        color: #f4eee1;
        text-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }
}

.hero-water-content p {
    margin-top: 20px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

body.home-page .hero,
body.home-page .video-container,
body.home-page .video-slide,
body.home-page video {
    margin-top: 0 !important;
}

body.home-page .hero {
    padding-top: 90px !important;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-hero-bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: calc(170vh - 120px);
    margin-top: 90px;
    padding: 20px;
    padding-top: 50px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url("about-photo.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-photo-content {
    margin-top: -60px;
    max-width: 700px;
    text-align: center;
    color: #ffffff;
}

.about-photo-content h1 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #f4eee1;
    letter-spacing: 2px;
}

.about-description p {
    font-size: 17px;
    line-height: 2;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button-light {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 15px;
    background-color: #f4eee1;
    color: #4a4a4a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.cta-button-light:hover {
    background-color: #8e8362;
    color: #ffffff;
}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

main {
    padding-top: 90px;
}

.home-main-wrapper {
    padding-top: 0;
}

.content-section,
.projects-section {
    padding: 140px 10% 80px;
}

.content-section .title,
.projects-title {
    font-size: 40px;
    font-weight: 800;
    color: #8e8362;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

/* ==========================================================================
   SERVICES AND PROJECTS
   ========================================================================== */

.services-grid,
.projects-gallery,
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-card,
.gallery-card,
.video-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(142, 131, 98, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    width: 100%;
    padding: 0;
    text-align: left;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.service-card {
    padding: 0;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background: #e8e1d0;
    border-bottom: 3px solid #8e8362;
    filter: saturate(1.05) contrast(1.04);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.035);
    filter: saturate(1.12) contrast(1.08);
}

.service-card h3,
.service-card p {
    padding-left: 28px;
    padding-right: 28px;
}

.service-card h3 {
    padding-top: 26px;
}

.service-card p {
    padding-bottom: 32px;
}

.service-card:hover,
.gallery-card:hover,
.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(142, 131, 98, 0.12);
    border-color: #8e8362;
}

.service-card h3 {
    color: #8e8362;
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-card p,
.gallery-card p,
.video-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
}

.gallery-card p,
.video-card p {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: #4a4a4a;
}

.gallery-card img,
.video-thumb-box {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-card img {
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.03);
}

.video-thumb-box {
    position: relative;
    background: #000000;
}

.video-thumb-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.play-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(142, 131, 98, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.video-card:hover .play-overlay-icon {
    background: #8e8362;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ==========================================================================
   PROJECT TABS
   ========================================================================== */

.project-switch-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.switch-btn {
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #8e8362;
    background: transparent;
    color: #8e8362;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.switch-btn.active-switch,
.switch-btn:hover {
    background: #8e8362;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(142, 131, 98, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active-tab {
    display: block;
}

/* ==========================================================================
   LIGHTBOX AND SLIDER
   ========================================================================== */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-media-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: none;
    transition: opacity 0.25s ease;
}

.lightbox-video {
    width: 100%;
    height: 450px;
    max-height: 75vh;
    display: none;
    outline: none;
    background: #000000;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    z-index: 10000000;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 45px;
    line-height: 1;
    cursor: pointer;
    font-weight: 300;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(142, 131, 98, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 28px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 10000005;
}

.slider-btn:hover {
    background: #8e8362;
    box-shadow: 0 0 15px rgba(142, 131, 98, 0.6);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-container {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(142, 131, 98, 0.2);
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    color: #4a4a4a;
    outline: none;
    transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus {
    border-color: #8e8362;
    box-shadow: 0 0 8px rgba(142, 131, 98, 0.15);
}

.premium-form button {
    background: #8e8362;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.premium-form button:hover {
    background: #72694e;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer,
.global-shared-footer {
    background-color: #e8e1d0;
    padding: 22px 10% !important;
    border-top: 1px solid rgba(142, 131, 98, 0.2);
    margin-top: 0;
    position: relative;
    z-index: 20;
    display: block;
    width: 100%;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.footer-box {
    min-width: 220px;
}

.footer-box h4 {
    margin: 0 0 12px;
    color: #8e8362;
    font-size: 16px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-box p {
    font-size: 13px !important;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.footer-box a {
    text-decoration: none;
    color: #8e8362;
    font-weight: 700;
    font-size: 14px !important;
    transition: 0.3s ease;
}

.footer-box a:hover {
    color: #72694e;
}

.copy-right {
    margin-top: 10px;
    text-align: center;
    font-size: 12px !important;
    color: #8e8362;
    font-weight: 600;
    border-top: 1px solid rgba(142, 131, 98, 0.1);
    padding-top: 10px;
}

/* ==========================================================================
   PROJECT FOLDERS
   ========================================================================== */

.folders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 30px 0;
    width: 100%;
}

.folder-card {
    background: #ffffff;
    border: 1px solid rgba(142, 131, 98, 0.15);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.folder-card:hover {
    transform: translateY(-8px);
    border-color: #8e8362;
    box-shadow: 0 20px 40px rgba(142, 131, 98, 0.12);
}

.folder-icon-box {
    position: relative;
    width: 130px;
    height: 95px;
    margin: 0 auto 20px;
    background: #e0b848;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.folder-card:hover .folder-icon-box {
    transform: scale(1.03);
}

.folder-icon-box::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 50px;
    height: 12px;
    background: #e0b848;
    border-radius: 8px 8px 0 0;
}

.folder-preview-img {
    position: absolute;
    bottom: 6px;
    left: 5%;
    width: 90%;
    height: 80%;
    object-fit: cover;
    border-radius: 6px;
    background: #f5f1e6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.folder-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #4a4a4a;
    margin: 15px 0 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.folder-card:hover h3 {
    color: #8e8362;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

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

/* ==========================================================================
   DESKTOP CURSOR
   ========================================================================== */

@media (min-width: 992px) {
    body {
        cursor: default;
    }

    a,
    button,
    .gallery-card,
    .service-card,
    .video-card,
    .folder-card {
        cursor: pointer;
    }
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 992px) {
    .lightbox-media-box {
        max-width: 90%;
    }

    .slider-btn {
        background: rgba(0, 0, 0, 0.6);
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden !important;
        min-height: 100svh;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: auto;
    }

    .custom-global-nav {
        height: 70px !important;
        padding: 0 18px !important;
    }

    .custom-global-nav .logo-container {
        gap: 10px !important;
    }

    .custom-global-nav .logo-img {
        height: 38px !important;
        max-height: 38px !important;
    }

    .custom-global-nav .logo-text {
        font-size: 16px !important;
        letter-spacing: 1px !important;
    }

    .mobile-menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 1000000;
    }

    .custom-global-nav .nav-links {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 70px !important;
        left: -100%;
        width: 100%;
        background: #f4eee1;
        padding: 20px 0 !important;
        gap: 20px !important;
        transition: left 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .custom-global-nav .nav-links.open {
        left: 0;
    }

    .custom-global-nav .nav-links li {
        text-align: center;
    }

    .custom-global-nav .nav-links li a {
        font-size: 14px !important;
    }

    main,
    .home-main-wrapper {
        padding-top: 70px !important;
    }

    .content-section,
    .projects-section {
        padding: 100px 20px 60px !important;
    }

    .content-section .title,
    .projects-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

    .hero {
        min-height: 100svh !important;
        height: 100svh !important;
        margin-top: 0 !important;
        padding-top: 70px !important;
        overflow: hidden !important;
    }

    body.home-page .hero {
        padding-top: 70px !important;
    }

    .desktop-video {
        display: none !important;
    }

    .mobile-video {
        display: block !important;
    }

    .video-slide video {
        object-fit: cover !important;
        object-position: center !important;
    }

    .hero-water-content {
        width: 100% !important;
        padding: 0 15px !important;
        top: 50% !important;
    }

    .hero .water-wave {
        gap: 5px !important;
    }

    .hero .water-wave span {
        font-size: 34px !important;
        line-height: 40px !important;
    }

    .hero-water-content p {
        font-size: 12px !important;
        letter-spacing: 3px !important;
        margin-top: 10px !important;
    }

    .about-hero-bg {
        background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)), url("about-mobile.jpg") !important;
        background-size: 145% auto !important;
        background-repeat: no-repeat !important;
        background-position: center 38px !important;
        background-color: #000000 !important;
        background-attachment: scroll !important;
        min-height: 100svh !important;
        height: auto !important;
        margin-top: 0 !important;
        padding: 78px 20px 80px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .about-photo-content {
        margin-top: 12px !important;
        position: relative;
        z-index: 5;
    }

    .about-photo-content h1 {
        font-size: 23px !important;
        margin-bottom: 14px !important;
    }

    .about-description p {
        font-size: 13px !important;
        line-height: 1.55 !important;
        margin-bottom: 8px !important;
    }

    .cta-button-light {
        padding: 10px 22px !important;
        font-size: 12px !important;
        margin-top: 8px !important;
    }

    .services-grid,
    .projects-gallery,
    .video-grid,
    .folders-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .gallery-card img,
    .video-thumb-box,
    .service-card-img {
        height: 230px !important;
    }

    .project-switch-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .switch-btn {
        width: 220px !important;
    }

    .lightbox-media-box {
        max-width: 95% !important;
    }

    .lightbox-video {
        height: auto !important;
    }

    .slider-btn {
        width: 42px !important;
        height: 42px !important;
        font-size: 18px !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }

    .prev-btn {
        left: 10px !important;
    }

    .next-btn {
        right: 10px !important;
    }

    .premium-form input,
    .premium-form textarea {
        font-size: 14px !important;
    }

    footer,
    .global-shared-footer {
        padding: 30px 20px !important;
    }

    .footer-grid {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
    }

    .copy-right {
        margin-top: 20px !important;
    }

    .loader-logo {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 18px;
        bottom: 18px;
        font-size: 24px;
    }
}

/* ==========================================================================
   PREMIUM MOBILE EXPERIENCE LAYER
   ========================================================================== */

@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: rgba(142, 131, 98, 0.18);
    }

    body {
        background:
            radial-gradient(circle at top, rgba(142, 131, 98, 0.12), transparent 32%),
            #f5f1e6;
    }

    #premium-loader {
        background:
            radial-gradient(circle at center, rgba(142, 131, 98, 0.16), transparent 42%),
            #f4eee1;
    }

    .loader-logo {
        font-size: 22px !important;
        letter-spacing: 4px !important;
    }

    .custom-global-nav {
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        background: rgba(244, 238, 225, 0.94) !important;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: background 0.25s ease, transform 0.25s ease;
    }

    .mobile-menu-toggle:active {
        background: rgba(142, 131, 98, 0.12);
        transform: scale(0.94);
    }

    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .custom-global-nav .nav-links {
        width: calc(100% - 28px) !important;
        left: 14px !important;
        right: 14px !important;
        top: 78px !important;
        padding: 18px 0 !important;
        border-radius: 14px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        border: 1px solid rgba(142, 131, 98, 0.16);
    }

    .custom-global-nav .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .custom-global-nav .nav-links li a {
        display: inline-flex;
        min-height: 38px;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border-radius: 999px;
    }

    .custom-global-nav .nav-links li a.active {
        background: rgba(142, 131, 98, 0.12);
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 4;
        pointer-events: none;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.04) 36%,
            rgba(0, 0, 0, 0.38)
        );
    }

    .hero-water-content {
        top: 52% !important;
    }

    .hero .water-wave span {
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55) !important;
    }

    .hero-water-content p {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .content-section,
    .projects-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .service-card,
    .gallery-card,
    .video-card,
    .folder-card {
        border-radius: 14px !important;
        box-shadow: 0 14px 35px rgba(68, 57, 35, 0.08) !important;
        transform: translateZ(0);
    }

    .service-card:active,
    .gallery-card:active,
    .video-card:active,
    .folder-card:active,
    .switch-btn:active,
    .premium-form button:active,
    .cta-button-light:active {
        transform: scale(0.985) !important;
    }

    .service-card-img {
        height: 235px !important;
    }

    .service-card h3 {
        font-size: 20px !important;
        line-height: 1.35;
        padding-top: 22px !important;
    }

    .service-card p {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }

    .switch-btn,
    .premium-form button,
    .cta-button-light {
        min-height: 48px;
        box-shadow: 0 10px 24px rgba(142, 131, 98, 0.16);
    }

    .premium-form input,
    .premium-form textarea {
        min-height: 52px;
        border-radius: 12px !important;
    }

    .whatsapp-float {
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.32);
    }

    .whatsapp-float:active {
        transform: scale(0.94);
    }

    body.page-transition {
        transform: none;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .service-card,
    .gallery-card,
    .video-card,
    .folder-card {
        animation: mobileCardRise 0.55s ease both;
    }

    @keyframes mobileCardRise {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
