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

:root {
    /* ========================================
       LOGO-BASED COLOR PALETTE
       Update these colors to match your logo
       ======================================== */
    
    /* Primary Color - Main brand color from logo */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    
    /* Secondary Color - Second main color from logo */
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --secondary-light: #34d399;
    
    /* Accent Color - Accent/highlight color from logo */
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    
    /* Neutral Colors */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Status Colors */
    --success-color: var(--secondary-color);
    --error-color: #ef4444;
    --warning-color: var(--accent-color);
    --info-color: var(--primary-color);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

/* ========================================
   Container
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

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

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

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

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

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

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

.btn-join-us {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-join-us:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Fallback text logo if image doesn't load */
.logo h2 {
    margin: 0;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none; /* Hide text when image is present */
}

.logo h2 sup {
    font-size: 0.6em;
    vertical-align: super;
    -webkit-text-fill-color: var(--text-dark);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-menu > li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    position: relative;
    padding: var(--spacing-xs) 0;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
    height: auto;
    vertical-align: top;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item.has-dropdown {
    display: flex;
    align-items: center;
}

.nav-item.has-dropdown {
    display: flex;
    align-items: center;
}

.nav-item.has-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
    padding: var(--spacing-xs) 0;
    vertical-align: top;
}

.nav-item.has-dropdown > .nav-link i {
    display: inline-block;
    line-height: 1;
    margin-left: 4px;
    font-size: 0.7em;
    vertical-align: middle;
    position: relative;
    top: 0;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
}

.nav-dropdown li {
    list-style: none;
    margin: 0;
}

.nav-dropdown-link {
    display: block;
    padding: 0.625rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-dropdown-link:hover {
    background: #f8fafc;
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.nav-dropdown-link::after {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-cta .btn {
    margin-left: 0;
}

.app-download-btn-nav {
    display: inline-block;
    transition: transform var(--transition-base);
    line-height: 0;
}

.app-download-btn-nav:hover {
    transform: translateY(-2px);
}

.google-play-badge-nav {
    height: 35px;
    width: auto;
    display: block;
}

.app-download-btn-product {
    display: inline-block;
    margin-top: var(--spacing-md);
    transition: transform var(--transition-base);
    line-height: 0;
    align-self: flex-start;
}

.app-download-btn-product:hover {
    transform: translateY(-2px);
}

.google-play-badge-product {
    height: 50px;
    width: auto;
    display: block;
}

.footer-app-download {
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.app-download-btn-footer {
    display: inline-block;
    transition: transform var(--transition-base);
    line-height: 0;
}

.app-download-btn-footer:hover {
    transform: translateY(-2px);
}

.google-play-badge-footer {
    height: 50px;
    width: auto;
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-base);
        gap: var(--spacing-md);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        margin-top: 0.5rem;
        background: #f8fafc;
        border-radius: 6px;
    }
    
    .nav-dropdown::before {
        display: none;
    }
    
    .nav-dropdown-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .nav-cta {
        width: 100%;
        flex-direction: column;
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }
    
    .nav-cta .btn {
        width: 100%;
        margin-left: 0;
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    .nav-cta .app-download-btn-nav {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .google-play-badge-nav {
        height: 40px;
        margin: 0 auto;
    }
}

/* ========================================
   Scrolling Banner Carousel
   ======================================== */
.banner-carousel {
    position: relative;
    min-height: calc(100vh - 70px);
    overflow: hidden;
    margin-top: 70px;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 25%, #1a202c 50%, #2d3748 75%, #4a5568 100%);
    z-index: -1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%, rgba(0, 0, 0, 0.08) 100%);
    z-index: 0;
}

.banner-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-2xl);
    align-items: center;
    padding: var(--spacing-md) 0;
    height: 100%;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
    display: block;
}

.banner-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 100%;
    overflow: visible;
}

.banner-image img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.banner-slide:hover .banner-image img {
    transform: translateY(-10px) scale(1.02);
}

.banner-logo-img,
.banner-slide-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.banner-title {
    font-size: 4rem;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.banner-title-green {
    color: var(--secondary-color);
    font-weight: 800;
}

.banner-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-weight: 400;
}

.banner-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.btn-banner-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff6600;
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
}

.btn-banner-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.4);
}

.btn-banner-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1e293b;
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-banner-secondary:hover {
    background: #334155;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.banner-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.banner-stat-item {
    text-align: left;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.banner-stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.banner-stat-item h3 {
    font-size: 2.5rem;
    color: white;
    margin: 0 0 var(--spacing-xs);
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.banner-stat-item p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-medium);
}

.banner-stat-featured {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(30, 35, 48, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: var(--spacing-md) 0;
    max-width: 280px;
    transition: all 0.3s ease;
}

.banner-stat-featured:hover {
    background: rgba(30, 35, 48, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.banner-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 10px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.banner-stat-content h3 {
    font-size: 2.5rem;
    color: white;
    margin: 0;
    font-weight: 800;
    line-height: 1;
}

.banner-stat-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.25rem 0 0 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    z-index: 10;
    pointer-events: none;
}

.banner-nav-btn {
    width: 56px;
    height: 56px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.banner-nav-btn:hover {
    background: #334155;
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.banner-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-dot.active,
.banner-dot:hover {
    background: #ff6600;
    border-color: #ff6600;
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

.banner-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.banner-scroll .scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.banner-scroll .scroll-down:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}


@media (max-width: 968px) {
    .banner-carousel {
        margin-top: 70px;
    }
    
    .banner-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-xl);
    }
    
    .banner-content {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .banner-title {
        font-size: 2.75rem;
        margin-top: var(--spacing-md);
    }
    
    .banner-text {
        font-size: 1.125rem;
    }
    
    .banner-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .banner-stat-item {
        text-align: center;
    }
    
    .banner-stat-featured {
        margin: var(--spacing-lg) auto;
    }
    
    .banner-buttons {
        justify-content: center;
    }
    
    .banner-image {
        justify-content: center;
    }
    
    .banner-image img {
        max-height: 400px;
    }
    
    
    .banner-nav {
        padding: 0 var(--spacing-sm);
    }
    
    .banner-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .banner-carousel {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }
    
    .banner-slides {
        height: calc(100vh - 70px);
    }
    
    .banner-content-wrapper {
        padding-top: var(--spacing-2xl);
        padding-bottom: var(--spacing-lg);
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .banner-content {
        padding: 0;
    }
    
    .banner-title {
        font-size: 2.25rem;
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
        line-height: 1.2;
    }
    
    .banner-text {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .banner-buttons {
        margin-top: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .banner-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .banner-stats {
        margin-top: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .banner-stat-item {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .banner-stat-item h3 {
        font-size: 2rem;
    }
    
    .banner-stat-item p {
        font-size: 0.75rem;
    }
    
    .banner-dots {
        bottom: 80px;
    }
    
    .banner-image img {
        max-height: 300px;
    }
}

/* ========================================
   Hero Section (Legacy - kept for compatibility)
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    z-index: -3;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    margin-bottom: var(--spacing-lg);
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    font-weight: var(--font-weight-extrabold);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-normal);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.hero-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-content h3 {
    font-size: 2rem;
    color: white;
    margin: 0;
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-medium);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a,
.hero-scroll .scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    text-decoration: none;
}

.hero-scroll a:hover,
.hero-scroll .scroll-down:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(5px);
}

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

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

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

@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   Statistics Section
   ======================================== */
.stats-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: all var(--transition-base);
    border-top: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--secondary-color);
}

.stat-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-icon i {
    font-size: 2rem;
    color: white;
}

.stat-card-content h3 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--text-dark);
    margin: 0 0 var(--spacing-xs);
    line-height: 1;
}

.stat-card-content p {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin: 0 0 var(--spacing-xs);
}

.stat-card-content span {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Introduction Section
   ======================================== */
.intro-section {
    padding: 0 0 var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.intro-decoration-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.intro-decor-img {
    position: absolute;
    width: 150px;
    height: auto;
    opacity: 0.15;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

.intro-decor-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.intro-decor-2 {
    top: 20%;
    right: 5%;
    animation-delay: 1s;
    width: 120px;
}

.intro-decor-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
    width: 130px;
}

.intro-decor-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
    width: 140px;
}

.intro-content {
    max-width: 1100px;
    margin: var(--spacing-xl) auto 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.35) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.intro-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.intro-text {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.intro-text h2 {
    font-size: 3.25rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: var(--text-dark);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
    position: relative;
    padding-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.intro-text h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.intro-text p {
    font-size: 1.1875rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    text-align: justify;
    font-weight: var(--font-weight-normal);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    position: relative;
    padding: 0;
}

.intro-text p:first-of-type {
    padding-top: var(--spacing-sm);
}

.intro-text p:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.intro-text p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .intro-text h2 {
        font-size: 2.25rem;
    }
    
    .intro-text p {
        font-size: 1.125rem;
        line-height: 1.85;
    }
    
    .intro-content {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.intro-feature {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--bg-light), white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.intro-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.intro-feature i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.intro-feature h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.intro-feature p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    padding: 140px 0 var(--spacing-2xl);
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-extrabold);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
}

/* ========================================
   About Page Content
   ======================================== */
.about-page-content {
    padding: var(--spacing-2xl) 0;
    background-color: white;
}

.content-section {
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl);
}

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

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0;
}

.highlight-section {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-transform: capitalize;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 1.5rem;
    margin: var(--spacing-lg) 0 var(--spacing-md);
    color: var(--text-dark);
}

.subsection-title {
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--spacing-xl);
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.section-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary-color);
    transition: all var(--transition-base);
}

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

.section-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.section-card-icon i {
    font-size: 1.75rem;
    color: white;
}

.section-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.closing-statement {
    margin-top: var(--spacing-2xl);
}

.statement-box {
    background: linear-gradient(135deg, var(--bg-light), white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    text-align: center;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.statement-box p:last-child {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ========================================
   About Page Styles
   ======================================== */
.about-hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: var(--spacing-3xl) 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.about-hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-image {
    position: relative;
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-base);
}

.about-hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.about-hero-image:hover .about-hero-img {
    transform: scale(1.02);
}

.about-quote-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-icon {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 0.75rem;
    line-height: 1;
    opacity: 0.6;
}

.quote-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.about-hero-content {
    padding: var(--spacing-lg) 0;
}

.about-hero-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--spacing-md);
    display: block;
}

.about-hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.about-hero-intro {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.75;
    margin: 0 0 var(--spacing-xl) 0;
    letter-spacing: -0.01em;
    text-align: justify;
}

.about-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.about-tab {
    background: none;
    border: none;
    padding: 1rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    outline: none;
}

.about-tab:hover {
    color: #ff6600;
}

.about-tab.active {
    color: #ff6600;
    border: 1px solid #000000;
    border-bottom: 2px solid #ff6600;
    background: transparent;
    margin-bottom: -2px;
}

.about-tab-content {
    min-height: 180px;
    padding-top: 0.5rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.tab-content-text {
    font-size: 1.0625rem;
    color: #374151;
    line-height: 1.85;
    margin: 0;
    letter-spacing: -0.01em;
    text-align: justify;
}

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

.about-difference-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.about-difference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    z-index: 0;
    animation: backgroundShift 15s ease-in-out infinite;
}

.difference-main-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.difference-main-wrapper:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.difference-icon-wrapper {
    flex-shrink: 0;
}

.difference-icon-circle {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.35), 0 0 0 8px rgba(255, 102, 0, 0.1);
    position: relative;
    transition: transform var(--transition-base);
}

.difference-main-wrapper:hover .difference-icon-circle {
    transform: scale(1.05);
}

.difference-icon-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.difference-icon-circle i {
    font-size: 3rem;
    color: white;
    z-index: 1;
    position: relative;
}

.difference-content-wrapper {
    flex: 1;
}

.difference-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.2;
}

.difference-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 var(--spacing-lg) 0;
    text-align: justify;
}

.difference-highlights {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.difference-highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.difference-highlight-item:hover {
    background: #ffffff;
    border-color: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.15);
}

.difference-highlight-item i {
    color: #10b981;
    font-size: 1.125rem;
}

.difference-highlight-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-content-section {
    background: #fafbfc;
    padding: var(--spacing-3xl) 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

.about-content-item {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-content-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.3;
}

.about-content-text {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.about-ecosystem-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.about-ecosystem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.ecosystem-main-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.ecosystem-content-side {
    padding-right: 2rem;
}

.ecosystem-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--spacing-md);
    display: block;
}

.ecosystem-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.ecosystem-description {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 var(--spacing-md) 0;
    text-align: justify;
}

.ecosystem-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-ecosystem-primary {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-ecosystem-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-ecosystem-secondary {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #2563eb;
    cursor: pointer;
}

.btn-ecosystem-secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.ecosystem-cards-side {
    position: relative;
}

.ecosystem-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ecosystem-service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.ecosystem-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.ecosystem-service-card:hover::before {
    transform: scaleX(1);
}

.ecosystem-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.1);
}

.service-card-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: transform var(--transition-base);
}

.ecosystem-service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-icon i {
    font-size: 2rem;
    color: white;
}

.service-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.service-card-text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.about-vision-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.about-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.about-vision-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.about-vision-quote {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0 0 var(--spacing-xl) 0;
    font-style: italic;
    letter-spacing: -0.01em;
    position: relative;
}

.about-vision-quote::before {
    content: '"';
    position: absolute;
    left: -1.5rem;
    top: -0.5rem;
    font-size: 4rem;
    color: var(--border-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.about-vision-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.85;
    margin: 0;
    letter-spacing: -0.01em;
    text-align: justify;
}

@media (max-width: 968px) {
    .about-hero-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-hero-image {
        height: 450px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-intro {
        font-size: 1.0625rem;
    }
    
    .about-tabs {
        flex-wrap: wrap;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .about-tab {
        font-size: 0.875rem;
        padding: 0.875rem 1.25rem;
        letter-spacing: 0.06em;
    }
    
    .about-tab.active {
        border: 1px solid #000000;
        border-bottom: 2px solid #ff6600;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-main-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ecosystem-content-side {
        padding-right: 0;
    }
    
    .ecosystem-main-title {
        font-size: 2.25rem;
    }
    
    .ecosystem-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .ecosystem-service-card {
        padding: 2rem 1.5rem;
    }
    
    .difference-main-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 2.5rem;
    }
    
    .difference-icon-circle {
        margin: 0 auto;
        width: 110px;
        height: 110px;
    }
    
    .difference-title {
        font-size: 2rem;
    }
    
    .difference-highlights {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .about-vision-content {
        padding: 3rem 2rem;
    }
    
    .about-vision-quote {
        font-size: 1.5rem;
    }
    
    .about-vision-quote::before {
        left: -1rem;
        font-size: 3rem;
    }
    
    .about-section-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 640px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .ecosystem-services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-vision-quote {
        font-size: 1.25rem;
    }
    
    .about-vision-content {
        padding: 2.5rem 1.5rem;
    }
    
    .difference-main-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .ecosystem-main-title {
        font-size: 2rem;
    }
}


/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Who We Are Section
   ======================================== */
.who-we-are-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.who-we-are-section .container {
    position: relative;
    z-index: 1;
}

.who-we-are-bg-image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 500px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: var(--spacing-xl);
    pointer-events: none;
}

.african-char-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    opacity: 0.12;
    filter: brightness(1.1);
}

.who-we-are-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.header-line {
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.who-we-are-label {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.who-we-are-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.2;
}

.who-we-are-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.6;
}

.who-we-are-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.who-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.who-feature-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.2);
}

.who-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
}

.who-feature-card:hover .who-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.4);
}

.who-icon-circle {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 50%;
}

.who-icon-square {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 12px;
}

.who-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-sm) 0;
}

.who-feature-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.who-we-are-content-block {
    background: linear-gradient(180deg, 
        rgba(22, 26, 38, 0.95) 0%, 
        rgba(28, 32, 45, 0.92) 50%,
        rgba(22, 26, 38, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.who-we-are-content-block::before {
    content: '';
    position: absolute;
    left: var(--spacing-xl);
    top: var(--spacing-xl);
    bottom: var(--spacing-xl);
    width: 3px;
    background: #ffd700;
    border-radius: 2px;
    z-index: 2;
}

.content-block-text {
    padding-left: calc(var(--spacing-xl) + 1rem);
    color: white;
    position: relative;
    z-index: 1;
}

.content-block-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 var(--spacing-md) 0;
    color: rgba(255, 255, 255, 0.95);
}

.content-block-text p:last-child {
    margin-bottom: 0;
}

.who-we-are-vision-block {
    background: linear-gradient(135deg, rgba(255, 254, 240, 0.95) 0%, rgba(255, 253, 230, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 102, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.vision-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

.who-we-are-vision-block:hover .vision-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.4);
}

.vision-content {
    flex: 1;
}

.vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md) 0;
}

.vision-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 968px) {
    .who-we-are-title {
        font-size: 2rem;
    }
    
    .who-we-are-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .who-we-are-content-block {
        padding: var(--spacing-xl);
    }
    
    .who-we-are-bg-image {
        width: 50%;
        opacity: 0.08;
    }
    
    .african-char-bg {
        max-width: 300px;
    }
    
    .content-block-text {
        padding-left: calc(var(--spacing-lg) + 1rem);
    }
    
    .who-we-are-content-block::before {
        left: var(--spacing-lg);
    }
    
    .who-we-are-vision-block {
        flex-direction: column;
        padding: var(--spacing-xl);
    }
}

/* ========================================
   Products Section
   ======================================== */
.products {
    background-color: var(--bg-light);
}

.products-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.products-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.product-category-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-category-icon::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.product-category-icon i {
    font-size: 2.5rem;
    color: white;
}

.product-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.product-category-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.products-note {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.products-note p {
    margin: 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.8;
}

.products-note i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ========================================
   Awards Section
   ======================================== */
.awards-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.awards-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.awards-carousel {
    width: 100%;
    overflow: hidden;
}

.awards-track {
    display: flex;
    gap: var(--spacing-lg);
    animation: scrollAwards 15s linear infinite;
}

@keyframes scrollAwards {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-25% - var(--spacing-lg)));
    }
}

.award-item {
    flex: 0 0 calc(25% - var(--spacing-lg));
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.award-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.award-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@media (max-width: 968px) {
    .award-item {
        flex: 0 0 calc(50% - var(--spacing-lg));
    }
    
    @keyframes scrollAwards {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - var(--spacing-lg)));
        }
    }
}

@media (max-width: 640px) {
    .award-item {
        flex: 0 0 calc(100% - var(--spacing-lg));
    }
    
    @keyframes scrollAwards {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% - var(--spacing-lg)));
        }
    }
}

/* Products Section Modern Design */
.products-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--spacing-2xl) 0;
}

/* ========================================
   Products Showcase Section
   ======================================== */
.products-showcase-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f5f7fa 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.offerings-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(37, 99, 235, 0.1));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(255, 102, 0, 0.1));
    bottom: -50px;
    right: -50px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.08));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.offerings-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.offerings-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.8s ease-out;
    padding-right: var(--spacing-lg);
}

.offerings-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ff6600;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.12), rgba(255, 102, 0, 0.06));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 102, 0, 0.25);
    width: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.offerings-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.offerings-badge:hover::before {
    left: 100%;
}

.badge-icon {
    font-size: 0.7rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.offerings-title {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.2;
    position: relative;
}

.title-highlight {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.offerings-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, transparent);
    border-radius: 2px;
}

.offerings-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offerings-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
    position: relative;
    padding-left: 1rem;
}

.offerings-text p::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-size: 0.7rem;
    top: 0.2rem;
}

.offerings-text p strong {
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
}

.products-segment-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin: var(--spacing-sm) 0;
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-left: 4px solid #ff6600;
    position: relative;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.products-segment-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.products-segment-box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 102, 0, 0.4);
}

.products-segment-box:hover::before {
    opacity: 1;
}

.segment-box-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.segment-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.products-segment-box h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin: 0;
}

.products-segment-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
    position: relative;
    z-index: 1;
}

.offerings-conclusion {
    margin-top: 0.25rem;
}

.offerings-conclusion p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.offerings-conclusion p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: #ff6600;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.offerings-conclusion p strong {
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
    font-style: normal;
}

.offerings-images {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    animation: fadeInRight 0.8s ease-out;
}

.ecosystem-logo-container {
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding: var(--spacing-xl);
    transition: all 0.4s ease;
}

.ecosystem-logo-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.35);
}

.ecosystem-logo {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.stacked-product-image {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.stacked-product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stacked-product-image:hover::before {
    opacity: 1;
}

.product-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    border-radius: 50%;
    filter: blur(20px);
}

.stacked-product-image:hover .product-image-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.stacked-product-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 102, 0, 0.3);
}

.stacked-product-image img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.stacked-product-image:hover img {
    transform: scale(1.1) rotate(2deg);
}

.product-label {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.95), rgba(255, 133, 51, 0.95));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
    z-index: 3;
}

.stacked-product-image:hover .product-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 968px) {
    .products-showcase-section {
        padding: var(--spacing-xl) 0;
    }
    
    .offerings-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .offerings-title {
        font-size: 2rem;
    }
    
    .offerings-content {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .offerings-images {
        animation: fadeInUp 0.6s ease-out 0.2s both;
    }
    
    .product-image-stack {
        max-width: 100%;
        gap: var(--spacing-md);
    }
    
    .stacked-product-image {
        padding: var(--spacing-lg);
    }
    
    .stacked-product-image img {
        max-height: 140px;
    }
    
    .orb-1, .orb-2, .orb-3 {
        width: 250px;
        height: 250px;
    }
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.product-showcase-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.35) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: var(--primary-color);
}

.product-showcase-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8fafc, white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.product-showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-showcase-card:hover .product-showcase-image::before {
    opacity: 1;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-base);
}

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

.product-showcase-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-showcase-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: var(--font-weight-bold);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.product-description {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    flex: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.product-showcase-content .btn {
    margin-top: 0;
    align-self: flex-start;
    font-weight: var(--font-weight-semibold);
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
}

@media (max-width: 968px) {
    .products-showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .product-showcase-image {
        height: 220px;
    }
}

.products-header-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl);
}

.products-header-content .section-badge {
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.product-modern-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-modern-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-xl);
    color: white;
    text-align: center;
}

.product-modern-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.product-modern-icon i {
    font-size: 2.5rem;
    color: white;
}

.product-modern-header h3 {
    color: white;
    font-size: 1.75rem;
    margin: 0;
    font-weight: var(--font-weight-bold);
}

.product-modern-body {
    padding: var(--spacing-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-modern-body > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.product-features i {
    color: var(--secondary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.products-quality-note {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    border: 2px solid var(--border-color);
    max-width: 1000px;
    margin: 0 auto;
}

.quality-note-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-note-icon i {
    font-size: 2rem;
    color: white;
}

.quality-note-text h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.quality-note-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 968px) {
    .products-quality-note {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.product-image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.product-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    margin-bottom: var(--spacing-xs);
}

.product-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.benefit-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.product-content .btn {
    margin-top: auto;
}

.products-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.products-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.products-note {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.products-note p {
    margin: 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.products-note i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text {
    line-height: 1.8;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    font-size: 1.125rem;
}

.mission-box,
.vision-box {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.35) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.mission-box h4,
.vision-box h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: var(--font-weight-bold);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.mission-box h4 i,
.vision-box h4 i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.mission-box p,
.vision-box p {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.vision-box {
    border-left-color: var(--secondary-color);
}

.vision-box h4 i {
    color: var(--secondary-color);
}


@media (max-width: 968px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        text-align: center;
    }
}

/* ========================================
   Mission Section (New Design)
   ======================================== */
.mission-section {
    background: white;
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.mission-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.05;
    overflow: hidden;
}

.mission-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image-container {
    width: 100%;
    max-width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

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

.mission-content {
    padding: var(--spacing-xl);
}

.mission-text-box {
    background: linear-gradient(135deg, #f8fafc, white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-lg);
}

.mission-text-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-weight: var(--font-weight-medium);
}

@media (max-width: 968px) {
    .mission-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-image-container {
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }
}

/* ========================================
   Rewards Section
   ======================================== */
.rewards-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.rewards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.rewards-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

.rewards-content-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.rewards-text {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
}

.rewards-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-medium);
}

.rewards-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.rewards-text p:last-child {
    margin-bottom: 0;
}

.rewards-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: sticky;
    top: 100px;
}

.rewards-highlight-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.rewards-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rewards-highlight-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-extrabold);
}

.rewards-highlight-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .rewards-content-main {
        grid-template-columns: 1fr;
    }
    
    .rewards-highlight {
        position: relative;
        top: 0;
    }
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.reward-item {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.reward-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reward-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-icon i {
    font-size: 2rem;
    color: white;
}

.reward-item h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.reward-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.rewards-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.rewards-cta p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.rewards-cta p:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.rewards-cta p strong {
    color: var(--text-dark);
    font-weight: var(--font-weight-bold);
}

/* ========================================
   Benefits Section (Legacy - keeping for compatibility)
   ======================================== */
.benefits {
    background-color: var(--bg-light);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-text h4 {
    margin-bottom: var(--spacing-xs);
}

.benefit-text p {
    margin: 0;
    color: var(--text-light);
}

.benefits-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 968px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .section-header.text-left {
        text-align: center;
    }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.testimonial-text {
    flex: 1;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   Countries Strip Section
   ======================================== */
/* ========================================
   Our Products Section
   ======================================== */
.our-products-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #242933 50%, #1a1f2e 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.products-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.products-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.products-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.products-header-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.products-section-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.products-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.products-section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card-inner {
    background: linear-gradient(180deg, 
        rgba(30, 35, 48, 0.85) 0%, 
        rgba(26, 31, 46, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card:hover .product-card-inner {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.product-card-glow {
    display: none;
}

.product-card-image {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(22, 26, 38, 0.95);
}

.product-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.5rem;
}

.product-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card-subtitle {
    font-size: 0.8125rem;
    color: #10b981;
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 500;
}

.product-card-dots {
    display: flex;
    gap: 0.375rem;
    margin-bottom: var(--spacing-sm);
}

.product-card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.product-card-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 var(--spacing-md) 0;
    flex: 1;
}

.product-card-label {
    display: none;
}

.product-card-button {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: #dc2626;
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.product-card-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.product-app-download {
    margin-top: var(--spacing-sm);
}

.app-download-btn-product-card {
    display: inline-block;
    transition: transform 0.3s ease;
    line-height: 0;
    width: 100%;
}

.app-download-btn-product-card:hover {
    transform: translateY(-2px);
}

.google-play-badge-product-card {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .products-section-title {
        font-size: 1.75rem;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .ecosystem-logo-container {
        max-width: 300px;
        height: 300px;
    }
}

.countries-strip-section {
    background: linear-gradient(180deg, 
        rgba(26, 31, 46, 0.95) 0%,
        rgba(30, 35, 48, 0.9) 50%,
        rgba(15, 20, 25, 0.95) 100%);
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.countries-strip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.countries-strip-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.countries-strip-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: var(--spacing-lg);
    white-space: nowrap;
}

.countries-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
}

.countries-scroll-container::before,
.countries-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.countries-scroll-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(26, 31, 46, 0.95), transparent);
}

.countries-scroll-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(26, 31, 46, 0.95), transparent);
}

.countries-scroll-track {
    display: flex;
    gap: var(--spacing-lg);
    animation: scrollCountries 40s linear infinite;
    white-space: nowrap;
}

.country-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.country-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.country-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 133, 51, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 133, 51, 0.2);
    color: white;
}

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

@media (max-width: 768px) {
    .countries-strip-label {
        font-size: 0.75rem;
        margin-right: var(--spacing-md);
    }
    
    .country-item {
        font-size: 0.875rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .countries-scroll-track {
        gap: var(--spacing-md);
        animation-duration: 35s;
    }
}

/* ========================================
   Closing CTA Section
   ======================================== */
.closing-cta-section {
    position: relative;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
    background: #1a1f2e;
}

.closing-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border: 2px solid #ff8533;
    border-radius: 50%;
    border-top: none;
    border-left: none;
    border-right: none;
    opacity: 0.3;
    z-index: 1;
}

.join-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1f2e;
    z-index: 0;
}

.join-us-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.join-us-decor {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #ff8533;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.decor-top-left {
    top: -70px;
    left: -70px;
    border-right: none;
    border-bottom: none;
}

.decor-bottom-right {
    bottom: -70px;
    right: -70px;
    border-left: none;
    border-top: none;
}

.join-us-card {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(180deg, 
        rgba(22, 26, 38, 0.9) 0%, 
        rgba(28, 32, 45, 0.85) 25%,
        rgba(28, 32, 45, 0.85) 75%,
        rgba(22, 26, 38, 0.9) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    z-index: 2;
    text-align: center;
    overflow: hidden;
}

.join-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-top: 2px solid #ff8533;
    border-left: 2px solid #ff8533;
    border-top-left-radius: 24px;
    z-index: 3;
}

.join-us-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid #ff8533;
    border-right: 2px solid #ff8533;
    border-bottom-right-radius: 24px;
    z-index: 3;
}

.join-us-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 2.5rem 0;
    line-height: 1.5;
    text-align: center;
    letter-spacing: -0.01em;
}

.join-us-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-join-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #ff6600;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
    font-family: inherit;
}

.btn-join-primary:hover {
    background: #ff7620;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.35);
}

.btn-join-primary i {
    font-size: 0.75rem;
    margin-left: 0.125rem;
}

.btn-join-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(40, 44, 58, 0.6);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    font-family: inherit;
}

.btn-join-secondary:hover {
    background: rgba(48, 52, 66, 0.7);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.btn-join-secondary i {
    font-size: 0.75rem;
    margin-left: 0.125rem;
}

.join-us-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1.5rem 0;
    border: none;
}

.join-us-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.join-feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    font-weight: 400;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.bullet-green {
    background: #10b981;
}

.bullet-blue {
    background: #3b82f6;
}

.bullet-orange {
    background: #ff8533;
}

.closing-cta-wrapper-new {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.closing-cta-content-center {
    text-align: center;
    color: white;
    padding: var(--spacing-md) 0;
}

.closing-cta-content {
    text-align: center;
    color: white;
}

.cta-icon-wrapper {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.cta-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite, pulse-icon 2s ease-in-out infinite;
}

.cta-icon-circle i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-title {
    font-size: 3rem;
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-normal);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md) 0;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cta-feature-item i {
    color: #ffd700;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.closing-cta-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.closing-cta-icon i {
    font-size: 3.5rem;
    color: white;
}


.closing-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

@media (max-width: 968px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .cta-features {
        gap: var(--spacing-md);
    }
    
    .cta-feature-item {
        font-size: 0.9375rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }
}

@media (max-width: 968px) {
    .join-us-card {
        padding: 2.5rem 2rem;
        margin: 0 var(--spacing-md);
        max-width: calc(100% - 2rem);
    }
    
    .join-us-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .join-us-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
    }
    
    .btn-join-primary,
    .btn-join-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    .join-us-features {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .join-us-divider {
        margin: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .closing-cta-section {
        padding: var(--spacing-xl) 0;
    }
    
    .join-us-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .join-us-title {
        font-size: 1.35rem;
        margin-bottom: 1.75rem;
        line-height: 1.4;
    }
    
    .join-us-buttons {
        margin-bottom: 1.5rem;
    }
    
    .join-us-divider {
        margin: 1.5rem 0 1.25rem;
    }
    
    .decor-top-left,
    .decor-bottom-right {
        width: 120px;
        height: 120px;
    }
    
    .join-us-features {
        gap: 1.25rem;
    }
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    color: white;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    position: relative;
    background: #0f1419;
    color: white;
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f1419;
    z-index: 0;
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-lg);
}

.footer-brand {
    max-width: 100%;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(1);
}

.footer-company-name {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-heading-with-bar {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-left: 1rem;
    display: flex;
    align-items: center;
}

.footer-heading-with-bar::before {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 16px;
    background: #ffd700;
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1rem;
}

.footer-menu li a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.footer-menu li a:hover {
    color: white;
}

.footer-app-download {
    margin: var(--spacing-lg) 0;
}

.app-download-btn-footer {
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 0;
    filter: brightness(0.95);
}

.app-download-btn-footer:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.google-play-badge-footer {
    height: 50px;
    width: auto;
    display: block;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link-square {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-square:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.social-link-square i {
    font-size: 1rem;
}

.footer-contact {
    max-width: 280px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-icon {
    color: #ffd700;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-lg);
}

.footer-feature-card {
    background: rgba(20, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-feature-card:hover {
    background: rgba(25, 30, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-card-icon {
    color: #ffd700;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-card-title {
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    line-height: 1.4;
    margin: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-lg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-lg);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-link-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .footer-main-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
        gap: 2rem;
    }
    
    .footer-feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-main-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: 1 / -1;
    }
    
    .footer-section:nth-child(5) {
        margin-top: -1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 var(--spacing-md);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo-img {
        margin: 0 auto 1rem;
    }
    
    .footer-tagline {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact {
        max-width: 100%;
    }
    
    .footer-feature-cards {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 var(--spacing-md);
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-divider {
        padding: 0 var(--spacing-md);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   CSR Pages Styles
   ======================================== */

/* CSR Hero Section */
.csr-hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e40af 100%);
    padding: 6rem 0 5rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.csr-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.csr-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.csr-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.csr-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* CSR Filter Section */
.csr-filter-section {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.csr-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.csr-filter-btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.csr-filter-btn:hover {
    border-color: #ff6600;
    color: #ff6600;
    background: rgba(255, 102, 0, 0.05);
}

.csr-filter-btn.active {
    background: #ff6600;
    border-color: #ff6600;
    color: white;
}

/* CSR Projects Section */
.csr-projects-section {
    background: #ffffff;
    padding: var(--spacing-3xl) 0;
}

.csr-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.csr-project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.csr-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.csr-project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.csr-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.csr-project-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.csr-project-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.csr-project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.csr-project-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
    flex: 1;
}

.csr-project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.csr-project-location i {
    color: #ff6600;
    font-size: 0.875rem;
}

.csr-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ff6600;
    text-decoration: none;
    transition: all var(--transition-base);
    align-self: flex-start;
}

.csr-project-link:hover {
    gap: 0.75rem;
    color: #e55a00;
}

.csr-project-link i {
    font-size: 0.875rem;
    transition: transform var(--transition-base);
}

.csr-project-link:hover i {
    transform: translateX(4px);
}

/* CSR CTA Section */
.csr-cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e40af 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.csr-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.csr-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.2;
}

.csr-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 var(--spacing-xl) 0;
}

.btn-csr-primary {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-csr-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

/* CSR Project Detail Page Styles */
.csr-project-hero {
    position: relative;
    margin-top: 70px;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.csr-project-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.csr-project-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csr-project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.csr-project-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    color: white;
}

.csr-project-hero-category {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.csr-project-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    max-width: 900px;
}

.csr-project-hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.csr-project-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.csr-project-meta-item i {
    font-size: 1.125rem;
}

/* CSR Project Stats */
.csr-project-stats {
    background: #1e3a5f;
    padding: 3rem 0;
}

.csr-project-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.csr-project-stat-item {
    text-align: center;
}

.csr-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.csr-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CSR Project Overview */
.csr-project-overview {
    background: #ffffff;
    padding: var(--spacing-3xl) 0;
}

.csr-project-overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.csr-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.csr-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.csr-project-description p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    text-align: justify;
}

.csr-project-approach {
    background: #f0f4f8;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.csr-approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.csr-project-approach p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* CSR Project Sidebar */
.csr-project-sidebar {
    position: sticky;
    top: 100px;
}

.csr-project-quick-facts {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.csr-quick-facts-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.csr-quick-facts-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.csr-quick-fact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.csr-fact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.csr-fact-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.status-active {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.btn-csr-support {
    display: block;
    background: #ff6600;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-csr-support:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* CSR Project Gallery */
.csr-project-gallery {
    background: #f8fafc;
    padding: var(--spacing-3xl) 0;
}

.csr-project-gallery .container {
    max-width: 1200px;
}

.csr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.csr-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base);
}

.csr-gallery-item:hover {
    transform: scale(1.02);
}

.csr-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Events Gallery Section */
.events-gallery-section {
    background: #ffffff;
    padding: var(--spacing-3xl) 0;
}

.events-gallery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.events-header-line {
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.events-section-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.events-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.2;
}

.events-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
    line-height: 1.7;
}

.events-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.event-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    cursor: pointer;
}

.event-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.event-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.event-gallery-item:hover img {
    transform: scale(1.1);
}

.event-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.event-gallery-item:hover .event-gallery-overlay {
    transform: translateY(0);
}

.event-gallery-caption {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.events-gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .events-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .events-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .events-section-title {
        font-size: 1.75rem;
    }
    
    .events-section-subtitle {
        font-size: 1rem;
    }
}

/* CSR Project CTA */
.csr-project-cta {
    background: #1e3a5f;
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.csr-project-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.csr-project-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.2;
}

.csr-project-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 var(--spacing-xl) 0;
}

.csr-project-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-csr-contact {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-csr-contact:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.btn-csr-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-csr-secondary:hover {
    background: white;
    color: #1e3a5f;
    transform: translateY(-2px);
}

/* CSR Responsive Styles */
@media (max-width: 968px) {
    .csr-hero-title {
        font-size: 2.5rem;
    }
    
    .csr-hero-description {
        font-size: 1.125rem;
    }
    
    .csr-projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .csr-project-overview-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .csr-project-sidebar {
        position: static;
    }
    
    .csr-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .csr-project-hero {
        min-height: 450px;
    }
    
    .csr-project-hero-content {
        padding: 3.5rem 0;
    }
    
    .csr-project-hero-title {
        font-size: 2.5rem;
    }
    
    .csr-project-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .csr-project-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .csr-hero-title {
        font-size: 2rem;
    }
    
    .csr-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .csr-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .csr-project-hero {
        min-height: 400px;
    }
    
    .csr-project-hero-content {
        padding: 3rem 0;
    }
    
    .csr-project-hero-title {
        font-size: 1.75rem;
    }
    
    .csr-project-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .csr-project-stats {
        padding: 2rem 0;
    }
    
    .csr-project-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .csr-project-overview-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .csr-project-sidebar {
        position: static;
    }
    
    .csr-section-title {
        font-size: 1.75rem;
    }
    
    .csr-project-cta {
        padding: 2rem 0;
    }
    
    .csr-project-cta-title {
        font-size: 1.75rem;
    }
    
    .csr-project-cta-buttons {
        flex-direction: column;
    }
    
    .btn-csr-contact,
    .btn-csr-secondary {
        width: 100%;
    }
}

/* ========================================
   Products Page Styles
   ======================================== */

.products-page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-page-header {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-page-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.products-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.products-page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.product-showcase-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.product-section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb 20%, #d1d5db 50%, #e5e7eb 80%, transparent);
    margin: 3rem auto 0;
    max-width: 1200px;
    position: relative;
}

.product-section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #ff6600, #2563eb);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.product-bg-1 {
    background: #ffffff;
}

.product-bg-2 {
    background: #ffffff;
    padding-top: 1rem;
}

.product-bg-3 {
    background: #ffffff;
    padding-top: 1rem;
}

.product-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-feature-left,
.product-feature-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-feature-block {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.product-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.product-feature-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.product-image-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 400px;
    flex-shrink: 0;
}

.product-center-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.product-app-download-center {
    margin-top: 2rem;
    text-align: center;
}

.app-download-link-center {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.app-download-link-center:hover {
    opacity: 0.8;
}

.google-play-badge-center {
    height: 60px;
    width: auto;
    display: block;
}

.product-reverse {
    direction: rtl;
}

.product-reverse > * {
    direction: ltr;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-showcase-wrapper {
        gap: 4rem;
    }
    
    .product-image-center {
        width: 350px;
    }
    
    .product-center-image {
        max-width: 350px;
    }
}

@media (max-width: 968px) {
    .products-page-title {
        font-size: 2.5rem;
    }
    
    .products-page-subtitle {
        font-size: 1.125rem;
    }
    
    .product-showcase-section {
        padding: 5rem 0;
    }
    
    .product-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .product-image-center {
        order: 1;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .product-center-image {
        max-width: 350px;
    }
    
    .product-feature-left {
        order: 2;
    }
    
    .product-feature-right {
        order: 3;
    }
    
    .product-reverse .product-image-center {
        order: 1;
    }
    
    .product-reverse .product-feature-left {
        order: 2;
    }
    
    .product-reverse .product-feature-right {
        order: 3;
    }
    
    .product-feature-left,
    .product-feature-right {
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .products-page-hero {
        padding: 4rem 0 3rem;
    }
    
    .products-page-title {
        font-size: 2rem;
    }
    
    .products-page-subtitle {
        font-size: 1rem;
    }
    
    .product-showcase-section {
        padding: 4rem 0;
    }
    
    .product-image-center {
        max-width: 280px;
    }
    
    .product-center-image {
        max-width: 280px;
    }
    
    .product-feature-title {
        font-size: 1.25rem;
    }
    
    .product-feature-text {
        font-size: 0.9375rem;
    }
    
    .google-play-badge-center {
        height: 55px;
    }
    
    .product-feature-left,
    .product-feature-right {
        gap: 2rem;
    }
}

/* ========================================
   Privacy Policy Page Styles
   ======================================== */

.privacy-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.privacy-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.privacy-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.privacy-updated {
    font-size: 0.9375rem;
    color: #999;
    margin: 0;
    font-style: italic;
}

.privacy-content-section {
    padding: 4rem 0 6rem;
    background: #ffffff;
}

.privacy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-main-content {
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 3.5rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.privacy-subsection {
    margin-top: 2rem;
}

.privacy-subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.privacy-text {
    font-size: 1.0625rem;
    color: #444;
    line-height: 1.8;
    margin: 0 0 1.25rem 0;
    text-align: justify;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    font-size: 1.0625rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
    text-align: justify;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
    font-size: 1.25rem;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-contact-box {
    background: #f8fafc;
    border-left: 4px solid #ff6600;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.privacy-contact-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-contact-info {
    font-size: 1.0625rem;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.privacy-contact-info a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-contact-info a:hover {
    color: #e55a00;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.125rem;
    }
    
    .privacy-content-section {
        padding: 3rem 0 4rem;
    }
    
    .privacy-section-title {
        font-size: 1.75rem;
    }
    
    .privacy-subsection-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 640px) {
    .privacy-hero {
        padding: 4rem 0 3rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content-section {
        padding: 2.5rem 0 3rem;
    }
    
    .privacy-section {
        margin-bottom: 2.5rem;
    }
    
    .privacy-section-title {
        font-size: 1.5rem;
    }
    
    .privacy-subsection-title {
        font-size: 1.25rem;
    }
    
    .privacy-text,
    .privacy-list li {
        font-size: 1rem;
    }
    
    .privacy-contact-box {
        padding: 1.25rem 1.5rem;
    }
}

/* ========================================
   FAQ Page Styles
   ======================================== */

.faq-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.faq-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.faq-content-section {
    padding: 4rem 0 6rem;
    background: #ffffff;
}

.faq-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: #ff6600;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    transition: background-color 0.3s ease;
    user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-item.active .faq-question {
    background: #fff5f0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #ff6600;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 2rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

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

.faq-answer p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin: 1.5rem 0;
    text-align: justify;
}

.faq-answer p:first-child {
    margin-top: 1.5rem;
}

.faq-answer p:last-child {
    margin-bottom: 1.5rem;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.faq-answer ul li,
.faq-answer ol li {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    text-align: justify;
}

.faq-answer ul li:last-child,
.faq-answer ol li:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.faq-answer a:hover {
    color: #e55a00;
    text-decoration: underline;
}

.faq-certificate-fig {
    margin: 1.5rem 0 1.5rem 0;
    max-width: 100%;
}
.faq-certificate-fig .faq-certificate-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-certificate-fig figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 968px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.125rem;
    }
    
    .faq-content-section {
        padding: 3rem 0 4rem;
    }
    
    .faq-category-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .faq-hero {
        padding: 4rem 0 3rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-content-section {
        padding: 2.5rem 0 3rem;
    }
    
    .faq-category {
        margin-bottom: 3rem;
    }
    
    .faq-category-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.9375rem;
        padding-right: 0.75rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-answer p,
    .faq-answer ul li,
    .faq-answer ol li {
        font-size: 0.9375rem;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        padding-left: 1.5rem;
    }
}

/* ========================================
   Contact Page Styles - Modern Tech Design
   ======================================== */
.contact-hero-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2d1b4e 50%, #1a1f3a 75%, #0a0e27 100%);
    padding: 8rem 0 6rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.contact-hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent 70%);
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
    bottom: -50px;
    right: 15%;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.contact-hero-badge i {
    color: #60a5fa;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0 0 3rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.4);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-info-card.modern-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-info-card.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #8b5cf6, #10b981);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-info-card.modern-card:hover .card-glow {
    opacity: 1;
}

.contact-info-card.modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(37, 99, 235, 0.3);
}

.contact-info-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 50%, #10b981 100%);
    background-size: 200% 200%;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 5s ease infinite;
    transition: all 0.4s ease;
}

.contact-info-card.modern-card:hover .contact-info-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 
        0 15px 40px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.card-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.05));
    transition: height 0.4s ease;
}

.contact-info-card.modern-card:hover .card-hover-effect {
    height: 100%;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-info-detail {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.contact-info-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-detail a:hover {
    color: var(--secondary-color);
}

.contact-form-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-form-container.modern-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.contact-form-container.modern-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #8b5cf6, #10b981);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

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

.form-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form.modern-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modern-input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.modern-input,
.modern-select,
.modern-textarea {
    padding: 1.25rem 1rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 4px 12px rgba(37, 99, 235, 0.1);
}

.modern-input:not(:placeholder-shown) + .modern-label,
.modern-input:focus + .modern-label,
.modern-select:focus + .modern-label,
.modern-textarea:not(:placeholder-shown) + .modern-label,
.modern-textarea:focus + .modern-label {
    transform: translateY(-1.5rem) scale(0.85);
    color: #2563eb;
}

.modern-label {
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
}

.modern-label .required {
    color: #ef4444;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.modern-input:focus ~ .input-underline,
.modern-select:focus ~ .input-underline,
.modern-textarea:focus ~ .input-underline {
    transform: scaleX(1);
}

.modern-textarea {
    resize: vertical;
    min-height: 140px;
    padding-top: 1.5rem;
}

.modern-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-submit-btn.modern-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 50%, #10b981 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 5s ease infinite;
}

.contact-submit-btn.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 40px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-submit-btn.modern-submit-btn:active {
    transform: translateY(0);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn.modern-submit-btn:hover .button-shine {
    left: 100%;
}

.contact-submit-btn.modern-submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn.modern-submit-btn:hover i {
    transform: translateX(4px);
}

.contact-form-success {
    background: #10b981;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-form-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-form-success p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.contact-details-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details-card.modern-sidebar-card,
.contact-social-card.modern-sidebar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.contact-details-card.modern-sidebar-card:hover,
.contact-social-card.modern-sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sidebar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.contact-details-title,
.contact-social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.contact-detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--secondary-color);
}

.contact-social-subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.contact-sections {
    background: #f8fafc;
    padding: var(--spacing-3xl) 0;
}

.contact-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.contact-section-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.contact-section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-section-text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-section-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-section-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.contact-section-list i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.contact-section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

.contact-section-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.contact-section-link:hover i {
    transform: translateX(4px);
}

.contact-map-section {
    background: white;
    padding: var(--spacing-3xl) 0;
}

.contact-map-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.75rem;
}

.contact-map-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

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

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

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

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

/* Responsive Contact Styles */
@media (max-width: 968px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-hero-stats {
        gap: 2rem;
    }
    
    .contact-sections-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .contact-hero-section {
        padding: 5rem 0 4rem;
        min-height: 500px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
    }
    
    .contact-hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-item {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container.modern-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-details-card.modern-sidebar-card,
    .contact-social-card.modern-sidebar-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-map-title {
        font-size: 2rem;
    }
    
    .form-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ========================================
   Blog System Styles
   ======================================== */
.blog-hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e40af 100%);
    padding: 6rem 0 5rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.blog-filter-section {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.blog-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-filter-btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.blog-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.blog-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.blog-posts-section {
    background: #f8fafc;
    padding: var(--spacing-3xl) 0;
    min-height: 60vh;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.blog-post-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.blog-post-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: #6b7280;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-post-meta i {
    font-size: 0.75rem;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-post-excerpt {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

.blog-read-more i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

.blog-load-more {
    text-align: center;
    margin-top: 3rem;
}

.blog-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Blog Post Detail Page Styles */
.blog-post-detail-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e40af 100%);
    padding: 8rem 0 5rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.blog-post-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.blog-post-detail-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-post-detail-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.blog-post-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-post-detail-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.blog-post-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-detail-body {
    background: white;
    padding: var(--spacing-3xl) 0;
}

.blog-post-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.blog-post-detail-image {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-post-detail-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.blog-post-detail-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-post-detail-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

.blog-post-detail-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem 0;
    line-height: 1.3;
}

.blog-post-detail-text ul,
.blog-post-detail-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-detail-text li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.blog-post-navigation {
    background: #f8fafc;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.blog-post-nav-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.blog-post-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    flex: 1;
    max-width: 300px;
}

.blog-post-nav-link:hover {
    border-color: var(--primary-color);
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-nav-link.next {
    flex-direction: row-reverse;
    text-align: right;
}

.blog-post-nav-link.next:hover {
    transform: translateX(4px);
}

.blog-post-nav-link i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.blog-post-nav-text {
    display: flex;
    flex-direction: column;
}

.blog-post-nav-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.blog-post-nav-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Responsive Blog Styles */
@media (max-width: 968px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .blog-post-detail-title {
        font-size: 2.25rem;
    }
    
    .blog-post-nav-wrapper {
        flex-direction: column;
    }
    
    .blog-post-nav-link {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-description {
        font-size: 1rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filter-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 1.25rem;
    }
    
    .blog-post-detail-title {
        font-size: 1.75rem;
    }
    
    .blog-post-detail-image {
        height: 300px;
    }
    
    .blog-post-detail-text {
        font-size: 1rem;
    }
}

/* ========================================
   Redesigned Product Detailed Sections
   ======================================== */

/* Wellness Products Hero Banner */
.wellness-products-hero {
    position: relative;
    padding: var(--spacing-3xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.wellness-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 25%, #10b981 50%, #34d399 75%, #6ee7b7 100%);
}

.wellness-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    z-index: -2;
}

.wellness-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    opacity: 0.4;
    z-index: -1;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.wellness-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-2xl);
}

.wellness-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-lg);
}

.wellness-hero-badge i {
    font-size: 1rem;
}

.wellness-hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.wellness-hero-title-accent {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.wellness-hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
}

.wellness-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.wellness-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9375rem;
    color: white;
    font-weight: var(--font-weight-medium);
}

.wellness-feature-item i {
    color: #fef3c7;
    font-size: 0.875rem;
}

.wellness-hero-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.wellness-product-preview {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
    overflow: hidden;
}

.wellness-product-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.wellness-product-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

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

.wellness-preview-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.wellness-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: var(--spacing-lg);
    text-align: center;
    z-index: 2;
}

.wellness-preview-overlay h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: white;
    margin: 0;
}

@media (max-width: 968px) {
    .wellness-products-hero {
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }

    .wellness-hero-title {
        font-size: 2.5rem;
    }

    .wellness-hero-description {
        font-size: 1rem;
    }

    .wellness-hero-products {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-top: var(--spacing-xl);
    }
}

@media (max-width: 640px) {
    .wellness-hero-title {
        font-size: 2rem;
    }

    .wellness-hero-features {
        flex-direction: column;
    }

    .wellness-feature-item {
        width: 100%;
        justify-content: center;
    }
}

.product-detailed-section {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.product-detailed-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex-wrap: wrap;
}

.product-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.03;
}

.product-header-background::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23ff6600"/></svg>');
    animation: patternMove 20s linear infinite;
}

.product-header-bg-iru::before {
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%2310b981"/></svg>');
}

@keyframes patternMove {
    from { transform: translate(0, 0); }
    to { transform: translate(-50%, -50%); }
}

.product-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.product-detailed-image {
    flex: 0 0 auto;
    max-width: 300px;
    position: relative;
    z-index: 1;
}

.product-image-wrapper {
    position: relative;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.product-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.product-detailed-title-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.product-title-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 30px;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.product-badge-iru {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.product-title-badge i {
    font-size: 0.875rem;
}

.product-detailed-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.product-detailed-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-lg);
}

.product-header-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.product-stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 25px;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.product-stat i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.product-content-block {
    margin-bottom: var(--spacing-2xl);
}

.product-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

.product-section-heading {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.product-section-heading:first-of-type {
    margin-top: 0;
}

.product-section-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

.product-botanical-list,
.product-analysis-list,
.product-antioxidant-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.product-botanical-list li,
.product-analysis-list li,
.product-antioxidant-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
}

.product-botanical-list li::before,
.product-analysis-list li::before,
.product-antioxidant-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Product Information Tables */
.product-table-wrapper {
    margin: var(--spacing-xl) 0;
    overflow-x: auto;
}

.product-info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.product-info-table caption {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    padding: var(--spacing-md);
    background: var(--bg-light);
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
}

.product-info-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.product-info-table th {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
}

.product-info-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.product-info-table tbody tr:hover {
    background: var(--bg-light);
}

.product-info-table tbody tr:last-child td {
    border-bottom: none;
}

/* Safety Points */
.product-safety-points {
    display: grid;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.safety-point-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.safety-point-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.safety-point-item h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.safety-point-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Usage Section */
.product-usage-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.usage-box {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.usage-directions {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-left: 4px solid var(--primary-color);
}

.usage-caution {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
}

.usage-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.usage-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.usage-caution .usage-header i {
    color: #f59e0b;
}

.usage-header h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin: 0;
}

.usage-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Publication Links */
.product-publications {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.publication-links {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.publication-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.publication-link:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.publication-link i:first-child {
    color: #dc2626;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.publication-link div {
    flex: 1;
}

.publication-link strong {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.publication-link i:last-child {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Usage Instructions */
.product-usage-instructions {
    display: grid;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.usage-instruction-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.instruction-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instruction-icon i {
    color: white;
    font-size: 1.5rem;
}

.instruction-content h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.instruction-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Benefits Grid */
.product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.benefit-card {
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: all var(--transition-base);
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* App Features Grid */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.app-feature-card {
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
}

.app-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.app-feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.app-feature-card h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.app-feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.app-download-section {
    text-align: center;
    margin: var(--spacing-2xl) 0;
}

.app-download-btn-large img {
    height: 60px;
    width: auto;
}

/* Responsive Design for Product Detailed Sections */
@media (max-width: 968px) {
    .product-detailed-header {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl);
    }

    .product-detailed-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .product-detailed-title {
        font-size: 2rem;
    }

    .product-header-stats {
        justify-content: center;
    }

    .product-section-heading {
        font-size: 1.5rem;
    }

    .product-table-wrapper {
        overflow-x: scroll;
    }

    .product-info-table {
        min-width: 600px;
    }

    .product-usage-section {
        grid-template-columns: 1fr;
    }

    .safety-point-item {
        flex-direction: column;
    }

    .usage-instruction-item {
        flex-direction: column;
        text-align: center;
    }

    .instruction-icon {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .wellness-intro-content h2 {
        font-size: 2rem;
    }

    .product-detailed-title {
        font-size: 1.75rem;
    }

    .product-section-heading {
        font-size: 1.25rem;
    }

    .product-intro-text,
    .product-section-text {
        font-size: 1rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ========================================
   Comprehensive Mobile Responsive Styles
   ======================================== */

/* General Mobile Improvements */
@media (max-width: 768px) {
    /* Typography scaling */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    /* Container padding */
    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Buttons */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    /* Sections */
    section {
        padding: var(--spacing-xl) 0;
    }
}

/* Enhanced Product Detail Mobile Styles */
@media (max-width: 640px) {
    .product-detailed-section {
        padding: var(--spacing-xl) 0;
    }

    .product-detailed-header {
        padding: var(--spacing-lg) var(--spacing-md);
        gap: var(--spacing-lg);
    }

    .product-detailed-image {
        max-width: 200px;
    }

    .product-image-wrapper {
        padding: var(--spacing-md);
    }

    .product-title-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }

    .product-header-stats {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .product-stat {
        width: 100%;
        justify-content: center;
    }

    .product-content-block {
        padding: var(--spacing-md) 0;
    }

    /* Better table handling on mobile */
    .product-table-wrapper {
        margin: var(--spacing-md) calc(-1 * var(--spacing-sm));
        padding: 0 var(--spacing-sm);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .product-table-wrapper::after {
        content: '→';
        position: absolute;
        right: var(--spacing-sm);
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 1.5rem;
        opacity: 0.5;
        pointer-events: none;
    }

    .product-info-table {
        font-size: 0.875rem;
        min-width: 700px;
    }

    .product-info-table th,
    .product-info-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
        word-break: break-word;
    }

    .product-info-table caption {
        font-size: 0.875rem;
        padding: var(--spacing-sm);
        text-align: left;
    }

    /* Product highlight boxes */
    .product-highlight-box,
    .product-caution-box {
        padding: var(--spacing-md);
        margin: var(--spacing-md) 0;
    }

    .product-highlight-box h4,
    .product-caution-box h4 {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-xs);
    }

    .product-botanical-list,
    .product-highlight-list {
        padding-left: var(--spacing-md);
        font-size: 0.9375rem;
    }

    /* Usage sections */
    .product-usage-section {
        gap: var(--spacing-md);
    }

    .usage-instruction-item,
    .safety-point-item {
        padding: var(--spacing-md);
    }

    .instruction-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Blog Mobile Responsive */
@media (max-width: 968px) {
    .blog-hero-section {
        padding: 4rem 0 3rem;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-description {
        font-size: 1.125rem;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--spacing-lg);
    }

    .blog-filter-section {
        position: relative;
        top: 0;
    }

    .blog-filters {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 var(--spacing-sm);
        justify-content: flex-start;
    }

    .blog-filter-btn {
        white-space: nowrap;
        font-size: 0.8125rem;
        padding: 0.5rem 1.25rem;
    }
}

@media (max-width: 640px) {
    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-description {
        font-size: 1rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .blog-post-card {
        margin: 0 var(--spacing-xs);
    }

    .blog-post-image {
        height: 200px;
    }

    .blog-post-title {
        font-size: 1.25rem;
    }

    .blog-post-excerpt {
        font-size: 0.9375rem;
    }

    .blog-post-meta {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
        font-size: 0.8125rem;
    }

    /* Blog post detail page */
    .blog-post-detail-header {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .blog-post-detail-title {
        font-size: 1.75rem;
    }

    .blog-post-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .blog-post-content img {
        margin: var(--spacing-md) 0;
    }

    .blog-post-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* Events Gallery Mobile */
@media (max-width: 968px) {
    .events-gallery-section {
        padding: var(--spacing-2xl) 0;
    }

    .events-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 640px) {
    .events-gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .event-card {
        margin: 0 var(--spacing-xs);
    }

    .event-card-title {
        font-size: 1.125rem;
    }
}

/* Contact Page Enhanced Mobile */
@media (max-width: 640px) {
    .contact-hero-section {
        padding: 4rem 0 3rem;
    }

    .contact-hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero-stat-item {
        width: 100%;
    }

    .contact-info-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-info-title {
        font-size: 1.25rem;
    }

    .contact-map-wrapper {
        margin: 0 calc(-1 * var(--spacing-sm));
    }

    .contact-map-wrapper iframe {
        height: 300px;
    }
}

/* FAQ Page Mobile */
@media (max-width: 640px) {
    .faq-item {
        padding: var(--spacing-md);
    }

    .faq-question {
        font-size: 1.125rem;
        padding-right: var(--spacing-lg);
    }

    .faq-answer {
        font-size: 0.9375rem;
        padding-top: var(--spacing-md);
    }
}

/* CSR Page Mobile */
@media (max-width: 640px) {
    .csr-project-card {
        padding: var(--spacing-lg);
    }

    .csr-project-title {
        font-size: 1.5rem;
    }

    .csr-gallery-item {
        height: 250px;
    }
}

/* About Page Mobile */
@media (max-width: 640px) {
    .about-hero-image {
        height: 300px;
    }

    .ecosystem-services-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-service-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

/* Privacy Policy Mobile */
@media (max-width: 640px) {
    .privacy-hero {
        padding: 4rem 0 3rem;
    }

    .privacy-content {
        padding: var(--spacing-lg) var(--spacing-md);
        font-size: 0.9375rem;
    }

    .privacy-section {
        margin-bottom: var(--spacing-lg);
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.25rem;
    }
}

/* Navigation Mobile Enhancements */
@media (max-width: 640px) {
    .navbar {
        padding: var(--spacing-sm) 0;
        height: 70px;
        min-height: 70px;
    }

    .logo-img {
        max-height: 35px;
    }

    .nav-menu {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding-bottom: var(--spacing-lg);
        top: 70px;
    }

    .nav-link {
        font-size: 1rem;
        padding: var(--spacing-sm) 0;
        width: 100%;
    }

    .nav-item.has-dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
        height: 60px;
    }

    .logo-img {
        max-height: 30px;
    }

    .nav-wrapper {
        padding: 0 var(--spacing-xs);
    }

    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .banner-carousel {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }
    
    .banner-slides {
        height: calc(100vh - 60px);
    }
    
    .banner-content-wrapper {
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-md);
    }
    
    .banner-title {
        font-size: 1.875rem;
        line-height: 1.15;
    }
    
    .banner-text {
        font-size: 0.9375rem;
    }
    
    .banner-buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }
}

/* Image Responsiveness */
@media (max-width: 768px) {
    img {
        height: auto;
        max-width: 100%;
    }

    .banner-image img,
    .hero-image img {
        max-height: 300px;
    }
}

/* Form Improvements Mobile */
@media (max-width: 640px) {
    .modern-input,
    .modern-select,
    .modern-textarea {
        font-size: 1rem;
        padding: 1rem;
    }

    .modern-label {
        font-size: 0.875rem;
    }

    .form-group {
        margin-bottom: var(--spacing-md);
    }
}

/* Tables General Mobile Handling */
@media (max-width: 768px) {
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    thead {
        display: table-header-group;
    }

    tbody {
        display: table-row-group;
    }

    tr {
        display: table-row;
    }

    td,
    th {
        display: table-cell;
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Utility for horizontal scroll on mobile */
.mobile-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(-1 * var(--spacing-sm));
    padding: 0 var(--spacing-sm);
}

@media (min-width: 641px) {
    .mobile-scroll-wrapper {
        margin: 0;
        padding: 0;
        overflow-x: visible;
    }
}

/* Ensure no horizontal overflow */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    section {
        overflow-x: hidden;
    }

    /* Improve text readability on mobile */
    p, li, td, th {
        line-height: 1.7;
    }

    /* Better spacing for mobile */
    .section-title {
        margin-bottom: var(--spacing-md);
    }

    /* Improve card layouts on mobile */
    .card,
    .blog-post-card,
    .event-card,
    .product-card {
        margin-bottom: var(--spacing-md);
    }
}

/* Very small screens (320px and up) */
@media (max-width: 375px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    a,
    button,
    .btn,
    .nav-link,
    .blog-filter-btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    input[type="checkbox"],
    input[type="radio"] {
        min-width: 20px;
        min-height: 20px;
    }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    z-index: 99999;
    padding: 1.25rem 2rem;
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-family: inherit;
    border-top: 1px solid #e5e7eb;
}
#cookie-consent-banner.cookie-consent-visible {
    display: flex;
}
.cookie-consent-text {
    flex: 1 1 320px;
    min-width: 0;
}
.cookie-consent-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.35rem 0;
}
.cookie-consent-text p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}
.cookie-consent-toggles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}
.cookie-consent-toggle-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.cookie-consent-toggle-item.necessary { color: #be185d; font-weight: 600; }
.cookie-consent-toggle-item label { cursor: pointer; }
.cookie-consent-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-consent-toggle-switch.necessary { background: #be185d; pointer-events: none; }
.cookie-consent-toggle-switch input { display: none; }
.cookie-consent-toggle-switch .slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.cookie-consent-toggle-switch input:checked + .slider { transform: translateX(20px); }
.cookie-consent-toggle-switch:has(input:checked) { background: #be185d; }
.cookie-consent-toggle-switch.necessary input + .slider { transform: translateX(20px); }
.cookie-consent-details-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #be185d;
    text-decoration: none;
}
.cookie-consent-details-link:hover { text-decoration: underline; }
#cookie-details-panel {
    width: 100%;
    display: none;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 0.5rem;
}
#cookie-details-panel.cookie-details-open { display: block; }
.cookie-consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}
.cookie-consent-btn {
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #be185d;
    white-space: nowrap;
}
.cookie-consent-btn.allow-all {
    background: #be185d;
    color: #fff;
    border-color: #be185d;
}
.cookie-consent-btn.allow-selection, .cookie-consent-btn.deny {
    background: #fff;
    color: #be185d;
}
.cookie-consent-btn:hover { opacity: 0.9; }
@media (max-width: 768px) {
    #cookie-consent-banner { padding: 1rem; flex-direction: column; align-items: stretch; }
    .cookie-consent-buttons { flex-direction: row; justify-content: flex-end; }
}

/* ========================================
   Training Page
   ======================================== */
.training-hero {
    position: relative;
    padding: 5rem 0 3.5rem;
    margin-top: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.training-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 40%, #1e40af 100%);
}
.training-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.training-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.training-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.training-hero-badge i {
    font-size: 1rem;
}
.training-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.training-hero-title-accent {
    background: linear-gradient(135deg, #93c5fd 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.training-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.training-section {
    padding: 3.5rem 0 5rem;
    background: #f8fafc;
}
.training-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}
.training-header-line {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}
.training-section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.training-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}
.training-section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}
.training-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}
.training-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.training-card-thumb {
    position: relative;
    padding-top: 56.25%;
    background: #1a1a1a;
    overflow: hidden;
}
.training-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.35s ease;
}
.training-card:hover .training-card-thumb img {
    transform: scale(1.05);
}
.training-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(220, 38, 38, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    transition: transform 0.25s ease, background 0.25s ease;
}
.training-card-play i {
    color: #fff;
    font-size: 1.75rem;
    margin-left: 4px;
}
.training-card:hover .training-card-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #dc2626;
}
.training-card-body {
    padding: 1.5rem 1.25rem;
}
.training-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.training-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease, gap 0.2s ease;
}
.training-card:hover .training-card-link {
    color: #1d4ed8;
    gap: 0.6rem;
}

.training-empty {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}
.training-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.training-empty-icon i {
    font-size: 2.5rem;
    color: #94a3b8;
}
.training-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}
.training-empty-text {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Training video modal – play on page */
.training-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.training-modal.training-modal-open {
    opacity: 1;
    visibility: visible;
}
.training-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}
.training-modal-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.training-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.training-modal-close:hover {
    background: rgba(0, 0, 0, 0.85);
}
.training-modal-title {
    margin: 0;
    padding: 1.25rem 1.5rem 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}
.training-modal-player {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}
.training-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .training-hero {
        padding: 4rem 0 2.5rem;
    }
    .training-hero-title {
        font-size: 2rem;
    }
    .training-hero-description {
        font-size: 1rem;
    }
    .training-section {
        padding: 2.5rem 0 3.5rem;
    }
    .training-section-title {
        font-size: 1.75rem;
    }
    .training-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .training-card-play {
        width: 64px;
        height: 64px;
    }
    .training-card-play i {
        font-size: 1.5rem;
    }
}
