/* ========================================
   GLOBAL TRADE SOLUTIONS - PREMIUM CSS
   Apple + Tesla + Alibaba Inspired
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #0a2540;
    --primary-light: #1e3a5f;
    --accent: #ff6b35;
    --accent-light: #f7931e;
    --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --white: #ffffff;
    --light: #f8f9fc;
    --gray: #6b7280;
    --dark: #111827;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.15);
    --shadow-xl: 0 30px 80px rgba(10, 37, 64, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-primary: #0a2540;
    --text-secondary: #4b5563;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
}

[data-theme="dark"] {
    --white: #0f172a;
    --light: #1e293b;
    --dark: #f8fafc;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; color: white; }
.loader-globe {
    font-size: 80px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rotate 2s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.loader-text {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 2px;
}
.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin: 20px auto 0;
    overflow: hidden;
}
.loader-progress {
    height: 100%;
    background: var(--accent-gradient);
    animation: loading 1.5s ease-in-out infinite;
}
@keyframes loading {
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}

/* ========== CUSTOM CURSOR ========== */
.cursor-dot, .cursor-outline {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    border-radius: 50%;
    transition: transform 0.1s;
    display: none;
}
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    transform: translate(-50%, -50%);
}
.cursor-outline {
    width: 40px; height: 40px;
    border: 2px solid var(--accent);
    transform: translate(-50%, -50%);
    transition: transform 0.2s, width 0.3s, height 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .cursor-dot, .cursor-outline { display: block; }
    body { cursor: none; }
    a, button, input, textarea, select { cursor: none; }
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 9999;
    width: 0;
    transition: width 0.1s;
}

/* ========== PARTICLES ========== */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ========== NAVIGATION ========== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1000;
}
.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}
.brand-icon {
    width: 45px; height: 45px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-right: 12px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; font-size: 16px; color: var(--text-primary); }
.brand-sub { font-size: 11px; color: var(--accent); font-weight: 500; letter-spacing: 1px; }
.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px !important;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
    background: rgba(255, 107, 53, 0.1);
}
.buy-now-btn {
    background: var(--accent-gradient) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
.nav-actions { gap: 8px !important; }
.icon-btn {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
}
.icon-btn:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-2px);
}
.badge-count {
    position: absolute;
    top: -5px; right: -5px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.search-box {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0 15px;
    transition: var(--transition);
    width: 40px;
    overflow: hidden;
}
.search-box.active { width: 220px; padding: 8px 15px; }
.search-box i { color: var(--text-secondary); }
.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    padding: 0 8px;
    color: var(--text-primary);
    display: none;
}
.search-box.active input { display: block; }
.toggler-icon, .toggler-icon::before, .toggler-icon::after {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    position: relative;
}
.toggler-icon::before, .toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
}
.toggler-icon::before { top: -7px; }
.toggler-icon::after { top: 7px; }
.navbar-toggler { border: none; padding: 8px; }

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(30, 58, 95, 0.75) 100%);
}
.world-map-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.6;
}
.world-map-bg svg { width: 100%; height: 100%; }
.map-dot {
    animation: pulse 2s infinite;
    transform-origin: center;
}
.map-dot:nth-child(2n) { animation-delay: 0.5s; }
.map-dot:nth-child(3n) { animation-delay: 1s; }
@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}
.map-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 4s ease-in-out infinite;
}
@keyframes drawLine {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    margin-bottom: 20px;
}
.hero-badge i { color: var(--accent); }
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.typewriter {
    display: inline-block;
    color: var(--accent);
    border-right: 3px solid var(--accent);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}
@keyframes blink { 50% { border-color: transparent; } }
.hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.btn-premium {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-gradient {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}
.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    color: white;
}
.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}
.stat-icon {
    width: 50px; height: 50px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: white;
}
.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.float-icon {
    position: absolute;
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
}
.float-icon:nth-child(2) { animation-delay: 1.5s; }
.float-icon:nth-child(3) { animation-delay: 3s; }
.float-icon:nth-child(4) { animation-delay: 4.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 2;
}
.mouse {
    width: 25px; height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto 8px;
    position: relative;
}
.wheel {
    width: 4px; height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}
@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
}
.section:nth-child(even) { background: var(--bg-secondary); }
.section-header { margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== GLASS CARD ========== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========== NEUMORPHIC ========== */
.neumorphic {
    background: var(--bg-primary);
    box-shadow: 8px 8px 16px rgba(10, 37, 64, 0.1),
                -8px -8px 16px rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
[data-theme="dark"] .neumorphic {
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4),
                -8px -8px 16px rgba(255, 255, 255, 0.05);
}

/* ========== ABOUT SECTION ========== */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}
.about-image-wrapper:hover .about-img { transform: scale(1.05); }
.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 20px 25px;
    text-align: center;
}
.badge-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.badge-text { font-size: 13px; color: var(--text-secondary); margin-top: 5px; }
.about-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.about-text {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}
.mv-card { text-align: center; }
.mv-icon {
    width: 50px; height: 50px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 10px;
}
.mv-card h4 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.mv-card p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* Core Values */
.value-card {
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); }
.value-card i {
    font-size: 36px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.value-card h5 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin: 0; }

/* Why Choose */
.choose-card { text-align: center; height: 100%; }
.choose-icon {
    width: 70px; height: 70px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}
.choose-card h4 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.choose-card p { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 20px;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot {
    position: absolute;
    width: 20px; height: 20px;
    background: var(--accent-gradient);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    top: 30px;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }
.timeline-content { padding: 20px; }
.timeline-year {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.timeline-content h4 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* Certificates Swiper */
.cert-card {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}
.cert-card i {
    font-size: 50px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.cert-card h5 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.cert-card p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* ========== PRODUCTS SECTION ========== */
.category-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.filter-btn {
    padding: 10px 22px;
    border-radius: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.product-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}
.sort-select select {
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-weight: 500;
    outline: none;
}
.view-toggle { display: flex; gap: 8px; }
.view-btn {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: var(--transition);
}
.view-btn.active, .view-btn:hover {
    background: var(--accent-gradient);
    color: white;
}

/* Product Card */
.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.product-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}
.product-badge.new { background: linear-gradient(135deg, #10b981, #059669); }
.product-actions {
    position: absolute;
    top: 12px; right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}
.product-action-btn {
    width: 36px; height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.product-action-btn:hover {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.1);
}
.product-action-btn.active { background: var(--accent-gradient); color: white; }
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-category {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.product-meta span { display: inline-flex; align-items: center; gap: 4px; }
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.stars-small { color: #fbbf24; font-size: 13px; }
.rating-count { font-size: 12px; color: var(--text-secondary); }
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.current-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}
.original-price {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: line-through;
}
.discount-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}
.product-stock {
    font-size: 12px;
    color: var(--success);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.qty-btn {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 700;
    transition: var(--transition);
}
.qty-btn:hover { background: var(--accent-gradient); color: white; }
.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 5px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
}
.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}
.btn-sm {
    padding: 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-cart {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}
.btn-cart:hover { background: var(--primary); color: white; }
.btn-buy {
    background: var(--accent-gradient);
    color: white;
    grid-column: span 2;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4); }

/* ========== INDUSTRIES ========== */
.industry-card {
    text-align: center;
    padding: 35px 25px;
    height: 100%;
}
.industry-icon {
    width: 80px; height: 80px;
    background: var(--accent-gradient);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    margin: 0 auto 20px;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}
.industry-card:hover .industry-icon { transform: rotate(10deg) scale(1.1); }
.industry-card h4 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.industry-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
.industry-count {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* ========== SERVICES ========== */
.service-card {
    padding: 35px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 70px; height: 70px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h4 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* ========== COUNTRIES ========== */
.world-map-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
}
.map-wrapper { position: relative; }
.interactive-map { width: 100%; height: auto; }
.country-marker {
    position: absolute;
    width: 30px; height: 30px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    animation: markerPulse 2s infinite;
    transition: var(--transition);
}
@keyframes markerPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}
.country-marker:hover { transform: translate(-50%, -50%) scale(1.3); }
.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.country-chip {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}
.country-chip:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-3px);
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.9), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 30px; margin-bottom: 10px; }
.gallery-overlay h5 { font-size: 16px; font-weight: 600; }

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    padding: 35px 30px;
    text-align: center;
    height: 100%;
}
.quote-icon {
    font-size: 40px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.testimonial-card .stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.testimonial-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 3px solid var(--accent);
}
.testimonial-author h5 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin: 0; }
.testimonial-author span { font-size: 12px; color: var(--text-secondary); }

/* ========== BUY JOURNEY ========== */
.journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.journey-step {
    text-align: center;
    position: relative;
    padding: 25px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    min-width: 150px;
    transition: var(--transition);
}
.journey-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-number {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 28px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.step-icon {
    width: 60px; height: 60px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 10px auto 15px;
}
.journey-step h5 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0; }
.journey-arrow {
    color: var(--accent);
    font-size: 24px;
}

/* ========== FAQ ========== */
.accordion-item {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
}
.accordion-button {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 20px 25px;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
    background: rgba(255, 107, 53, 0.05) !important;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
    color: var(--text-secondary);
    padding: 0 25px 20px;
    font-size: 14px;
    line-height: 1.7;
}

/* ========== NEWS ========== */
.news-card {
    overflow: hidden;
    height: 100%;
    padding: 0;
}
.news-card img {
    width: 100%; height: 200px;
    object-fit: cover;
    transition: var(--transition);
}
.news-card:hover img { transform: scale(1.1); }
.news-content { padding: 25px; }
.news-date {
    display: inline-block;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 10px;
}
.news-card h4 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.news-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
.read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.read-more:hover { gap: 12px; }

/* ========== DOWNLOADS ========== */
.download-card {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}
.download-card > i {
    font-size: 50px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.download-card h5 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.download-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 15px; }
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4); color: white; }

/* ========== CONTACT ========== */
.contact-info { display: flex; flex-direction: column; gap: 15px; }
.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}
.contact-icon {
    width: 50px; height: 50px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-card h5 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.contact-form { padding: 35px; }
.form-group { margin-bottom: 0; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.form-control {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* ========== NEWSLETTER ========== */
.newsletter-card {
    background: var(--accent-gradient);
    color: white;
    padding: 50px 40px;
    text-align: center;
}
.newsletter-card h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.newsletter-card p { opacity: 0.9; margin-bottom: 0; }
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 14px;
}
.newsletter-form button {
    background: white;
    color: var(--accent);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: white;
    padding: 70px 0 20px;
}
.footer-brand h4 { font-size: 22px; font-weight: 700; margin: 15px 0; }
.footer-brand p { opacity: 0.8; font-size: 14px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}
.footer h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1) rotate(5deg); color: white; }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--accent-gradient); }
.float-btn.email { background: #3b82f6; }
.float-btn.back-to-top {
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
}
.float-btn.back-to-top.visible { opacity: 1; visibility: visible; }

/* AI Chat */
.ai-chat-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px; height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}
.ai-chat-btn:hover { transform: scale(1.1); }
.chat-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    animation: chatPulse 2s infinite;
    z-index: -1;
}
@keyframes chatPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ========== CART SIDEBAR ========== */
.cart-sidebar {
    position: fixed;
    top: 0; right: -450px;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-header {
    padding: 20px 25px;
    background: var(--accent-gradient);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h3 { margin: 0; font-size: 18px; font-weight: 700; }
.close-cart {
    color: white;
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    width: 35px; height: 35px;
    border-radius: 50%;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}
.empty-cart i { font-size: 60px; margin-bottom: 15px; opacity: 0.3; }
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 15px;
    margin-bottom: 12px;
}
.cart-item img {
    width: 70px; height: 70px;
    border-radius: 10px;
    object-fit: cover;
}
.cart-item-info { flex: 1; }
.cart-item-info h6 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.cart-item-price { font-size: 14px; color: var(--accent); font-weight: 700; }
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}
.cart-item-qty button {
    width: 24px; height: 24px;
    border-radius: 6px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 12px;
}
.remove-item {
    color: var(--danger);
    font-size: 16px;
    align-self: flex-start;
}
.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}
.coupon-box {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}
.coupon-box input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 13px;
}
.coupon-box button {
    padding: 10px 18px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}
.cart-summary { margin-bottom: 15px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}
.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--glass-border);
    padding-top: 12px;
    margin-top: 8px;
}
.summary-row.discount { color: var(--success); }
.summary-row.delivery {
    background: rgba(16, 185, 129, 0.1);
    padding: 10px;
    border-radius: 10px;
    color: var(--success);
    font-size: 13px;
    margin-top: 10px;
}

/* ========== MODALS ========== */
.glass-modal {
    background: var(--bg-primary) !important;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}
.modal-header {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 20px 25px;
}
.modal-header .btn-close { filter: invert(1); }
.modal-body { padding: 25px; }

/* Product Modal */
.product-modal-gallery {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}
.product-modal-gallery img {
    width: 100%; height: 400px;
    object-fit: cover;
}
.product-modal-info h2 { font-size: 24px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.product-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}
.product-modal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-secondary);
    padding: 5px 12px;
    border-radius: 15px;
}
.product-modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.product-modal-price .current-price { font-size: 32px; }
.specs-table {
    width: 100%;
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}
.specs-table tr td {
    padding: 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid var(--glass-border);
}
.specs-table tr td:first-child { font-weight: 600; color: var(--text-primary); width: 40%; }
.specs-table tr td:last-child { color: var(--text-secondary); }

/* Checkout */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.checkout-steps::before {
    content: '';
    position: absolute;
    top: 18px; left: 10%; right: 10%;
    height: 2px;
    background: var(--glass-border);
    z-index: 0;
}
.checkout-steps .step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: var(--text-secondary);
}
.checkout-steps .step span {
    display: block;
    width: 36px; height: 36px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 50%;
    line-height: 36px;
    margin: 0 auto 8px;
    font-weight: 700;
    border: 2px solid var(--glass-border);
    transition: var(--transition);
}
.checkout-steps .step.active span,
.checkout-steps .step.completed span {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}
.checkout-step-content { display: none; }
.checkout-step-content.active { display: block; animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.checkout-step-content h4 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; }
.checkout-step-content label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.payment-option:hover { border-color: var(--accent); }
.payment-option input { accent-color: var(--accent); }
.payment-option i { font-size: 20px; color: var(--accent); }
.order-summary {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--glass-border);
}
.order-summary-item:last-child { border: none; font-weight: 700; font-size: 16px; color: var(--accent); }

/* Order Confirmation */
.success-icon {
    width: 100px; height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 50px;
    animation: successPulse 1s ease-out;
}
@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.order-id {
    background: var(--bg-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-block;
    margin: 15px 0;
}

/* Chatbot */
.chatbot {
    position: fixed;
    left: 20px;
    bottom: 100px;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 500px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 9998;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.chatbot.open { display: flex; animation: slideUp 0.3s; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.chatbot-header {
    background: var(--accent-gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-title { display: flex; align-items: center; gap: 10px; }
.chatbot-title i { font-size: 24px; }
.chatbot-title h5 { margin: 0; font-size: 15px; font-weight: 700; }
.online-status { font-size: 11px; opacity: 0.9; }
.close-chat { color: white; font-size: 18px; }
.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: var(--bg-secondary);
}
.chat-message { margin-bottom: 12px; display: flex; }
.chat-message.bot { justify-content: flex-start; }
.chat-message.user { justify-content: flex-end; }
.message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.5;
}
.chat-message.bot .message-content {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}
.chat-message.user .message-content {
    background: var(--accent-gradient);
    color: white;
    border-bottom-right-radius: 4px;
}
.chatbot-footer {
    padding: 12px;
    background: var(--bg-primary);
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--glass-border);
}
.chatbot-footer input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    outline: none;
    font-size: 13px;
}
.chatbot-footer button {
    width: 40px; height: 40px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--bg-primary);
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: var(--shadow-lg);
        margin-top: 10px;
    }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 50px; padding-right: 0; text-align: left !important; }
    .timeline-item .timeline-dot { left: 10px !important; right: auto !important; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-arrow { display: none; }
    .journey-steps { flex-direction: column; }
    .journey-step { width: 100%; }
    .payment-methods { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-premium { width: 100%; max-width: 280px; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .search-box { display: none; }
    .chatbot { width: calc(100vw - 40px); left: 20px; }
    .cart-sidebar { width: 100%; right: -100%; }
}
@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-card { padding: 15px 10px; }
    .stat-number { font-size: 24px; }
    .floating-buttons { right: 10px; bottom: 10px; }
    .float-btn { width: 48px; height: 48px; font-size: 18px; }
    .ai-chat-btn { left: 10px; bottom: 10px; width: 52px; height: 52px; }
}

/* ========== ACCESSIBILITY ========== */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ========== UTILITIES ========== */
.text-danger { color: var(--danger) !important; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.me-2 { margin-right: 0.5rem; }
.p-5 { padding: 3rem; }
.d-flex { display: flex; }
.gap-2 { gap: 0.5rem; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }