/* =====================================================
   WAREFLOW - Premium Warehouse & Logistics Template
   Author: Senior UI/UX Engineer
   Version: 1.0
   ===================================================== */

/* ===== CSS VARIABLES ===== */
/* ===== Contact Form Input Borders ===== */
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea{
    border: 2px solid rgba(255,255,255,0.35); /* visible border */
    background: rgba(255,255,255,0.05);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus effect */
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.25);
}

/* Placeholder color */
.contact-form ::placeholder{
    color: rgba(255,255,255,0.6);
}

:root {
    /* Theme Colors */
    --primary-blue: #1E3A8A;
    --secondary-gray: #64748B;
    --accent-orange: #F97316;
    --bg-light: #F8FAFC;
    --text-dark: #1F2937;
    --white: #ffffff;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #1E3A8A, #2563EB);
    --gradient-secondary: linear-gradient(135deg, #64748B, #94A3B8);
    --gradient-accent: linear-gradient(135deg, #F97316, #FB923C);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    
    /* Social Colors */
    --whatsapp: #25D366;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

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

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

ul {
    list-style: none;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
}

.section-padding {
    padding: 5rem 0;
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(135deg, #1E3A8A, #2563EB, #F97316, #FB923C);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--gradient-accent);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: var(--shadow-glow);
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.logo i {
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.logo-text {
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu a {
    display: inline-block;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    white-space: nowrap;
    font-size: 0.875rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gradient-accent);
    transition: transform var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-login {
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
    white-space: nowrap;
    font-size: 0.875rem;
}

.btn-login:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

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

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

.btn-block {
    width: 100%;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

/* Pulse Effect */
.pulse-effect {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
}

/* ===== GLASSMORPHISM ===== */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(37, 99, 235, 0.9));
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: floatAnimation 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-main-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 25px; }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-gray);
    line-height: 1.7;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

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

.feature-card:hover::before {
    opacity: 0.05;
}

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

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--primary-blue);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    position: relative;
    z-index: 1;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: var(--radius-full);
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

.feature-card h3 {
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

.feature-card p {
    color: var(--secondary-gray);
    margin-bottom: 1.5rem;
    transition: color var(--transition-normal);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--accent-orange);
    font-size: 0.875rem;
}

/* ===== PRODUCTS SECTION ===== */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    z-index: 2;
}

.product-badge.hot {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: var(--radius-md);
    font-weight: 600;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.product-card:hover .btn-view {
    transform: translateY(0);
}

.btn-view:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating i {
    color: #FCD34D;
    font-size: 0.875rem;
}

.rating span {
    font-size: 0.875rem;
    color: var(--secondary-gray);
    margin-left: 0.25rem;
}

.btn-product {
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-product:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HOW IT WORKS ===== */
.bg-gradient {
    background: linear-gradient(135deg, #F8FAFC 0%, #E0E7FF 100%);
    position: relative;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 280px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-card:hover .step-icon {
    transform: rotate(360deg) scale(1.1);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.step-card p {
    color: var(--secondary-gray);
    margin-bottom: 1rem;
}

.step-features {
    text-align: left;
    margin-top: 1.5rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.step-features i {
    color: var(--accent-orange);
}

.step-connector {
    font-size: 2rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.5);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.benefit-highlight {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-md);
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
}

.highlight-text {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Income Streams */
.income-streams {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.income-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.income-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.income-item i {
    font-size: 2rem;
    color: var(--accent-orange);
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-normal);
}

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

.quote-icon {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.quote-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.testimonial-content {
    padding-top: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 1.5rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 3px solid var(--accent-orange);
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-blue);
}

.author-info p {
    color: var(--secondary-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.income-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: var(--secondary-gray);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot.active {
    width: 30px;
    background: var(--accent-orange);
}

/* Success Stats */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.stat-icon i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: var(--secondary-gray);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(249, 115, 22, 0.9));
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particlesMove 30s linear infinite;
}

@keyframes particlesMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse-icon 3s infinite;
}

.cta-icon i {
    font-size: 3rem;
    color: var(--white);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cta-feature i {
    color: #10B981;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.urgency-box {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-top: 2rem;
    animation: pulse 2s infinite;
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, #1F2937, #111827);
    color: var(--white);
    padding-top: 4rem;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
    padding-left: 0.5rem;
}

.footer-col ul li a i {
    font-size: 0.75rem;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--accent-orange);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

/* ===== FLOATING SOCIAL ICONS ===== */
.floating-social-icons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    animation: bounceIn 1s ease-out;
}

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

.floating-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
}

.floating-icon:hover::before {
    opacity: 1;
    right: 75px;
}

.floating-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

/* WhatsApp Icon */
.whatsapp-icon {
    background: var(--whatsapp);
    animation-delay: 0.2s;
}

.whatsapp-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

/* Instagram Icon */
.instagram-icon {
    background: var(--instagram-gradient);
    animation-delay: 0.4s;
}

.instagram-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(225, 48, 108, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    animation: patternMove 20s linear infinite;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-title {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-normal);
    background: var(--white);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-gray);
}

.input-with-icon input {
    padding-left: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-gray);
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== PRICING/PLAN CARDS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 3px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
    height: 8px;
    background: var(--gradient-accent);
}

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

.plan-badge {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.plan-badge.popular {
    background: var(--gradient-accent);
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.plan-price {
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
}

.period {
    font-size: 1rem;
    color: var(--secondary-gray);
}

.plan-features {
    text-align: left;
    margin: 2rem 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-features li.disabled {
    color: var(--secondary-gray);
    opacity: 0.5;
}

.plan-features i {
    color: var(--accent-orange);
    font-size: 0.875rem;
}

.plan-features li.disabled i {
    color: var(--secondary-gray);
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    display: block;
    margin-top: 2rem;
    transition: all var(--transition-normal);
}

.btn-plan:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== TABLES ===== */
.table-container {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--gradient-primary);
    color: var(--white);
}

th, td {
    padding: 1.25rem;
    text-align: left;
}

th {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

tbody tr {
    border-bottom: 1px solid #E5E7EB;
    transition: background var(--transition-normal);
}

tbody tr:hover {
    background: rgba(30, 58, 138, 0.05);
}

tbody tr:last-child {
    border-bottom: none;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.main-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.image-zoom-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.image-zoom-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid transparent;
    transition: all var(--transition-normal);
}

.thumbnail.active {
    border-color: var(--accent-orange);
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--primary-blue);
}

.thumbnail img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Product Info */
.product-category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-info h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rating-text {
    color: var(--secondary-gray);
    margin-left: 0.5rem;
}

.product-price-section {
    padding: 2rem;
    background: rgba(249, 115, 22, 0.05);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.price-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-features-list {
    margin: 2rem 0;
}

.product-features-list h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.product-features-list ul {
    display: grid;
    gap: 0.75rem;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-features-list i {
    color: var(--accent-orange);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 50px;
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--primary-blue);
    font-weight: 700;
    transition: all var(--transition-normal);
}

.quantity-selector button:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.quantity-selector input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    border-left: 2px solid var(--primary-blue);
    border-right: 2px solid var(--primary-blue);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--primary-blue);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
}

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

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    padding: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    transition: all var(--transition-normal);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--accent-orange);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Product Tabs */
.tabs-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #E5E7EB;
}

.tab-btn {
    flex: 1;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary-gray);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
    border-bottom-color: var(--accent-orange);
}

.tab-content {
    display: none;
    padding: 3rem;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.spec-table {
    width: 100%;
}

.spec-table tr:hover {
    background: rgba(30, 58, 138, 0.03);
}

.spec-table td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-menu a {
        padding: 0.5rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .header-cta .btn-login,
    .header-cta .btn-primary {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .hero-content,
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .product-gallery {
        position: static;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    /* Header & Navigation */
    .navbar {
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .logo i {
        font-size: 1.75rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        padding: 1rem 0;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        margin-top: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
    
    .header-cta {
        order: 2;
    }
    
    .header-cta .btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .header-cta .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        flex: 1;
        min-width: 100%;
    }
    
    /* Grids */
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    /* Steps */
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .step-connector {
        transform: rotate(90deg);
        width: 2px;
        height: 40px;
    }
    
    /* Pricing */
    .pricing-card.featured {
        transform: none;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Floating Elements */
    .floating-social-icons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .back-to-top {
        bottom: 6rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    /* Product Details */
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .product-tabs .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-buttons button {
        width: 100%;
    }
    
    /* Tables */
    .commission-table {
        overflow-x: auto;
    }
    
    .commission-table table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    /* Buttons */
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    /* Header */
    .logo a {
        font-size: 1.25rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .header-cta .btn-primary {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    /* Hero */
    .hero-section {
        padding: 5rem 0 2rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
    
    /* Features */
    .feature-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .feature-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Product Cards */
    .product-content {
        padding: 1rem;
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    /* Product Actions */
    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-actions .btn-primary,
    .product-actions .btn-secondary {
        width: 100%;
    }
    
    /* Thumbnails */
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Floating Icons - Stack vertically on very small screens */
    .floating-social-icons {
        bottom: 1rem;
        right: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .floating-icon {
        width: 48px;
        height: 48px;
    }
    
    .back-to-top {
        display: none;
    }
    
    /* Footer */
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}

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

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

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-45deg);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotateY(0);
}

/* ===== LOGIN PAGE ===== */
.login-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E0E7FF 100%);
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.login-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.login-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.login-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.login-header p {
    color: var(--secondary-gray);
    font-size: 1rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: var(--secondary-gray);
    font-size: 1.125rem;
}

.input-with-icon input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--secondary-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-normal);
}

.toggle-password:hover {
    color: var(--primary-blue);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color var(--transition-normal);
}

.forgot-link:hover {
    color: var(--accent-orange);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E7EB;
}

.divider span {
    background: var(--white);
    padding: 0 1rem;
    position: relative;
    color: var(--secondary-gray);
    font-weight: 600;
    font-size: 0.875rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    background: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-social.google {
    color: #DB4437;
}

.btn-social.google:hover {
    background: #DB4437;
    color: var(--white);
    border-color: #DB4437;
}

.btn-social.facebook {
    color: #4267B2;
}

.btn-social.facebook:hover {
    background: #4267B2;
    color: var(--white);
    border-color: #4267B2;
}

.form-footer {
    text-align: center;
    color: var(--secondary-gray);
    font-size: 0.9375rem;
    margin-top: 1.5rem;
}

.form-footer a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color var(--transition-normal);
}

.form-footer a:hover {
    color: var(--accent-orange);
}

/* Login Benefits */
.login-benefits {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.login-benefits h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateX(5px);
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--secondary-gray);
    margin: 0;
}

.stats-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #E5E7EB;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--secondary-gray);
    font-weight: 500;
}

/* Security Section */
.security-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.security-section.bg-gradient {
    background: var(--gradient-primary);
}

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

.security-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.security-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.security-badge i {
    font-size: 1.5rem;
}

/* Login Page Responsive */
@media (max-width: 992px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-benefits {
        order: -1;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding-top: 80px;
        min-height: auto;
    }
    
    .login-form-container {
        padding: 2rem;
    }
    
    .login-header h2 {
        font-size: 1.75rem;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .stats-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .login-form-container {
        padding: 1.5rem;
    }
    
    .login-icon {
        width: 60px;
        height: 60px;
    }
    
    .login-icon i {
        font-size: 2rem;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
    
    .input-with-icon input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.9375rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* ===== ABOUT US PAGE STYLES ===== */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: auto;
    background: var(--white);
    padding: 8rem 0 6rem 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--secondary-gray);
}

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

.stat-item {
    background: var(--bg-light);
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--secondary-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
}

.main-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-img-wrapper:hover .main-hero-img {
    transform: scale(1.05);
}

.hero-img-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    color: var(--text-dark);
}

.overlay-badge i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

/* Story Section */
.story-section {
    background: var(--bg-light);
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    padding-top: 2rem;
}

.section-label {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.story-timeline {
    margin-top: 3rem;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid rgba(30, 58, 138, 0.2);
}

.timeline-item:last-child {
    padding-bottom: 0;
    border-left: none;
}

.timeline-year {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0 0 8px var(--bg-light);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--secondary-gray);
    line-height: 2;
    margin-top: 0.75rem;
}

/* Story Visual */
.story-visual {
    position: sticky;
    top: 100px;
}

.story-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.story-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 160px;
}

.story-img-1 {
    grid-column: span 1;
    height: 160px;
}

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

.story-img:hover img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.story-img:hover .img-overlay {
    opacity: 1;
}

.img-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.mission-vision-box {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
}

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

.mvv-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.mvv-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.mvv-item p {
    color: var(--secondary-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.mvv-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(30, 58, 138, 0.2), transparent);
    margin: 1.5rem 0;
}

/* Leadership Section */
.leadership-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    padding-top: 6rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.leader-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    padding: 0;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.leader-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.95), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.leader-overlay .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
}

.leader-overlay .social-links a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.leader-info {
    padding: 2rem 2rem 2.5rem 2rem;
}

.leader-info h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.leader-position {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.leader-bio {
    color: var(--secondary-gray);
    line-height: 2;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.leader-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 138, 0.08);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.achievement-badge i {
    font-size: 0.875rem;
}

/* Core Values */
.core-values-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.values-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

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

.value-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-item p {
    color: var(--secondary-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Certifications */
.certifications-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.cert-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--primary-blue);
    transition: all var(--transition-normal);
}

.cert-badge:hover {
    border-color: var(--accent-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.cert-badge i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero {
        padding: 6rem 0 4rem 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-visual {
        position: relative;
        top: 0;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 0 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-year {
        width: 2.5rem;
        height: 2.5rem;
        left: -1.25rem;
        font-size: 0.75rem;
    }
    
    .leader-image {
        height: 250px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .story-image-grid {
        grid-template-columns: 1fr;
    }
    
    .story-img-1 {
        grid-column: span 1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .main-header,
    .floating-social-icons,
    .back-to-top {
        display: none;
    }
}

