/* ========== RIYAH AL NAHR TRADING - MAIN STYLESHEET ========== */

/* ========== CSS VARIABLES - MINT GREEN THEME ========== */
:root {
    /* Primary Mint Green (from logo) */
    --primary-50: #e6fff5;
    --primary-100: #b3ffe0;
    --primary-200: #80ffcc;
    --primary-300: #4dfab7;
    --primary-400: #26f0a5;
    --primary-500: #00D47E;
    --primary-600: #00B896;
    --primary-700: #009975;
    --primary-800: #007a5e;
    --primary-900: #005c47;
    
    /* Dark Theme Colors */
    --dark-900: #0a0f0d;
    --dark-800: #111816;
    --dark-700: #1a2420;
    --dark-600: #243530;
    
    /* Accent Orange (for CTAs) */
    --accent-400: #ff8c42;
    --accent-500: #ff6b00;
    --accent-600: #e55f00;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafb;
    --bg-lighter: #f1f5f4;
    
    /* Text Colors */
    --text-primary: #0a0f0d;
    --text-secondary: #1a2420;
    --text-body: #2d3835;
    
    /* Borders */
    --border-light: #e2e8e6;
    --border-medium: #cbd5d2;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00D47E 0%, #00B896 100%);
    --gradient-primary-hover: linear-gradient(135deg, #00E88A 0%, #00CCA6 100%);
    --gradient-dark: linear-gradient(135deg, #0a0f0d 0%, #1a2420 50%, #111816 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-green: 0 10px 40px rgba(0, 212, 126, 0.25);
    --shadow-green-lg: 0 15px 50px rgba(0, 212, 126, 0.35);
    --shadow-orange: 0 10px 40px rgba(255, 107, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s 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', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

p {
    color: var(--text-body);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========== UTILITIES ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-lighter {
    background-color: var(--bg-lighter);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-100);
    color: var(--primary-700);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-badge i {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.75rem;
    }
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    white-space: nowrap;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-900);
    box-shadow: var(--shadow-green);
}

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

.btn-accent {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: var(--shadow-orange);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.4);
}

.btn-white {
    background: #ffffff;
    color: var(--primary-700);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-500);
    color: var(--primary-600);
}

.btn-outline:hover {
    background: var(--primary-500);
    color: var(--dark-900);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 640px) {
    .logo-image {
        height: 40px;
    }
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 6px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.navbar.scrolled .nav-link:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .btn {
    display: none;
}

@media (min-width: 768px) {
    .nav-actions .btn {
        display: inline-flex;
    }
}

.mobile-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.navbar.scrolled .mobile-toggle {
    background: var(--primary-50);
    color: var(--primary-600);
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-2xl);
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 8px;
}

.mobile-menu-links a {
    display: block;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-primary);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.mobile-menu-links a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.mobile-menu-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.mobile-menu-cta .btn {
    width: 100%;
    margin-bottom: 12px;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 15, 13, 0.3) 0%, 
        rgba(17, 24, 22, 0.25) 40%, 
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 126, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0, 212, 126, 0.3);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-badge span {
    color: var(--primary-400);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title-highlight {
    background: linear-gradient(135deg, #00D47E, #4dfab7, #00D47E);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.15rem;
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-features {
        flex-direction: row;
        gap: 28px;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.hero-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 126, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon i {
    color: var(--primary-400);
    width: 20px;
    height: 20px;
}

.hero-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.hero-visual {
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition-normal);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(0, 212, 126, 0.3);
}

.hero-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-400);
    display: block;
    margin-bottom: 6px;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    z-index: 2;
}

@media (min-width: 768px) {
    .scroll-indicator {
        display: flex;
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* ========== TRUSTED BRANDS SECTION ========== */
.trusted {
    padding: 50px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.trusted-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .trusted-content {
        flex-direction: row;
        gap: 50px;
    }
}

.trusted-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

@media (min-width: 768px) {
    .trusted-logos {
        gap: 40px;
    }
}

.trusted-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-body);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.trusted-logo:hover {
    opacity: 1;
    color: var(--primary-600);
}

/* ========== ABOUT SECTION ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

@media (min-width: 768px) {
    .about-image-main img {
        height: 480px;
    }
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-float {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: var(--shadow-green-lg);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .about-image-float {
        bottom: -30px;
        right: -30px;
        padding: 28px 36px;
    }
}

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

.about-float-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-900);
    display: block;
}

.about-float-text {
    color: var(--dark-800);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-content {
    padding: 0;
}

@media (min-width: 1024px) {
    .about-content {
        padding-left: 20px;
    }
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.25rem;
    }
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
}

@media (min-width: 640px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.about-feature {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

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

.about-feature-icon {
    width: 46px;
    height: 46px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--dark-900);
    width: 22px;
    height: 22px;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* ========== SERVICES SECTION ========== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-icon i {
    color: var(--primary-600);
    width: 26px;
    height: 26px;
    transition: color var(--transition-normal);
}

.service-card:hover .service-icon i {
    color: var(--dark-900);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-list li i {
    color: var(--primary-500);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ========== PRODUCTS SECTION ========== */
.products-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 22px;
    border: 2px solid var(--border-light);
    background: #ffffff;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tab-btn:hover {
    border-color: var(--primary-400);
    color: var(--primary-600);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--dark-900);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: var(--dark-900);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge.hot {
    background: var(--gradient-accent);
    color: #ffffff;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-secondary);
}

.product-action-btn:hover {
    background: var(--primary-500);
    color: var(--dark-900);
    border-color: var(--primary-500);
}

.product-action-btn i {
    width: 18px;
    height: 18px;
}

.product-content {
    padding: 18px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 14px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-600);
}

.product-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.product-link:hover {
    color: var(--primary-600);
}

.product-link i {
    width: 16px;
    height: 16px;
}

/* ========== SPARE PARTS SECTION ========== */
.spare-parts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1024px) {
    .spare-parts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.spare-parts-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .spare-parts-content h2 {
        font-size: 2.25rem;
    }
}

.spare-parts-content > p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.8;
}

.spare-parts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .spare-parts-list {
        grid-template-columns: 1fr 1fr;
    }
}

.spare-part-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.spare-part-item:hover {
    border-color: var(--primary-300);
    transform: translateX(5px);
}

.spare-part-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spare-part-icon i {
    color: var(--primary-600);
    width: 20px;
    height: 20px;
}

.spare-part-item span {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.spare-parts-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.spare-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.spare-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.spare-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.spare-image:first-child {
    grid-column: span 2;
}

.spare-image:first-child img {
    height: 240px;
}

/* ========== STATS SECTION - WHITE ICONS ========== */
.stats {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300D47E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 126, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* WHITE ICONS - CLEARLY VISIBLE */
.stat-icon i {
    color: #ffffff !important;
    width: 28px;
    height: 28px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========== WHY CHOOSE US ========== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--shadow-green);
}

.why-card:hover::after {
    opacity: 1;
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-100);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
    background: rgba(10, 15, 13, 0.2);
}

.why-icon i {
    color: var(--primary-600);
    width: 30px;
    height: 30px;
    transition: color var(--transition-normal);
}

.why-card:hover .why-icon i {
    color: var(--dark-900);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.why-card:hover h3 {
    color: var(--dark-900);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    transition: color var(--transition-normal);
}

.why-card:hover p {
    color: var(--dark-800);
}

/* ========== PROCESS SECTION ========== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
}

@media (min-width: 640px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 12.5%;
        right: 12.5%;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 3px;
        z-index: 0;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border: 3px solid var(--primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-600);
    transition: all var(--transition-normal);
}

.process-step:hover .process-number {
    background: var(--gradient-primary);
    color: var(--dark-900);
    border-color: transparent;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
}

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

.testimonial-quote {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary-100);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-stars i {
    color: #fbbf24;
    fill: #fbbf24;
    width: 18px;
    height: 18px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-200);
}

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

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-body);
}

/* ========== FAQ SECTION ========== */
.faq-grid {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-300);
}

.faq-item.active {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    width: 34px;
    height: 34px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--gradient-primary);
    transform: rotate(180deg);
}

.faq-icon i {
    color: var(--primary-600);
    width: 20px;
    height: 20px;
    transition: color var(--transition-normal);
}

.faq-item.active .faq-icon i {
    color: var(--dark-900);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 26px 22px;
    color: var(--text-body);
    line-height: 1.8;
}

/* ========== CTA SECTION ========== */
.cta {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    opacity: 0.95;
    z-index: -1;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 60px;
    }
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .contact-info h2 {
        font-size: 2.25rem;
    }
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-green);
}

.contact-method-icon i {
    color: var(--dark-900);
    width: 22px;
    height: 22px;
}

.contact-method-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.contact-method-content p,
.contact-method-content a {
    color: var(--text-body);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.contact-method-content a:hover {
    color: var(--primary-600);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-link {
    width: 46px;
    height: 46px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--dark-900);
    transform: translateY(-5px);
}

.social-link i {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 40px;
    }
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(0, 212, 126, 0.15);
    background: #ffffff;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-submit .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gradient-dark);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-image {
    height: 55px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    margin: 16px 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-license {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-license strong {
    color: rgba(255, 255, 255, 0.85);
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary-400);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-400);
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
    color: #ffffff;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-900);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-green);
    border: none;
}

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

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

.back-to-top i {
    width: 24px;
    height: 24px;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.active > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.active > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.active > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.active > *:nth-child(6) { transition-delay: 0.3s; }
.stagger.active > *:nth-child(7) { transition-delay: 0.35s; }
.stagger.active > *:nth-child(8) { transition-delay: 0.4s; }

.stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}
