/* CSS_BASE_START */
        :root {
            /* Colors */
            --primary: #0e7490;
            --primary-dark: #164e63;
            --secondary: #0d9488;
            --secondary-dark: #0f766e;
            --text-main: #1f2937;
            --text-light: #4b5563;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;

            /* Brands */
            --yuraq: #059669;
            --yuraq-bg: #ecfdf5;
            --kali-blue: #1e3a5f;
            --kali-teal: #0d9488;
            --kali-bg: #f0fdfa;

            /* Fonts */
            --font-head: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;

            /* Utils */
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --max-width: 1200px;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-head);
            font-weight: 600;
            color: var(--primary-dark);
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 500;
            font-family: var(--font-body);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }

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

        .btn-whatsapp {
            background: #25D366;
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Scroll Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section Spacing */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* CSS_BASE_END */

        /* CSS_COMPONENTS_START */
        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: var(--shadow-sm);
        }

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

        .logo {
            font-family: var(--font-head);
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        .navbar.scrolled .logo {
            color: var(--primary-dark);
        }

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

        .nav-links a {
            color: white;
            font-weight: 500;
            transition: var(--transition);
            font-size: 0.95rem;
        }

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

        .navbar.scrolled .nav-links a:hover {
            color: var(--primary);
        }

        .nav-btn {
            background: white;
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }

        .navbar.scrolled .nav-btn {
            background: var(--primary);
            color: white;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .navbar.scrolled .menu-toggle {
            color: var(--text-main);
        }

        /* Hero */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(14, 116, 144, 0.8), rgba(13, 148, 136, 0.7)), url('/images/hero-mountains.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 4rem;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideDown 1s ease-out;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeIn 1s ease-out 0.5s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            animation: slideUp 1s ease-out 0.8s both;
        }

        /* Brands Cards */
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .brand-card {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-top: 4px solid transparent;
        }

        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .brand-card.yuraq {
            border-top-color: var(--yuraq);
        }

        .brand-card.kali {
            border-top-color: var(--kali-blue);
        }

        .brand-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 2rem;
        }

        .brand-card.yuraq .brand-icon {
            background: var(--yuraq-bg);
            color: var(--yuraq);
        }

        .brand-card.kali .brand-icon {
            background: var(--kali-bg);
            color: var(--kali-blue);
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

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

        .product-img-wrapper {
            height: 250px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f3f4f6;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .product-img-wrapper img {
            max-height: 100%;
            object-fit: contain;
        }

        /* Placeholder styles */
        .img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            background: #f9fafb;
            border: 2px dashed #cbd5e1;
            border-radius: 8px;
            padding: 20px;
        }

        .img-placeholder svg {
            width: 40px;
            height: 40px;
            margin-bottom: 10px;
            color: #94a3b8;
        }

        .img-placeholder span {
            font-size: 0.85rem;
            text-align: center;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 10;
        }

        .badge-new {
            background: #ef4444;
            animation: pulse 2s infinite;
        }

        .product-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .product-desc {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Lata Section */
        .lata-section {
            background: linear-gradient(135deg, var(--kali-blue), var(--primary-dark));
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .lata-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .lata-content h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .lata-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .lata-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .lata-feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lata-feature svg {
            color: var(--kali-teal);
            width: 24px;
            height: 24px;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
        }

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

        .benefit-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        /* Coverage */
        .coverage-section {
            background: var(--bg-white);
        }

        .coverage-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .coverage-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

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

        .coverage-list li svg {
            color: var(--yuraq);
        }

        .coverage-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--secondary);
        }

        /* Final CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        /* Footer */
        .footer {
            background: var(--text-main);
            color: white;
            padding: 80px 0 40px;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer h4 {
            color: white;
            font-family: var(--font-body);
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: #9ca3af;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9ca3af;
        }

        /* Animations Keyframes */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

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

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 992px) {

            .lata-container,
            .coverage-container {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3rem;
            }
        }

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

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 40px 20px;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                color: var(--text-main);
                font-size: 1.1rem;
            }

            .navbar .nav-btn {
                display: none;
            }

            .hero {
                padding-top: 60px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

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

            .coverage-list {
                grid-template-columns: 1fr;
            }
        }

        /* CSS_COMPONENTS_END */