/* ==== CSS VARIABLES (Color Palette from Poster) ==== */
:root {
    --primary-cyan: #00d2ff;
    --primary-blue: #034b9e;
    --accent-magenta: #ff007f;
    --accent-yellow: #ffde00;
    --accent-green: #00ff87;
    
    --bg-light: #f0f8ff;
    --bg-white: #ffffff;
    --text-dark: #1a2a40;
    --text-muted: #5a6e85;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 180, 216, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(0, 210, 255, 0.15);
}

body.menu-open {
    overflow: hidden !important;
}

/* ==== RESET & BASE STYLES ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800; /* Made even bolder */
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.mt-5 {
    margin-top: 3rem;
}

.font-bold {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

/* ==== TYPOGRAPHY & GRADIENTS ==== */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==== BUTTONS ==== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* ==== PRELOADER ==== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #ffffff 0%, #e0f2fe 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

/* ==== NAVBAR ==== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2100;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-blue);
    z-index: 2200; /* Above overlay */
}

.nav-brand img {
    height: 35px;
    width: auto;
}

.nav-brand span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: white;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-brand span {
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: var(--transition);
}

.nav-links a.active {
    color: var(--primary-cyan);
}

.nav-links a.active::after {
    width: 100%;
}

/* Nav Toggle & Hamburger */
.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 2300;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    background: var(--primary-blue);
}

/* Hamburger to X Animation */
.nav-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background: var(--primary-blue) !important;
}

.nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background: var(--primary-blue) !important;
}

/* Mobile Media Query */
/* Desktop Hide Mobile Elements */
.mobile-menu-header, .mobile-menu-footer {
    display: none;
}

@media (max-width: 991px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-brand span {
        font-size: 1.2rem;
    }

    .mobile-menu-header {
        display: flex;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .mobile-menu-footer {
        display: block;
        margin-top: 50px;
        width: 100%;
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 2200;
        transform: translateY(-100%);
        padding: 80px 0;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }

    .menu-user-profile {
        display: flex;
        align-items: center;
        gap: 20px;
        background: white;
        padding: 18px 30px;
        border-radius: 60px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        width: 100%;
        max-width: 320px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        margin: 0 auto;
    }

    .menu-avatar {
        width: 65px;
        height: 65px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(3, 75, 158, 0.1);
        border: 2.5px solid var(--primary-cyan);
        flex-shrink: 0;
    }

    .menu-avatar img {
        width: 85%;
        height: 85%;
        object-fit: contain;
    }

    .menu-user-info {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .menu-user-info .greeting {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--primary-blue);
        line-height: 1.1;
        margin-bottom: 2px;
    }

    .menu-user-info .brand-status {
        font-size: 0.8rem;
        color: var(--accent-green);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .menu-user-info .brand-status::before {
        content: '';
        width: 10px;
        height: 10px;
        background: var(--accent-green);
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 12px var(--accent-green);
        animation: pulseStatus 2s infinite;
    }

    .nav-links a {
        color: var(--primary-blue) !important;
        font-size: 2rem;
        font-weight: 800;
        display: block;
        padding: 20px 0;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 4px;
        background: var(--primary-cyan);
        transition: 0.3s ease;
    }

    .nav-links a.active::after {
        width: 40px;
    }

    .menu-social {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .menu-social a {
        font-size: 1.8rem !important;
        color: var(--primary-blue) !important;
        padding: 0 !important;
        opacity: 0.7;
        transition: 0.3s;
    }

    .menu-social a::after { display: none; }

    .menu-social a:hover {
        opacity: 1;
        color: var(--primary-cyan) !important;
        transform: translateY(-5px);
    }
    
    .nav-links::before {
        content: 'MENU';
        position: absolute;
        top: 180px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 5rem;
        font-weight: 900;
        color: rgba(3, 75, 158, 0.03);
        z-index: -1;
        letter-spacing: 15px;
    }
    
    .nav-links::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        z-index: -1;
        border-radius: 50%;
    }
}

/* Only apply hover effects on devices that support it */
@media (hover: hover) {
    .nav-links a:hover {
        color: var(--primary-cyan);
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.preloader-logo-wrapper {
    position: relative;
    padding: 40px;
    display: inline-block;
    margin-bottom: 30px;
}

.preloader-logo {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0,210,255,0.2));
    animation: logoPulse 2.5s infinite ease-in-out;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 15px rgba(0,210,255,0.2)); }
    50% { transform: scale(1.05) translateY(-5px); filter: drop-shadow(0 15px 30px rgba(0,210,255,0.4)); }
}

.loading-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(3,75,158,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0,210,255,0.1);
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
    box-shadow: 0 0 10px rgba(0,210,255,0.5);
    animation: loadingAnim 4s forwards cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes loadingAnim {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--primary-blue);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.6;
}

/* ==== HERO SECTION ==== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0;
    background: #1a2a40; /* Dark backup color */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('asset/bahan/93_printing_hero_v2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-wrapper {
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
}

.logo-interactive-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
}

.hero-main-logo {
    height: 320px !important;
    width: auto;
    filter: brightness(1.4) drop-shadow(0 0 25px rgba(255,255,255,0.6));
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
    letter-spacing: 3px;
    font-weight: 800;
}

.hero .text-gradient {
    background: linear-gradient(45deg, var(--primary-cyan), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* ==== FEATURES BAR ==== */
.features-bar {
    background: var(--bg-white);
    padding: 40px 0;
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

.feature-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==== SECTION HEADERS ==== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-header p {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ==== ABOUT SECTION ==== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-features i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-glass);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.aesthetic-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
}

.aesthetic-card p {
    position: relative;
    z-index: 2;
}

.color-splashes {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 10px;
    z-index: 1;
}

.splash {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    filter: blur(15px);
}

.bg-cyan { background: var(--primary-cyan); }
.bg-magenta { background: var(--accent-magenta); }
.bg-yellow { background: var(--accent-yellow); }

/* ==== PRODUCTS SECTION ==== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.product-card {
    position: relative;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 420px;
}

.product-img-card {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-img-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: var(--transition);
}

.product-card:hover .product-img-card img {
    transform: scale(1.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(3,75,158,0.1);
    border-color: var(--primary-cyan);
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-magenta);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.3);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,210,255,0.1), rgba(3,75,158,0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 1.8rem;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: white;
    transform: rotate(5deg);
}

.product-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-card .btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    width: 100%;
}

.click-hint {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--primary-cyan);
    font-weight: 600;
    opacity: 0.7;
    transition: var(--transition);
}

.product-card:hover .click-hint {
    opacity: 1;
    color: var(--primary-blue);
}



/* ==== CLIENTS SECTION ==== */
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.client-badge {
    background: var(--bg-light);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.client-badge i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.client-badge:hover {
    transform: scale(1.05);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}




/* ==== CTA / CONTACT ==== */
.cta {
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f0f8ff" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top center;
    background-size: cover;
    padding-top: 150px;
}

.cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.7);
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.cta-card p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.2);
}

/* ==== HOW TO ORDER ==== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==== IMAGE ZOOM MODAL ==== */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-zoom-container {
    position: relative;
    max-width: 900px; /* Limits the max size for comfort */
    width: 85%;
    max-height: 90%;
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.zoom-img-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: crosshair;
    border-radius: 15px;
    background: #f8f9fa;
    border: 1px solid #eee;
    max-width: 100%;
}

.zoom-img-wrapper img {
    max-height: 60vh;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.zoom-info {
    max-width: 500px;
}

.zoom-info h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.zoom-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.magnifier {
    position: absolute;
    border: 5px solid #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: none;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.3), inset 0 0 100px rgba(255,255,255,0.1);
    background-repeat: no-repeat;
    z-index: 3001;
    background-color: transparent;
    box-sizing: border-box;
}

.magnifier::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-dark);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3010;
    transition: 0.3s;
}

.close-zoom:hover {
    color: var(--accent-magenta);
    transform: rotate(90deg) scale(1.1);
}

.zoom-hint {
    color: var(--primary-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0,210,255,0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .modal-zoom-container {
        padding: 20px;
        width: 100%;
    }
    .zoom-img-wrapper img {
        max-height: 45vh;
    }
    .magnifier {
        width: 180px;
        height: 180px;
    }
    .zoom-info h3 {
        font-size: 1.4rem;
    }
}

/* ==== MODAL STYLES ==== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 50px auto;
    width: 90%;
    max-width: 900px;
    padding: 50px;
    position: relative;
    border-radius: 30px;
    animation: modalSlideDown 0.5s ease;
}

@keyframes modalSlideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 35px;
    font-weight: bold;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-magenta);
    transform: rotate(90deg);
}

.modal-header-info {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.sub-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sub-product-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sub-product-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
}

.sub-product-item h5 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.sub-product-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-footer {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

/* ==== MAP / LOCATION SECTION ==== */
.location-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-box {
    text-align: center;
    padding: 20px;
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 15px;
}

.info-box h4 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* ==== FOOTER ==== */
footer {
    background: linear-gradient(180deg, #0d1621 0%, #050a0f 100%);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    margin-top: auto;
    border-top: 4px solid var(--primary-cyan);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-cyan);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,210,255,0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 30px;
}

.footer-credits {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.footer-credits strong {
    color: var(--primary-cyan);
    font-weight: 600;
}


/* ==== RESPONSIVE MOBILE ==== */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 32px !important;
    }

    .nav-links {
        gap: 6px;
        flex-wrap: nowrap;
    }
    
    .nav-links a {
        font-size: 0.7rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .hero-main-logo {
        height: 180px !important; /* Adjusted for mobile */
    }

    .hero h1 {
        font-size: 2.2rem;
        text-shadow: 0 5px 20px rgba(0,0,0,0.8);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-spacer {
        height: 60px; /* Space for Floating WA button on mobile */
    }
}
