        :root {
            --primary-forest: #1a5a1a;
            --primary-emerald: #2d7d32;
            --primary-sage: #4caf50;
            --accent-gold: #d4b896;
            --accent-warm: #c8a882;
            --neutral-charcoal: #2c2c2c;
            --neutral-slate: #4a4a4a;
            --neutral-soft: #6a6a6a;
            --neutral-light: #f8f9fa;
            --neutral-cream: #fdfcfb;
            --shadow-soft: 0 2px 20px rgba(45, 125, 50, 0.08);
            --shadow-medium: 0 8px 40px rgba(45, 125, 50, 0.12);
            --shadow-strong: 0 16px 60px rgba(45, 125, 50, 0.16);
            --gradient-primary: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-emerald) 50%, var(--primary-sage) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
            --gradient-soft: linear-gradient(135deg, rgba(45, 125, 50, 0.03) 0%, rgba(76, 175, 80, 0.03) 100%);
            --border-radius-sm: 8px;
            --border-radius-md: 16px;
            --border-radius-lg: 24px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-elegant: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 400;
            line-height: 1.7;
            color: var(--neutral-charcoal);
            background-color: var(--neutral-cream);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 28px;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        /* Premium Loading Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(1deg); }
            66% { transform: translateY(-5px) rotate(-1deg); }
        }

        /* Premium Header */
        header {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            padding: 3.5rem 0;
            position: relative;
            overflow: hidden;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
            animation: shimmer 8s ease-in-out infinite;
        }

        header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
            pointer-events: none;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 0.75rem;
            animation: fadeInScale 0.8s ease-out;
            position: relative;
            z-index: 3;
        }

        .logo-container::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212,184,150,0.4), transparent);
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
        }

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

        .logo-main {
            font-family: 'Poppins', 'Inter', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            line-height: 1;
            margin-bottom: 0.25rem;
            background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 50%, rgba(212,184,150,0.3) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-fill-color: transparent;
        }

        .logo-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 2px;
            opacity: 0.9;
            margin-left: 4px;
            text-transform: uppercase;
        }

        /* Premium SVG Logo Animations */
        .logo-icon .outer-petals {
            animation: rotateSlowCCW 20s linear infinite;
        }

        .logo-icon .middle-petals {
            animation: rotateSlowCW 25s linear infinite;
        }

        .logo-icon .inner-petals {
            animation: rotateSlowCCW 15s linear infinite;
            filter: drop-shadow(0 0 8px rgba(212, 184, 150, 0.4));
        }

        @keyframes rotateSlowCW {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes rotateSlowCCW {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }

        .logo-container:hover .logo-icon .outer-petals {
            animation-duration: 10s;
        }

        .logo-container:hover .logo-icon .middle-petals {
            animation-duration: 12s;
        }

        .logo-container:hover .logo-icon .inner-petals {
            animation-duration: 8s;
            filter: drop-shadow(0 0 12px rgba(212, 184, 150, 0.6));
        }

        .logo-icon {
            transition: all var(--transition-smooth);
        }

        .logo-container:hover .logo-icon {
            transform: scale(1.05);
            filter: drop-shadow(0 8px 25px rgba(45, 125, 50, 0.2));
        }

        .tagline {
            font-family: 'Nunito Sans', 'Inter', sans-serif;
            font-size: 1.5rem;
            font-style: normal;
            opacity: 0.95;
            font-weight: 500;
            letter-spacing: 1px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            position: relative;
        }

        .tagline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: -12px;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212,184,150,0.8), transparent);
        }

        /* Premium Navigation */
        .premium-nav {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .nav-link {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            background: rgba(255,255,255,0.05);
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left var(--transition-smooth);
        }

        .nav-link:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .nav-link:hover::before {
            left: 100%;
        }

        /* Hero Section with Premium Animations */
        .hero {
            background: 
                radial-gradient(circle at 20% 80%, rgba(212, 184, 150, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(45, 125, 50, 0.03) 0%, transparent 70%),
                var(--gradient-soft);
            padding: 8rem 0 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(45, 125, 50, 0.1);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 25% 25%, rgba(212, 184, 150, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.02) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.02"><defs><pattern id="grain" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23000"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            animation: float 25s ease-in-out infinite;
            z-index: -1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(45, 125, 50, 0.01) 0%, rgba(212, 184, 150, 0.01) 100%);
            z-index: -1;
        }

        /* Premium Hero Typography */
        .hero-main-title {
            font-family: 'Poppins', 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--primary-forest);
            text-shadow: 0 4px 20px rgba(45, 125, 50, 0.15);
            animation: fadeInUp 0.8s ease-out 0.3s both;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            color: var(--primary-emerald);
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.4s both;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: var(--neutral-slate);
            font-weight: 400;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out 0.5s both;
            line-height: 1.6;
        }

        .hero-description .highlight-text {
            color: var(--primary-emerald);
            font-weight: 600;
            position: relative;
        }

        .hero-description .highlight-text::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-accent);
            border-radius: 1px;
            animation: scaleIn 0.6s ease-out 1.5s both;
        }

        @keyframes scaleIn {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

        /* Premium CTA Buttons */
        .cta-button {
            display: inline-block;
            background: var(--gradient-accent);
            color: var(--neutral-charcoal);
            padding: 18px 36px;
            text-decoration: none;
            border-radius: var(--border-radius-md);
            font-size: 1.1rem;
            font-weight: 500;
            margin: 12px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            transition: all var(--transition-smooth);
            animation: fadeInScale 0.8s ease-out 0.7s both;
        }

        /* Premium Shopee CTA - Maximum Conversion Focus */
        .cta-shopee {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 25%, #ff6b35 50%, #e55a2b 75%, #ff6b35 100%);
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
            padding: 22px 44px;
            border-radius: 50px;
            text-transform: none;
            letter-spacing: 0.5px;
            margin: 20px 12px;
            box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4), 0 4px 20px rgba(255, 107, 53, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: pulseGlow 2.5s ease-in-out infinite, fadeInScale 0.8s ease-out 0.7s forwards;
            background-size: 200% 200%;
            position: relative;
            cursor: pointer;
        }

        .cta-shopee::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left var(--transition-smooth);
        }

        .cta-shopee::after {
            content: '🚀';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.1rem;
            animation: bounce 1.5s ease-in-out infinite;
        }

        .cta-shopee:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6), 0 8px 30px rgba(255, 107, 53, 0.4);
            background-position: 100% 50%;
            animation: pulseGlowHover 1s ease-in-out infinite;
        }

        .cta-shopee:hover::before {
            left: 100%;
        }

        .cta-shopee:active {
            transform: translateY(-2px) scale(1.02);
        }

        /* Secondary CTA - Less Prominent */
        .cta-secondary {
            background: linear-gradient(135deg, rgba(45, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
            color: var(--primary-forest);
            border: 2px solid var(--primary-sage);
            font-size: 1rem;
            font-weight: 500;
            padding: 14px 28px;
            opacity: 0.8;
            transition: all var(--transition-fast);
        }

        .cta-secondary:hover {
            opacity: 1;
            background: linear-gradient(135deg, rgba(45, 125, 50, 0.15) 0%, rgba(76, 175, 80, 0.15) 100%);
            transform: translateY(-2px);
            box-shadow: var(--shadow-soft);
        }

        /* Pulse and Glow Animations */
        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4), 0 4px 20px rgba(255, 107, 53, 0.3), 0 0 0 0 rgba(255, 107, 53, 0.7);
            }
            50% {
                box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6), 0 4px 20px rgba(255, 107, 53, 0.5), 0 0 20px 5px rgba(255, 107, 53, 0.3);
            }
        }

        @keyframes pulseGlowHover {
            0%, 100% {
                box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6), 0 8px 30px rgba(255, 107, 53, 0.4), 0 0 30px 8px rgba(255, 107, 53, 0.4);
            }
            50% {
                box-shadow: 0 25px 80px rgba(255, 107, 53, 0.8), 0 12px 40px rgba(255, 107, 53, 0.6), 0 0 40px 12px rgba(255, 107, 53, 0.6);
            }
        }

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

        @keyframes pulseGlowMobile {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4), 0 2px 15px rgba(255, 107, 53, 0.3), 0 0 0 0 rgba(255, 107, 53, 0.6);
            }
            50% {
                box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6), 0 4px 20px rgba(255, 107, 53, 0.5), 0 0 15px 3px rgba(255, 107, 53, 0.4);
            }
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left var(--transition-smooth);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-strong);
            color: var(--neutral-charcoal);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Premium Section Styling */
        .section {
            padding: 8rem 0;
            position: relative;
        }

        .section:nth-child(even) {
            background: 
                radial-gradient(circle at 10% 90%, rgba(212, 184, 150, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
                linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-cream) 100%);
        }

        .section:first-of-type {
            border-top: 1px solid rgba(45, 125, 50, 0.08);
        }

        /* Premium Product Showcase */
        .product-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: white;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            position: relative;
            transition: all var(--transition-smooth);
            border: 1px solid rgba(45, 125, 50, 0.05);
        }

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

        .product-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--gradient-accent);
            color: var(--neutral-charcoal);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-badge.sale {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            animation: pulseGlow 2s ease-in-out infinite;
        }

        .product-image {
            height: 200px;
            background: var(--gradient-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-placeholder {
            font-size: 4rem;
            opacity: 0.7;
            filter: drop-shadow(0 4px 8px rgba(45, 125, 50, 0.1));
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform var(--transition-smooth);
        }

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

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left var(--transition-smooth);
        }

        .product-card:hover .product-image::before {
            left: 100%;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h4 {
            color: var(--primary-forest);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .product-rating {
            color: var(--accent-warm);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }

        .product-price {
            margin-bottom: 0.75rem;
        }

        .current-price {
            color: var(--primary-emerald);
            font-size: 1.3rem;
            font-weight: 700;
        }

        .original-price {
            color: var(--neutral-soft);
            font-size: 1rem;
            text-decoration: line-through;
            margin-left: 0.5rem;
        }

        .product-info p {
            color: var(--neutral-soft);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .product-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-emerald) 100%);
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
        }

        .product-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left var(--transition-smooth);
        }

        .product-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 125, 50, 0.3);
        }

        .product-cta:hover::before {
            left: 100%;
        }

        .section h2 {
            font-family: 'Poppins', 'Inter', sans-serif;
            text-align: center;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 4rem;
            color: var(--primary-forest);
            text-shadow: 0 2px 10px rgba(45, 125, 50, 0.1);
            position: relative;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        /* Premium Feature Cards */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .feature {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-soft);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-smooth);
            border: 1px solid rgba(45, 125, 50, 0.05);
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform var(--transition-smooth);
        }

        .feature:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-strong);
        }

        .feature:hover::before {
            transform: scaleX(1);
        }

        .feature h3 {
            color: var(--primary-emerald);
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }

        .feature p {
            color: var(--neutral-soft);
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Premium Care Tips */
        .care-tips {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .tip {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
            transition: all var(--transition-smooth);
            border-left: 4px solid transparent;
        }

        .tip::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--gradient-primary);
        }

        .tip:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-medium);
        }

        .tip h4 {
            color: var(--primary-emerald);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .tip p {
            color: var(--neutral-soft);
            line-height: 1.8;
        }

        /* Regional Info Premium Styling */
        .regional-info {
            background: linear-gradient(135deg, rgba(212, 184, 150, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
            padding: 3.5rem 3rem;
            border-radius: var(--border-radius-lg);
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 184, 150, 0.2);
        }

        .regional-info::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 184, 150, 0.1) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite;
            z-index: -1;
        }

        .regional-info h3 {
            color: var(--primary-forest);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Poppins', 'Inter', sans-serif;
        }

        .regional-info p {
            color: var(--neutral-slate);
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Premium Footer */
        footer {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        }

        footer h3 {
            font-family: 'Poppins', 'Inter', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        footer p {
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .social-links {
            margin: 2rem 0;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 12px 24px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: var(--border-radius-sm);
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transition: left var(--transition-smooth);
        }

        .social-links a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .social-links a:hover::before {
            left: 100%;
        }

        /* Scroll-triggered animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all var(--transition-elegant);
        }

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

        /* Premium Responsive Design */
        @media (max-width: 1024px) {
            header { 
                min-height: 80vh; 
                padding: 3rem 0;
            }
            .hero-main-title { font-size: 3.2rem; }
            .hero-subtitle { font-size: 1.6rem; }
            .hero-description { font-size: 1.2rem; }
            .section h2 { font-size: 3rem; }
            .logo-main {
                font-size: 3rem;
            }
            .logo-icon {
                width: 70px;
                height: 70px;
            }
        }

        @media (max-width: 768px) {
            header {
                min-height: 75vh;
                padding: 2.5rem 0;
            }
            
            .hero {
                padding: 5rem 0 4rem;
            }
            
            .hero-main-title {
                font-size: 2.8rem;
                line-height: 1.2;
                margin-bottom: 0.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.4rem;
                margin-bottom: 1.25rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
                margin-bottom: 2.5rem;
                line-height: 1.5;
            }
            
            .premium-nav {
                margin-top: 1.5rem;
                gap: 0.25rem;
            }
            
            .nav-link {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
            
            .logo-container {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .logo-main {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }
            
            .logo-text {
                align-items: center;
            }
            
            .logo-subtitle {
                margin-left: 0;
            }
            
            .logo-icon {
                width: 60px;
                height: 60px;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
            
            .cta-button {
                display: block;
                margin: 12px auto;
                max-width: 280px;
                font-size: 1rem;
            }
            
            .cta-shopee {
                font-size: 1.1rem;
                padding: 20px 32px;
                max-width: 320px;
                margin: 16px auto;
                border-radius: 40px;
                animation: pulseGlowMobile 2.5s ease-in-out infinite, fadeInScale 0.8s ease-out 0.7s forwards;
            }
            
            .cta-shopee::after {
                right: 16px;
                font-size: 1rem;
            }
            
            .cta-secondary {
                max-width: 240px;
                margin: 8px auto;
                font-size: 0.9rem;
                padding: 12px 24px;
                opacity: 0.7;
            }
            
            .section {
                padding: 5rem 0;
            }
            
            .section h2 {
                font-size: 2.5rem;
            }
            
            .features {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .feature {
                padding: 2.5rem 2rem;
            }
            
            .product-showcase {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .product-card {
                max-width: 400px;
                margin: 0 auto;
            }
            
            .product-image {
                height: 180px;
            }
            
            .product-placeholder {
                font-size: 3.5rem;
            }
            
            .care-tips {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-links a {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            header {
                min-height: 70vh;
                padding: 2rem 0;
            }
            
            .hero-main-title {
                font-size: 2.2rem;
                line-height: 1.15;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }
            
            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .logo-main {
                font-size: 2rem;
                letter-spacing: 1px;
            }
            
            .logo-icon {
                width: 50px;
                height: 50px;
            }
            
            .section h2 {
                font-size: 2rem;
            }
            
            .premium-nav {
                margin-top: 1rem;
                gap: 0.25rem;
            }
            
            .nav-link {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                flex: 1;
                min-width: 120px;
            }
            
            .feature, .tip, .regional-info {
                padding: 2rem 1.5rem;
            }
            
            .product-card {
                max-width: 350px;
            }
            
            .product-image {
                height: 160px;
            }
            
            .product-placeholder {
                font-size: 3rem;
            }
            
            .product-info {
                padding: 1.25rem;
            }
            
            .cta-shopee {
                font-size: 1rem;
                padding: 18px 28px;
                max-width: 300px;
                margin: 14px auto;
                border-radius: 35px;
            }
            
            .cta-shopee::after {
                right: 14px;
                font-size: 0.9rem;
            }
            
            .cta-secondary {
                max-width: 220px;
                font-size: 0.85rem;
                padding: 10px 20px;
                opacity: 0.6;
            }
        }
