/* ============================================
   TRADERS GLOBAL - Main Stylesheet
   Color Palette: Navy Blue + Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #1a3c6e;
    --primary-rgb: 26, 60, 110;
    --primary-dark: #0f2447;
    --primary-light: #2451a0;
    --accent: #e8a020;
    --accent-rgb: 232, 160, 32;
    --accent-dark: #c4881a;
    --accent-light: #f0b84a;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #eef1f6;
    --gray: #6b7280;
    --dark-gray: #374151;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border: rgba(var(--primary-rgb), 0.12);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 15px rgba(var(--primary-rgb), 0.12);
    --shadow-lg: 0 10px 40px rgba(var(--primary-rgb), 0.18);
    --shadow-xl: 0 20px 60px rgba(var(--primary-rgb), 0.22);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-badge {
    display: inline-block;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent-dark);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-title span { color: var(--accent); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* ---- Layout ---- */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.section-padding { padding: 90px 0; }
.section-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-dark:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}

.btn-sm { padding: 9px 22px; font-size: 0.88rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 0;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
    line-height: 1.1;
}

.logo-text span { color: var(--accent); }
.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
}

.navbar.scrolled .logo-text { color: var(--primary-dark); }
.navbar.scrolled .logo-sub { opacity: 0.6; }

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-light);
    background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Translate Widget */
.translate-widget {
    position: relative;
}

.translate-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.navbar.scrolled .translate-toggle {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
}

.translate-toggle:hover {
    background: rgba(255,255,255,0.25);
}

.translate-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    min-width: 180px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--border);
    z-index: 200;
}

.translate-widget.open .translate-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

.lang-option:last-child { border-bottom: none; }

.lang-option:hover {
    background: var(--off-white);
    color: var(--primary);
}

.lang-option.active {
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--primary);
    font-weight: 600;
}

.lang-flag {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-hamburger span { background: var(--primary); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(var(--accent-rgb),0.12) 0%, transparent 60%);
    z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 720px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--accent-rgb),0.2);
    border: 1px solid rgba(var(--accent-rgb),0.4);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-title span { color: var(--accent-light); }

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 38px;
    line-height: 1.8;
    max-width: 580px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item { text-align: left; }

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Hero Image Float */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 560px;
    z-index: 2;
}

.hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

/* ============================================
   MARQUEE BAR
   ============================================ */
.marquee-bar {
    background: var(--accent);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.products-section { background: var(--off-white); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
}

.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray), var(--off-white));
}

.product-no-image i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.25;
}

.product-body { padding: 22px; }

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.product-price .currency { font-size: 0.85rem; font-weight: 600; margin-right: 2px; }
.product-unit { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; display: block; }

.product-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.product-detail-btn:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-section { background: var(--white); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.category-card:hover, .category-card.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
}

.category-card:hover .category-icon,
.category-card.active .category-icon {
    background: rgba(255,255,255,0.2);
}

.category-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.category-card:hover .category-name,
.category-card.active .category-name {
    color: white;
}

/* ============================================
   ABOUT / CTA BANNER
   ============================================ */
.about-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--accent-rgb),0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-badge { background: rgba(var(--accent-rgb),0.2); border-color: rgba(var(--accent-rgb),0.4); color: var(--accent-light); }
.about-content .section-title { color: white; }
.about-content .section-title span { color: var(--accent-light); }

.about-desc {
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.about-feature i {
    width: 32px;
    height: 32px;
    background: rgba(var(--accent-rgb),0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.about-card-float {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-card-float.card-1 { bottom: -20px; left: -30px; }
.about-card-float.card-2 { top: -20px; right: -20px; }

.float-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.float-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: block;
}

.float-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--off-white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.1), rgba(var(--primary-rgb),0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-section { background: var(--white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number-wrap {
    width: 90px;
    height: 90px;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-number-wrap:hover {
    background: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb),0.35);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    transition: var(--transition);
}

.step-number-wrap:hover .step-number { color: white; }

.step-icon {
    position: absolute;
    top: -5px; right: -5px;
    width: 28px; height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.72rem;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   TEAM
   ============================================ */
.team-section { background: var(--off-white); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img { width: 100%; height: 100%; object-fit: cover; }

.team-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.team-body { padding: 24px 20px; }

.team-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.team-position {
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px; right: 25px;
    font-size: 5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: rgba(var(--primary-rgb),0.06);
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: white;
}

.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars i { color: var(--accent); font-size: 0.9rem; }

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700; font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   PARTNERS
   ============================================ */
.partners-section { background: var(--off-white); padding: 60px 0; }

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.partner-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 80px;
    border: 1px solid var(--border);
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.6;
}

.partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
    box-shadow: var(--shadow-md);
    transform: scale(1.04);
}

.partner-item img { max-height: 40px; width: auto; }

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-rgb),0.1) 0%, transparent 60%);
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: white;
    margin-bottom: 18px;
    position: relative;
}

.cta-title span { color: var(--accent-light); }

.cta-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 38px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin: 18px 0 24px;
    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-social { display: flex; gap: 10px; }

.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover { color: var(--accent-light); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.contact-item i {
    color: var(--accent);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 0.85rem; }
.footer-bottom a { color: var(--accent-light); }

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner-content { position: relative; z-index: 2; }

.page-banner h1 {
    color: white;
    margin-bottom: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.7rem; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--light-gray);
    height: 450px;
}

.product-detail-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--primary);
    opacity: 0.3;
}

.no-image-placeholder i { font-size: 5rem; }

.detail-category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.detail-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.detail-price-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.detail-currency { font-size: 1rem; font-weight: 500; opacity: 0.8; }
.detail-unit-text { opacity: 0.7; font-size: 0.88rem; }

.detail-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 0.97rem;
}

.detail-contact-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb),0.08);
}

textarea.form-control { resize: vertical; min-height: 120px; }

/* ============================================
   LOADING & TRANSLATION OVERLAY
   ============================================ */
.translate-loading {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform-origin: left;
    animation: loadingBar 0.8s ease-in-out;
    z-index: 9999;
    display: none;
}

@keyframes loadingBar {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 16px; }
.view-all-wrap { text-align: center; margin-top: 50px; }
.divider { height: 1px; background: var(--border); margin: 60px 0; }

/* Flash Alert */
.flash-alert {
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.flash-info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* skeletons */
.skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--off-white) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   UTILITIES — Display Helpers
   ============================================ */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
@media (min-width: 992px) {
    .d-lg-flex { display: flex !important; }
    .d-lg-none { display: none !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-visual { width: 38%; }
    .about-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
}

/* Hidden on desktop, shown only inside mobile menu */
.mobile-menu-widgets { display: none; }


@media (max-width: 768px) {
    /* ---- Navbar core ---- */
    .navbar-inner {
        height: 64px;
        width: 94%;
    }

    /* Hide desktop-only widgets from the action bar */
    .navbar-actions .translate-widget {
        display: none;
    }

    /* Show hamburger */
    .navbar-menu { display: none; }
    .nav-hamburger { display: flex; }

    /* Hamburger bar color on transparent navbar */
    .nav-hamburger span { background: var(--white); }
    .navbar.scrolled .nav-hamburger span { background: var(--primary-dark); }

    /* Active (open) hamburger animation */
    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ---- Mobile slide-down menu ---- */
    .navbar-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-dark);
        padding: 24px 20px 40px;
        gap: 4px;
        z-index: 999;
        overflow-y: auto;
        animation: menuSlideIn 0.28s ease;
    }

    @keyframes menuSlideIn {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Nav links inside mobile menu */
    .navbar-menu.open .nav-link {
        color: rgba(255,255,255,0.9) !important;
        font-size: 1.1rem;
        padding: 14px 18px;
        border-radius: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        width: 100%;
    }

    .navbar-menu.open .nav-link:last-of-type {
        border-bottom: none;
    }

    .navbar-menu.open .nav-link.active,
    .navbar-menu.open .nav-link:hover {
        background: rgba(255,255,255,0.1);
        color: var(--accent-light) !important;
    }

    /* Mobile-menu currency & language row */
    .mobile-menu-widgets {
        display: flex !important;
        gap: 10px;
        padding: 16px 18px 0;
        margin-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.1);
        flex-wrap: wrap;
    }

    .mobile-menu-widgets .translate-widget {
        flex: 1;
    }

    .mobile-menu-widgets .translate-toggle {
        width: 100%;
        justify-content: center;
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.25);
        color: white;
        padding: 10px 14px;
    }

    .mobile-menu-widgets .translate-dropdown {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        border-radius: var(--radius-md);
    }

    .mobile-menu-widgets .translate-widget.open .translate-dropdown {
        display: block;
    }

    /* Hide the phone button on mobile */
    .navbar-actions .btn { display: none !important; }

    /* ---- Other section fixes ---- */
    .nav-link { color: rgba(255,255,255,0.9) !important; }

    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { display: none; }

    .product-detail-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .section-padding { padding: 60px 0; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .about-card-float { display: none; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
    .contact-form-wrap { padding: 24px; }
}



/* Partners Section */
.partners-section {
    background: white;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.partner-logo {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(60%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card-name {
    display: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.partner-logo.no-image .partner-card-name {
    display: block;
}