/*
Theme Name: HABIB
Theme URI: https://yourwebsite.com
Author: CocoQueen
Author URI: https://yourwebsite.com
Description: Custom theme converted from HTML
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: your-theme
*/
/* Your existing styles.css content goes below this header */
/* ============================================
   CocoQueen - Premium Coconut Export Website
   PURPLE & BLACK THEME with GOLD ACCENTS
   WordPress/Gutenberg Compatible - Vanilla CSS
   ============================================ */

/* CSS Variables / Design System */
:root {
    /* PURPLE & BLACK THEME */
    --primary: #1a0a2e;           /* Deep Royal Purple Dark */
    --primary-dark: #0d051a;      /* Matte Black Purple */
    --primary-light: #2d1b4e;     /* Royal Purple */
    --primary-glow: #4a2c7a;      /* Purple Glow */
    --secondary: #0a0a0a;         /* Matte Black */
    --secondary-dark: #000000;    /* Pure Black */
    --secondary-light: #1a1a1a;   /* Dark Gray */

    /* GOLD ACCENTS */
    --accent: #d4af37;            /* Classic Gold */
    --accent-dark: #b8960c;       /* Dark Gold */
    --accent-light: #f0d060;      /* Light Gold */
    --accent-silver: #c0c0c0;     /* Silver */
    --accent-silver-light: #e8e8e8; /* Light Silver */

    /* Purple Variations */
    --purple-royal: #5b2d82;      /* Royal Purple */
    --purple-deep: #3d1a5c;       /* Deep Purple */
    --purple-glow: #8b5cf6;       /* Purple Glow */
    --purple-soft: rgba(91, 45, 130, 0.3);

    /* Backgrounds - ALL PURPLE/BLACK */
    --bg-cream: #0d051a;          /* Dark Purple Black */
    --bg-light: #1a0a2e;          /* Deep Purple */
    --bg-warm: #0f0812;           /* Warm Black Purple */
    --bg-agriculture: #150a24;    /* Agriculture Dark */
    --bg-dark: #000000;           /* Pure Black */
    --bg-card: #1a0a2e;           /* Card Background */
    --bg-input: #150a24;          /* Input Background */

    /* Text Colors */
    --text-primary: #ffffff;      /* Pure White */
    --text-secondary: #c0c0c0;    /* Light Grey */
    --text-muted: #9ca3af;        /* Muted Grey */
    --text-light: #ffffff;        /* Pure White */
    --text-gold: #d4af37;         /* Gold Text */

    /* Borders & Shadows - Gold based */
    --border-light: rgba(212, 175, 55, 0.15);
    --border-medium: rgba(212, 175, 55, 0.25);
    --border-purple: rgba(91, 45, 130, 0.3);
    --shadow-soft: 0 4px 24px rgba(212, 175, 55, 0.1);
    --shadow-medium: 0 12px 40px rgba(212, 175, 55, 0.15);
    --shadow-strong: 0 20px 60px rgba(212, 175, 55, 0.2);
    --shadow-glow: 0 8px 32px rgba(212, 175, 55, 0.4);
    --shadow-purple: 0 8px 32px rgba(91, 45, 130, 0.4);
    --shadow-dark: 0 16px 48px rgba(0, 0, 0, 0.6);

    /* Gradients - Purple & Gold */
    --gradient-hero: linear-gradient(135deg, rgba(13, 5, 26, 0.98) 0%, rgba(26, 10, 46, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%);
    --gradient-primary: linear-gradient(135deg, var(--purple-royal), var(--purple-deep));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
    --gradient-gold: linear-gradient(135deg, #d4af37, #f0d060);
    --gradient-purple: linear-gradient(135deg, #5b2d82, #8b5cf6);
    --gradient-section: linear-gradient(135deg, rgba(91, 45, 130, 0.1), rgba(212, 175, 55, 0.05));
    --gradient-warm: linear-gradient(180deg, var(--bg-cream), var(--bg-warm));

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-heading: 'Roca Two', 'Playfair Display', Georgia, serif;
    --font-body: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background-color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

.text-accent {
    color: var(--accent);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-purple {
    color: var(--purple-glow);
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--accent);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: rgba(212, 175, 55, 0.1);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-tag.tag-purple {
    color: var(--purple-glow);
    background: rgba(91, 45, 130, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.section-tag.tag-gold {
    color: var(--accent);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons - Purple with Gold Outline */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 16px rgba(91, 45, 130, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-light);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--purple-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-accent {
    background: var(--purple-royal);
    color: var(--text-light);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5), 0 0 30px rgba(139, 92, 246, 0.4);
    background: var(--purple-glow);
}

.btn-accent-gold {
    background: var(--gradient-gold);
    color: var(--secondary-dark);
    border: none;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.btn-accent-gold:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent);
    font-weight: 500;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-base);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: rgba(13, 5, 26, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition-base);
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.navbar.scrolled .logo-text {
    color: var(--accent);
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: var(--space-sm) 0;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-base);
    border-radius: 0;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

/* ============================================
   Floating Buttons - WhatsApp & Quote
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-whatsapp {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    animation: pulse-float 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-quote {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition-base);
}

.floating-quote:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 30px rgba(139, 92, 246, 0.4);
}

@keyframes pulse-float {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sticky Request Quote Bar (Mobile) */
.sticky-quote-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--purple-royal), var(--purple-deep));
    padding: 12px 16px;
    z-index: 998;
    border-top: 2px solid var(--accent);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .sticky-quote-bar {
        display: block;
    }

    .floating-buttons {
        bottom: 90px;
    }
}

.sticky-quote-bar .btn {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--secondary-dark);
    font-weight: 700;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) saturate(0.8);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-decorative {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decorative-circle {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    top: 15%;
    left: 8%;
    width: 140px;
    height: 140px;
    border-color: rgba(139, 92, 246, 0.2);
}

.circle-2 {
    bottom: 20%;
    right: 12%;
    width: 100px;
    height: 100px;
    animation-delay: 3s;
    border-color: rgba(212, 175, 55, 0.25);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* Coconut Agriculture Animations */
.coconut-animations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.floating-coconut,
.floating-leaf {
    position: absolute;
    font-size: 3rem;
    animation: float-agriculture 10s ease-in-out infinite;
    opacity: 0.3;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.coconut-1 {
    top: 15%;
    left: 10%;
    animation-duration: 12s;
}

.coconut-2 {
    top: 60%;
    right: 15%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.coconut-3 {
    bottom: 25%;
    left: 20%;
    animation-duration: 11s;
    animation-delay: 5s;
}

.leaf-1 {
    top: 30%;
    right: 8%;
    animation-duration: 15s;
    animation-delay: 1s;
}

.leaf-2 {
    bottom: 40%;
    left: 12%;
    animation-duration: 13s;
    animation-delay: 4s;
}

.leaf-3 {
    top: 50%;
    right: 25%;
    animation-duration: 16s;
    animation-delay: 2s;
}

@keyframes float-agriculture {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(10deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50px) translateX(0) rotate(-5deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(-20px) rotate(15deg);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--space-5xl) 0 var(--space-4xl);
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(91, 45, 130, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-xl);
    animation: fadeIn 0.8s ease-out;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px rgba(212, 175, 55, 0.6); }
    50% { opacity: 0.8; transform: scale(1.3); box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

.hero-badge span:last-child {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-title .text-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.3125rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    line-height: 1.7;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

.scroll-mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: var(--space-sm);
}

.scroll-dot {
    width: 6px;
    height: 12px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.4; transform: translateY(6px); }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(91, 45, 130, 0.15), rgba(26, 10, 46, 0.95));
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.about-content {
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.about-text {
    max-width: 580px;
}

.about-lead {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
    font-weight: 400;
}

.about-text p:last-child {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.highlight-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--accent);
    box-shadow: var(--shadow-purple);
    transition: var(--transition-base);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.08);
    box-shadow: var(--shadow-glow);
}

.highlight-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.highlight-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Vision & Mission Section
   ============================================ */
.vision-mission {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(91, 45, 130, 0.15));
    position: relative;
}

.vision-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.vm-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .vm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vm-card {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.vision-card {
    background: var(--gradient-hero);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.vision-card h3 {
    color: var(--accent);
}

.vm-icon {
    width: 72px;
    height: 72px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--accent);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.vision-card .vm-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    border-color: rgba(212, 175, 55, 0.3);
}

.vm-card h3 {
    font-size: 1.625rem;
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.vm-card > p {
    font-size: 1.0625rem;
    line-height: 1.75;
    opacity: 0.9;
    color: var(--text-secondary);
}

.mission-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.pillar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-input);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.pillar:hover {
    background: var(--bg-card);
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.pillar svg {
    flex-shrink: 0;
    color: var(--accent);
}

.pillar span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(91, 45, 130, 0.12), rgba(26, 10, 46, 0.95));
}

.reasons-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reason-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.reason-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.reason-card:hover::after {
    transform: scaleX(1);
}

.reason-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-purple);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--accent);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-purple);
}

.reason-card:hover .reason-icon {
    background: var(--gradient-gold);
    color: var(--secondary-dark);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-glow);
}

.reason-card h3 {
    font-size: 1.1875rem;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.reason-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   Products Section
   ============================================ */
.products {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(91, 45, 130, 0.12), rgba(26, 10, 46, 0.95));
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    gap: var(--space-xl);
    position: relative;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.product-image {
    height: 220px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
}

.product-content {
    padding: var(--space-xl);
    position: relative;
}

.product-badge {
    position: absolute;
    top: -14px;
    left: var(--space-lg);
    background: var(--gradient-gold);
    color: var(--secondary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-content h3 {
    font-size: 1.3125rem;
    margin-bottom: var(--space-sm);
    margin-top: var(--space-sm);
    color: var(--text-light);
}

.product-content > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.product-specs {
    margin-bottom: var(--space-lg);
}

.product-specs li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.product-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   Processing Flow Section
   ============================================ */
.process {
    padding: var(--space-5xl) 0;
    background: var(--bg-cream);
}

.process-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.process-tab {
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
}

.process-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 175, 55, 0.1);
}

.process-tab.active {
    background: var(--gradient-purple);
    color: var(--text-light);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.process-flow {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
}

.process-flow.active {
    display: flex;
}

.flow-step {
    flex: 0 0 auto;
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-input);
    border-radius: var(--radius-xl);
    min-width: 140px;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.flow-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.step-content h4 {
    font-size: 0.9375rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-light);
}

.step-content p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.flow-arrow {
    font-size: 1.75rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

@media (max-width: 768px) {
    .flow-arrow {
        display: none;
    }

    .flow-step {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

/* ============================================
   Certifications Section
   ============================================ */
.certifications {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(91, 45, 130, 0.15), rgba(212, 175, 55, 0.08));
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .certs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .certs-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.cert-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.cert-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    background: rgba(91, 45, 130, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition-base);
}

.cert-card:hover .cert-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.08);
}

.cert-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--text-light);
}

.cert-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.cert-desc {
    font-size: 0.8125rem;
    color: var(--accent);
    font-weight: 600;
}

.trust-banner {
    background: var(--gradient-hero);
    padding: var(--space-2xl) var(--space-3xl);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.trust-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

@media (min-width: 768px) {
    .trust-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.trust-content {
    position: relative;
}

.trust-content h3 {
    font-size: 1.875rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.trust-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
}

.badge-icon {
    width: 88px;
    height: 88px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.badge-text {
    color: var(--text-light);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
}

.badge-label {
    font-size: 0.9375rem;
    opacity: 0.75;
}

/* ============================================
   Global Network Section
   ============================================ */
.global-network {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(91, 45, 130, 0.12));
}

.network-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.network-map {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.world-map {
    width: 100%;
    height: auto;
    max-height: 320px;
}

.continent {
    fill: var(--purple-royal);
    opacity: 0.3;
}

.origin-marker {
    fill: var(--accent);
}

.origin-pulse {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    animation: originPulse 2s infinite;
}

@keyframes originPulse {
    0% { r: 8; opacity: 1; }
    100% { r: 24; opacity: 0; }
}

.dest-marker {
    fill: var(--purple-glow);
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.network-stat {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.network-stat:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-purple);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: var(--shadow-purple);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .regions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.region-card {
    padding: var(--space-lg);
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    color: var(--text-light);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.region-card h4 {
    font-size: 1.0625rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    position: relative;
}

.region-card p {
    font-size: 0.9375rem;
    opacity: 0.8;
    position: relative;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(91, 45, 130, 0.15), rgba(212, 175, 55, 0.08), rgba(26, 10, 46, 0.95));
}

.contact-grid {
    display: grid;
    gap: var(--space-2xl);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    color: var(--text-secondary);
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.info-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.info-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-purple);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: var(--shadow-purple);
}

.info-content h4 {
    font-size: 1.0625rem;
    font-family: var(--font-body);
    margin-bottom: var(--space-xs);
    color: var(--accent);
}

.info-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gradient-hero);
    color: var(--text-light);
    padding: var(--space-5xl) 0 var(--space-xl);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='%23d4af37' fill-opacity='0.03'%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;
}

.footer-grid {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    position: relative;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--accent);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(91, 45, 130, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-base);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-links h4 {
    font-size: 1.0625rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    position: relative;
}

.footer-bottom p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Processing Showcase - Before/After Slider
   ============================================ */
.processing-showcase {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(91, 45, 130, 0.12), rgba(212, 175, 55, 0.06), rgba(26, 10, 46, 0.95));
    position: relative;
}

.showcase-grid {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.showcase-item {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.showcase-title {
    font-size: 1.25rem;
    padding: var(--space-lg) var(--space-xl) var(--space-md);
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(91, 45, 130, 0.2), transparent);
}

.showcase-desc {
    padding: var(--space-md) var(--space-xl) var(--space-lg);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Before/After Slider Component */
.before-after-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.after-image {
    z-index: 1;
}

.slider-label {
    position: absolute;
    bottom: 12px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.before-label {
    left: 12px;
}

.after-label {
    right: 12px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.handle-line {
    width: 4px;
    flex: 1;
    background: linear-gradient(180deg, var(--accent), var(--purple-glow));
    border-radius: var(--radius-full);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.handle-circle {
    width: 48px;
    height: 48px;
    background: var(--gradient-purple);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 0 0 4px rgba(139, 92, 246, 0.2);
    transition: transform 0.2s ease;
    position: relative;
    z-index: 11;
}

.before-after-slider:hover .handle-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(139, 92, 246, 0.4);
}

.before-after-slider:active .handle-circle {
    transform: scale(0.95);
}

/* Showcase CTA */
.showcase-cta {
    text-align: center;
    padding-top: var(--space-xl);
}

.showcase-cta p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

/* Animation for slider hint */
@keyframes sliderHint {
    0%, 100% { left: 50%; }
    25% { left: 35%; }
    75% { left: 65%; }
}

.before-after-slider.animate-hint .slider-handle {
    animation: sliderHint 2s ease-in-out 1;
}

.before-after-slider.animate-hint .before-image {
    animation: clipHint 2s ease-in-out 1;
}

@keyframes clipHint {
    0%, 100% { clip-path: inset(0 50% 0 0); }
    25% { clip-path: inset(0 65% 0 0); }
    75% { clip-path: inset(0 35% 0 0); }
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 640px) {
    .network-stats {
        grid-template-columns: 1fr;
    }

    .trust-banner {
        padding: var(--space-xl);
    }

    .trust-content h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   Selection & Scrollbar Styling
   ============================================ */
::selection {
    background: var(--accent);
    color: var(--secondary-dark);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-royal);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============================================
   WordPress / Gutenberg Compatibility
   ============================================ */
.wp-block-group,
.wp-block-columns,
.wp-block-column {
    max-width: 100%;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignwide {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

/* Multi-language ready */
[lang="si"] body,
[lang="zh"] body {
    font-family: var(--font-body), 'Noto Sans Sinhala', 'Noto Sans SC', sans-serif;
}