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

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.2) #050505;
        }

        html::-webkit-scrollbar { width: 6px; }
        html::-webkit-scrollbar-track { background: #050505; }
        html::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s ease;
        }
        html::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.45); }

        html, body {
            width: 100%;
            font-family: 'Montserrat', sans-serif;
            background-color: #000;
            color: #ffffff;
            overflow-x: hidden;
        }

        body { overflow-y: visible; }

        /* Custom scrollbar for services */
        .services-wrapper .cards-track {
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.1);
        }
        .services-wrapper .cards-track::-webkit-scrollbar { height: 8px; }
        .services-wrapper .cards-track::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); border-radius: 10px; }
        .services-wrapper .cards-track::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.5); }
        .services-wrapper .cards-track::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }

        /* Hero */
        .hero-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%; min-height: 100%;
            width: auto; height: auto;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 2;
            pointer-events: none;
        }

        /* Navbar */
        .site-navbar {
            position: fixed;
            top: 0; left: 0; width: 100%;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: clamp(14px, 2.5vh, 25px) clamp(20px, 5vw, 50px);
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
            backdrop-filter: blur(2px);
            opacity: 0;
            visibility: hidden;
            animation: fadeInNav 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }

        @keyframes fadeInNav {
            0% { opacity: 0; visibility: hidden; transform: translateY(-10px); }
            100% { opacity: 1; visibility: visible; transform: translateY(0); }
        }

        .brand-logo-container {
            display: flex;
            align-items: center;
            gap: 4px;
            text-decoration: none;
        }

        .brand-logo-img {
            width: clamp(70px, 15vw, 110px);
            height: auto;
            object-fit: contain;
            margin-right: -18px;
            filter: invert(100%) brightness(200%) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
        }

        .brand-text-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .brand-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(0.8rem, 2.1vw, 1.1rem);
            font-weight: 800;
            letter-spacing: 0.7px;
            color: #ffffff;
            line-height: 1.1;
            text-shadow: 0 2px 6px rgba(0,0,0,0.6);
        }

        .brand-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.45rem, 1.1vw, 0.65rem);
            font-weight: 800;
            letter-spacing: 1.8px;
            color: #ececec;
            margin-top: 1px;
            text-shadow: 0 1px 4px rgba(0,0,0,0.6);
        }

        .brand-slogan-box, .brand-slogan-text { display: none; }

        .nav-right-container {
            display: flex;
            align-items: center;
            gap: clamp(15px, 2.5vw, 30px);
        }

        .nav-links {
            display: flex;
            gap: clamp(14px, 2vw, 28px);
            list-style: none;
        }

        .nav-link {
            position: relative;
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.72rem, 1vw, 0.88rem);
            font-weight: 600;
            color: #cccccc;
            text-decoration: none;
            letter-spacing: 0.8px;
            padding-bottom: 4px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
            transition: color 0.3s ease;
        }

        .nav-link:hover { color: #ffffff; }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background-color: #ffffff;
            transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }

        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        .nav-link.active { color: #ffffff; font-weight: 700; }

        .dropdown { position: relative; }

        .dynamic-service-btn {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(0.62rem, 0.88vw, 0.78rem);
            font-weight: 700;
            letter-spacing: 0.7px;
            color: #ffffff;
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            width: clamp(120px, 14vw, 165px);
            height: clamp(36px, 4vw, 42px);
            padding: 0 8px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            text-transform: uppercase;
        }

        .dynamic-service-btn:hover {
            background: #ffffff;
            border-color: #ffffff;
            color: #000000;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            min-width: 165px;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 6px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            gap: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu, .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 5px;
            letter-spacing: 0.5px;
            transition: background 0.2s ease, color 0.2s ease;
            text-align: left;
            display: block;
        }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
        }

        .menu-toggle-btn {
            display: none;
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            width: 38px; height: 38px;
            border-radius: 6px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .menu-toggle-btn span {
            display: block;
            width: 100%; height: 2px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .menu-toggle-btn:hover {
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }

        .sidebar-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .sidebar-overlay.open { opacity: 1; visibility: visible; }

        .mobile-sidebar {
            position: fixed;
            top: 0; right: -280px;
            width: 280px; height: 100%;
            background: rgba(12, 12, 12, 0.98);
            backdrop-filter: blur(15px);
            border-left: 1px solid rgba(255, 255, 255, 0.12);
            z-index: 201;
            display: flex;
            flex-direction: column;
            padding: 25px 20px;
            transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            overflow-y: auto;
        }

        .mobile-sidebar.open { right: 0; }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .sidebar-close-btn {
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.4rem;
            cursor: pointer;
            width: 32px; height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background 0.2s ease;
        }

        .sidebar-close-btn:hover { background: rgba(255, 255, 255, 0.1); }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-nav-link {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #cccccc;
            text-decoration: none;
            letter-spacing: 0.8px;
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .mobile-nav-link:hover, .mobile-nav-link.active {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        /* Sidebar socials (mobile only) */
        .sidebar-socials {
            display: none;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-socials-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #888;
            text-transform: uppercase;
            margin-bottom: 15px;
            text-align: center;
        }

        .sidebar-socials-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .sidebar-social-icon {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: #b0b0b0;
            text-decoration: none;
            transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }

        .sidebar-social-icon svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .sidebar-social-icon:hover {
            color: #ffffff;
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-3px);
        }

        /* Right Center Social Icons (Desktop only) */
        .right-center-social {
            position: fixed;
            right: clamp(20px, 3vw, 45px);
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .social-icon-link {
            width: 24px; height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b0b0b0;
            text-decoration: none;
            transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
        }

        .social-icon-link svg {
            width: 17px; height: 17px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.3s ease;
        }

        .social-icon-link:hover {
            color: #ffffff;
            transform: translateY(-2px);
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
        }

        .social-icon-link:hover svg { transform: scale(1.15); stroke-width: 2; }

        .social-divider {
            width: 1px; height: 30px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
            margin: 2px 0;
        }

        /* Bottom left scroll */
        .bottom-left-scroll {
            position: fixed;
            left: clamp(20px, 3vw, 45px);
            bottom: 40px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .bottom-left-scroll.hidden-on-footer { opacity: 0; visibility: hidden; }

        .scroll-text-vertical {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 2.2px;
            color: #b0b0b0;
            text-transform: uppercase;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            white-space: nowrap;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        }

        .scroll-arrow-icon {
            width: 16px; height: 16px;
            stroke: #b0b0b0;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            animation: bounceIndicatorVertical 2s infinite ease-in-out;
        }

        @keyframes bounceIndicatorVertical {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(6px); }
            60% { transform: translateY(3px); }
        }

        /* Hero dots */
        .hero-dots-container {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
            padding: 8px 14px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-dot {
            width: 7px; height: 7px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, transform 0.3s ease;
        }

        .hero-dot.active {
            width: 22px;
            background-color: #ffffff;
            border-radius: 4px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
        }

        .hero-dot:hover { background-color: rgba(255, 255, 255, 0.7); }

        /* Hero text */
        .hero-content-center {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 850px;
            padding: 0 20px;
            margin-top: 20px;
        }

        .hero-tagline-wrapper {
            min-height: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: heroWrapPulse 4s ease-in-out infinite;
        }

        @keyframes heroWrapPulse {
            0%, 100% { filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
            50% { filter: drop-shadow(0 0 15px rgba(255,255,255,0.3)); }
        }

        .hero-title-main {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.6rem, 4.5vw, 3.4rem);
            font-weight: 800;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            margin-bottom: 12px;
        }

        .hero-desc-sub {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.85rem, 1.8vw, 1.2rem);
            font-weight: 500;
            color: #e0e0e0;
            letter-spacing: 0.8px;
            line-height: 1.5;
            max-width: 680px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            margin-bottom: 24px;
        }

        .hero-action-btn {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(0.72rem, 1vw, 0.85rem);
            font-weight: 700;
            letter-spacing: 1px;
            color: #000000;
            background: #ffffff;
            border: none;
            padding: 12px 28px;
            border-radius: 6px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

        .hero-action-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
        }

        @keyframes heroTextIn {
            0% { opacity: 0; transform: translateY(20px) scale(0.98); filter: blur(8px); }
            100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
        }

        @keyframes heroTextOut {
            0% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
            100% { opacity: 0; transform: translateY(-20px) scale(0.98); filter: blur(8px); }
        }

        .animate-in { animation: heroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        .animate-out { animation: heroTextOut 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

        /* SERVICES */
        .service-page-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background-color: #080808;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0;
            overflow: hidden;
            z-index: 5;
        }

        .services-wrapper {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: #0c0c0c;
            color: #ffffff;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            --bg-color: #0c0c0c;
            --text-main: #ffffff;
            --text-muted: #888888;
            --accent-red: #ffffff;
            --whatsapp-green: #25D366;
            --transition-slow: 0.8s cubic-bezier(0.75, 0, 0.25, 1);
            --card-gap: 15px;
            --visible-cards: 8;
        }

        .services-wrapper .ambient-bg {
            position: absolute;
            inset: -20px;
            background-size: cover;
            background-position: center;
            filter: blur(14px) brightness(0.4) saturate(1.1);
            transform: scale(1.05);
            transition: background-image 1s ease, opacity 0.8s ease;
            z-index: 0;
            pointer-events: none;
        }

        .services-wrapper .ambient-overlay {
            position: absolute;
            inset: 0;
            background: rgba(12, 12, 12, 0.75);
            z-index: 1;
            pointer-events: none;
        }

        .services-wrapper aside {
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 22px;
            padding-left: 40px;
            z-index: 999;
            background: linear-gradient(90deg, rgba(12,12,12,0.85) 80%, rgba(12,12,12,0) 100%);
            backdrop-filter: blur(5px);
        }

        .services-wrapper aside a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: color 0.3s, transform 0.3s;
            white-space: nowrap;
            cursor: pointer;
            display: block;
        }

        .services-wrapper aside a:hover, .services-wrapper aside a.active {
            color: var(--text-main);
            transform: translateX(5px);
        }

        .services-wrapper .scroll-wrapper {
            position: relative;
            width: 100%; height: 100vh;
            z-index: 2;
            transition: transform var(--transition-slow);
            will-change: transform;
        }

        .services-wrapper .home-view {
            width: 100%; height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-left: 240px;
            padding-right: 40px;
        }

        .premium-services-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: 0 4px 15px rgba(0,0,0,0.8);
            margin-bottom: 30px;
            text-align: center;
            z-index: 10;
            position: relative;
        }

        .services-wrapper .cards-track {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: var(--card-gap);
            width: 100%;
            height: 60vh;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            transition: gap var(--transition-slow);
        }

        .services-wrapper .card {
            position: relative;
            width: calc((100% - (var(--card-gap) * (var(--visible-cards) - 1))) / var(--visible-cards));
            height: 100%;
            flex-shrink: 0;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            filter: brightness(0.6) grayscale(30%);
            transition: all var(--transition-slow);
            transform-origin: center;
            background-color: #1a1a1a;
            animation: servicesCardFloat 3s ease-in-out infinite;
        }

        .services-wrapper .card:nth-child(odd) { animation-direction: normal; }
        .services-wrapper .card:nth-child(even) { animation-direction: reverse; }
        .services-wrapper .card:nth-child(1) { animation-delay: 0s; }
        .services-wrapper .card:nth-child(2) { animation-delay: 0.3s; }
        .services-wrapper .card:nth-child(3) { animation-delay: 0.6s; }
        .services-wrapper .card:nth-child(4) { animation-delay: 0.9s; }
        .services-wrapper .card:nth-child(5) { animation-delay: 1.2s; }
        .services-wrapper .card:nth-child(6) { animation-delay: 1.5s; }
        .services-wrapper .card:nth-child(7) { animation-delay: 1.8s; }
        .services-wrapper .card:nth-child(8) { animation-delay: 2.1s; }
        .services-wrapper .card:nth-child(9) { animation-delay: 2.4s; }
        .services-wrapper .card:nth-child(10) { animation-delay: 2.7s; }

        @keyframes servicesCardFloat {
            0%, 100% { translate: 0 0; }
            50% { translate: 0 -6px; }
        }

        .services-wrapper.state-home .card:nth-child(1) { height: 80%; transform: translateY(-5%); }
        .services-wrapper.state-home .card:nth-child(2) { height: 95%; transform: translateY(5%); }
        .services-wrapper.state-home .card:nth-child(3) { height: 85%; transform: translateY(10%); }
        .services-wrapper.state-home .card:nth-child(4) { height: 100%; transform: translateY(-2%); }
        .services-wrapper.state-home .card:nth-child(5) { height: 90%; transform: translateY(8%); }
        .services-wrapper.state-home .card:nth-child(6) { height: 85%; transform: translateY(-6%); }
        .services-wrapper.state-home .card:nth-child(7) { height: 95%; transform: translateY(4%); }
        .services-wrapper.state-home .card:nth-child(8) { height: 80%; transform: translateY(-8%); }
        .services-wrapper.state-home .card:nth-child(9) { height: 90%; transform: translateY(2%); }
        .services-wrapper.state-home .card:nth-child(10) { height: 88%; transform: translateY(-4%); }

        .services-wrapper .card:hover { filter: brightness(1) grayscale(0%); }

        .services-wrapper .card img.bg {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .services-wrapper .card-label {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1vw;
            font-weight: 700;
            text-align: center;
            z-index: 2;
            text-shadow: 0 4px 15px rgba(0,0,0,0.9);
            transition: opacity 0.3s ease;
            pointer-events: none;
            width: 90%;
        }

        .services-wrapper .card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
            z-index: 1;
        }

        .services-wrapper .close-btn {
            position: absolute;
            top: 25px; right: 25px;
            width: 44px; height: 44px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: #ffffff;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .services-wrapper .close-btn:hover {
            background: #ffffff;
            color: #000000;
            transform: scale(1.1);
        }

        .services-wrapper.state-hero .cards-track {
            gap: 0;
            height: 75vh;
            overflow: hidden;
        }

        .services-wrapper.state-hero .card {
            width: 0; opacity: 0;
            pointer-events: none;
            margin: 0; height: 100%;
            transform: translateY(0);
            animation: none;
        }

        .services-wrapper.state-hero .card.active {
            width: 100%;
            opacity: 1;
            pointer-events: auto;
            filter: brightness(1) grayscale(0%);
        }

        .services-wrapper.state-hero .card.active .card-label { opacity: 0; }
        .services-wrapper.state-hero .card.active .close-btn { opacity: 1; visibility: visible; }

        .services-wrapper .hero-content {
            position: absolute;
            bottom: 8%; left: 5%;
            width: 90%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease 0.4s;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 10;
        }

        .services-wrapper.state-hero .card.active .hero-content {
            opacity: 1;
            visibility: visible;
        }

        .services-wrapper .hero-title-group h1 {
            font-size: 3.2vw;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }

        .services-wrapper .hero-description {
            font-size: 0.95vw;
            color: #dddddd;
            line-height: 1.5;
            max-width: 600px;
        }

        .services-wrapper .hero-checklist {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 6px 20px;
            margin-top: 5px;
        }

        .services-wrapper .hero-checklist li {
            font-size: 0.8vw;
            color: #cccccc;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.4;
        }

        .services-wrapper .hero-checklist li::before {
            content: '✓';
            color: var(--whatsapp-green);
            font-weight: bold;
            flex-shrink: 0;
        }

        .services-wrapper .hero-actions-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 18px;
        }

        .services-wrapper .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            color: white;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .services-wrapper .action-btn:hover {
            background: #ffffff;
            color: #000000;
            border-color: #ffffff;
        }

        .services-wrapper .action-btn.btn-primary {
            background: var(--accent-red);
            border-color: var(--accent-red);
            color: #000000;
        }

        .services-wrapper .action-btn.btn-primary:hover {
            background: #f0f0f0;
            color: #000000;
        }

        .services-wrapper .action-btn.btn-whatsapp {
            border-color: var(--whatsapp-green);
            color: var(--whatsapp-green);
        }

        .services-wrapper .action-btn.btn-whatsapp:hover {
            background: var(--whatsapp-green);
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .services-wrapper aside {
                position: absolute;
                left: 50%; bottom: 20px;
                top: auto;
                transform: translateX(-50%);
                width: 90%;
                max-width: 400px;
                height: 52px;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 0 20px;
                gap: 0;
                background: rgba(20, 20, 20, 0.85);
                backdrop-filter: blur(12px);
                border: 1px solid rgba(255, 255, 255, 0.15);
                border-radius: 30px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
                z-index: 1100;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .services-wrapper aside a {
                font-size: 10px;
                padding: 0 8px;
                letter-spacing: 1px;
                opacity: 0.6;
                transition: opacity 0.3s, color 0.3s;
            }

            .services-wrapper aside a.active {
                opacity: 1;
                color: var(--accent-red);
                transform: none;
            }

            .services-wrapper .home-view {
                padding-left: 0;
                padding-right: 0;
                padding-top: 0;
                padding-bottom: 60px;
                justify-content: center;
                align-items: center;
            }

            .services-wrapper .cards-track {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding: 20px 15px;
                gap: 12px;
                width: 100%;
                height: 65vh;
                scroll-snap-type: x mandatory;
            }

            .services-wrapper .card {
                width: 75vw;
                height: 100% !important;
                flex-shrink: 0;
                scroll-snap-align: center;
                transform: none !important;
                animation: none;
            }

            .services-wrapper .card-label { font-size: 16px; }
            .services-wrapper.state-hero .cards-track { padding: 0; overflow-x: hidden; }
            .services-wrapper.state-hero .card { width: 0; height: 100% !important; animation: none; }

            .services-wrapper.state-hero .card.active {
                width: 100vw;
                height: 100vh !important;
                position: fixed;
                top: 0; left: 0;
                z-index: 1000;
            }

            .services-wrapper.state-hero aside { display: none; }
            .services-wrapper .close-btn { top: 20px; right: 20px; width: 40px; height: 40px; font-size: 16px; }
            .services-wrapper .hero-content { bottom: 8%; left: 6%; width: 88%; }
            .services-wrapper .hero-title-group h1 { font-size: 7vw; }
            .services-wrapper .hero-description { font-size: 12px; }
            .services-wrapper .hero-checklist { grid-template-columns: 1fr; gap: 6px; }
            .services-wrapper .hero-checklist li { font-size: 11px; }
            .services-wrapper .hero-actions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
            .services-wrapper .action-btn { font-size: 11px; padding: 10px 8px; }
        }

        /* WHY US */
        .why-us-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background-color: #080808;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
            font-family: 'Poppins', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            z-index: 5;
            overflow: hidden;
        }

        .why-us-wrapper {
            position: relative;
            width: 100%;
            max-width: 1200px;
            background-color: #0c0c0c;
            border-radius: 32px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
            padding: 60px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .why-us-wrapper .dots-grid {
            position: absolute;
            width: 50px; height: 50px;
            background-image: radial-gradient(#555 20%, transparent 20%);
            background-size: 10px 10px;
            opacity: 0.3;
        }
        .why-us-wrapper .dots-top-left { top: 30px; left: 30px; }
        .why-us-wrapper .dots-bottom-right { bottom: 30px; right: 30px; }

        .why-us-wrapper .hero-section {
            display: flex;
            flex-direction: column;
            gap: 24px;
            z-index: 2;
        }

        .why-us-wrapper .experience-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #2e7d32;
            color: #d1f7c4;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            width: fit-content;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .why-us-wrapper .experience-badge::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: rgba(255,255,255,0.3);
            transform: skewX(-20deg);
            animation: badgeShine 2.5s infinite;
        }

        @keyframes badgeShine {
            0% { left: -100%; }
            100% { left: 200%; }
        }

        .why-us-wrapper .hero-section h1 {
            font-size: 46px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .why-us-wrapper .hero-section h1 span {
            font-family: 'Playball', cursive;
            color: #d4a344;
            font-size: 52px;
            display: block;
            font-weight: 400;
            transform: rotate(-2deg);
            margin-bottom: 5px;
            opacity: 0;
            animation: smoothReveal 1.5s ease forwards;
        }

        .why-us-wrapper .hero-section p {
            font-size: 15px;
            color: #cccccc;
            line-height: 1.6;
            font-weight: 400;
        }

        .why-us-wrapper .trust-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 10px;
        }

        .why-us-wrapper .trust-card {
            background: #1a1a1a;
            padding: 18px;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            border-left: 4px solid #d4a344;
        }

        .why-us-wrapper .trust-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .why-us-wrapper .trust-card p {
            font-size: 12px;
            color: #aaaaaa;
            line-height: 1.4;
        }

        .why-us-wrapper .testimonials-column {
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .why-us-wrapper .testimonials-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .why-us-wrapper .testimonials-header .subtitle {
            font-family: 'Playball', cursive;
            color: #d4a344;
            font-size: 24px;
            margin-bottom: -8px;
            transform: rotate(-3deg);
            display: inline-block;
            opacity: 0;
            animation: smoothReveal 1.5s ease forwards 0.5s;
        }

        @keyframes smoothReveal {
            0% { opacity: 0; transform: translateY(10px) rotate(-3deg) scale(0.9); filter: blur(4px); }
            100% { opacity: 1; transform: translateY(0) rotate(-3deg) scale(1); filter: blur(0); }
        }

        .why-us-wrapper .testimonials-header h2 {
            font-size: 26px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .why-us-wrapper .testimonials-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .why-us-wrapper .card {
            background-color: #1a1a1a;
            padding: 15px 18px;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            transition: transform 0.3s ease;
            animation: cardBob 2s ease-in-out infinite;
        }

        .why-us-wrapper .card:nth-child(1) { animation-delay: 0s; }
        .why-us-wrapper .card:nth-child(2) { animation-delay: 0.2s; }
        .why-us-wrapper .card:nth-child(3) { animation-delay: 0.4s; }
        .why-us-wrapper .card:nth-child(4) { animation-delay: 0.6s; }

        @keyframes cardBob {
            0%, 100% { translate: 0 0; }
            50% { translate: 0 -5px; }
        }

        .why-us-wrapper .card:hover { transform: scale(1.02) !important; }

        .why-us-wrapper .card.green-card { background-color: #2e7d32; transform: rotate(-1.5deg); }
        .why-us-wrapper .card.white-card-1 { transform: rotate(1deg); }
        .why-us-wrapper .card.white-card-2 { transform: rotate(-1deg); }

        .why-us-wrapper .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .why-us-wrapper .user-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .why-us-wrapper .avatar {
            width: 38px; height: 38px;
            border-radius: 50%;
            object-fit: cover;
            border: 1.5px solid rgba(255,255,255,0.15);
        }

        .why-us-wrapper .user-details h3 {
            font-size: 13.5px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
        }

        .why-us-wrapper .user-details span {
            font-size: 11px;
            color: #aaaaaa;
            font-weight: 400;
        }

        .why-us-wrapper .stars {
            color: #ffc107;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .why-us-wrapper .card-body p {
            font-size: 11px;
            color: #dddddd;
            line-height: 1.4;
            font-weight: 400;
        }

        .why-us-wrapper .footer-brand {
            text-align: center;
            font-size: 11.5px;
            color: #aaaaaa;
            font-weight: 500;
            margin-top: 15px;
            letter-spacing: -0.2px;
        }

        @media (max-width: 968px) {
            .why-us-section { padding: 15px; }
            .why-us-wrapper {
                grid-template-columns: 1fr;
                padding: 30px 20px;
                gap: 40px;
            }
            .why-us-wrapper .hero-section h1 { font-size: 36px; }
            .why-us-wrapper .hero-section h1 span { font-size: 40px; }
        }

        /* GALLERY */
        .gallery-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: #2b2c30;
            font-family: 'Montserrat', sans-serif;
            color: white;
        }

        .gallery-section .bg-image {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image: url('../../img/gallery/image1.jpg');
            background-size: cover;
            background-position: left center;
            z-index: 1;
            filter: brightness(0.7);
            transition: background-image 0.5s ease;
        }

        .gallery-section .main-text {
            position: absolute;
            left: 8%; top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            text-align: left;
            width: 60%;
        }

        .gallery-section .main-text h1 {
            font-family: 'Oswald', sans-serif;
            font-weight: 200;
            font-size: 72px;
            letter-spacing: 12px;
            margin: 0;
            line-height: 1;
            color: #fff;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .gallery-section .main-text h2 {
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            font-size: 32px;
            letter-spacing: 6px;
            margin-top: 20px;
            margin-bottom: 15px;
            color: #fff;
            text-transform: uppercase;
        }

        .gallery-section .main-text p {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            font-size: 16px;
            letter-spacing: 2px;
            margin: 0;
            max-width: 500px;
            color: #ddd;
            line-height: 1.6;
        }

        .gallery-section .fade-anim { animation: fadeInGallery 0.8s ease; }

        .gallery-section .rotator-container {
            position: absolute;
            bottom: 50px; left: 150px;
            width: 150px; height: 150px;
            z-index: 10;
        }

        .gallery-section .rotating-text {
            position: absolute;
            width: 100%; height: 100%;
            animation: spinGallery 15s linear infinite;
        }

        .gallery-section .rotating-text text {
            fill: white;
            font-size: 9px;
            letter-spacing: 2px;
        }

        .gallery-section .carousel-container {
            position: absolute;
            bottom: 50px; right: 50px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            z-index: 10;
            width: 350px;
        }

        .gallery-section .carousel-header {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            margin-bottom: -5px;
        }

        .gallery-section .view-all-btn {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.6);
            padding: 6px 15px;
            cursor: pointer;
            font-size: 12px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .gallery-section .view-all-btn:hover {
            background: white;
            color: black;
            border-color: white;
        }

        .gallery-section .thumbnails {
            display: flex;
            gap: 10px;
            width: 350px;
            overflow: visible;
        }

        .gallery-section .thumb {
            width: 80px; height: 120px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            opacity: 0.5;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .gallery-section .thumb img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        .gallery-section .thumb.active {
            opacity: 1;
            border: 2px solid white;
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .gallery-section .thumb.hidden { display: none; }

        .gallery-section .controls {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 15px;
            justify-content: flex-start;
        }

        .gallery-section .arrow {
            width: 40px; height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(4px);
            color: white;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            user-select: none;
        }

        .gallery-section .arrow:hover {
            transform: scale(1.15);
            background: white;
            color: black;
            border-color: white;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .gallery-section .white-line {
            flex-grow: 1;
            height: 1px;
            background-color: white;
        }

        .gallery-section .gallery-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            padding: 40px;
            box-sizing: border-box;
            display: none;
            overflow-y: auto;
        }

        .gallery-section .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 20px;
        }

        .gallery-section .gallery-header h2 {
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            letter-spacing: 4px;
            margin: 0;
            text-transform: uppercase;
        }

        .gallery-section .view-less-btn {
            background: white;
            color: black;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .gallery-section .view-less-btn:hover { background: #ccc; }

        .gallery-section .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-section .gallery-item {
            width: 100%;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }

        .gallery-section .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: 0.3s;
        }

        .gallery-section .gallery-item:hover img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }

        @keyframes spinGallery { 100% { transform: rotate(360deg); } }
        @keyframes fadeInGallery {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .gallery-section .bg-image { background-size: cover; background-position: center center; }
            .gallery-section .main-text {
                left: 15px; top: 15%;
                transform: translateY(-50%);
                width: 90%;
            }
            .gallery-section .main-text h1 { font-size: 36px; letter-spacing: 6px; }
            .gallery-section .main-text h2 { font-size: 22px; letter-spacing: 4px; margin-top: 15px; }
            .gallery-section .main-text p { font-size: 14px; max-width: 100%; }
            .gallery-section .rotator-container {
                bottom: 10px; left: 10px;
                transform: scale(0.5);
                transform-origin: bottom left;
            }
            .gallery-section .carousel-container {
                left: 10px; right: 10px; bottom: 10px;
                width: auto; max-width: none;
            }
            .gallery-section .thumbnails { width: 100%; overflow: visible; gap: 5px; }
            .gallery-section .thumb {
                flex: 1 0 22%;
                width: auto; height: auto;
                aspect-ratio: 2 / 3;
                min-width: 0;
            }
            .gallery-section .arrow { width: 35px; height: 35px; font-size: 16px; }
            .gallery-section .controls { gap: 10px; }
            .gallery-section .gallery-overlay {
                min-height: 100vh; height: 100vh;
                padding: 15px;
                z-index: 9999;
            }
            .gallery-section .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .gallery-section .gallery-item { width: 100%; height: 160px; aspect-ratio: auto; }
            .gallery-section .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
            .gallery-section .view-all-btn { padding: 4px 10px; font-size: 10px; }
        }

        @media (max-width: 480px) {
            .gallery-section .main-text h1 { font-size: 28px; }
            .gallery-section .main-text h2 { font-size: 18px; }
            .gallery-section .main-text p { font-size: 12px; }
            .gallery-section .rotator-container { transform: scale(0.4); }
            .gallery-section .gallery-header { padding-bottom: 10px; margin-bottom: 15px; }
            .gallery-section .gallery-header h2 { font-size: 18px; }
            .gallery-section .view-less-btn { padding: 8px 15px; font-size: 12px; }
        }

        /* ABOUT */
        .about-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background-color: #000000;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            overflow: hidden;
            padding: 40px 0;
        }

        .about-section .bg-blob {
            position: absolute;
            opacity: 0.4;
            z-index: 0;
            pointer-events: none;
            border-radius: 0;
            filter: none;
        }

        .about-section .bg-blob-1 {
            width: 150px; height: 150px;
            background: rgba(255, 255, 255, 0.1);
            clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
            top: 10%; left: 5%;
            animation: aboutShape1 12s infinite alternate ease-in-out;
        }

        .about-section .bg-blob-2 {
            width: 120px; height: 120px;
            background: rgba(212, 163, 68, 0.1);
            clip-path: circle(50% at 50% 50%);
            bottom: 15%; right: 8%;
            animation: aboutShape2 15s infinite alternate ease-in-out;
        }

        @keyframes aboutShape1 {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(60px, -40px) rotate(45deg); }
        }

        @keyframes aboutShape2 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-40px, 50px) scale(1.2); }
        }

        .about-section .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
            position: relative;
            z-index: 1;
        }

        .about-section .hero {
            text-align: center;
            padding-top: 40px;
            position: relative;
        }

        .about-section .hero h1 {
            font-size: clamp(32px, 10vw, 90px);
            font-weight: 700;
            letter-spacing: -2px;
            text-transform: lowercase;
            line-height: 0.9;
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .about-section .hero h1.active { opacity: 1; transform: translateY(0) scale(1); }

        .about-section .location-tag {
            font-size: 10px;
            line-height: 1.4;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
            margin-bottom: 20px;
            padding: 0 10px;
            word-wrap: break-word;
        }

        .about-section .location-tag.active { opacity: 0.7; transform: translateY(0); }
        .about-section .location-tag .plus { display: block; font-size: 12px; margin-bottom: 2px; }

        .about-section .vertical-line {
            width: 1px; height: 0px;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 auto 20px auto;
            transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
        }

        .about-section .vertical-line.active { height: 25px; }

        .about-section .description {
            max-width: 650px;
            width: 100%;
            margin: 0 auto 15px auto;
            text-align: center;
            padding: 0 5px;
        }

        .about-section .description p.main-desc {
            font-size: clamp(14px, 3.8vw, 22px);
            font-weight: 400;
            line-height: 1.35;
            letter-spacing: -0.3px;
            margin-bottom: 12px;
            opacity: 0;
            transform: translateY(25px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .about-section .description p.main-desc.active { opacity: 1; transform: translateY(0); }

        .about-section .description p.sub-desc {
            font-size: 11px;
            line-height: 1.5;
            opacity: 0;
            transform: translateY(25px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
            max-width: 450px;
            margin: 0 auto;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .about-section .description p.sub-desc.active { opacity: 0.6; transform: translateY(0); }

        .about-section .process-section {
            position: relative;
            min-height: 420px;
            padding-bottom: 40px;
            margin-top: 10px;
            width: 100%;
        }

        .about-section .process-title {
            text-align: center;
            font-size: 13px;
            text-transform: lowercase;
            font-style: italic;
            margin-bottom: 20px;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .about-section .process-title.active { opacity: 0.8; }

        .about-section .path-container-desktop {
            position: absolute;
            width: 100%; height: 350px;
            top: 30px; left: 0;
            pointer-events: none;
        }

        .about-section .path-container-mobile {
            display: none;
            position: absolute;
            width: 24px; height: 480px;
            top: 30px;
            left: calc(50% - 12px);
            pointer-events: none;
        }

        .about-section .path-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            transition: stroke-dashoffset 2s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .about-section .path-line.active { stroke-dashoffset: 0; }

        .about-section .step {
            position: absolute;
            max-width: 230px;
            opacity: 0;
        }

        .about-section .step-num {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 3px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .about-section .step-num::before {
            content: '';
            width: 4px; height: 4px;
            background-color: #ffffff;
            border-radius: 50%;
        }

        .about-section .step-title {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 2px;
            text-transform: lowercase;
            word-wrap: break-word;
        }

        .about-section .step-desc {
            font-size: 10px;
            line-height: 1.4;
            opacity: 0.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .about-section .step-1 {
            top: 50px;
            left: calc(50% - 300px);
            text-align: right;
            transform: translateX(-50px) scale(0.9);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
        }
        .about-section .step-1.active { opacity: 1; transform: translateX(0) scale(1); }
        .about-section .step-1 .step-num { justify-content: flex-end; }
        .about-section .step-1 .step-num::before { display: none; }
        .about-section .step-1 .step-num::after {
            content: '';
            width: 4px; height: 4px;
            background-color: #ffffff;
            border-radius: 50%;
        }

        .about-section .step-2 {
            top: 140px;
            right: calc(50% - 330px);
            text-align: left;
            transform: translateX(50px) rotate(3deg);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
        }
        .about-section .step-2.active { opacity: 1; transform: translateX(0) rotate(0deg); }

        .about-section .step-3 {
            top: 230px;
            left: calc(50% - 280px);
            text-align: right;
            transform: perspective(400px) rotateX(-20px) translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
        }
        .about-section .step-3.active { opacity: 1; transform: perspective(400px) rotateX(0) translateY(0); }
        .about-section .step-3 .step-num { justify-content: flex-end; }
        .about-section .step-3 .step-num::before { display: none; }
        .about-section .step-3 .step-num::after {
            content: '';
            width: 4px; height: 4px;
            background-color: #ffffff;
            border-radius: 50%;
        }

        .about-section .step-4 {
            top: 320px;
            right: calc(50% - 330px);
            text-align: left;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
        }
        .about-section .step-4.active { opacity: 1; transform: translateY(0); }

        @media(max-width: 768px) {
            .about-section .container { padding: 0 12px; }
            .about-section .path-container-desktop { display: none; }
            .about-section .path-container-mobile { display: block; }
            .about-section .process-section { height: 520px; padding-bottom: 20px; }
            .about-section .step {
                position: absolute;
                width: calc(50% - 20px);
                max-width: calc(50% - 20px);
            }
            .about-section .step-1 {
                top: 25px; left: 6px;
                text-align: right;
                transform: translateY(30px);
            }
            .about-section .step-1.active { transform: translateY(0); }
            .about-section .step-1 .step-num { justify-content: flex-end; }
            .about-section .step-2 {
                top: 145px;
                left: auto; right: 6px;
                text-align: left;
                transform: translateY(30px);
            }
            .about-section .step-2.active { transform: translateY(0); }
            .about-section .step-3 {
                top: 280px; left: 6px;
                text-align: right;
                transform: translateY(30px);
            }
            .about-section .step-3.active { transform: translateY(0); }
            .about-section .step-3 .step-num { justify-content: flex-end; }
            .about-section .step-4 {
                top: 405px;
                left: auto; right: 6px;
                text-align: left;
                transform: translateY(30px);
            }
            .about-section .step-4.active { transform: translateY(0); }
            .about-section .step-desc { font-size: 8.5px; line-height: 1.3; }
            .about-section .step-title { font-size: 10.5px; }
        }

        /* CONTACT */
        .contact-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background-color: #121212;
            color: #f5f2eb;
            font-family: 'Inter', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
            overflow: hidden;
        }

        .contact-section .bg-blob {
            position: absolute;
            opacity: 0.3;
            z-index: 0;
            pointer-events: none;
            border-radius: 0;
            filter: none;
        }

        .contact-section .bg-blob-1 {
            width: 100px; height: 100px;
            background: rgba(255, 255, 255, 0.1);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            top: 10%; right: 10%;
            animation: contactShape1 10s infinite alternate ease-in-out;
        }

        .contact-section .bg-blob-2 {
            width: 80px; height: 80px;
            background: rgba(212, 163, 68, 0.1);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            bottom: 20%; left: 5%;
            animation: contactShape2 14s infinite alternate ease-in-out;
        }

        @keyframes contactShape1 {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-50px, 50px) rotate(90deg); }
        }

        @keyframes contactShape2 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(40px, -30px) scale(1.3); }
        }

        .contact-section .container {
            width: 100%;
            max-width: 1200px;
            height: 740px;
            background-color: #161616;
            border: 1px solid #222;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr;
            padding: 60px;
            position: relative;
            z-index: 1;
        }

        .contact-section .left-col {
            grid-column: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .contact-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5.5rem;
            font-weight: 400;
            line-height: 0.95;
            letter-spacing: -1px;
            text-transform: uppercase;
            animation: contactTitleIn 1.5s ease forwards, contactTitleGlow 3s ease-in-out infinite 1.5s;
        }

        @keyframes contactTitleIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes contactTitleGlow {
            0%, 100% { text-shadow: 0 0 0 rgba(245,242,235,0); }
            50% { text-shadow: 0 0 10px rgba(245,242,235,0.4); }
        }

        .contact-section h1 span { font-style: italic; }

        .contact-section .bauhaus-graphic {
            position: absolute;
            top: 45px; left: 275px;
            width: 70px; height: 70px;
        }

        .contact-section .circle {
            width: 16px; height: 16px;
            background-color: #f5f2eb;
            border-radius: 50%;
            position: absolute;
            top: 0; right: 0;
        }

        .contact-section .semi-circle-arc {
            width: 70px; height: 35px;
            border: 1px solid rgba(245, 242, 235, 0.4);
            border-bottom: none;
            border-radius: 70px 70px 0 0;
            position: absolute;
            bottom: 0; left: 0;
        }

        .contact-section .right-col {
            grid-column: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 40px;
        }

        .contact-section .tab-nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 35px;
            border-bottom: 1px solid #222;
            padding-bottom: 12px;
        }

        .contact-section .tab-btn {
            background: transparent;
            border: none;
            color: #777;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            position: relative;
            padding-bottom: 4px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-section .tab-btn:hover { color: #f5f2eb; transform: translateY(-2px); }

        .contact-section .tab-btn:not(.active)::after {
            content: '';
            position: absolute;
            bottom: -13px; left: 0;
            width: 0%; height: 2px;
            background-color: #777;
            transition: width 0.3s ease, background-color 0.3s ease;
        }

        .contact-section .tab-btn:not(.active):hover::after {
            width: 100%;
            background-color: #f5f2eb;
        }

        .contact-section .tab-btn.active { color: #f5f2eb; }

        .contact-section .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -13px; left: 0;
            width: 100%; height: 2px;
            background-color: #f5f2eb;
        }

        .contact-section .view-content {
            display: none;
            flex-direction: column;
            gap: 15px;
            animation: fadeIn 0.3s ease;
        }

        .contact-section .view-content.active { display: flex; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .contact-section .contact-form {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .contact-section .form-row { display: flex; gap: 20px; }

        .contact-section .form-group {
            position: relative;
            flex: 1;
            padding-top: 12px;
        }

        .contact-section .form-group.full { width: 100%; }

        .contact-section .form-group input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #333;
            padding: 8px 0;
            color: #f5f2eb;
            font-size: 13px;
            outline: none;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }

        .contact-section .form-group input:hover { border-bottom-color: #666; }
        .contact-section .form-group input:focus { border-bottom-color: #f5f2eb; }

        .contact-section .form-group label {
            position: absolute;
            top: 20px; left: 0;
            font-size: 10px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #777;
            pointer-events: none;
            transition: all 0.2s ease;
        }

        .contact-section .form-group input:focus ~ label,
        .contact-section .form-group input.not-empty ~ label {
            top: -2px;
            font-size: 9px;
            color: #aaa;
        }

        .contact-section .form-group .arrow-indicator {
            position: absolute;
            right: 0; top: 20px;
            color: #777;
            font-size: 12px;
            pointer-events: none;
        }

        .contact-section .submit-container {
            display: flex;
            justify-content: flex-end;
            margin-top: 2px;
        }

        .contact-section .submit-btn {
            background: transparent;
            border: none;
            color: #f5f2eb;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
            opacity: 0.8;
        }

        .contact-section .submit-btn:hover { transform: translateX(6px); opacity: 1; }

        .contact-section .extra-actions {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            margin-top: 5px;
            border-top: 1px solid #222;
            padding-top: 18px;
        }

        .contact-section .extra-actions.map-actions {
            grid-template-columns: 1fr 1fr;
            margin-top: 5px;
            padding-top: 12px;
            border-top: 1px solid #222;
        }

        .contact-section .action-btn {
            background: #1c1c1c;
            border: 1px solid #2a2a2a;
            color: #d1cbd4;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 12px 10px;
            text-align: center;
            text-decoration: none;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .contact-section .action-btn svg {
            width: 14px; height: 14px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .contact-section .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.4);
        }

        .contact-section .action-btn:hover svg { transform: scale(1.1); }

        .contact-section .action-btn.call-btn {
            background-color: #e53935;
            border-color: #e53935;
            color: #ffffff;
        }
        .contact-section .action-btn.call-btn:hover {
            background-color: #c62828;
            border-color: #c62828;
        }

        .contact-section .action-btn.whatsapp-btn {
            background-color: #25D366;
            border-color: #25D366;
            color: #ffffff;
        }
        .contact-section .action-btn.whatsapp-btn:hover {
            background-color: #1da851;
            border-color: #1da851;
        }

        .contact-section .action-btn.quote-btn {
            background-color: #ffffff;
            border-color: #ffffff;
            color: #000000;
        }
        .contact-section .action-btn.quote-btn:hover {
            background-color: #f0f0f0;
            border-color: #f0f0f0;
        }

        .contact-section .location-info {
            background: #1a1a1a;
            border: 1px solid #262626;
            padding: 12px 16px;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .contact-section .location-title {
            font-size: 13px;
            font-weight: 600;
            color: #f5f2eb;
            letter-spacing: 0.5px;
            font-family: 'Playfair Display', serif;
        }

        .contact-section .location-address {
            font-size: 11px;
            color: #888;
            line-height: 1.4;
        }

        .contact-section .map-container {
            width: 100%;
            height: 200px;
            border: 1px solid #222;
            border-radius: 6px;
            overflow: hidden;
            filter: grayscale(100%) invert(92%) hue-rotate(180deg) contrast(95%) brightness(85%);
            transition: filter 0.3s ease;
        }

        .contact-section .map-container iframe {
            width: 100%; height: 100%;
            border: 0;
        }

        .urgent-call {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 800;
            color: #e53935;
            text-align: center;
            margin-bottom: 5px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        @media (max-width: 900px) {
            .contact-section { padding: 20px; }
            .contact-section .container {
                height: auto;
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                padding: 20px;
                gap: 20px;
            }
            .contact-section .left-col {
                grid-column: 1 / -1;
                grid-row: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                margin-bottom: 10px;
            }
            .contact-section .right-col {
                grid-column: 1 / -1;
                grid-row: 2;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                padding-left: 0;
                margin-top: 0;
            }
            .contact-section h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 10px; }
            .contact-section .bauhaus-graphic { display: none; }
            .contact-section .tab-nav { margin-bottom: 25px; gap: 20px; }
            .contact-section .extra-actions, .contact-section .extra-actions.map-actions {
                grid-template-columns: 1fr;
                gap: 10px;
                padding-top: 15px;
            }
            .contact-section .form-row { flex-direction: column; gap: 10px; }
            .contact-section .form-group { width: 100%; }
        }

        /* FOOTER */
        .footer-section {
            position: relative;
            width: 100%;
            background-color: #0a0a0a;
            color: #ffffff;
            padding: 60px 40px 30px;
            font-family: 'Inter', sans-serif;
            border-top: 1px solid #1a1a1a;
        }

        .footer-section .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

        .footer-section .footer-brand { flex: 1 1 250px; }

        .footer-section .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-section .footer-logo img {
            width: 60px;
            height: auto;
            filter: invert(100%) brightness(200%);
        }

        .footer-section .footer-logo-text h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .footer-section .footer-logo-text span {
            font-size: 10px;
            letter-spacing: 2px;
            color: #888;
            display: block;
        }

        .footer-section .footer-slogan {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            font-weight: 800;
            letter-spacing: 3px;
            color: #ffffff;
            text-transform: uppercase;
            margin: 25px 0 20px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
            line-height: 1.2;
        }

        .footer-section .footer-description {
            font-size: 13px;
            color: #888;
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 300px;
        }

        .footer-section .footer-social { display: flex; gap: 12px; }

        .footer-section .footer-social a {
            width: 36px; height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #333;
            border-radius: 50%;
            color: #aaa;
            transition: all 0.3s ease;
        }

        .footer-section .footer-social a:hover {
            border-color: #fff;
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-section .footer-social a svg {
            width: 16px; height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .footer-section .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            flex: 2 1 500px;
            justify-content: space-around;
        }

        .footer-section .footer-column h5 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section .footer-column ul { list-style: none; }
        .footer-section .footer-column ul li { margin-bottom: 10px; }

        .footer-section .footer-column ul a {
            color: #777;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .footer-section .footer-column ul a:hover { color: #fff; }

        .footer-section .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #1a1a1a;
            text-align: center;
            font-size: 12px;
            color: #555;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-section .footer-bottom a { color: #777; text-decoration: none; }

        @media (max-width: 768px) {
            .footer-section { padding: 40px 20px; }
            .footer-section .footer-container { flex-direction: column; gap: 30px; }
            .footer-section .footer-links { flex-direction: column; gap: 20px; }
            .footer-section .footer-bottom { flex-direction: column; }
        }

        /* GENERAL RESPONSIVE */
        @media (max-width: 900px) {
            .bottom-left-scroll { display: none; }
        }

        @media (max-width: 850px) {
            .nav-links { display: none; }
            .menu-toggle-btn { display: flex; }
            .dynamic-service-btn {
                width: 115px;
                height: 36px;
                font-size: 0.58rem;
            }
            /* Hide the right-side fixed social bar on mobile */
            .right-center-social { display: none; }
            /* Show socials inside the sidebar */
            .sidebar-socials { display: block; }
        }

        @media (max-width: 480px) {
            .site-navbar { padding: 10px 14px; }
            .brand-logo-img { margin-right: -15px; }
            .hero-tagline-wrapper { min-height: 250px; }
        }
