/* CSS Variables - Oreedo Brand Colors - Blue Theme */
:root {
    /* Primary Colors - Base (Blue Theme) */
    --primary-dark-blue: #323E4C;
    --primary-dark-brown: #473F2C; /* Deprecated - keeping for compatibility */
    
    /* Primary Colors - Variations */
    --primary-blue-light: #3E4A5A;
    --primary-blue-dark: #252F3A;
    --primary-brown-light: #5A4F3A; /* Deprecated */
    --primary-brown-dark: #3A3324; /* Deprecated */
    
    /* Secondary Colors - Base */
    --secondary-light-blue: #8494AE;
    --secondary-light-gray: #E6E7E8;
    --secondary-light-brown: #B09779; /* Deprecated */
    
    /* Secondary Colors - Variations */
    --secondary-blue-light: #96A4B8;
    --secondary-blue-dark: #728294;
    --secondary-gray-light: #F0F1F2;
    --secondary-gray-dark: #D2D4D6;
    --secondary-brown-light: #C4A88B; /* Deprecated */
    --secondary-brown-dark: #9C8567; /* Deprecated */
    
    /* Neutral Colors */
    --dark-bg: #111827;
    --dark-secondary: #1F2937;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    
    /* Gradients - Blue Primary Theme */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark-blue), var(--secondary-light-blue));
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue-light), var(--secondary-gray-light));
    --gradient-accent: linear-gradient(135deg, var(--secondary-light-blue), var(--secondary-gray-light));
    --gradient-hero: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
}

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

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 0.875rem;
    color: var(--secondary-light-blue);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-link[data-color="#323E4C"]:hover,
.nav-link[data-color="#323E4C"].active {
    background: var(--primary-dark-blue);
}

.nav-link[data-color="#8494AE"]:hover,
.nav-link[data-color="#8494AE"].active {
    background: var(--secondary-light-blue);
}

.nav-link[data-color="#323E4C"]:hover,
.nav-link[data-color="#323E4C"].active {
    background: var(--primary-dark-blue);
}

.nav-link[data-color="#8494AE"]:hover,
.nav-link[data-color="#8494AE"].active {
    background: var(--secondary-light-blue);
}

.nav-link[data-color="#E6E7E8"]:hover,
.nav-link[data-color="#E6E7E8"].active {
    background: var(--secondary-light-gray);
    color: var(--text-primary);
}

/* Language Switcher */
.lang-switch {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: 6px;
    padding: 0.5rem 1rem !important;
    font-weight: 600;
    transition: var(--transition-normal);
}

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

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--primary-dark-blue) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, var(--secondary-light-blue) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, var(--primary-dark-blue) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 30px 30px;
    animation: float 20s ease-in-out infinite;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.stats-circle {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, 
        rgba(50, 62, 76, 0.8) 0%, 
        rgba(132, 148, 174, 0.6) 50%,
        rgba(50, 62, 76, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 8px 32px rgba(50, 62, 76, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Add animated gradient background */
.stats-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.1) 0deg,
        transparent 60deg,
        transparent 300deg,
        rgba(255, 255, 255, 0.1) 360deg
    );
    animation: rotate 8s linear infinite;
    border-radius: 50%;
    z-index: -1;
}

/* Add inner glow effect */
.stats-circle::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stats-circle:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(50, 62, 76, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(50, 62, 76, 0.9) 0%, 
        rgba(132, 148, 174, 0.7) 50%,
        rgba(50, 62, 76, 0.95) 100%);
}

.stat-item {
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item:hover {
    transform: scale(1.1) translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Progress Ring for Each Stat - Brand Colors Only */
.stat-item::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--secondary-light-blue) 0deg,
        var(--secondary-light-blue) 0deg,
        rgba(255, 255, 255, 0.1) 0deg,
        rgba(255, 255, 255, 0.1) 360deg
    );
    z-index: -1;
    transition: all 0.6s ease;
}

/* Individual progress animations - Using brand colors */
.stat-item:nth-child(1)::before {
    animation: progressRing1 2s ease-out 0.5s forwards;
}

.stat-item:nth-child(2)::before {
    animation: progressRing2 2s ease-out 0.8s forwards;
}

.stat-item:nth-child(3)::before {
    animation: progressRing3 2s ease-out 1.1s forwards;
}

/* Progress ring animations - All using brand colors */
@keyframes progressRing1 {
    from {
        background: conic-gradient(
            from 0deg,
            rgba(255, 255, 255, 0.1) 0deg,
            rgba(255, 255, 255, 0.1) 360deg
        );
    }
    to {
        background: conic-gradient(
            from 0deg,
            var(--secondary-light-blue) 0deg,
            var(--secondary-light-blue) 72deg,
            rgba(255, 255, 255, 0.1) 72deg,
            rgba(255, 255, 255, 0.1) 360deg
        );
    }
}

@keyframes progressRing2 {
    from {
        background: conic-gradient(
            from 0deg,
            rgba(255, 255, 255, 0.1) 0deg,
            rgba(255, 255, 255, 0.1) 360deg
        );
    }
    to {
        background: conic-gradient(
            from 0deg,
            var(--primary-dark-blue) 0deg,
            var(--primary-dark-blue) 360deg,
            rgba(255, 255, 255, 0.1) 360deg,
            rgba(255, 255, 255, 0.1) 360deg
        );
    }
}

@keyframes progressRing3 {
    from {
        background: conic-gradient(
            from 0deg,
            rgba(255, 255, 255, 0.1) 0deg,
            rgba(255, 255, 255, 0.1) 360deg
        );
    }
    to {
        background: conic-gradient(
            from 0deg,
            var(--secondary-light-blue) 0deg,
            var(--secondary-light-blue) 360deg,
            rgba(255, 255, 255, 0.1) 360deg,
            rgba(255, 255, 255, 0.1) 360deg
        );
    }
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: font-size 0.3s ease;
    position: relative;
    z-index: 4;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    opacity: 0.9;
    z-index: 4;
    position: relative;
    line-height: 1.1;
    text-align: center;
}

/* Animated counting effect */
.stat-number.counting {
    animation: pulse 0.2s ease-in-out;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Enhanced glow effect for numbers on hover */
.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

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

.floating-products {
    position: absolute;
    width: 100%;
    height: 100%;
}

.product-card.floating {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatProduct 6s ease-in-out infinite;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.product-card.floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(132, 148, 174, 0.1) 0%, 
        transparent 50%, 
        rgba(50, 62, 76, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.product-card.floating:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 35px rgba(50, 62, 76, 0.3);
    border-color: var(--secondary-light-blue);
}

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

/* Connection lines to stats circle */
.product-card.floating::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        var(--secondary-light-blue),
        transparent
    );
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.product-card.floating[data-product="rentek"]::after {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) rotate(25deg);
    transform-origin: top center;
}

.product-card.floating[data-product="convera"]::after {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) rotate(-25deg);
    transform-origin: top center;
}

.product-card.floating[data-product="consultene"]::after {
    top: -60px;
    left: 50%;
    transform: translateX(-50%) rotate(-25deg);
    transform-origin: bottom center;
}

.product-card.floating[data-product="facility"]::after {
    top: -60px;
    left: 50%;
    transform: translateX(-50%) rotate(25deg);
    transform-origin: bottom center;
}

.product-card.floating[data-product="azoum"]::after {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
}

/* Show connection lines on stats circle hover */
.stats-circle:hover ~ .floating-products .product-card.floating::after {
    opacity: 0.6;
}

.product-card.floating img {
    width: 50px;
    height: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.product-card.floating[data-product="rentek"] {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.product-card.floating[data-product="convera"] {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.product-card.floating[data-product="consultene"] {
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.product-card.floating[data-product="facility"] {
    bottom: 10%;
    right: 15%;
    animation-delay: 4.5s;
}

.product-card.floating[data-product="azoum"] {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.25s;
}

@keyframes floatProduct {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        box-shadow: var(--shadow-lg);
    }
    25% { 
        transform: translateY(-8px) rotate(2deg);
        box-shadow: 0 8px 25px rgba(50, 62, 76, 0.15);
    }
    50% { 
        transform: translateY(-15px) rotate(0deg);
        box-shadow: 0 15px 35px rgba(50, 62, 76, 0.2);
    }
    75% { 
        transform: translateY(-8px) rotate(-2deg);
        box-shadow: 0 8px 25px rgba(50, 62, 76, 0.15);
    }
}

/* Add pulsing effect when stats circle is hovered */
.stats-circle:hover ~ .floating-products .product-card.floating {
    animation-duration: 3s;
    border-color: rgba(132, 148, 174, 0.3);
}

/* Staggered pulse animation for enhanced interaction */
.stats-circle:hover ~ .floating-products .product-card.floating[data-product="rentek"] {
    animation-delay: 0s;
    transform: scale(1.05);
}

.stats-circle:hover ~ .floating-products .product-card.floating[data-product="convera"] {
    animation-delay: 0.2s;
    transform: scale(1.05);
}

.stats-circle:hover ~ .floating-products .product-card.floating[data-product="consultene"] {
    animation-delay: 0.4s;
    transform: scale(1.05);
}

.stats-circle:hover ~ .floating-products .product-card.floating[data-product="facility"] {
    animation-delay: 0.6s;
    transform: scale(1.05);
}

.stats-circle:hover ~ .floating-products .product-card.floating[data-product="azoum"] {
    animation-delay: 0.8s;
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}

.mission-vision-card {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 3rem;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 100%;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-title {
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Stats Section */
.stats {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--primary-dark-blue),
        var(--primary-dark-blue) 10px,
        var(--secondary-light-blue) 10px,
        var(--secondary-light-blue) 20px,
        var(--primary-dark-blue) 20px,
        var(--primary-dark-blue) 30px,
        var(--secondary-light-blue) 30px,
        var(--secondary-light-blue) 40px
    );
    opacity: 0.1;
}

.stats-overlay {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

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

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

.stat-title {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Hero stats numbers should be white */
.hero-visual .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

/* About section stats numbers should be dark */
.about .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2D2A1F;
    margin-bottom: 0.5rem;
}

/* Stats section numbers should be dark for contrast on white background */
.stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2D2A1F;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* Team Section */
.team {
    background: var(--light-bg);
}

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

.member-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

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

.member-image {
    height: 300px;
    overflow: hidden;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.member-image img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.member-info {
    padding: 2rem;
}

.member-name {
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-dark-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
}

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

.products .section-title {
    color: var(--white);
}

.products .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.product-card-detailed {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    color: var(--text-primary);
    transition: var(--transition-normal);
    border-left: 4px solid transparent;
}

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

.product-card-detailed[data-color="#323E4C"] {
    border-left-color: var(--primary-dark-blue);
}

.product-card-detailed[data-color="#8494AE"] {
    border-left-color: var(--secondary-light-blue);
}

.product-card-detailed[data-color="#323E4C"] {
    border-left-color: var(--primary-dark-blue);
}

.product-card-detailed[data-color="#8494AE"] {
    border-left-color: var(--secondary-light-blue);
}

.product-card-detailed[data-color="#E6E7E8"] {
    border-left-color: var(--secondary-light-gray);
}

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

.product-logo {
    height: 40px;
    width: auto;
}

.product-badge {
    background: var(--primary-dark-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-name {
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--light-bg);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-title {
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.contact-text {
    color: var(--text-primary);
    margin-bottom: 0;
}

.contact-link {
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--secondary-light-blue);
}

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

.whatsapp-link {
    color: #25D366 !important;
}

.whatsapp-link:hover {
    color: #128C7E !important;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: 150px;
    object-fit: contain;
}

.footer-tagline {
    color: var(--secondary-light-blue);
    font-weight: 600;
    margin: 0;
}

.footer-mission {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: var(--white);
}

.footer-link[data-color="#323E4C"]:hover {
    color: var(--primary-dark-blue);
}

.footer-link[data-color="#8494AE"]:hover {
    color: var(--secondary-light-blue);
}

.footer-link[data-color="#323E4C"]:hover {
    color: var(--primary-dark-blue);
}

.footer-link[data-color="#8494AE"]:hover {
    color: var(--secondary-light-blue);
}

.footer-link[data-color="#E6E7E8"]:hover {
    color: var(--secondary-light-gray);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Mobile Hero Circle Responsiveness */
    .stats-circle {
        width: 250px;
        height: 250px;
        gap: 0.75rem;
        padding: 1rem;
    }

    .stat-item {
        width: 65px;
        height: 65px;
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0.15rem;
    }

    .stat-label {
        font-size: 0.6rem;
        line-height: 1;
    }

    /* Mobile floating products adjustments */
    .product-card.floating {
        width: 60px;
        height: 60px;
    }

    .product-card.floating img {
        width: 35px;
    }

    /* Adjust floating product positions for mobile - directly overlapping circle like desktop */
    .product-card.floating[data-product="rentek"] {
        top: 25%;
        left: 8%;
        z-index: 1;
    }

    .product-card.floating[data-product="convera"] {
        top: 25%;
        right: 8%;
        z-index: 1;
    }

    .product-card.floating[data-product="consultene"] {
        bottom: 25%;
        left: 8%;
        z-index: 1;
    }

    .product-card.floating[data-product="facility"] {
        bottom: 25%;
        right: 8%;
        z-index: 1;
    }

    .product-card.floating[data-product="azoum"] {
        top: -5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    /* Disable connection lines on mobile for cleaner look */
    .product-card.floating::after {
        display: none;
    }

    /* Simplify hover effects on mobile */
    .stats-circle:hover ~ .floating-products .product-card.floating {
        transform: scale(1.02);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile positioning for floating products - move further from circle */
    .product-card.floating[data-product="rentek"] {
        top: -5%;
        left: -10%;
    }

    .product-card.floating[data-product="convera"] {
        top: -5%;
        right: -10%;
    }

    .product-card.floating[data-product="consultene"] {
        bottom: -5%;
        left: -10%;
    }

    .product-card.floating[data-product="facility"] {
        bottom: -5%;
        right: -10%;
    }

    .product-card.floating[data-product="azoum"] {
        top: -25%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

