/* ==========================================
   Eskayvie Mindtropic Salespage Styles
   Mobile-First Responsive Design
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --color-primary: #1e40af;
    --color-primary-dark: #1e3a8a;
    --color-primary-light: #3b82f6;
    
    /* Secondary Colors */
    --color-secondary: #7c3aed;
    --color-secondary-dark: #6d28d9;
    
    /* Urgent/Warning Colors */
    --color-urgent: #dc2626;
    --color-warning: #f59e0b;
    --color-success: #16a34a;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    
    /* Backgrounds */
    --bg-light: #f0f9ff;
    --bg-urgent: #fef2f2;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --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);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    color: var(--color-slate-800);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-slate-900);
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-success {
    background: var(--color-success);
    color: var(--color-white);
}

.btn-success:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-epc {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: var(--color-white);
    border: 2px solid transparent;
}

.btn-epc:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Blinking Promo Button */
.btn-promo-blink {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--color-white);
    border: 2px solid transparent;
    animation: blink-promo 1.5s ease-in-out infinite;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-promo-blink:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    animation: none;
}

@keyframes blink-promo {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 5px rgba(249, 115, 22, 0.3);
    }
}

.btn-block {
    width: 100%;
}

.btn-urgent {
    background: var(--color-urgent);
    color: var(--color-white);
    animation: pulse-urgent 2s infinite;
}

.btn-urgent:hover {
    background: #b91c1c;
}

/* ==========================================
   Sticky Header
   ========================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: 0.75rem 1rem;
    display: none;
}

.sticky-header.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
}

.sticky-timer {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--bg-urgent);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-urgent);
    font-family: monospace;
}

.sticky-cta {
    background: var(--color-urgent);
    color: var(--color-white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8125rem;
    white-space: nowrap;
    transition: var(--transition);
    animation: pulse-urgent 2s infinite;
}

.sticky-cta:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

@keyframes pulse-urgent {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-2xl);
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px -12px rgba(37, 211, 102, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   Sticky Mobile CTA
   ========================================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-urgent);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.sticky-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.sticky-mobile-cta a:hover {
    background: #b91c1c;
    color: var(--color-white);
}

.sticky-mobile-cta svg {
    flex-shrink: 0;
}

/* Hide on mobile, show on desktop */
.sticky-mobile-cta {
    display: none;
}

@media (min-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.hero-description {
    color: var(--color-slate-600);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-700);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons .btn {
        flex: 0 1 auto;
        white-space: nowrap;
    }
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--color-white);
    width: 100%;
    height: auto;
}

.hero-stat {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-slate-100);
    max-width: 10rem;
}

.hero-stat-label {
    font-size: 0.625rem;
    color: var(--color-slate-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-description {
    font-size: 0.6875rem;
    color: var(--color-slate-500);
    margin-top: 0.375rem;
    line-height: 1.3;
}

/* ==========================================
   Problem/Pain Points Section
   ========================================== */
.problem {
    padding: 4rem 0;
    background: var(--bg-urgent);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    color: var(--color-slate-600);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.problem-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.problem-icon {
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-slate-800);
}

.problem-card p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================
   Lead Magnet Section
   ========================================== */
.lead-magnet {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.lead-magnet-wrapper {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .lead-magnet-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lead-magnet-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .lead-magnet-content h2 {
        font-size: 2rem;
    }
}

.lead-magnet-content > p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.lead-magnet-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lead-magnet-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.lead-magnet-form-wrapper {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.lead-magnet-form h3 {
    color: var(--color-slate-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-magnet-banner {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 1rem 0 1.5rem;
    box-shadow: var(--shadow-xl);
}

.lead-magnet-image {
    display: none;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .lead-magnet-image {
        display: flex;
    }
}

.ebook-3d-container {
    position: relative;
    perspective: 1000px;
}

.ebook-3d {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
    animation: floatEbook 4s ease-in-out infinite;
}

@keyframes floatEbook {
    0%, 100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-10px);
    }
}

.ebook-front {
    width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 
        -5px 5px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.ebook-spine {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 20px;
    height: calc(100% - 10px);
    background: linear-gradient(to right, #1e3a5f, #2d5a87);
    transform: translateZ(-10px) rotateY(-90deg);
    border-radius: 4px 0 0 4px;
}

.ebook-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    filter: blur(10px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-700);
    margin-bottom: 0.375rem;
}

.form-input,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--color-slate-200);
    border-radius: var(--radius);
    background: var(--color-white);
    transition: var(--transition);
}

.form-input:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-slate-500);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits {
    padding: 4rem 0;
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 2rem;
    background: #e0e7ff;
    border: 1px solid #c7d2fe;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

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

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--color-slate-600);
    margin: 0;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: 4rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-info h2 {
    margin-bottom: 1rem;
}

.about-info > p {
    color: var(--color-slate-600);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-feature h4 {
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    margin: 0;
}

.about-panel {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .about-panel {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-images-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-images-row .about-image-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.about-image {
    background: var(--color-slate-100);
}

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

@media (min-width: 768px) {
    .about-content {
        text-align: left;
    }
}

.about-badge-secondary {
    background: rgba(124, 58, 237, 0.1);
    color: var(--color-secondary);
}

.about-title {
    margin-bottom: 1rem;
}

.about-title span {
    color: var(--color-secondary);
}

.about-content p {
    color: var(--color-slate-600);
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing {
    padding: 4rem 0;
    background: var(--color-white);
}

.urgent-header .urgency-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-urgent);
    color: var(--color-urgent);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Pricing Row Layout */
.pricing-row {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    /* Default: 1 card per row for mobile */
    grid-template-columns: 1fr;
}

/* Promo Row - 2 cards centered */
.pricing-row.promo-row {
    max-width: 700px;
    margin: 0 auto;
}

/* Regular rows - 3 cards */
.pricing-row:not(.promo-row) {
    /* 1 column on mobile by default */
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .pricing-row.promo-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-row:not(.promo-row) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-slate-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 520px;
}

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

.pricing-card.pricing-featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
    z-index: 1;
}

@media (max-width: 767px) {
    .pricing-card.pricing-featured {
        transform: none;
    }
    
    .pricing-card {
        min-height: auto;
        padding: 1.25rem;
    }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-badge.best-value {
    background: var(--color-success);
}

/* Promotional Pricing Card Styles */
.pricing-card.pricing-promo {
    border: 3px solid #f97316;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 50%, #fff7ed 100%);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
    animation: promoPulse 3s infinite;
    min-height: 560px;
}

.pricing-card.pricing-promo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

@media (max-width: 767px) {
    .pricing-card.pricing-promo {
        min-height: auto;
    }
}

@keyframes promoPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
    }
    50% {
        box-shadow: 0 10px 40px rgba(249, 115, 22, 0.35);
    }
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    z-index: 10;
}

.promo-badge svg {
    flex-shrink: 0;
}

.pricing-card.pricing-promo .pricing-title {
    margin-top: 0.75rem;
}

.promo-dates {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.promo-extended {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.pricing-promo .pricing-price {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 0.5rem;
}

.pricing-card.pricing-promo .pricing-price .price-currency {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.pricing-promo .pricing-epc-badge {
    background: #dbeafe;
    color: #1e40af;
    margin-bottom: 1rem;
}

.btn-promo {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4) !important;
    animation: buttonPulse 2s infinite;
    margin-top: auto;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5) !important;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(249, 115, 22, 0.6);
    }
}

/* Promo Savings in Features List */
.pricing-card.pricing-promo .pricing-features li.promo-savings {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    color: #b45309;
    font-weight: 700;
}

.pricing-card.pricing-promo .pricing-features li.promo-savings svg {
    stroke: #f59e0b;
    flex-shrink: 0;
}

.pricing-card.pricing-promo .pricing-features li.promo-savings small {
    font-weight: 400;
    color: #92400e;
    text-decoration: line-through;
    font-size: 0.8125rem;
}

.free-bag-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    margin: 0.5rem auto 1rem;
    max-width: 90%;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.free-bag-badge svg {
    flex-shrink: 0;
}

.free-bag-badge span {
    white-space: nowrap;
}

.free-bag-badge small {
    font-size: 0.6875rem;
    font-weight: 600;
    opacity: 0.95;
    white-space: nowrap;
}

/* Special Promo Raya Section */
.promo-raya {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 50%, #fef08a 100%);
    position: relative;
    overflow: hidden;
}

.promo-raya::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ca8a04' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.promo-raya .section-title {
    color: #b45309;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.promo-raya .section-description {
    color: #92400e;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Promo Raya Header inside Pricing Section */
.promo-raya-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 50%, #fef08a 100%);
    border-radius: 1rem;
    border: 2px solid #f97316;
}

.promo-raya-header .section-title {
    color: #b45309;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.promo-raya-header .section-description {
    color: #92400e;
    font-size: 1.125rem;
    font-weight: 700;
}

.pricing-card.promo-card {
    border: 3px solid #f97316;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 50%, #ffffff 100%);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
    position: relative;
}

.pricing-card.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

.pricing-card.promo-card .pricing-badge {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    z-index: 10;
}

.pricing-free-postage {
    display: inline-block;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.pricing-card.promo-card .pricing-original {
    color: #92400e;
    font-size: 1rem;
    text-decoration: line-through;
    margin-top: 0.25rem;
}

.pricing-card.promo-card .pricing-price .price-value {
    color: #f97316;
}

@media (max-width: 767px) {
    .promo-raya {
        padding: 2rem 0;
    }
    
    .promo-raya .section-title {
        font-size: 1.75rem;
    }
    
    .promo-raya .section-description {
        font-size: 1rem;
    }
}

/* Pricing Image Wrapper - Side by side layout */
.pricing-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pricing-image-wrapper .pricing-image {
    margin: 0;
    flex-shrink: 0;
}

/* Free Bag Image Container */
.free-bag-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin: 1rem 0;
    padding: 0.5rem;
}

.free-bag-image-container .free-bag-image {
    position: static;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: blink-image 1s ease-in-out infinite;
    display: block !important;
    visibility: visible !important;
}

.free-bag-text {
    font-size: 0.5rem;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Free Gift Urgency Text */
.free-gift-urgency {
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
    text-align: center;
    margin: 0.75rem 0;
    padding: 0.5rem;
    background: #fef2f2;
    border-radius: 6px;
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        background: #fef2f2;
    }
    50% {
        transform: scale(1.02);
        background: #fee2e2;
    }
}

@keyframes blink-image {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.pricing-ribbon {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--color-success);
    color: var(--color-white);
    padding: 0.25rem 2rem;
    font-size: 0.6875rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-title {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.pricing-subtitle {
    color: var(--color-slate-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-slate-600);
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.pricing-original {
    font-size: 1rem;
    color: var(--color-slate-400);
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.pricing-epc-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    text-align: left;
    width: 100%;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--color-slate-700);
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Ensure buttons are at the bottom of cards */
.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-card .btn-primary {
    margin-bottom: 0.5rem;
}

.pricing-card .btn-secondary {
    margin-top: 0;
}

/* ==========================================
   Checkout Section
   ========================================== */
.checkout {
    padding: 4rem 0;
    background: var(--bg-light);
    min-height: 100vh;
}

.checkout-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.checkout-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    padding: 0.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.checkout-header h2 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin: 0;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background: var(--color-slate-50);
    border-bottom: 1px solid var(--color-slate-200);
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 0.7;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--color-slate-300);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.step.active .step-number {
    background: var(--color-primary);
}

.step.completed .step-number {
    background: var(--color-success);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    display: none;
}

@media (min-width: 480px) {
    .step-label {
        display: block;
    }
}

.checkout-form {
    padding: 1.5rem;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.checkout-step h3 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.step-actions .btn {
    flex: 1;
}

/* Payment Summary */
.payment-summary {
    background: var(--color-slate-50);
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.summary-row.total {
    border-top: 2px solid var(--color-slate-200);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-primary);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.payment-method input:checked + .payment-method-content {
    border-color: var(--color-primary);
    background: rgba(30, 64, 175, 0.05);
}

.payment-method-content div strong {
    display: block;
    font-size: 0.9375rem;
}

.payment-method-content div span {
    font-size: 0.8125rem;
    color: var(--color-slate-500);
}

/* Payment Info */
.payment-info {
    margin-bottom: 1.5rem;
}

.payment-box {
    background: var(--color-slate-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.payment-box h4 {
    margin-bottom: 1rem;
}

.bank-info {
    width: 100%;
    margin-bottom: 1rem;
}

.bank-info td {
    padding: 0.5rem 0;
    text-align: left;
}

.bank-info td:first-child {
    width: 100px;
    color: var(--color-slate-600);
}

.bank-note {
    font-size: 0.8125rem;
    color: var(--color-slate-500);
    margin: 0;
}

.cod-box {
    background: rgba(245, 158, 11, 0.1);
}

.cod-note {
    font-size: 0.875rem;
    color: var(--color-warning);
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    padding: 4rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--color-slate-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info strong {
    display: block;
    font-size: 0.9375rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--color-slate-500);
}

/* ==========================================
   Video Introduction Section
   ========================================== */
.video-intro {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-slate-50) 0%, var(--color-white) 100%);
}

.video-intro-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-intro-content {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .video-intro-content {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }
}

.video-intro-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-intro-main .video-wrapper {
    background: #000;
    max-width: 800px;
    margin: 0 auto;
}

.video-intro-main .video-wrapper iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
}

.video-intro-info {
    padding: 1rem;
}

.video-intro-info h3 {
    font-size: 1.5rem;
    color: var(--color-slate-800);
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-intro-info > p {
    font-size: 1rem;
    color: var(--color-slate-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.video-intro-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.intro-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-slate-700);
    font-weight: 500;
}

/* ==========================================
   Video Testimonials Section
   ========================================== */
.video-testimonials {
    padding: 4rem 0;
    background: var(--color-white);
}

.video-testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-wrapper:hover .video-placeholder {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.video-placeholder svg {
    margin-left: 4px;
}

.video-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}

.video-testimonial-content {
    padding: 1.25rem;
}

.video-testimonial-content h3 {
    font-size: 1rem;
    color: var(--color-slate-800);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-testimonial-content p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-testimonial-author {
    border-top: 1px solid var(--color-slate-200);
    padding-top: 0.75rem;
}

.video-testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--color-slate-800);
}

.video-testimonial-author span {
    font-size: 0.75rem;
    color: var(--color-slate-500);
}

.video-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.video-cta p {
    font-size: 1.125rem;
    color: var(--color-slate-700);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    padding: 4rem 0;
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--color-white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-slate-800);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-slate-50);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1rem;
    font-size: 0.9375rem;
    color: var(--color-slate-600);
    margin: 0;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-slate-900) 0%, var(--color-slate-800) 100%);
    color: var(--color-white);
}

.contact-wrapper {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.contact-info h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.contact-info > p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-method a,
.contact-method span {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.contact-method a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.contact-form-wrapper .required {
    color: var(--color-urgent);
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--color-slate-900);
    color: var(--color-slate-300);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.9375rem;
    opacity: 0.7;
    margin: 0;
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links a,
.footer-links span {
    display: block;
    font-size: 0.9375rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-slate-700);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
    margin: 0.25rem 0;
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight Blinking Animation */
.highlight-blink {
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 767px) {
    .sticky-header {
        padding: 0.5rem;
    }
    
    .sticky-logo span {
        display: none;
    }
    
    .sticky-timer span {
        font-size: 0.75rem;
    }
    
    .sticky-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding-top: 4rem;
    }
    
    .hero-stat {
        max-width: 8rem;
        padding: 0.75rem;
    }
    
    .hero-stat-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.125rem; }
}

/* ==========================================
   Top Header Styles
   ========================================== */
.top-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 0.75rem 1rem;
    position: relative;
    z-index: 9999;
}

.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.top-header-timer strong {
    font-size: 1rem;
    font-weight: 700;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.top-header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-header-cta:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .top-header-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-header-timer {
        font-size: 0.75rem;
    }
    
    .top-header-timer strong {
        font-size: 0.875rem;
    }
}

/* ==========================================
   Purchase Notification Styles
   ========================================== */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-left: 4px solid #16a34a;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    transform: translateX(-120%);
    transition: transform 0.4s ease;
    max-width: 350px;
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-icon {
    background: #16a34a;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.notification-text {
    font-size: 0.75rem;
    color: #64748b;
}

@media (max-width: 480px) {
    .purchase-notification {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
}

/* ==========================================
   Package Popup Form Styles (Mobile-Friendly)
   ========================================== */
.package-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.package-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.package-popup {
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.package-popup-overlay.active .package-popup {
    transform: translateY(0);
}

@media (min-width: 480px) {
    .package-popup-overlay {
        align-items: center;
        padding: 1rem;
    }

    .package-popup {
        border-radius: 20px;
        max-width: 420px;
        max-height: 85vh;
        padding: 2rem;
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    color: #64748b;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-right: 3rem;
    padding-top: 0.5rem;
    position: relative;
}

.popup-back-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    color: #64748b;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.popup-back-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.popup-header svg {
    margin-bottom: 0.75rem;
    width: 48px;
    height: 48px;
}

.popup-header h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.popup-package-name {
    font-size: 1rem;
    color: #dc2626;
    font-weight: 600;
    margin: 0;
}

.popup-form {
    position: relative;
    padding-bottom: 100px;
    min-height: 300px;
}

.popup-form .form-group {
    margin-bottom: 1rem;
}

.popup-form label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.popup-form input,
.popup-form textarea,
.popup-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    -webkit-appearance: none;
    appearance: none;
}

/* Confirmation Step */
.confirmation-step {
    padding: 1.5rem;
    text-align: center;
}

.confirmation-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.confirmation-text {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Product Image Display in Confirmation */
.confirmation-product-display {
    margin: 1rem 0;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
}

.confirmation-main-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.confirmation-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.confirmation-buttons {
    display: flex;
    gap: 1rem;
}

.confirmation-buttons .btn {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
}

/* Form Step */
.form-step {
    padding-top: 0;
}

.popup-product-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.popup-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
}

.popup-product-details {
    flex: 1;
}

.popup-product-label {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-product-details h4 {
    font-size: 0.9375rem;
    color: #1e293b;
    margin: 0 0 0.25rem;
}

.popup-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
}

.btn-change-product {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-change-product:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

.popup-form input:focus,
.popup-form textarea:focus,
.popup-form select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.popup-form textarea {
    resize: none;
    min-height: 80px;
}

.popup-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.popup-form select optgroup {
    font-weight: 600;
    color: #1e40af;
    background: #f8fafc;
    padding: 0.5rem 1rem;
}

.popup-form select option {
    font-weight: 400;
    color: #334155;
    padding: 0.75rem 1rem;
    background: #ffffff;
}

.popup-package-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #bae6fd;
}

.popup-package-info .info-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.popup-package-info .info-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e40af;
}

.popup-package-info .info-value.free-postage {
    color: #16a34a;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-package-info .info-value.free-postage::before {
    content: '✓';
    background: #dcfce7;
    color: #16a34a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.popup-package-info.popup-total {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border: none;
}

.popup-package-info.popup-total .info-label {
    color: #93c5fd;
    font-weight: 600;
}

.popup-package-info.popup-total .info-value {
    color: #ffffff;
    font-size: 1.25rem;
}

/* Form Footer Slider - Butang Kembali di Bahagian Bawah */
.form-footer-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #ffffff 80%, rgba(255, 255, 255, 0));
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.popup-back-slider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.popup-back-slider:hover {
    background: #ffffff;
    border-color: #1e40af;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 -6px 20px rgba(30, 64, 175, 0.15);
}

.popup-back-slider svg {
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .form-footer-slider {
        position: relative;
        background: transparent;
        padding: 1.5rem;
        margin-top: -0.5rem;
    }
    
    .popup-back-slider {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }
}

/* Payment Method Selection */
.popup-form .form-group {
    margin-bottom: 1rem;
}

.payment-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #1e293b;
    background-color: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.payment-select:focus {
    outline: none;
    border-color: #1e40af;
}

.qr-code-display {
    margin: 1rem 0;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.qr-code-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.qr-code-note {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
}

.qr-code-name {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 600;
    margin: 0;
}

.whatsapp-info-display {
    margin: 1rem 0;
    padding: 1rem;
    background: #ecfdf5;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
}

.whatsapp-info-text {
    font-size: 0.875rem;
    color: #065f46;
    margin: 0;
    text-align: center;
}

/* Payment Reminder */
.payment-reminder {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
}

.payment-reminder svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-reminder p {
    font-size: 0.8125rem;
    color: #92400e;
    margin: 0;
    line-height: 1.5;
}

.payment-reminder strong {
    color: #b45309;
}

.btn-whatsapp-hidden {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    display: none !important;
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    cursor: pointer !important;
    border: none !important;
    color: white !important;
}

.btn-whatsapp-hidden:hover {
    background: linear-gradient(135deg, #20BD5A 0%, #0E6B5C 100%) !important;
}

.btn-whatsapp-hidden.visible {
    display: flex !important;
}

.popup-form .btn {
    /* Positioning adjusted to accommodate footer slider */
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

@media (min-width: 480px) {
    .popup-form .btn {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        padding: 1rem 1.5rem;
        box-shadow: none;
    }
}

/* E-commerce Checkout Button */
.btn-checkout {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 1.25rem 1.5rem !important;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.4) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.5) !important;
}

.btn-checkout:active {
    transform: translateY(0);
}

.btn-checkout:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-checkout svg {
    margin-bottom: 0.25rem;
}

.btn-checkout-amount {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.95;
    margin: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

@media (min-width: 480px) {
    .btn-checkout {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem !important;
    }

    .btn-checkout-amount {
        font-size: 1rem;
        padding-left: 0.75rem;
        border-left: 1px solid rgba(255,255,255,0.3);
    }
}

/* Mobile-specific button positioning */
@media (max-width: 479px) {
    .popup-form .btn {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 1.25rem 1.5rem !important;
    }
    
    .popup-form {
        padding-bottom: 80px;
    }
}

/* Loading animation for button */
.btn-checkout.loading {
    pointer-events: none;
}

@keyframes pulse-button {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.btn-checkout.loading span,
.btn-checkout.loading small {
    animation: pulse-button 1.5s ease-in-out infinite;
}

/* Mobile scroll hint */
.popup-scroll-hint {
    text-align: center;
    color: #94a3b8;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.popup-scroll-hint svg {
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@media (min-width: 480px) {
    .popup-scroll-hint {
        display: none;
    }
}

/* Input focus highlight */
.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: #94a3b8;
}

/* Touch-friendly improvements */
.popup-form input[type="tel"],
.popup-form input[type="text"] {
    min-height: 52px;
}

/* Smooth scrolling */
.package-popup {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
.package-popup::-webkit-scrollbar {
    width: 6px;
}

.package-popup::-webkit-scrollbar-track {
    background: transparent;
}

.package-popup::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.package-popup::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (max-width: 480px) {
    .popup-header {
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 1rem;
    }

    .popup-close {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 1rem;
        display: flex;
    }

    .popup-form {
        padding-bottom: 120px;
    }
}

/* ==========================================
   Category Selection Styles (Dropdown)
   ========================================== */
.category-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.category-select:hover {
    border-color: #cbd5e1;
}

.category-select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.category-select option {
    padding: 1rem;
    font-size: 0.9375rem;
    color: #1e293b;
    background: #ffffff;
}

/* EPC field highlight */
.epc-field {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e9d5ff;
}

.epc-field label {
    color: #7c3aed;
    font-weight: 600;
}

.epc-field input {
    border-color: #c4b5fd;
}

.epc-field input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

/* ==========================================
   WhatsApp Order Popup Styles
   ========================================== */
.whatsapp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.whatsapp-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup {
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.whatsapp-popup-overlay.active .whatsapp-popup {
    transform: translateY(0);
}

@media (min-width: 480px) {
    .whatsapp-popup-overlay {
        align-items: center;
        padding: 1rem;
    }

    .whatsapp-popup {
        border-radius: 20px;
        max-width: 420px;
        max-height: 85vh;
        padding: 2rem;
    }
}

.whatsapp-popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.whatsapp-popup-header svg {
    margin-bottom: 0.75rem;
    width: 48px;
    height: 48px;
}

.whatsapp-popup-header h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.whatsapp-package-info {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.whatsapp-package-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.whatsapp-package-detail:not(:last-child) {
    border-bottom: 1px dashed #a7f3d0;
}

.whatsapp-package-detail .info-label {
    font-size: 0.9375rem;
    color: #065f46;
    font-weight: 500;
}

.whatsapp-package-detail .info-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.whatsapp-package-detail .info-value.price {
    color: #059669;
    font-size: 1.125rem;
}

.whatsapp-form .form-group {
    margin-bottom: 1rem;
}

.whatsapp-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.whatsapp-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.3s ease;
}

.whatsapp-form .form-group input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.whatsapp-form .form-group input::placeholder {
    color: #94a3b8;
}

.btn-whatsapp {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.whatsapp-note {
    text-align: center;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Hide scrollbar but keep functionality */
.whatsapp-popup {
    scroll-behavior: smooth;
}

.whatsapp-popup::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-popup::-webkit-scrollbar-track {
    background: transparent;
}

.whatsapp-popup::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.whatsapp-popup::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (max-width: 480px) {
    .whatsapp-popup-header {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .whatsapp-popup .popup-close {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 1rem;
        display: flex;
    }
}


/* ==========================================
   Floating Cart Button
   ========================================== */
.floating-cart {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    z-index: 999;
   0.3s transition: transform  ease, box-shadow 0.3s ease;
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.floating-cart svg {
    color: white;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc2626;
    color: white;
    font-size: 12px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid white;
}

/* ==========================================
   Cart Drawer
   ========================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cart-drawer-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.cart-drawer-header h3 svg {
    color: #f59e0b;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #64748b;
    transition: color 0.2s ease;
}

.cart-close:hover {
    color: #dc2626;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.cart-empty svg {
    color: #cbd5e1;
    margin-bottom: 15px;
}

.cart-empty p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    background: white;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 14px;
    color: #f59e0b;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
}

.cart-qty-btn:hover {
    border-color: #f59e0b;
    color: #f59e0b;
}

.cart-qty-value {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    min-width: 25px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 5px;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: #dc2626;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #1e293b;
}

.cart-total-amount {
    font-size: 20px;
    font-weight: 700;
    color: #f59e0b;
}

/* ==========================================
   Payment Proof Popup
   ========================================== */
.payment-proof-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.payment-proof-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-proof-popup {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.payment-proof-overlay.active .payment-proof-popup {
    transform: scale(1);
}

.payment-proof-popup .popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    z-index: 10;
}

.payment-proof-popup .popup-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

.payment-proof-header {
    text-align: center;
    padding: 30px 20px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.payment-proof-header svg {
    margin-bottom: 15px;
}

.payment-proof-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.payment-proof-body {
    padding: 25px 20px;
}

.payment-proof-instruction {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.payment-proof-upload {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-proof-upload:hover {
    border-color: #f59e0b;
    background: #fffbeb;
}

.payment-proof-upload svg {
    margin-bottom: 15px;
}

.payment-proof-upload p {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    margin: 0 0 5px;
}

.payment-proof-upload span {
    font-size: 12px;
    color: #94a3b8;
}

.payment-proof-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #16a34a;
}

.payment-proof-preview img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    background: #f8fafc;
}

.btn-remove-proof {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc2626;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-remove-proof:hover {
    background: #b91c1c;
}

.payment-proof-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 0 0 16px 16px;
}

.payment-proof-footer .btn {
    flex: 1;
}

.payment-proof-footer .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================
   QR Code Instructions
   ========================================== */
.qr-code-instruction {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: #92400e;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
}

/* ==========================================
   Toast Notification
   ========================================== */
.toast-notification {
    position: fixed;
    bottom: 180px;
    right: 20px;
    background: #16a34a;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    z-index: 3000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification svg {
    flex-shrink: 0;
}

.toast-notification span {
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================
   Success Message
   ========================================== */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-message.active {
    opacity: 1;
    visibility: visible;
}

.success-message-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 350px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-message.active .success-message-content {
    transform: scale(1);
}

.success-message-content svg {
    color: #16a34a;
    margin-bottom: 20px;
}

.success-message-content h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 10px;
}

.success-message-content p {
    color: #64748b;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .floating-cart {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .cart-drawer {
        max-width: 100%;
    }

    .payment-proof-popup {
        margin: 15px;
    }
}


/* ==========================================
   COD Agreement Message
   ========================================== */
.cod-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #dcfce7;
    border: 1px solid #16a34a;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
}

.cod-agreement svg {
    flex-shrink: 0;
}

.cod-agreement p {
    font-size: 14px;
    color: #166534;
    margin: 0;
}

.cod-agreement strong {
    font-weight: 600;
}


/* ==========================================
   Inline Payment Proof Upload
   ========================================== */
.payment-upload-section {
    text-align: center;
}

.payment-upload-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.payment-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.payment-upload-area:hover {
    border-color: #f59e0b;
    background: #fffbeb;
}

.payment-upload-area svg {
    margin-bottom: 10px;
    color: #9ca3af;
}

.payment-upload-area p {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin: 0 0 5px;
}

.payment-upload-area span {
    font-size: 12px;
    color: #9ca3af;
}

.payment-proof-inline-preview {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #16a34a;
    margin-top: 15px;
}

.payment-proof-inline-preview img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    background: #f8fafc;
    display: block;
}

.btn-remove-proof-inline {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #dc2626;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-remove-proof-inline:hover {
    background: #b91c1c;
}

/* ==========================================
   Cart Drawer - Reduced Height
   ========================================== */
.cart-drawer {
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 80%;
    max-height: 80vh;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    max-height: calc(80vh - 150px);
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background: white;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 13px;
    color: #f59e0b;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
}

.cart-drawer-footer {
    padding: 15px;
    flex-shrink: 0;
}

.cart-drawer-footer .btn {
    margin-bottom: 10px;
}

.cart-drawer-footer .btn:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Mobile Adjustments
   ========================================== */
@media (max-width: 480px) {
    .cart-drawer {
        height: 70%;
        max-height: 70vh;
    }
    
    .cart-drawer-body {
        max-height: calc(70vh - 130px);
        padding: 10px;
    }
}


/* ==========================================
   Payment Method Popup
   ========================================== */
.payment-method-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.payment-method-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-method-popup {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.payment-method-overlay.active .payment-method-popup {
    transform: scale(1);
}

.payment-method-popup .popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    z-index: 10;
}

.payment-method-popup .popup-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

.payment-method-header {
    text-align: center;
    padding: 30px 20px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.payment-method-header svg {
    margin-bottom: 15px;
}

.payment-method-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.payment-method-body {
    padding: 25px 20px;
}

.payment-method-body .form-group {
    margin-bottom: 20px;
}

.payment-method-body .payment-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.payment-method-body .payment-select:focus {
    outline: none;
    border-color: #f59e0b;
}

.payment-method-body .qr-code-display {
    margin-top: 20px;
}

.payment-method-body .qr-code-container {
    text-align: center;
}

.payment-method-body .qr-code-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px;
}

.payment-method-body .qr-code-note {
    font-size: 14px;
    color: #64748b;
    margin: 15px 0 5px;
}

.payment-method-body .qr-code-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}


/* ==========================================
   PREMIUM HERO SECTION - International Brand Style
   ========================================== */

.hero-premium {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    background: #0B1120;
    padding: 80px 0 100px;
}

/* Background Elements */
.hero-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0B1120 0%, #1E3A8A 50%, #0B1120 100%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(30, 64, 175, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

/* Neural Particles */
.neural-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(56, 189, 248, 0.6);
    border-radius: 50%;
    animation: floatParticle 8s infinite ease-in-out;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 5%; animation-delay: 1s; width: 6px; height: 6px; }
.particle-3 { top: 60%; left: 15%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 8%; animation-delay: 3s; width: 5px; height: 5px; }
.particle-5 { top: 30%; left: 90%; animation-delay: 0.5s; }
.particle-6 { top: 50%; left: 85%; animation-delay: 1.5s; width: 6px; height: 6px; }
.particle-7 { top: 70%; left: 95%; animation-delay: 2.5s; }
.particle-8 { top: 15%; left: 75%; animation-delay: 3.5s; width: 5px; height: 5px; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.6;
    }
}

/* Grid Layout */
.hero-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.hero-premium-content {
    padding-right: 40px;
}

.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    color: #38BDF8;
    font-size: 14px;
    font-weight: 600;
}

.hero-premium-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-premium-title .highlight-stat {
    color: #38BDF8;
    font-size: 64px;
}

.hero-premium-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #38BDF8;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-premium-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #94A3B8;
    margin-bottom: 40px;
}

.hero-premium-description p {
    margin-bottom: 12px;
}

.hero-premium-description p:last-child {
    margin-bottom: 0;
}

/* CTA Buttons */
.hero-premium-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
    color: #FFFFFF;
}

.btn-secondary-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.btn-secondary-premium:hover {
    color: #38BDF8;
}

/* Right Visual */
.hero-premium-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

/* Brain Visual */
.brain-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 400px;
    z-index: 0;
    opacity: 0.8;
    animation: brainPulse 4s infinite ease-in-out;
}

.brain-svg {
    width: 100%;
    height: 100%;
}

.brain-glow {
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes brainPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.02); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    z-index: 2;
    animation: floatIcon 6s infinite ease-in-out;
}

.dha-icon {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.milk-icon {
    top: 25%;
    left: 5%;
    animation-delay: 1s;
}

.fruit-icon {
    bottom: 30%;
    right: 5%;
    animation-delay: 2s;
}

.spark-icon {
    top: 40%;
    left: 15%;
    animation-delay: 0.5s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Product Showcase */
.product-showcase {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
}

.product-bottle {
    position: relative;
}

.adult-bottle {
    position: absolute;
    right: 30px;
    bottom: 20px;
    z-index: 1;
    transform: scale(0.9);
}

.junior-bottle {
    position: relative;
    z-index: 2;
}

/* Age Badges */
.age-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.junior-badge {
    bottom: -15px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

.adult-badge {
    bottom: -15px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Mascot Owi */
.mascot-owi {
    position: absolute;
    left: -80px;
    bottom: 10px;
    z-index: 3;
    animation: mascotBounce 3s infinite ease-in-out;
}

@keyframes mascotBounce {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-premium {
        min-height: auto;
        padding: 100px 0 80px;
    }
    
    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-premium-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-premium-title {
        font-size: 42px;
    }
    
    .hero-premium-title .highlight-stat {
        font-size: 48px;
    }
    
    .hero-premium-cta {
        align-items: center;
    }
    
    .hero-premium-visual {
        min-height: 500px;
    }
    
    .brain-visual {
        width: 400px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 80px 0 60px;
    }
    
    .hero-premium-title {
        font-size: 32px;
    }
    
    .hero-premium-title .highlight-stat {
        font-size: 36px;
    }
    
    .hero-premium-subtitle {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .hero-premium-description {
        font-size: 15px;
    }
    
    .hero-premium-visual {
        min-height: 400px;
    }
    
    .product-showcase {
        transform: scale(0.7);
    }
    
    .brain-visual {
        width: 300px;
        height: 200px;
    }
    
    .mascot-owi {
        width: 80px;
        height: 100px;
        left: -10px;
    }
    
    .floating-icon {
        display: none;
    }
}


/* Hero Showcase Image */
.hero-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: showcaseFloat 4s infinite ease-in-out;
}

@keyframes showcaseFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1200px) {
    .hero-showcase {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-showcase {
        max-width: 100%;
    }
}
