/* Reset and Base Styles */

:root {
    --font-primary: 'DM Sans', sans-serif;
    --font-heading: 'DM Serif Display', serif;
    
    --text-h1: clamp(2.25rem, 5vw, 3.5rem);
    --text-h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --text-h3: 1.25rem;
    --text-p: 1rem;
    --text-small: 0.875rem;
    --text-tag: 0.75rem;
    
    --color-primary: #1e3a8a;
    --color-text: #1e293b;
    --color-muted: #475569;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: #1e293b;
    font-family: var(--font-primary);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    background-color: #ffffff;
}

/* Custom Scrollbar */
/* Sembunyikan scrollbar tapi tetap bisa di-scroll */
::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
* {
    scrollbar-width: none; /* Firefox */
}

/* Custom Cursor */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #1e3a8a;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(30, 58, 138, 0.4);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.1s ease-out;
}

body.hovering-link .custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: #2563eb;
}

body.hovering-link .custom-cursor-ring {
    width: 60px;
    height: 60px;

    border-color: rgba(37, 99, 235, 0.8);

    background-color: rgba(37, 99, 235, 0.05);

}



/* Header & Navigation */

.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    padding: 24px 2%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    background-color: rgba(0, 0, 0, 0.05);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

}



.logo {
    display: flex;
    align-items: center;
}

.animated-logo {
    text-decoration: none;
    color: var(--color-primary); /* Uses #1e3a8a (purple/blue) as requested to keep it mentereng */
    font-family: var(--font-primary); /* DM Sans like the video */
    font-weight: 800; /* Bold */
    font-size: 26px; /* Larger than 20px */
    letter-spacing: -1px;
    -webkit-font-smoothing: antialiased; /* Sharper */
    -moz-osx-font-smoothing: grayscale; /* Sharper */
    display: inline-flex;
    overflow: hidden; /* For pull up animation */
    line-height: 1.2;
}

/* Let's animate the inner text letter by letter from the side every 7s */
.logo-text-inner {
    display: flex;
}

.logo-text-inner span {
    display: inline-block;
    opacity: 0;
    transform: translateX(20px);
    animation: letterSlideIn 7s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* Stagger for each of the 13 letters */
.logo-text-inner span:nth-child(1) { animation-delay: 0.00s; }
.logo-text-inner span:nth-child(2) { animation-delay: 0.05s; }
.logo-text-inner span:nth-child(3) { animation-delay: 0.10s; }
.logo-text-inner span:nth-child(4) { animation-delay: 0.15s; }
.logo-text-inner span:nth-child(5) { animation-delay: 0.20s; }
.logo-text-inner span:nth-child(6) { animation-delay: 0.25s; }
.logo-text-inner span:nth-child(7) { animation-delay: 0.30s; }
.logo-text-inner span:nth-child(8) { animation-delay: 0.35s; }
.logo-text-inner span:nth-child(9) { animation-delay: 0.40s; }
.logo-text-inner span:nth-child(10) { animation-delay: 0.45s; }
.logo-text-inner span:nth-child(11) { animation-delay: 0.50s; }
.logo-text-inner span:nth-child(12) { animation-delay: 0.55s; }
.logo-text-inner span:nth-child(13) { animation-delay: 0.60s; }

@keyframes letterSlideIn {
    0% {
        transform: translateX(20px);
        opacity: 0;
    }
    10%, 90% { /* Letter stays visible for most of the 7s cycle */
        transform: translateX(0);
        opacity: 1;
    }
    95%, 100% {
        transform: translateX(-10px); /* slightly exit to the left or just fade */
        opacity: 0;
    }
}



.made-in-id-tag {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-family: var(--font-primary);

    font-size: 9px;

    font-weight: 600;

    color: #64748b;

    border: 1px solid rgba(0, 0, 0, 0.08);

    padding: 3px 8px;

    border-radius: 20px;

    margin-left: 12px;

    background: rgba(0, 0, 0, 0.03);

    letter-spacing: 0.8px;

    text-transform: uppercase;

    pointer-events: none;

}



.flag-id {

    font-size: 11px;

    line-height: 1;

}



@media (max-width: 480px) {

    .made-in-id-tag {

        display: none;

    }

}



.logo-dot {

    width: 8px;

    height: 8px;

    background: linear-gradient(135deg, #2563eb, #c5a059);

    border-radius: 50%;

    margin-right: 8px;

    display: inline-block;

}



.nav {

    display: flex;

    gap: 40px;

    margin-left: auto;

}



.nav-link {

    color: #475569;

    text-decoration: none;

    font-weight: 500;

    font-size: 16px;

    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    position: relative;

    padding: 6px 0;

}



.nav-link::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 2px;

    background: linear-gradient(90deg, #1e3a8a, #d4af37);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



.nav-link:hover {

    color: #334155;

}



.nav-link:hover::after {

    transform: scaleX(1);

}



.cta-button, .btn-primary, .btn-secondary {

    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15), rgba(212, 175, 55, 0.15));

    border: 1px solid rgba(30, 58, 138, 0.4);

    color: #1e293b;

    padding: 16px 32px;

    border-radius: 14px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    text-decoration: none;

    letter-spacing: 0.5px;

    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;

    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);

    animation: pulsing-glow 2s infinite;

}



.cta-button:hover, .btn-primary:hover {

    transform: translateY(-4px);

    border-color: #d4af37;

    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);

    background: linear-gradient(135deg, rgba(30, 58, 138, 0.25), rgba(212, 175, 55, 0.25));

}



.menu-toggle {

    display: none;

    flex-direction: column;

    gap: 6px;

    background: none;

    border: none;

    cursor: pointer;

    z-index: 1001;

}



.menu-toggle span {

    display: block;

    width: 28px;

    height: 2px;

    background-color: #1e293b;

    transition: transform 0.3s, opacity 0.3s;

}



/* Mobile Menu */

.mobile-menu {

    position: fixed;

    top: 0;

    right: 0;

    width: 100%;

    height: 100vh;

    background-color: rgba(5, 5, 8, 0.98);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    z-index: 999;

    display: flex;

    justify-content: center;

    align-items: center;

    transform: translateX(100%);

    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);

}



.mobile-menu.active {

    transform: translateX(0);

}



.mobile-nav {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 32px;

}



.mobile-link {

    font-family: var(--font-heading);

    font-size: 28px;

    color: #64748b;

    text-decoration: none;

    font-weight: 700;

    transition: color 0.3s;

}



.mobile-link:hover {

    color: #1e3a8a;

}



.mobile-cta {

    margin-top: 20px;

    background: linear-gradient(135deg, #1e3a8a, #d4af37);

    color: #f8fafc;

    padding: 16px 36px;

    border-radius: 40px;

    text-decoration: none;

    font-weight: 700;

    font-size: 16px;

}



/* Hero Section */

.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 20px;
}



#webgl-canvas {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 1;

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.9) 80%);

    z-index: 2;

    pointer-events: none;

}



.slider-container {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 88%;

    max-width: 1400px;

}



.slide-nav-btn {

    background: rgba(0, 0, 0, 0.05);

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 50%;

    width: 64px;

    height: 64px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #1e293b;

    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    backdrop-filter: blur(5px);

    -webkit-backdrop-filter: blur(5px);

}



.slide-nav-btn:hover {

    background: rgba(30, 58, 138, 0.2);

    border-color: rgba(30, 58, 138, 0.6);

    color: #d4af37;

    transform: scale(1.1);

}



.slide-content-wrapper {

    flex-grow: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    

    pointer-events: none;

    padding-top: 40px;

    padding-bottom: 40px;

}



.slide-content {

    position: absolute;

    opacity: 0;

    transform: translateY(30px);

    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    text-align: center;

    max-width: 800px;

    width: 100%;

}



.slide-content.active {

    opacity: 1;

    transform: translateY(0);

}



.slide-title {
    font-family: var(--font-heading);
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--color-text);
}



.slide-description {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-muted);
    font-weight: 400;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;

    text-shadow: 0 4px 10px rgba(240, 244, 248, 0.6);

}



.scroll-indicator {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    opacity: 0.7;

}



.scroll-indicator span {

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #64748b;

}



.scroll-line {

    width: 1px;

    height: 50px;

    background: linear-gradient(to bottom, #1e3a8a, transparent);

    position: relative;

    overflow: hidden;

}



.scroll-line::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 20px;

    background-color: #d4af37;

    animation: scrollAnim 2s infinite ease-in-out;

}



@keyframes scrollAnim {

    0% {

        transform: translateY(-20px);

    }



    100% {

        transform: translateY(50px);

    }

}



/* Sections - General layout */

.section {

    padding: 120px 0;

    position: relative;

    z-index: 4;

}



.container {

    width: 88%;

    max-width: 1200px;

    margin: 0 auto;

}



.section-header {

    margin-bottom: 72px;

}



.section-tag {
    font-family: var(--font-primary);
    font-size: var(--text-tag);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}



.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-top: 0.625rem;
    margin-bottom: 2.5rem;
}



/* Reveal on scroll */

.reveal {

    opacity: 1;

    transform: none;

    transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);

}



.reveal.active {

    opacity: 1;

    transform: translateY(0);

}



/* Services Section Styling */

.services {

    background-color: #ffffff;

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;

}



.service-card {

    background: rgba(0, 0, 0, 0.02);

    border: 1px solid rgba(0, 0, 0, 0.05);

    border-radius: 24px;

    padding: 50px 40px;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    position: relative;

    overflow: hidden;

}



.service-card::before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle, rgba(30, 58, 138, 0.08) 0%, transparent 60%);

    opacity: 0;

    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    pointer-events: none;

}



.service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(30, 58, 138, 0.3);

    box-shadow: 0 20px 40px rgba(5, 5, 8, 0.6);

    background: rgba(255, 255, 255, 0.04);

}



.service-card:hover::before {

    opacity: 1;

}



.service-icon {

    width: 64px;

    height: 64px;

    border-radius: 16px;

    background: rgba(30, 58, 138, 0.1);

    color: #1e3a8a;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 30px;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



.service-card:hover .service-icon {

    background: #1e3a8a;

    color: #f8fafc;

    transform: scale(1.05);

}



.service-card .service-title {

    font-family: var(--font-heading);

    font-size: 22px;

    margin-bottom: 15px;

    font-weight: 700;

}



.service-card .service-desc {

    color: #475569;

    font-weight: 500;

    line-height: 1.7;

    font-size: 16px;

}



/* Comparison Section Styling */

.comparison {

    background-color: #f8fafc;

}



.comparison-container {

    width: 100%;

    border-radius: 28px;

    background: rgba(0, 0, 0, 0.01);

    border: 1px solid rgba(255, 255, 255, 0.04);

    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);

    overflow: hidden;

}



.comparison-row {

    display: grid;

    grid-template-columns: 0.8fr 1.1fr 1.1fr;

    border-bottom: 1px solid rgba(255, 255, 255, 0.04);

    transition: background-color 0.4s ease;

}



.comparison-row:not(.header-row):hover {

    background-color: rgba(255, 255, 255, 0.015);

}



.comparison-row:last-child {

    border-bottom: none;

}



.comparison-col {

    padding: 30px 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}



.header-row {

    background: rgba(0, 0, 0, 0.02);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

}



.header-row .comparison-col {

    font-weight: 700;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #2563eb;

    padding: 24px 40px;

}



.header-row .synergy-col {

    color: #d4af37;

    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);

}



.label-col {

    font-family: var(--font-heading);

    font-size: 17px;

    font-weight: 700;

    color: #1e293b;

    border-right: 1px solid rgba(255, 255, 255, 0.04);

}



.manual-col {

    border-right: 1px solid rgba(255, 255, 255, 0.04);

    color: #64748b;

}



.synergy-col {

    background: linear-gradient(90deg, rgba(30, 58, 138, 0.02) 0%, rgba(212, 175, 55, 0.02) 100%);

    color: #1e293b;

    box-shadow: inset 1px 0 0 rgba(30, 58, 138, 0.05);

}



.comp-badge {

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    padding: 4px 10px;

    border-radius: 12px;

    display: inline-block;

    margin-bottom: 12px;

    width: fit-content;

}



.status-bad {

    background: rgba(255, 123, 37, 0.08);

    color: #c5a059;

    border: 1px solid rgba(255, 123, 37, 0.2);

}



.status-good {

    background: rgba(212, 175, 55, 0.08);

    color: #d4af37;

    border: 1px solid rgba(212, 175, 55, 0.25);

    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);

}



.comparison-col p {

    font-size: 16px;

    line-height: 1.7;

    color: #475569;

}



.manual-col p {

    color: #716d85;

    color: #475569;

}



.synergy-col p {

    color: #e2dfed;

    font-weight: 500;

    color: #475569;

}



@media (max-width: 1200px) {

    .comparison-col {

        padding: 24px;

    }



    .header-row .comparison-col {

        padding: 20px 24px;

    }

}



/* Responsive Table for Mobile */

@media (max-width: 768px) {

    .comparison-row {

        grid-template-columns: 1fr;

        border-bottom: none;

    }



    .comparison-row:not(.header-row) {

        border: 1px solid rgba(255, 255, 255, 0.04);

        border-radius: 20px;

        margin-bottom: 24px;

        background: rgba(255, 255, 255, 0.005);

        overflow: hidden;

    }



    .header-row {

        display: none;

    }



    .label-col {

        background: rgba(0, 0, 0, 0.02);

        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.04);

        padding: 20px 24px;

    }



    .manual-col {

        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.04);

        padding: 20px 24px;

    }



    .synergy-col {

        padding: 20px 24px;

        box-shadow: none;

    }

}



/* Portfolio Section Styling */

.work {

    background-color: #f8fafc;

}



.work-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;

}



.work-card {

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    aspect-ratio: 16 / 10;

    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, 0.04);

}



.work-image-wrapper {

    width: 100%;

    height: 100%;

    position: relative;

    overflow: hidden;

}



.work-image-gradient {

    width: 100%;

    height: 100%;

    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



/* Curated abstract metallic/neon gradients representing shader models */

.g-1 {

    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 30%, #38bdf8 70%, #0284c7 100%);

}



.g-2 {

    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 30%, #5eead4 70%, #0f766e 100%);

}



.g-3 {

    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 30%, #fda4af 70%, #e11d48 100%);

}



.g-4 {

    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 30%, #d8b4fe 70%, #9333ea 100%);

}



.work-card-overlay {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    padding: 40px;

    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    height: 100%;

    transform: translateY(20px);

    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



.work-category {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #1e3a8a;

    margin-bottom: 8px;

    font-weight: 700;

}



.work-card-title {

    font-family: 'Syne', sans-serif;

    font-size: 26px;

    font-weight: 700;

    margin-bottom: 15px;

    color: #1e293b;

}



.work-link {

    color: #1e293b;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 8px;

    opacity: 0;

    transform: translateY(10px);

    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



.work-card:hover .work-image-gradient {

    transform: scale(1.05);

}



.work-card:hover .work-card-overlay {

    transform: translateY(0);

}



.work-card:hover .work-link {

    opacity: 1;

    transform: translateY(0);

}



/* About Section Styling */

.about {

    background-color: #ffffff;

}



.about-grid {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    align-items: center;

}



.about-paragraph {

    color: #475569;

    font-weight: 500;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 30px;

}



.stats-row {

    display: flex;

    gap: 40px;

    margin-top: 40px;

    flex-wrap: wrap;

}



.stat-box {

    display: flex;

    flex-direction: column;

}



.stat-number {

    font-family: var(--font-heading);

    font-size: 48px;

    font-weight: 800;

    background: linear-gradient(135deg, #2563eb, #1e3a8a);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}



.stat-label {

    font-size: 13px;

    color: #64748b;

    letter-spacing: 1px;

    margin-top: 5px;

}



/* GPU Widget Styling */

.performance-widget {

    background: rgba(0, 0, 0, 0.02);

    border: 1px solid rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    border-radius: 28px;

    padding: 35px;

    box-shadow: 0 30px 60px rgba(5, 5, 8, 0.8), inset 0 1px 0 rgba(0, 0, 0, 0.1);

    position: relative;

    overflow: hidden;

}



.performance-widget::after {

    content: '';

    position: absolute;

    top: 0;

    right: 0;

    width: 150px;

    height: 150px;

    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);

    pointer-events: none;

}



.widget-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    padding-bottom: 18px;

    margin-bottom: 24px;

}



.widget-title {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #64748b;

}



.status-indicator-active {

    font-size: 10px;

    color: #00ffaa;

    text-transform: uppercase;

    font-weight: 700;

    letter-spacing: 1px;

    display: flex;

    align-items: center;

    gap: 6px;

}



.status-indicator-active::before {

    content: '';

    width: 6px;

    height: 6px;

    background-color: #00ffaa;

    border-radius: 50%;

    box-shadow: 0 0 10px #00ffaa;

    display: inline-block;

}



.widget-metric {

    display: flex;

    align-items: flex-end;

    gap: 10px;

    margin-bottom: 24px;

}



.metric-value {

    font-family: var(--font-heading);

    font-size: 54px;

    font-weight: 800;

    line-height: 1;

    color: #1e293b;

}



.metric-label {

    font-size: 16px;

    color: #1e3a8a;

    font-weight: 600;

    margin-bottom: 8px;

}



.widget-graph {

    height: 90px;

    position: relative;

    border-radius: 12px;

    background: rgba(0, 0, 0, 0.2);

    overflow: hidden;

    margin-bottom: 24px;

    border: 1px solid rgba(0, 0, 0, 0.02);

}



.graph-grid {

    position: absolute;

    width: 100%;

    height: 100%;

    background-image:

        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),

        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);

    background-size: 15px 15px;

}



.graph-line {

    position: absolute;

    bottom: 25px;

    left: 0;

    width: 100%;

    height: 10px;

    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.4), rgba(212, 175, 55, 0.6), rgba(30, 58, 138, 0.4), transparent);

    animation: graphScroll 4s infinite linear;

    border-top: 1.5px solid #d4af37;

    box-shadow: 0 -2px 10px rgba(212, 175, 55, 0.2);

}



@keyframes graphScroll {

    0% {

        transform: translateX(-10%);

    }



    50% {

        transform: translateY(12px) translateX(0%);

    }



    100% {

        transform: translateX(-10%);

    }

}



.widget-details {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.widget-detail-row {

    display: flex;

    justify-content: space-between;

    font-size: 13px;

}



.widget-detail-row span:first-child {

    color: #64748b;

}



.widget-detail-row span:last-child {

    color: #1e293b;

    font-weight: 500;

}



/* Contact Section Styling */

.contact {

    background-color: #ffffff;

}



.contact-card {

    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);

    border: 1px solid rgba(255, 255, 255, 0.04);

    border-radius: 36px;

    padding: 70px 60px;

    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);

    position: relative;

    overflow: hidden;

}



.contact-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: radial-gradient(circle at 0% 0%, rgba(30, 58, 138, 0.05) 0%, transparent 60%);

    pointer-events: none;

}



.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1.1fr;

    gap: 60px;

}



.contact-info-col {

    display: flex;

    flex-direction: column;

    justify-content: center;

}



.contact-title {

    font-family: var(--font-heading);

    font-size: 40px;

    font-weight: 800;

    letter-spacing: -0.02em;

    line-height: 1.2;

    margin-bottom: 20px;

}



.contact-desc {

    color: #475569;

    font-weight: 500;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 40px;

}



.contact-details {

    display: flex;

    flex-direction: column;

    gap: 24px;

}



.contact-detail-item {

    display: flex;

    align-items: center;

    gap: 16px;

    color: #1e293b;

    font-size: 15px;

}



.contact-detail-item svg {

    color: #1e3a8a;

}



.contact-form {

    display: flex;

    flex-direction: column;

    gap: 24px;

}



.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

}



.form-label {

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #64748b;

}



.form-input {

    background: rgba(0, 0, 0, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 12px;

    padding: 16px 20px;

    color: #334155;

    font-family: inherit;

    font-size: 16px;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



.form-input:focus {

    outline: none;

    border-color: #1e3a8a;

    background: rgba(0, 0, 0, 0.05);

    box-shadow: 0 0 15px rgba(30, 58, 138, 0.15);

}



textarea.form-input {

    resize: none;

    font-size: 16px;

    color: #334155;

}



.submit-btn {

    background: linear-gradient(135deg, #1e3a8a, #d4af37);

    border: none;

    color: #f8fafc;

    padding: 18px 36px;

    border-radius: 14px;

    font-weight: 700;

    font-size: 15px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);

    margin-top: 10px;

}



.submit-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);

    filter: brightness(1.05);

}



.submit-btn svg {

    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



.submit-btn:hover svg {

    transform: translateX(4px);

}



/* Footer Styling */

.footer {

    border-top: 1px solid rgba(0, 0, 0, 0.05);

    background-color: #ffffff;

    padding: 80px 0 40px;

    position: relative;

    z-index: 4;

}



.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 60px;

}



.footer-brand {

    max-width: 320px;

}



.footer-tagline {

    color: #475569;

    font-size: 16px;

    line-height: 1.7;

    margin-top: 15px;

}



.footer-links-group {

    display: flex;

    gap: 100px;

}



.footer-col {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.footer-col-title {

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #2563eb;

    margin-bottom: 5px;

}



.footer-col a {

    color: #475569;

    text-decoration: none;

    font-size: 16px;

    transition: color 0.3s;

}



.footer-col a:hover {

    color: #334155;

}



.footer-bottom {

    border-top: 1px solid rgba(0, 0, 0, 0.03);

    padding-top: 30px;

}



.footer-bottom-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #475569;

    font-size: 16px;

}



.footer-bottom-links {

    display: flex;

    gap: 25px;

}



.footer-bottom-links a {

    color: #475569;

    text-decoration: none;

    transition: color 0.3s;

    font-size: 16px;

}



.footer-bottom-links a:hover {

    color: #334155;

}



/* Responsive Design */

@media (max-width: 1024px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .about-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }



    .about-visual-column {

        order: -1;

    }



    .contact-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

}



@media (max-width: 768px) {

    .section {

        padding: 80px 0;

    }

    .section-header {

        margin-bottom: 48px;

    }

    .header {

        padding: 20px 6%;

    }



    .nav,

    .header-cta {

        display: none;

    }



    .menu-toggle {

        display: flex;

    }



    .menu-toggle.active span:nth-child(1) {

        transform: translateY(8px) rotate(45deg);

    }



    .menu-toggle.active span:nth-child(2) {

        opacity: 0;

    }



    .menu-toggle.active span:nth-child(3) {

        transform: translateY(-8px) rotate(-45deg);

    }



    .slide-description {

        font-size: 16px;

        color: #475569;

        line-height: 1.6;

    }



    .slider-container {

        width: 95%;

    }



    .slide-nav-btn {

        width: 48px;

        height: 48px;

    }



    .slide-nav-btn svg {

        width: 18px;

        height: 18px;

    }



    .section-title {

        font-size: 36px;

    }



    .services-grid {

        grid-template-columns: 1fr;

    }



    .work-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }



    .contact-card {

        padding: 40px 30px;

    }



    .contact-title {

        font-size: 32px;

    }



    .footer-content {

        flex-direction: column;

        gap: 40px;

    }



    .footer-links-group {

        width: 100%;

        justify-content: space-between;

        gap: 0;

    }



    .footer-bottom-inner {

        flex-direction: column;

        gap: 15px;

        text-align: center;

        color: #475569;

        font-size: 16px;

    }



    .custom-cursor-dot,

    .custom-cursor-ring {

        display: none !important;

    }

}



/* Language Switcher Styling */

.lang-switcher {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-right: 20px;

    margin-left: 20px;

    border-left: 1px solid rgba(255,255,255,0.1);

    padding-left: 20px;

    font-size: 13px;

    font-weight: 600;

}



.lang-switcher-mobile {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 20px;

}



.lang-btn {

    background: none;

    border: none;

    color: #555266;

    cursor: pointer;

    padding: 8px 12px;

    border-radius: 8px;

    font-family: inherit;

    font-weight: inherit;

    font-size: inherit;

    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);

}



.lang-btn.active {

    color: #1e3a8a;

    text-shadow: 0 0 10px rgba(30, 58, 138, 0.4);

}



.lang-btn:hover:not(.active) {

    color: #1e293b;

}



.lang-separator {

    color: #e2e8f0;

}



/* Portfolio Modal Styles */

.portfolio-modal {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 9999;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



.portfolio-modal.active {

    opacity: 1;

    pointer-events: all;

}



.modal-backdrop {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(5, 5, 8, 0.75);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    z-index: 1;

}



.modal-wrapper {

    position: relative;

    width: 90%;

    height: 85%;

    max-width: 1400px;

    background: #08070d;

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 50px 100px rgba(255, 255, 255, 0.95), inset 0 1px 0 rgba(0, 0, 0, 0.1);

    z-index: 2;

    transform: scale(0.95) translateY(20px);

    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}



.portfolio-modal.active .modal-wrapper {

    transform: scale(1) translateY(0);

}



.modal-iframe {

    width: 100%;

    height: 100%;

    background: transparent;

    opacity: 0;

    transition: opacity 0.4s ease;

}



.modal-iframe.loaded {

    opacity: 1;

}



.modal-close-btn {

    position: absolute;

    top: 20px;

    right: 20px;

    background: rgba(0, 0, 0, 0.05);

    border: 1px solid rgba(0, 0, 0, 0.1);

    border-radius: 50%;

    width: 48px;

    height: 48px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #1e293b;

    cursor: pointer;

    z-index: 10;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    backdrop-filter: blur(5px);

    -webkit-backdrop-filter: blur(5px);

}



.modal-close-btn:hover {

    background: rgba(255, 123, 37, 0.2);

    border-color: rgba(255, 123, 37, 0.6);

    color: #2563eb;

    transform: scale(1.08) rotate(90deg);

}



.modal-spinner {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 50px;

    height: 50px;

    border: 3px solid rgba(30, 58, 138, 0.1);

    border-top: 3px solid #1e3a8a;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    animation: modalSpin 1s infinite linear;

    z-index: 3;

    pointer-events: none;

    transition: opacity 0.3s ease;

}



.modal-spinner.hidden {

    opacity: 0;

}



@keyframes modalSpin {

    0% {

        transform: translate(-50%, -50%) rotate(0deg);

    }



    100% {

        transform: translate(-50%, -50%) rotate(360deg);

    }

}



/* ==========================================================================

   10. Split-Screen Layout & Persistent Interactive 3D Robot

   ========================================================================== */



/* Spline Loading Indicator and Spinner */

.spline-loading-placeholder {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 10;

    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;

    opacity: 1;

    visibility: visible;

}



.spline-loading-placeholder.hidden-loader {

    opacity: 0;

    visibility: hidden;

}



.spline-loading-placeholder .loader {

    width: 44px;

    height: 44px;

    border: 3.5px solid rgba(30, 58, 138, 0.15);

    border-bottom-color: #1e3a8a;

    border-radius: 50%;

    display: inline-block;

    animation: spline-rotation-spinner 1s linear infinite;

    box-shadow: 0 0 25px rgba(30, 58, 138, 0.25);

}



@keyframes spline-rotation-spinner {

    0% {

        transform: rotate(0deg);

    }



    100% {

        transform: rotate(360deg);

    }

}



.spline-scene {

    width: 100%;

    height: 100%;

    border: none;

    display: block;

    filter: brightness(1.15) contrast(1.15) saturate(1.25) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.05));

}



/* Layout Split Screen for Desktop Views */

@media (min-width: 992px) {



    /* Set background-color globally */

    html,

    body {

        background-color: #ffffff;

        overflow: hidden;

        height: 100vh;

    }



    /* Wrap the scrollable sections on the left */

    .scrolling-content {

        width: 55%;

        margin-right: 45%;

        position: relative;

        z-index: 2;

        background-color: #ffffff;

        height: 100vh;

        overflow-y: auto;

        overflow-x: hidden;

    }



    /* Persistent 3D container fixed on the right */

    .fixed-spline-container {

        position: fixed;

        top: 0;

        right: 0;

        width: 45%;

        height: 100vh;

        z-index: 5;

        background-color: #ffffff;

        overflow: hidden;

        display: block;

    }



    /* Adjusting container widths and layout constraints for split-screen look */

    .container {

        width: 90%;

        max-width: 750px;

        margin: 0 auto;

    }



    /* Carousel Text Centering & Sizing adjustments for Hero */

    .slider-container {

        width: 90%;

    }



    .slide-content-wrapper {

        

    }



    .slide-title {

        font-size: clamp(28px, 4vw, 52px);

        letter-spacing: -0.02em;

        color: #1e293b;

    }



    .slide-description {

        font-size: 16px;

        max-width: 420px;

        color: #475569;

        line-height: 1.7;

    }



    .slide-nav-btn {

        width: 52px;

        height: 52px;

    }



    /* Grid Overrides for single-column layouts (prevents cramped text) */

    .services-grid {

        grid-template-columns: 1fr !important;

        gap: 24px !important;

    }



    .service-card {

        padding: 35px 30px !important;

    }



    .about-grid {

        grid-template-columns: 1fr !important;

        gap: 40px !important;

    }



    .about-visual-column {

        width: 100%;

        max-width: 500px;

        margin: 0 auto;

    }



    .contact-grid {

        grid-template-columns: 1fr !important;

        gap: 40px !important;

    }



    .contact-info-col {

        text-align: center;

        display: flex;

        flex-direction: column;

        align-items: center;

    }



    .contact-details {

        align-items: center;

    }

}



/* Mobile & Tablet Layout Rules */

@media (max-width: 991px) {

    .scrolling-content {

        width: 100%;

        margin-right: 0;

        display: block;

    }



    .fixed-spline-container {
        position: relative;
        width: 100%;
        height: 450px;
        background-color: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        z-index: 5;
    }

    .custom-cursor-dot,
    .custom-cursor-ring {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .fixed-spline-container {
        height: 340px;
    }
}

@keyframes pulsing-glow {
    0% {
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1), 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1), 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1), 0 0 0 0 rgba(212, 175, 55, 0);
    }
}
 
 . s e c t i o n - p a d d i n g   { 
 
         p a d d i n g - t o p :   8 0 p x ; 
 
         p a d d i n g - b o t t o m :   8 0 p x ; 
 
 }

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.problem-card h3 {
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    line-height: 1.7;
    color: #475569;
}

/* Sesi Refactoring CTA & Typography */
.btn-primary, .cta-button, .btn-secondary {
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover, .cta-button:hover, .btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.contact-card p:last-of-type {
    font-size: 15px;
    color: #64748b;
    margin-top: 20px;
    font-style: italic;
}

p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    color: #475569;
    margin-bottom: 20px;
}

.section {
    padding: 100px 0 !important;
}

.section-header {
    margin-bottom: 60px !important;
}

/* Sesi 7 Final Audit */
body {
    overflow-x: hidden;
    width: 100%;
}
.container {
    padding-left: 20px;
    padding-right: 20px;
}
.lang-switcher, .made-in-id-tag {
    display: none !important;
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* Final Hero Fixes for Overlap */
@media (max-width: 991px) {
    .hero {
        align-items: flex-start !important;
        padding-top: 140px !important;
        padding-bottom: 80px !important;
        min-height: 100vh;
        height: auto;
    }
    .slide-title {
        font-size: 32px !important;
        margin-bottom: 16px !important;
    }
    .slide-description {
        font-size: 16px !important;
    }
    .slide-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .slide-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px !important;
        font-size: 16px !important;
    }
}
.slide-content-wrapper {
    pointer-events: auto !important;
}
.slide-content.active {
    pointer-events: auto !important;
    position: relative !important;
}

.slide-content-wrapper {
    height: auto !important;
    min-height: 350px !important;
}

.hero {
    padding-top: 140px !important;
}

/* Desktop & Header Fixes */
.header-cta .cta-button {
    padding: 10px 20px !important;
    font-size: 14px !important;
}

.nav {
    gap: 15px !important;
}

.nav-link {
    font-size: 14px !important;
    padding: 8px 10px !important;
    white-space: nowrap;
}

.logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    color: var(--color-text);
    cursor: pointer;
    text-decoration: none;
}

@media (min-width: 992px) {
    .slide-title {
        font-size: clamp(28px, 3.5vw, 46px) !important;
    }
    .slide-buttons .btn {
        padding: 14px 28px !important;
        font-size: 16px !important;
    }
    .hero {
        padding-top: 160px !important;
        padding-bottom: 40px !important;
    }
    .slide-content-wrapper {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

/* Fix for Hero Overlap on Short Screens */
@media (max-height: 800px) {
    .hero {
        align-items: flex-start !important;
        padding-top: 130px !important;
    }
    .slider-container {
        align-items: flex-start !important;
        margin-top: 20px !important;
    }
    .slide-title {
        font-size: clamp(22px, 3vw, 32px) !important;
        margin-bottom: 10px !important;
    }
    .slide-description {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    .slide-content-wrapper {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* Layout Header Utama */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Sembunyikan elemen lama jika class-nya masih tersisa di tempat lain */
.lang-switcher, .made-in-id-tag {
    display: none !important;
}

/* Efek Hover untuk Navigasi */
.nav-link:hover {
    color: #1e3a8a !important;
    transition: color 0.2s ease;
}

/* Styling Tombol CTA Header (Terisolasi & Kontras Tinggi) */
.btn-header-cta {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
    filter: brightness(1.1);
}

/* Responsif untuk Mobile */
@media (max-width: 991px) {
    .nav-links {
        display: none !important; /* Sembunyikan menu teks di HP, biarkan logo & tombol CTA saja */
    }
    .header {
        padding: 15px 5%;
    }
    .btn-header-cta {
        padding: 10px 18px;
        font-size: 13px;
    }
}


/* Premium WA Button Styles */
.btn-premium-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background-color: #1e293b;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 65px;
    min-width: 250px;
}

.btn-premium-wa .icon-wrapper svg {
    transition: all 0.4s ease;
}

.btn-premium-wa .text-wrapper {
    display: grid;
    align-items: center;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.btn-premium-wa .text-default,
.btn-premium-wa .text-hover {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.btn-premium-wa .text-default {
    transform: translateY(0);
    opacity: 1;
}

.btn-premium-wa .text-hover {
    transform: translateY(-100%);
    opacity: 0;
    line-height: 1.2;
}

.btn-premium-wa .text-hover small {
    font-size: 13px;
    font-weight: 500;
}

.btn-premium-wa .text-hover strong {
    font-size: 17px;
}

.btn-premium-wa:hover {
    background-color: #d4af37;
    color: #1e293b;
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.btn-premium-wa:hover .text-default {
    transform: translateY(100%);
    opacity: 0;
}

.btn-premium-wa:hover .text-hover {
    transform: translateY(0);
    opacity: 1;
}


/* Override Premium WA Button for Header */
.header .btn-header-wa {
    height: 46px;
    min-width: 200px;
    padding: 8px 24px;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(30, 41, 59, 0.2);
}

.header .btn-header-wa .icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.header .btn-header-wa .text-default,
.header .btn-header-wa .text-hover {
    font-size: 15px;
}

.header .btn-header-wa .text-hover small {
    font-size: 11px;
}

.header .btn-header-wa .text-hover strong {
    font-size: 14px;
}

@media (max-width: 991px) {
    .header .btn-header-wa {
        height: 40px;
        min-width: auto;
        padding: 6px 16px;
    }
    .header .btn-header-wa .text-default,
    .header .btn-header-wa .text-hover {
        font-size: 13px;
    }
    .header .btn-header-wa .text-hover small {
        font-size: 9px;
    }
    .header .btn-header-wa .text-hover strong {
        font-size: 12px;
    }
    .header .btn-header-wa .icon-wrapper svg {
        width: 16px;
        height: 16px;
    }
}






/* --- THE GLASS SPLITTER (ON-CLICK) --- */
.premium-dropdown-wrapper {
    position: relative;
    display: inline-block;
    perspective: 1000px;
}

.premium-dropdown-wrapper .dropdown-main-btn {
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2.5s, opacity 0.4s 2.5s;
    position: relative;
    z-index: 2;
}

/* Ensure text doesn't hide accidentally */
.premium-dropdown-wrapper .dropdown-main-btn .text-default {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Transparent container perfectly centered */
.dropdown-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 15px; /* Jarak antar 2 pil */
    z-index: 100;
    visibility: hidden;
    transition: visibility 0s 2.5s;
    background: transparent !important;
    box-shadow: none !important;
    min-width: max-content;
}

/* The Individual Glass Pills */
.dropdown-item {
    display: block !important;
    padding: 14px 30px !important;
    background-color: rgba(15, 23, 42, 0.85) !important; /* Very dark navy glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.4) !important; /* Elegant thin gold border */
    color: #ffffff !important; /* White text */
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px !important; /* Pill shape */
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    opacity: 0;
    transform: scale(0.4) translateY(0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 2.5s !important;
}

.dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.95) !important; /* Gold on hover */
    color: #0f172a !important; /* Dark text on hover */
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4) !important;
    transform: scale(1.05) !important; 
    transition-delay: 0s !important;
}

/* --- ACTIVE SPLIT STATE --- */
.premium-dropdown-wrapper:hover .dropdown-main-btn {
    transform: scale(0.7);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0s, opacity 0.4s 0s, visibility 0s 0.5s; 
}

.premium-dropdown-wrapper:hover .dropdown-menu {
    visibility: visible;
    transition: visibility 0s 0s; 
}

/* Bloom the pills out */
.premium-dropdown-wrapper:hover .dropdown-menu .dropdown-item {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0s !important;
}

/* Slight stagger for elegance */
.premium-dropdown-wrapper:hover .dropdown-menu .dropdown-item:last-child {
    transition-delay: 0.05s !important;
}

/* Header fix to prevent top pill from going off screen */
.header .dropdown-menu {
    top: 100%;
    transform: translate(-50%, 10px);
}

/* === Global Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.2;
}
h3 {
    font-family: var(--font-primary);
    font-size: var(--text-h3);
    font-weight: 600;
}
p {
    font-family: var(--font-primary);
    font-size: var(--text-p);
    color: var(--color-muted);
    line-height: 1.6;
}
.section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-top: 0.625rem;
}
.problem-card h3, .guarantee-card h3, .benefits-bullets h3 {
    font-family: var(--font-primary);
    font-size: var(--text-h3);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

/* Expanding Cards Portfolio */
.expand-gallery {
    display: flex;
    width: 100%;
    height: 320px;
    gap: 15px;
    margin-top: 30px;
}

.expand-item {
    position: relative;
    flex: 1; /* Collapsed state */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 1 !important; /* Override .work-link opacity */
    transform: none !important; /* Override .work-link transform */
}

/* Active/Expanded State */
.expand-item:hover {
    flex: 10; 
}

.expand-item img, .expand-item .placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 0.6s ease;
}

.expand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.expand-item:hover .expand-overlay {
    opacity: 0.9;
}

.expand-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
}

.expand-item:hover .expand-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s; /* Delay so text appears after expanding */
}

.expand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: var(--font-heading);
}

.expand-subtitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    .expand-gallery {
        flex-direction: column;
        height: 600px;
    }
}

/* Blur siblings when one is hovered to focus attention */
.expand-gallery:hover .expand-item:not(:hover) {
    filter: blur(5px) grayscale(50%);
    opacity: 0.7;
}

/* === PRICING ALIGNMENT & BUTTONS === */
.pricing-card-header {
    min-height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 25px;
}

.pricing-btn-wa {
    position: relative;
    overflow: hidden;
}

.pricing-btn-wa .btn-text-default,
.pricing-btn-wa .btn-text-hover {
    display: block;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-btn-wa .btn-text-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 60%);
    opacity: 0;
    white-space: nowrap;
}

.pricing-btn-wa:hover .btn-text-default {
    transform: translateY(-100%);
    opacity: 0;
}

.pricing-btn-wa:hover .btn-text-hover {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.pricing-btn-wa:hover {
    background: #1e293b !important;
    color: #d4af37 !important;
    border-color: #d4af37 !important;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.3) !important;
}

/* === ADVANTAGE CARDS HOVER === */
.advantage-card {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(37, 99, 235, 0.15);
}

/* === PORTFOLIO SECTION (WEBSITE & VIDEO) === */
.portfolio-section {
    background: #fafbfc;
}

.expand-gallery {
    display: flex;
    width: 100%;
    max-width: 1350px;
    height: 520px;
    gap: 20px;
    margin: 30px auto 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.expand-item {
    position: relative;
    flex: 1; /* Collapsed state */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    opacity: 1 !important;
    transform: translateZ(0) !important;
    will-change: flex;
    contain: layout style;
}

.expand-item:hover {
    flex: 4; /* Expanded state */
    box-shadow: 0 16px 32px rgba(30, 58, 138, 0.18);
}

.expand-item img, 
.expand-item video, 
.expand-item .placeholder-img,
.expand-item .video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform 0.5s ease;
}

.expand-item:hover img,
.expand-item:hover video,
.expand-item:hover .video-poster {
    transform: scale(1.03);
}

.expand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.expand-item:hover .expand-overlay {
    opacity: 0.85;
}

.expand-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: #ffffff;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.expand-item:hover .expand-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.expand-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-family: var(--font-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expand-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    font-family: var(--font-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Video Play Badge */
.video-play-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(30, 58, 138, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding-left: 3px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
    pointer-events: none;
}

.expand-item:hover .video-play-badge {
    transform: scale(1.15);
    background: var(--color-primary);
}

/* === VIDEO MODAL === */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
}

.video-modal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    background: #0f172a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: none;
    font-size: 2rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: rgba(239, 68, 68, 0.85);
    transform: scale(1.1);
}

.video-modal-title {
    padding: 20px 25px 15px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .expand-gallery {
        flex-direction: column;
        height: auto;
    }
    
    .expand-item {
        height: 180px;
    }
    
    .expand-item:hover {
        flex: 1;
        height: 280px;
    }

    .expand-content {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   CSS Lazy Loading System (Pemuatan Tertunda)
   ========================================================================== */

/* Native & Custom Lazy Image Styling */
img[loading="lazy"],
.lazy-load {
    opacity: 1;
    filter: none;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.expand-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 1 !important;
    filter: none !important;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.expand-item:hover img {
    transform: scale(1.06);
}

/* Skeleton Loading Placeholder Shimmer Effect */
.lazy-placeholder {
    position: relative;
    background-color: #f1f5f9;
    overflow: hidden;
}

.lazy-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%);
    animation: lazyShimmer 1.8s infinite ease-in-out;
    z-index: 1;
}

@keyframes lazyShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Class-based Lazy Background Images */
.lazy-bg {
    background-image: none !important;
    opacity: 0;
    transition: background-image 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.lazy-bg.lazy-loaded {
    opacity: 1;
}

/* Lazy Loaded Videos Containment */
video.lazy-video {
    opacity: 0;
    transition: opacity 0.6s ease;
}

video.lazy-video.lazy-loaded {
    opacity: 1;
}

/* ==========================================================================
   YouTube Shorts Portfolio Section & Spline Loader Styles
   ========================================================================== */
.youtube-portfolio-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.youtube-item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.youtube-shorts-card {
    position: relative;
    width: 100%;
    max-width: 250px;
    aspect-ratio: 9 / 16;
    max-height: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(226, 232, 240, 0.8);
    background: #0f172a;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.youtube-shorts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.22), 0 0 0 1px rgba(30, 58, 138, 0.3);
}

.youtube-poster-wrapper {
    position: absolute;
    inset: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.youtube-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.youtube-shorts-card:hover .youtube-poster-img {
    transform: scale(1.05);
}

.youtube-play-btn {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 3;
}

.youtube-shorts-card:hover .youtube-play-btn {
    transform: scale(1.12);
    background: #ff0000;
}

.youtube-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-video-element {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #000000;
}

.youtube-shorts-iframe {
    position: absolute;
    top: -14%;
    left: 0;
    width: 100%;
    height: 128%;
    border: none;
    border-radius: 0;
}

@media (max-width: 768px) {
    .youtube-portfolio-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Spline 3D Robot Positioned & Locked on Desktop (571px Width) */
@media (min-width: 993px) {
    .fixed-spline-container {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 571px !important;
        max-width: 571px !important;
        height: 100vh !important;
        z-index: 5 !important;
        pointer-events: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

.spline-scene {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.spline-loading-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    z-index: 6;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

@media (max-width: 992px) {
    .fixed-spline-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .hero-slogan-container {
        width: 100% !important;
        padding: 0 5% !important;
        text-align: center !important;
        align-items: center !important;
    }
    .hero-slogan-inner {
        text-align: center !important;
        margin: 0 auto !important;
    }
    .hero-slogan-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        text-align: center !important;
    }
    .hero-cta-group {
        justify-content: center !important;
        flex-wrap: wrap !important;
        white-space: normal !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100% !important;
    }
    .hero-trust-badges {
        justify-content: center !important;
        flex-wrap: wrap !important;
        white-space: normal !important;
        gap: 8px !important;
    }
}

@media (max-width: 768px) {
    .animated-logo {
        font-size: 18px !important;
    }
    
    /* 1. Website Portfolio Mobile Card Stack (Visible Titles & Cards) */
    .expand-gallery {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        gap: 16px !important;
        margin-top: 20px !important;
    }
    .expand-item {
        height: 200px !important;
        width: 100% !important;
        border-radius: 16px !important;
        flex: none !important;
        position: relative !important;
    }
    .expand-overlay {
        opacity: 0.75 !important;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%) !important;
    }
    .expand-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
        bottom: 16px !important;
        left: 18px !important;
        white-space: normal !important;
    }
    .expand-title {
        font-size: 1.3rem !important;
    }
    .expand-subtitle {
        font-size: 0.88rem !important;
    }

    /* 2. Video Shorts Portfolio (Compact 2-Column Grid) */
    .youtube-portfolio-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    .youtube-shorts-card {
        max-width: 100% !important;
        max-height: 280px !important;
        aspect-ratio: 9 / 16 !important;
        border-radius: 14px !important;
    }
    .youtube-play-btn {
        width: 40px !important;
        height: 40px !important;
    }
    .youtube-badge {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
        top: 8px !important;
        left: 8px !important;
    }

    /* 3. Google Maps & Contact Card Framing on Mobile */
    .contact-card {
        padding: 35px 20px !important;
        border-radius: 18px !important;
    }
    .contact-title {
        font-size: 1.6rem !important;
    }
    .contact-desc {
        font-size: 0.98rem !important;
        margin-bottom: 24px !important;
    }
    .contact-map-wrapper {
        margin: 20px 0 !important;
        border-radius: 14px !important;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
    }
    .contact-map-iframe {
        height: 220px !important;
    }
}

/* === HERO CTA BUTTONS & TRUST BADGES === */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 14px;
    flex-wrap: nowrap;
    white-space: nowrap;
    animation: sloganSubtitleFade 8s ease infinite;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(203, 213, 225, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    border-color: #1e3a8a;
    color: #1e3a8a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    animation: sloganSubtitleFade 8s ease infinite;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    background: rgba(241, 245, 249, 0.8);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    white-space: nowrap;
}

/* === TESTIMONIALS SECTION === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1250px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-avatar-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.author-info .author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
    font-family: var(--font-heading);
}

.author-info .author-role {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

/* === FLOATING WHATSAPP BUTTON === */
.floating-wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    animation: waPulse 2.5s infinite;
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
}

.floating-wa-tooltip {
    position: absolute;
    right: 72px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.floating-wa-btn:hover .floating-wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .hero-cta-group { justify-content: center; width: 100%; }
    .hero-trust-badges { justify-content: center; width: 100%; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; }
    .floating-wa-btn { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}


