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

/* Advanced Performance Optimization for Animations */
.service-card,
.contact-card,
.partner-logo-card,
.team-card,
.btn {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    transform: translateZ(0); /* Force hardware acceleration */
    -webkit-transform: translateZ(0);
}

/* CSS Containment for Performance */
.service-card,
.contact-card,
.partner-logo-card {
    contain: layout style paint;
}

/* Optimize repaints and reflows */
.navbar,
.hero,
.about,
.services,
.contact {
    contain: layout;
}

/* Smooth scrolling optimization */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed navbar + extra padding */
}

/* Ensure all sections have proper scroll margin */
section[id] {
    scroll-margin-top: 100px;
}

/* Font optimization */
body {
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fef9f9 0%, #ffffff 100%);
    position: relative;
    padding-top: 0; /* Ensure no top padding conflicts with fixed navbar */
}

/* Floating elements animation - DISABLED */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background animation removed */
    pointer-events: none;
    z-index: -1;
}

/* Desktop-only animations */
@media (min-width: 769px) {
    body::before {
        display: block;
    }
}

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

/* Smooth scrolling with performance optimization */
html {
    scroll-behavior: smooth;
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .navbar {
        transition: none !important;
    }
    
    .nav-link {
        transition: none !important;
    }
    
    .breadcrumb-nav {
        transition: none !important;
    }
}

/* Page loading animation */
@keyframes fadeInPage {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Apply fade in to all main sections */
.hero, .about, .company-network, .market-presence, .services, .contact {
    animation: fadeInPage 0.8s ease-out;
}

/* Stagger animation delays for sections */
.about { animation-delay: 0.2s; animation-fill-mode: both; }
.company-network { animation-delay: 0.3s; animation-fill-mode: both; }
.market-presence { animation-delay: 0.4s; animation-fill-mode: both; }
.services { animation-delay: 0.5s; animation-fill-mode: both; }
.contact { animation-delay: 0.6s; animation-fill-mode: both; }

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

/* Navigation - EST STAR Corporate Theme with Enhanced Hover */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(220, 38, 38, 0.1);
    border-bottom: 3px solid #dc2626;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background-color, box-shadow;
    transform: translateZ(0); /* Hardware acceleration */
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.navbar:hover::before {
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 4px 30px rgba(220, 38, 38, 0.2) !important;
    border-bottom: 3px solid #dc2626 !important;
    padding: 1rem 0 !important;
    transform: translateZ(0) !important;
}

.navbar:hover {
    box-shadow: 0 6px 35px rgba(220, 38, 38, 0.25);
    transform: translateZ(0) translateY(-1px);
}

/* Navbar entrance animation */
.navbar {
    animation: navbarSlideDown 0.5s ease-out;
}

@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ensure navbar is always on top */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 2rem;
    margin-left: -20rem;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid #dc2626;
    padding: 4px;
    background: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-img {
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transform: rotate(5deg);
}

.nav-logo h2 {
    color: #dc2626;
    font-weight: 900;
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link.active {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 1001;
}

.menu-checkbox {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .hamburger-line {
        width: 24px;
        height: 3px;
        background: #dc2626;
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
        box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
        position: relative;
    }

.hamburger-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ef4444, #f87171);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger-line:nth-child(1) {
    margin-bottom: 6px;
}

.hamburger-line:nth-child(2) {
    margin-bottom: 6px;
}

.hamburger-line:nth-child(3) {
    margin-bottom: 0;
}

/* Simple Hamburger Animation */
.menu-checkbox:checked + .hamburger .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #dc2626;
}

.menu-checkbox:checked + .hamburger .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-checkbox:checked + .hamburger .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #dc2626;
}

/* Hover Effects */
.hamburger:hover .hamburger-line {
    background: linear-gradient(135deg, #ef4444, #f87171);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}


/* Breadcrumb Navigation for Mobile */
.breadcrumb-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    /* backdrop-filter removed for performance */
    padding: 0.75rem 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
    opacity: 0;
}

.breadcrumb-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.breadcrumb-list::-webkit-scrollbar {
    display: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-link:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.breadcrumb-link.active {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.15);
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.breadcrumb-separator {
    color: #cbd5e1;
    font-size: 0.75rem;
    margin: 0 0.1rem;
}

.breadcrumb-current {
    color: #dc2626;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 280px !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 1000 !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 0 !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important;
        pointer-events: none !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        opacity: 0 !important;
        visibility: hidden !important;
        gap: 0 !important;
        margin: 0 !important;
        align-items: stretch !important;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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


    .nav-item {
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.05s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(8) { transition-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(9) { transition-delay: 0.4s; }

    .nav-link {
        color: #333 !important;
        font-size: 1rem;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        padding: 1rem 1.5rem;
        margin: 0;
        border-radius: 0;
        background: transparent;
        border: none;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-align: left;
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
        color: #dc2626;
        opacity: 0.8;
    }

    .nav-link span {
        flex: 1;
    }

    .nav-link:hover {
        background: rgba(220, 38, 38, 0.05);
        color: #dc2626;
    }

    .nav-link:hover i {
        opacity: 1;
        color: #dc2626;
    }

    .nav-link.active {
        background: rgba(220, 38, 38, 0.1);
        color: #dc2626;
        font-weight: 600;
    }

    .nav-link.active i {
        color: #dc2626;
        opacity: 1;
    }

    .breadcrumb-nav {
        display: none;
    }

    .mobile-social {
        margin-top: 0.5rem !important;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-facebook-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        color: #333 !important;
        font-size: 1rem !important;
        padding: 1rem 1.5rem !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .mobile-facebook-link:hover {
        background: rgba(59, 89, 152, 0.05) !important;
        color: #1877f2 !important;
    }

    .mobile-facebook-link i {
        font-size: 1.5rem;
        color: #1877f2;
        opacity: 0.9;
    }


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

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

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

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

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

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

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .team-card {
        padding: 1.5rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic i {
        font-size: 5rem;
    }
}

/* Statistics Mobile Styles */
@media (max-width: 768px) {
    .statistics {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .summary-content h3 {
        font-size: 1.5rem;
    }
    
    .summary-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .statistics {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
    }
    
    .summary-icon i {
        font-size: 1.5rem;
    }
}

/* Hero Section - Professional Corporate Design */
.hero {
    color: #1f2937;
    padding: 140px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/.temp-15-48-48-image_upscayl_4x_upscayl-standard-4x.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.grid-line{stroke:rgba(148,163,184,0.08);stroke-width:0.5;fill:none;}</style></defs><line x1="0" y1="25" x2="100" y2="25" class="grid-line"/><line x1="0" y1="50" x2="100" y2="50" class="grid-line"/><line x1="0" y1="75" x2="100" y2="75" class="grid-line"/><line x1="25" y1="0" x2="25" y2="100" class="grid-line"/><line x1="50" y1="0" x2="50" y2="100" class="grid-line"/><line x1="75" y1="0" x2="75" y2="100" class="grid-line"/></svg>') repeat;
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.tower{fill:rgba(255,255,255,0.1);}.signal{fill:none;stroke:rgba(255,255,255,0.2);stroke-width:0.5;}.wave{fill:none;stroke:rgba(255,255,255,0.15);stroke-width:0.3;}</style></defs><rect x="48" y="20" width="4" height="60" class="tower"/><rect x="46" y="25" width="8" height="3" class="tower"/><rect x="44" y="35" width="12" height="2" class="tower"/><circle cx="50" cy="20" r="15" class="signal"><animate attributeName="r" values="15;25;15" dur="3s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.3;0;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="50" cy="20" r="20" class="signal"><animate attributeName="r" values="20;30;20" dur="3s" repeatCount="indefinite" begin="1s"/><animate attributeName="opacity" values="0.2;0;0.2" dur="3s" repeatCount="indefinite" begin="1s"/></circle><path d="M10,80 Q25,75 40,80 T70,80 T100,80" class="wave"><animate attributeName="d" values="M10,80 Q25,75 40,80 T70,80 T100,80;M10,82 Q25,77 40,82 T70,82 T100,82;M10,80 Q25,75 40,80 T70,80 T100,80" dur="4s" repeatCount="indefinite"/></path><path d="M5,85 Q20,82 35,85 T65,85 T95,85" class="wave"><animate attributeName="d" values="M5,85 Q20,82 35,85 T65,85 T95,85;M5,87 Q20,84 35,87 T65,87 T95,87;M5,85 Q20,82 35,85 T65,85 T95,85" dur="3.5s" repeatCount="indefinite"/></path></svg>') repeat;
    pointer-events: none;
    /* animation removed for performance */
    z-index: 3;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    /* animation removed for performance */
    pointer-events: none;
    z-index: 4;
}

@keyframes shine-wave {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(300%); }
}

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

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.benefits-list i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #eff6ff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #4b5563;
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    margin: 0;
    color: #1e3a8a;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.partners-logos {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.partners-logos h3 {
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.partner-logo span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e3a8a;
}

.partner-logo small {
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: #4b5563;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    0% { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1f2937 !important;
    position: relative;
    letter-spacing: -2px;
    text-shadow: none;
    background: none !important;
    -webkit-text-fill-color: #1f2937 !important;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc2626;
    transition: width 0.8s ease;
}

.hero-content:hover .hero-title::after {
    width: 120px;
}

/* Add shimmer on hover only */
.hero-title:hover {
    background: linear-gradient(90deg, #1f2937 0%, #dc2626 50%, #1f2937 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 1.5s ease-in-out;
}

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

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #dc2626 !important;
    letter-spacing: 0.5px;
    text-shadow: none;
    background: none !important;
    -webkit-text-fill-color: #dc2626 !important;
}

@keyframes fadeInUp {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 0.95; 
        transform: translateY(0); 
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4b5563 !important;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
    text-shadow: none;
    background: none !important;
    -webkit-text-fill-color: #4b5563 !important;
}


.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-top: 2.5rem;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #dc2626 !important;
    color: white !important;
    border: 2px solid #dc2626;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b91c1c !important;
    color: white !important;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.btn-secondary {
    background: transparent !important;
    color: #1f2937 !important;
    border: 2px solid #e5e7eb;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1f2937 !important;
    color: white !important;
    border-color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

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

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    /* animation removed for performance */
    z-index: 1;
}

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

.hero-logo {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    position: relative;
    z-index: 2;
    /* Animation removed - ready for custom animation */
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937 !important;
    position: relative;
    letter-spacing: -1px;
    text-shadow: none;
    background: none !important;
    -webkit-text-fill-color: #1f2937 !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #dc2626;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280 !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0px;
}

/* About Section with Professional Visual Elements */
.about {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.network-line{stroke:rgba(220,38,38,0.08);stroke-width:0.5;fill:none;}.network-node{fill:rgba(220,38,38,0.1);}.signal-wave{fill:none;stroke:rgba(239,68,68,0.06);stroke-width:0.3;}</style></defs><g class="network"><circle cx="20" cy="20" r="2" class="network-node"/><circle cx="80" cy="30" r="1.5" class="network-node"/><circle cx="60" cy="70" r="2.5" class="network-node"/><circle cx="30" cy="80" r="1.8" class="network-node"/><line x1="20" y1="20" x2="80" y2="30" class="network-line"/><line x1="80" y1="30" x2="60" y2="70" class="network-line"/><line x1="60" y1="70" x2="30" y2="80" class="network-line"/><line x1="30" y1="80" x2="20" y2="20" class="network-line"/><path d="M10,50 Q30,45 50,50 T90,50" class="signal-wave"><animate attributeName="d" values="M10,50 Q30,45 50,50 T90,50;M10,52 Q30,47 50,52 T90,52;M10,50 Q30,45 50,50 T90,50" dur="4s" repeatCount="indefinite"/></path></g></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}

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

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    position: relative;
    padding-left: 20px;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 3px;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    margin-bottom: 2.5rem;
    color: #4b5563;
    line-height: 1.9;
    font-size: 1.1rem;
    font-weight: 400;
}

.key-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.key-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.1);
    flex: 1;
    min-width: 120px;
    transition: all 0.3s ease;
}

.key-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.key-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.key-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


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

.stat {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa);
}

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

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Professional Image Placeholders */
.image-placeholder {
    width: 350px;
    height: 280px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.technology-image {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.9) 0%, 
        rgba(59, 130, 246, 0.8) 50%, 
        rgba(96, 165, 250, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23f1f5f9"/><circle cx="100" cy="100" r="30" fill="%23dc2626" opacity="0.1"/><circle cx="300" cy="150" r="25" fill="%23ef4444" opacity="0.1"/><circle cx="200" cy="200" r="35" fill="%23f87171" opacity="0.1"/><rect x="50" y="50" width="80" height="120" rx="10" fill="%23ffffff" opacity="0.2"/><rect x="270" y="80" width="80" height="120" rx="10" fill="%23ffffff" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
}

.placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.placeholder-content span {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.placeholder-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(220, 38, 38, 0.1) 0%, 
        rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.image-placeholder:hover .image-overlay {
    opacity: 1;
}

.image-placeholder:hover .placeholder-content {
    transform: translate(-50%, -50%) scale(1.1);
}

/* About Section GIF Styling */
.about-visual {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #f8fafc;
}

.about-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gif-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.about-visual:hover .gif-overlay {
    transform: translateY(0);
}

.about-visual:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.about-visual:hover .about-gif {
    transform: scale(1.05);
}

.gif-overlay span {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.gif-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

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

.team .container {
    position: relative;
    z-index: 1;
}

.team .section-header {
    margin-bottom: 4rem;
    position: relative;
}

.team .section-header h2 {
    position: relative;
    /* animation removed for performance */
}

.team .section-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    /* animation removed for performance */
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.5), 0 0 40px rgba(30, 58, 138, 0.3);
    }
}

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

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

.team-card {
    animation: teamCardFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.5s);
}

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

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.2);
    border-color: #3b82f6;
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
    transition: all 0.4s ease;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(30, 58, 138, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(30, 58, 138, 0.4);
}

.team-card:hover .team-photo::before {
    opacity: 1;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.team-image i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.team-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #1f2937;
    transition: all 0.3s ease;
    position: relative;
}

.team-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.team-card:hover .team-info h3 {
    color: #1e3a8a;
    transform: translateY(-2px);
}

.team-card:hover .team-info h3::after {
    transform: translateX(-50%) scaleX(1);
}

.team-info p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3b82f6;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.team-card:hover .team-info p {
    color: #1e3a8a;
    transform: translateY(-1px);
}

.team-contact {
    border-top: 2px solid #f1f5f9;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.team-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.team-contact p:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
    transform: translateX(5px);
}

.team-contact i {
    font-size: 1.1rem;
    color: #3b82f6;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-contact p:hover i {
    color: #1e3a8a;
    transform: scale(1.2);
}

.role {
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-item i {
    color: #dc2626;
    width: 20px;
}

.contact-item span {
    color: #374151;
    font-size: 0.9rem;
}

/* Enhanced Contact Section */
.contact-urgency {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-urgency h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.contact-urgency p {
    margin: 0;
    opacity: 0.9;
}

.quick-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.quick-stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8faff, #eff6ff);
    border-radius: 15px;
}

.form-header h3 {
    color: #1e3a8a;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.form-header p {
    color: #6b7280;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-urgency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fef3cd;
    border-radius: 8px;
}

.form-urgency input[type="checkbox"] {
    width: auto;
}

.form-urgency label {
    margin: 0;
    font-weight: 500;
    color: #92400e;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

.form-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
}

.form-footer i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Contact Section - Professional Corporate Design */
.contact {
    padding: 150px 0;
    color: #1f2937;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Heavy SVG pattern removed for performance */
    background-size: 150px 150px;
    pointer-events: none;
    opacity: 0.4;
}

.contact .section-header h2 {
    color: #1f2937 !important;
}

.contact .section-header p {
    color: #6b7280;
}

/* Contact CTA Banner */
.contact-cta-banner {
    background: #dc2626;
    border-radius: 12px;
    padding: 4rem 3rem;
    margin: 4rem 0;
    text-align: center;
    position: relative;
}

.contact-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    /* animation removed for performance */
}

@keyframes bannerShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

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

/* Quick Contact Cards */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #6b7280;
}

.contact-card:hover .contact-icon {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.contact-link {
    color: #dc2626;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.contact-details p {
    color: #6b7280;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.address {
    line-height: 1.6;
    margin-bottom: 1rem !important;
}

.map-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link:hover {
    color: #93c5fd;
    transform: translateX(5px);
}

/* Modern Contact Form */
.contact-form-modern {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #e5e7eb;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #dc2626;
}

.contact-form-modern .form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-modern .form-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-form-modern .form-header p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Modern Form Styling */
.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.modern-form .form-group input,
.modern-form .form-group textarea,
.modern-form .form-group select {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    /* backdrop-filter removed for performance */
}

.modern-form .form-group input:focus,
.modern-form .form-group textarea:focus,
.modern-form .form-group select:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.modern-form .form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.modern-form .form-group input:focus + label,
.modern-form .form-group textarea:focus + label,
.modern-form .form-group select:focus + label,
.modern-form .form-group input:not(:placeholder-shown) + label,
.modern-form .form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #ffd700;
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.modern-form .form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.7)" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.modern-form .btn-large {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.modern-form .btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-form .btn-large:hover::before {
    left: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #10b981;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    transition: left 0.6s ease;
}

.contact-info .contact-item:hover::before {
    left: 100%;
}

.contact-info .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.2);
}

.contact-info .contact-item i {
    font-size: 2rem;
    color: #1e3a8a;
    margin-top: 0.25rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info .contact-item h4 {
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-info .contact-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    background: #ffffff;
    transform: translateY(-2px);
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}


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

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


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

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

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

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

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

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

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .team-card {
        padding: 1.5rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic i {
        font-size: 5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Static logo styling */
.hero-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    position: relative;
    z-index: 2;
}


.team-card {
    animation: fadeIn 0.6s ease forwards;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }

/* Additional Mobile Styles */
@media (max-width: 768px) {
}

/* Statistics Section - EST STAR Corporate Theme */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.star{fill:rgba(255,255,255,0.1);}.star-glow{fill:rgba(255,255,255,0.05);}</style></defs><g class="stars"><polygon points="50,10 61,35 90,35 70,55 80,80 50,65 20,80 30,55 10,35 39,35" class="star"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></polygon><polygon points="20,20 25,30 35,30 28,37 30,47 20,42 10,47 12,37 5,30 15,30" class="star-glow"><animate attributeName="opacity" values="0.05;0.15;0.05" dur="4s" repeatCount="indefinite"/></polygon><polygon points="80,15 83,22 90,22 85,26 87,33 80,30 73,33 75,26 70,22 77,22" class="star-glow"><animate attributeName="opacity" values="0.05;0.2;0.05" dur="2.5s" repeatCount="indefinite"/></polygon></g></svg>') repeat;
    pointer-events: none;
}

.statistics .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.statistics .section-header h2 {
    color: white !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: white !important;
    background-clip: initial !important;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.statistics .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter removed for performance */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .statistics {
        padding: 60px 0;
    }
}

/* Google Maps Link Styling */
.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.map-link i {
    margin-right: 5px;
}

.footer .map-link {
    color: rgba(255, 255, 255, 0.8);
}

.footer .map-link:hover {
    color: white;
}

/* Mini Map Styling */
.mini-map {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mini-map:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.mini-map iframe {
    display: block;
    width: 100%;
}

/* Competitive Advantages Section */
.advantages {
    padding: 120px 0;
    background: linear-gradient(135deg, #fef9f9 0%, #ffffff 30%, #f0f9ff 70%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.advantage-dot{fill:rgba(220,38,38,0.08);}.advantage-line{stroke:rgba(220,38,38,0.05);stroke-width:1;fill:none;}</style></defs><circle cx="20" cy="20" r="2" class="advantage-dot"><animate attributeName="r" values="2;4;2" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" class="advantage-dot"><animate attributeName="r" values="1.5;3.5;1.5" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="2.5" class="advantage-dot"><animate attributeName="r" values="2.5;4.5;2.5" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="30" cy="80" r="1.8" class="advantage-dot"><animate attributeName="r" values="1.8;3.8;1.8" dur="4.5s" repeatCount="indefinite"/></circle><line x1="20" y1="20" x2="80" y2="30" class="advantage-line"/><line x1="80" y1="30" x2="60" y2="70" class="advantage-line"/><line x1="60" y1="70" x2="30" y2="80" class="advantage-line"/><line x1="30" y1="80" x2="20" y2="20" class="advantage-line"/></svg>') repeat;
    background-size: 180px 180px;
    pointer-events: none;
    opacity: 0.4;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 50%, #ffffff 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(220, 38, 38, 0.15),
        0 10px 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 215, 0, 0.4);
}

.advantage-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.advantage-icon.multi-operator {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.advantage-icon.experience {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.advantage-icon.market-leader {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.advantage-icon.national-coverage {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.advantage-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    transition: all 0.3s ease;
}

.advantage-card:hover h3 {
    color: #dc2626;
    transform: translateY(-2px);
}

.advantage-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.advantage-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-badge {
    background: linear-gradient(135deg, #ffd700, #fbbf24);
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.advantages-summary {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 24px;
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    z-index: 2;
}

.summary-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-content p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Interactive Coverage Map Section */
.coverage-map {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.map-dot{fill:rgba(255,215,0,0.1);}.map-line{stroke:rgba(255,215,0,0.05);stroke-width:0.5;fill:none;}</style></defs><circle cx="20" cy="30" r="1" class="map-dot"><animate attributeName="r" values="1;3;1" dur="4s" repeatCount="indefinite"/></circle><circle cx="50" cy="20" r="1.5" class="map-dot"><animate attributeName="r" values="1.5;3.5;1.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.2" class="map-dot"><animate attributeName="r" values="1.2;3.2;1.2" dur="5s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="1.8" class="map-dot"><animate attributeName="r" values="1.8;4;1.8" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="70" cy="80" r="1.3" class="map-dot"><animate attributeName="r" values="1.3;3.8;1.3" dur="4.5s" repeatCount="indefinite"/></circle><line x1="20" y1="30" x2="50" y2="20" class="map-line"/><line x1="50" y1="20" x2="80" y2="40" class="map-line"/><line x1="30" y1="70" x2="70" y2="80" class="map-line"/></svg>') repeat;
    background-size: 200px 200px;
    pointer-events: none;
    opacity: 0.4;
}

.coverage-map .section-header h2 {
    color: white !important;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    /* animation removed for performance */
}

.coverage-map .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.algeria-map-interactive {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    /* backdrop-filter removed for performance */
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.map-title {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.map-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

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

.map-region {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.map-region.north {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
}

.map-region.center {
    background: linear-gradient(135deg, rgba(245, 101, 0, 0.2) 0%, rgba(251, 146, 60, 0.1) 100%);
}

.map-region.south {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.1) 100%);
}

.map-region:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.region-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffd700;
    margin: 0 auto 1rem;
    /* animation removed for performance */
}

.map-region span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.map-region small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.coverage-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.coverage-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex: 1;
}

.coverage-stat .stat-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.coverage-details {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    /* backdrop-filter removed for performance */
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coverage-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffd700;
    text-align: center;
}

.region-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.region-detail {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.region-detail:hover,
.region-detail.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.north-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.center-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.south-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.detail-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.detail-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.coverage-percentage {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #fbbf24);
    color: #1f2937;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Partnership Logos Section */
.partnerships {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partnerships::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.connection{stroke:rgba(220,38,38,0.05);stroke-width:1;fill:none;}.partner-node{fill:rgba(239,68,68,0.08);}</style></defs><circle cx="25" cy="25" r="2" class="partner-node"/><circle cx="75" cy="25" r="2" class="partner-node"/><circle cx="50" cy="75" r="2" class="partner-node"/><line x1="25" y1="25" x2="75" y2="25" class="connection"/><line x1="75" y1="25" x2="50" y2="75" class="connection"/><line x1="50" y1="75" x2="25" y2="25" class="connection"/></svg>') repeat;
    background-size: 150px 150px;
    pointer-events: none;
    opacity: 0.3;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Staggered Animation for Partner Cards */
.partner-logo-card {
    opacity: 0;
    transform: translateY(50px);
    animation: partnerCardFadeIn 0.8s ease-out forwards;
}

.partner-logo-card:nth-child(1) { animation-delay: 0.2s; }
.partner-logo-card:nth-child(2) { animation-delay: 0.4s; }
.partner-logo-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes partnerCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-logo-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-logo-card:hover::before {
    left: 100%;
}

.partner-logo-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.partner-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.partner-logo-img {
    width: 200px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.1));
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 1.5rem;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* Ooredoo Brand Styling */
.partner-logo-card:nth-child(1) {
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.partner-logo-card:nth-child(1):hover {
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow: 
        0 25px 50px rgba(220, 20, 60, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(145deg, #ffffff 0%, #fef2f2 30%, #ffffff 100%);
}

.partner-logo-container.ooredoo .partner-logo-img {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

/* Djezzy Brand Styling */
.partner-logo-card:nth-child(2) {
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.partner-logo-card:nth-child(2):hover {
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow: 
        0 25px 50px rgba(220, 20, 60, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(145deg, #ffffff 0%, #fef2f2 30%, #ffffff 100%);
}

.partner-logo-container.djezzy .partner-logo-img {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

/* Mobilis Brand Styling */
.partner-logo-card:nth-child(3) {
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.partner-logo-card:nth-child(3):hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 
        0 25px 50px rgba(34, 197, 94, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 30%, #ffffff 100%);
}

.partner-logo-container.mobilis .partner-logo-img {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid rgba(34, 197, 94, 0.1);
}

/* ===== PRODUCT AVAILABILITY STYLING ===== */

/* Availability Information */
.availability-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.availability-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.availability-tier:last-child {
    border-bottom: none;
}

.tier-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.tier-status {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-status.available {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tier-status.limited {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.tier-status.unavailable {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Operator Logo Styling */
.operator-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
    transition: all 0.4s ease;
    opacity: 1;
    z-index: 2;
    position: relative;
}

/* Icon Overlay - Hidden by default, shows on hover */
.icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.icon-overlay i {
    font-size: 2rem;
    color: white;
}

/* Product-specific icon styling */
.service-icon.ooredoo-products {
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    border-color: rgba(220, 38, 38, 0.2);
}

.service-icon.djezzy-products {
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    border-color: rgba(220, 38, 38, 0.2);
}

.service-icon.mobilis-products {
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border-color: rgba(34, 197, 94, 0.2);
}

/* Hover Effects - Logo fades out, icon fades in */
.service-card:hover .service-icon.ooredoo-products {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-color: #dc2626;
}

.service-card:hover .service-icon.djezzy-products {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-color: #dc2626;
}

.service-card:hover .service-icon.mobilis-products {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #22c55e;
}

/* Logo to Icon Transition */
.service-card:hover .operator-logo {
    opacity: 0;
    transform: scale(0.8);
}

.service-card:hover .icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}






.partner-logo-container h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.partner-logo-container.ooredoo h3 {
    color: #DC143C;
    text-shadow: 0 2px 4px rgba(220, 20, 60, 0.3);
}

.partner-logo-container.djezzy h3 {
    color: #DC143C;
    text-shadow: 0 2px 4px rgba(220, 20, 60, 0.3);
}

.partner-logo-container.mobilis h3 {
    color: #22C55E;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

.partner-logo-container p {
    color: #64748b;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.partner-logo-card:nth-child(1):hover .partner-logo-container h3 {
    transform: scale(1.1) translateY(-3px);
    color: #DC143C;
    text-shadow: 0 4px 8px rgba(220, 20, 60, 0.5);
}

.partner-logo-card:nth-child(2):hover .partner-logo-container h3 {
    transform: scale(1.1) translateY(-3px);
    color: #DC143C;
    text-shadow: 0 4px 8px rgba(220, 20, 60, 0.5);
}

.partner-logo-card:nth-child(3):hover .partner-logo-container h3 {
    transform: scale(1.1) translateY(-3px);
    color: #22C55E;
    text-shadow: 0 4px 8px rgba(34, 197, 94, 0.5);
}

.partner-logo-card:nth-child(1):hover .partner-logo-container p {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border-color: rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
}

.partner-logo-card:nth-child(2):hover .partner-logo-container p {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border-color: rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
}

.partner-logo-card:nth-child(3):hover .partner-logo-container p {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

/* Wilaya Coverage Section */
.wilaya-coverage {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.wilaya-coverage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, transparent 70%);
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
    z-index: 1;
}

.coverage-content {
    position: relative;
    z-index: 2;
}

/* Interactive Algeria Map Styling - Modern Enhanced */
.algeria-map-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.algeria-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    z-index: 1;
}

.algeria-map-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    animation: subtleFloat 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes subtleFloat {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(1deg) scale(1.02); }
    66% { transform: rotate(-1deg) scale(0.98); }
}

.map-wrapper {
    text-align: center;
}

.map-title {
    margin-bottom: 2rem;
}

.map-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.map-title p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.interactive-map {
    position: relative;
    display: inline-block;
    margin: 2rem 0;
    width: 100%;
    max-width: 600px;
}

.algeria-map {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02) contrast(1.05) saturate(1.1);
    position: relative;
    z-index: 2;
}

.algeria-map:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 20px 48px rgba(220, 38, 38, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(220, 38, 38, 0.1);
    filter: brightness(1.05) contrast(1.08) saturate(1.15);
}

/* Clean Algeria Map */

/* Headquarters Marker */
.headquarters-marker {
    position: absolute;
    top: 30%; /* Moved up a bit */
    left: 68%; /* Moved left a bit */
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: markerPulse 3s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hq-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 4px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 3px solid #dc2626;
    transition: all 0.3s ease;
}

.headquarters-marker:hover .hq-logo {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.hq-label {
    background: #dc2626;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Map Legend - Enhanced */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-item:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    color: #374151;
    border-color: rgba(220, 38, 38, 0.1);
}

.legend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legend-item:hover::before {
    opacity: 1;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.legend-item:hover .legend-color {
    transform: scale(1.1);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.legend-color.covered {
    background: #dc2626;
}

.legend-color.headquarters {
    background: #b91c1c;
    border: 2px solid #ffd700;
}

.legend-color.other {
    background: #e5e7eb;
}

.coverage-overview {
    margin-bottom: 4rem;
    text-align: center;
}

.coverage-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content {
    text-align: left;
}

.highlight-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.wilaya-region {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.wilaya-region:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
}

.region-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.region-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.region-badge {
    background: #dc2626;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.east-region .region-badge {
    background: #dc2626;
}

.center-west-region .region-badge {
    background: #3b82f6;
}

.extended-region .region-badge {
    background: #059669;
}

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

.wilaya-grid.extended {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.wilaya-item {
    background: #f8fafc;
    padding: 1rem 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wilaya-item:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.wilaya-item.headquarters {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    font-weight: 700;
    border: 2px solid #dc2626;
    position: relative;
}

.wilaya-item.headquarters::before {
    content: '🏢';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffd700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.wilaya-item.extended {
    background: #e0f2fe;
    border-color: #0284c7;
    color: #0c4a6e;
    font-size: 0.85rem;
    padding: 0.75rem 0.5rem;
}

.company-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.network-content {
    margin-top: 50px;
}

.main-company {
    text-align: center;
    margin-bottom: 50px;
}

.company-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.company-card.central {
    border: 2px solid rgba(220, 38, 38, 0.2);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #fef9f9 100%);
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.company-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.company-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.company-details p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.company-details strong {
    color: #dc2626;
    font-weight: 600;
}

.highlight {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.subsidiary-companies {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Market Presence Section */
.market-presence {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #eff6ff 100%);
    position: relative;
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.market-stats {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1);
}

.region-stats h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.stats-bars {
    margin-bottom: 30px;
}

.stat-bar {
    margin-bottom: 25px;
}

.bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
}

.bar-header span:first-child {
    color: #333;
    font-size: 1.1rem;
}

.our-company {
    color: #1e40af;
    font-weight: 700;
}

.competitor {
    color: #dc2626;
    font-weight: 700;
}

.progress-bar {
    height: 12px;
    background: #f1f1f1;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    transition: width 1.5s ease;
    position: absolute;
    top: 0;
}

.our-progress {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    left: 0;
}

.competitor-progress {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    right: 0;
}

.legend {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.our-color {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.competitor-color {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.algeria-map {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1);
    text-align: center;
}

.algeria-map h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.map-regions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.region {
    padding: 20px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.region::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.region:hover::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.east-region {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.center-region {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.south-region {
    background: linear-gradient(135deg, #10b981, #059669);
}

.region span {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.region small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Team Drawer Styles */
.team-drawer {
    position: fixed;
    top: 0;
    left: -420px;
    width: 420px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    box-shadow: 5px 0 30px rgba(220, 38, 38, 0.15);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    border-radius: 0 20px 20px 0;
}

.team-drawer.open {
    left: 0;
    box-shadow: 10px 0 50px rgba(220, 38, 38, 0.25);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    background: linear-gradient(135deg, 
        #fecaca 0%, 
        #fca5a5 20%, 
        #f87171 40%, 
        #ef4444 60%, 
        #dc2626 80%, 
        #b91c1c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.drawer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.drawer-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}



.drawer-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.drawer-content {
    padding: 1.5rem;
}

.drawer-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: center;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 2px solid rgba(220, 38, 38, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    transition: left 0.6s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.member-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.member-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #60a5fa, #93c5fd);
    border-radius: 50%;
    z-index: -1;
    /* animation removed for performance */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-avatar::before {
    opacity: 1;
}

.team-member:hover .member-avatar {
    transform: scale(1.1) rotateY(360deg);
}

.member-avatar i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
    background: linear-gradient(135deg, #1f2937 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-role {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.member-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.member-contact .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.member-contact .contact-item:hover::before {
    left: 100%;
}

.member-contact .contact-item:hover {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    transform: translateX(5px);
    border-color: rgba(220, 38, 38, 0.2);
}

.member-contact .contact-item i {
    color: #dc2626;
    width: 18px;
    font-size: 1rem;
    z-index: 2;
    position: relative;
}

/* Organizational Structure Styles */
.founder-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fef2f2 0%, #fefefe 100%);
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.team-member.founder {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.founder-avatar {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    width: 100px;
    height: 100px;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.member-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-count {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Enhanced team member styles for organizational view */
.team-member h3 {
    position: relative;
    padding-bottom: 10px;
}

.team-member h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 1px;
}

/* Services Section with Professional Geometric Elements */
.services {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: rgba(220, 38, 38, 0.02);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-bottom: 100px solid rgba(220, 38, 38, 0.02);
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.grid-line{stroke:rgba(220,38,38,0.05);stroke-width:0.5;fill:none;}.signal-dot{fill:rgba(239,68,68,0.08);}.data-flow{fill:none;stroke:rgba(248,113,113,0.06);stroke-width:0.8;stroke-dasharray:2,3;}</style></defs><g class="grid"><line x1="0" y1="25" x2="100" y2="25" class="grid-line"/><line x1="0" y1="50" x2="100" y2="50" class="grid-line"/><line x1="0" y1="75" x2="100" y2="75" class="grid-line"/><line x1="25" y1="0" x2="25" y2="100" class="grid-line"/><line x1="50" y1="0" x2="50" y2="100" class="grid-line"/><line x1="75" y1="0" x2="75" y2="100" class="grid-line"/></g><circle cx="25" cy="25" r="1.5" class="signal-dot"><animate attributeName="r" values="1.5;3;1.5" dur="2s" repeatCount="indefinite"/></circle><circle cx="75" cy="25" r="1" class="signal-dot"><animate attributeName="r" values="1;2.5;1" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="25" cy="75" r="2" class="signal-dot"><animate attributeName="r" values="2;4;2" dur="3s" repeatCount="indefinite"/></circle><circle cx="75" cy="75" r="1.2" class="signal-dot"><animate attributeName="r" values="1.2;3.5;1.2" dur="2.2s" repeatCount="indefinite"/></circle><path d="M20,20 L30,30 L25,35 L35,40" class="data-flow"><animateTransform attributeName="transform" type="translate" values="0,0;5,5;0,0" dur="3s" repeatCount="indefinite"/></path><path d="M70,20 L80,30 L75,35 L85,40" class="data-flow"><animateTransform attributeName="transform" type="translate" values="0,0;-5,5;0,0" dur="3.5s" repeatCount="indefinite"/></path></svg>') repeat;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    /* CSS Grid optimizations */
    grid-auto-rows: minmax(auto, max-content);
    align-items: start;
    contain: layout;
}

.service-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
}

.service-card {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px) scale(1.02);
    border-color: #dc2626;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    animation: iconPulse 0.6s ease-out;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.05) rotateY(5deg);
    box-shadow: 0 30px 70px rgba(220, 38, 38, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #fef9f9 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.service-icon i {
    font-size: 1.8rem !important;
    color: #000000 !important;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.service-card:hover .service-icon {
    background: #dc2626;
    border-color: #dc2626;
    transform: scale(1.05);
}

.service-card:hover .service-icon i {
    color: white !important;
}

/* Icon Overlay Effect */
.icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
}

.service-card:hover .icon-overlay {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.service-card:hover .service-icon > i:first-child {
    transform: scale(0.7);
    opacity: 0.3;
}

/* Removed heavy service icon effects for performance */

/* Removed conflicting service icon styles */

.service-card h3 {
    color: #dc2626;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-card:hover h3 {
    color: #b91c1c;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Navigation Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, #fecaca, #f87171);
    color: white;
}

.nav-link .fa-chevron-down {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    .dropdown-link {
        padding: 0.5rem 1rem;
        margin-left: 1rem;
        border-left: 2px solid #dc2626;
    }
}

/* Additional Mobile Optimizations - Ultra Performance Mode */
@media (max-width: 768px) {
    /* Disable all heavy background animations for mobile */
    body::before {
        display: none !important;
    }
    
    /* Remove all CSS animations and transitions for low-end devices */
    *, *::before, *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    
    /* Hero Logo Mobile Fix */
    .hero-logo {
        width: 180px !important;
        max-width: 80vw !important;
        /* Remove heavy effects */
        filter: none !important;
        animation: none !important;
    }
    
    /* Team Drawer Mobile Optimization - Minimal Performance Impact */
    .team-drawer {
        width: 95vw !important;
        left: -95vw !important;
        border-radius: 0 !important;
        /* Ultra-light performance settings */
        transform: translateX(0) !important;
        transition: transform 0.2s linear !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        /* Remove ALL expensive properties */
        box-shadow: none !important;
        backdrop-filter: none !important;
        background: #ffffff !important;
        border-right: 1px solid #ddd !important;
    }
    
    .team-drawer.open {
        left: -95vw !important;
        transform: translateX(95vw) !important;
    }
    
    /* Ultra-light overlay */
    .drawer-overlay {
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.3) !important;
        transition: opacity 0.1s linear !important;
    }
    
    /* Simplified header - no gradients */
    .drawer-header {
        background: #dc2626 !important;
        padding: 1rem !important;
        border-bottom: 1px solid #b91c1c !important;
    }
    
    .drawer-header::before,
    .drawer-header::after {
        display: none !important;
    }
    
    
    .drawer-content {
        padding: 1rem !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Simplified team members */
    .team-member {
        margin-bottom: 1rem !important;
        padding: 0.75rem !important;
        border-radius: 4px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
        background: #f9f9f9 !important;
        border: 1px solid #e5e5e5 !important;
    }
    
    /* Remove all member animations and effects */
    .member-avatar {
        background: #dc2626 !important;
        color: white !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .member-info h3 {
        font-size: 1.1rem !important;
        color: #333 !important;
        margin: 0 !important;
    }
    
    .member-description {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        color: #666 !important;
        margin: 0.5rem 0 !important;
    }
    
    .contact-item {
        font-size: 0.8rem !important;
        color: #888 !important;
        padding: 0.25rem 0 !important;
    }
    
    /* Simplify navigation */
    .navbar {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: none !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        background: #f8f8f8 !important;
        border-top: 1px solid #ddd !important;
    }
    
    .dropdown-link {
        padding: 0.75rem 1rem !important;
        text-align: left !important;
        color: #333 !important;
        border-bottom: 1px solid #eee !important;
    }
    
    /* Simplify all sections */
    .section-header h2 {
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        color: #333 !important;
        font-size: 2rem !important;
    }
    
    /* Remove service card animations */
    .service-card {
        transition: none !important;
        transform: none !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    .service-card:hover {
        transform: none !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Simplify icons */
    .service-icon {
        background: #dc2626 !important;
        border-radius: 50% !important;
    }
    
    /* Remove all floating animations */
    .hero-content, .about-text, .services-grid {
        animation: none !important;
    }
    
    /* Disable GPU-intensive effects */
    .btn {
        background: #dc2626 !important;
        border-radius: 4px !important;
        transition: none !important;
        box-shadow: none !important;
    }
    
    .btn:hover {
        background: #b91c1c !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .btn-secondary {
        background: #6b7280 !important;
        border: 1px solid #4b5563 !important;
    }
    
    .btn-secondary:hover {
        background: #4b5563 !important;
    }
}

@media (max-width: 480px) {
    /* Extra aggressive optimizations for very low-end devices */
    .hero-logo {
        width: 150px !important;
        max-width: 75vw !important;
    }
    
    .team-drawer {
        width: 100vw !important;
        left: -100vw !important;
        transition: transform 0.15s linear !important;
    }
    
    .team-drawer.open {
        left: -100vw !important;
        transform: translateX(100vw) !important;
    }
    
    .drawer-header h2 {
        font-size: 1.2rem !important;
    }
    
    .member-info h3 {
        font-size: 1rem !important;
    }
    
    .member-description {
        font-size: 0.8rem !important;
    }
    
    /* Ultra-minimal styling */
    .team-member {
        padding: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        border-radius: 2px !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    }
    
    .member-avatar {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
}

/* Sophisticated Entrance Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* Staggered Animation Delays */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }

.partner-logo-card:nth-child(1) { transition-delay: 0.1s; }
.partner-logo-card:nth-child(2) { transition-delay: 0.2s; }
.partner-logo-card:nth-child(3) { transition-delay: 0.3s; }

/* Hover-Based Animations */
.nav-link:hover {
    animation: navLinkPulse 0.3s ease-out;
}

@keyframes navLinkPulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(-1px); }
}

.btn:hover {
    animation: buttonLift 0.3s ease-out;
}

@keyframes buttonLift {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
    100% { transform: translateY(-2px) scale(1.01); }
}

.contact-card:hover {
    animation: cardFloat 0.4s ease-out;
}

@keyframes cardFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* Low-End Device Optimizations */
.low-end-device * {
    animation-duration: 0.2s !important;
    transition-duration: 0.2s !important;
    will-change: auto !important;
}

.low-end-device .service-card:hover {
    transform: translateY(-2px) !important;
}

.low-end-device .contact-card:hover {
    transform: translateY(-2px) !important;
}

.low-end-device .btn:hover {
    transform: translateY(-1px) !important;
}

/* Font Loading Optimization */
.fonts-loaded body {
    font-family: 'Inter', sans-serif;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Partnership Section Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .partner-logo-card {
        padding: 2.5rem 1.5rem;
        height: 380px;
    }
    
    .partner-logo-img {
        width: 150px;
        height: 95px;
    }
    
    .partner-logo-container h3 {
        font-size: 1.8rem;
    }
}

/* Partnership Section Mobile */
@media (max-width: 768px) {
    .partnerships {
        padding: 80px 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .partner-logo-card {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    
    .partner-logo-img {
        width: 170px;
        height: 110px;
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .partner-logo-container h3 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .partner-logo-container p {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .partner-logo-card:hover {
        transform: translateY(-15px) scale(1.05);
    }
    
    .partner-logo-card:hover .partner-logo-img {
        transform: scale(1.1) rotateY(10deg);
    }
}

/* Mobile Responsive Styles for New Sections */
@media (max-width: 768px) {
    /* Company Network Mobile */
    .company-network {
        padding: 60px 0;
    }
    
    .network-content {
        margin-top: 30px;
    }
    
    .subsidiary-companies {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .company-card {
        padding: 20px;
    }
    
    .company-card.central {
        transform: none;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .company-card h3 {
        font-size: 1.2rem;
    }
    
    /* Market Presence Mobile */
    .market-presence {
        padding: 60px 0;
    }
    
    .presence-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .market-stats, .algeria-map {
        padding: 25px;
    }
    
    .region-stats h3, .algeria-map h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .legend {
        gap: 15px;
    }
    
    .legend-item {
        font-size: 0.9rem;
    }
    
    /* Organizational Structure Mobile */
    .founder-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .founder-avatar {
        width: 80px;
        height: 80px;
    }
    
    .member-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .member-count {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* Ultra Low-End Mobile Optimization for New Sections */
@media (max-width: 480px) {
    .company-network, .market-presence {
        padding: 40px 0;
    }
    
    .subsidiary-companies {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .company-card {
        padding: 15px;
    }
    
    .market-stats, .algeria-map {
        padding: 15px;
    }
    
    .stats-bars {
        margin-bottom: 20px;
    }
    
    .stat-bar {
        margin-bottom: 15px;
    }
    
    .progress-bar {
        height: 8px;
    }
    
    .region {
        padding: 15px;
    }
    
    .founder-section {
        padding: 15px;
    }
    
    .founder-avatar {
        width: 60px;
        height: 60px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 100px 0;
    }
    
    .contact-cta-banner {
        padding: 2.5rem 2rem;
        margin: 3rem 0;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-contact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-form-modern {
        padding: 2rem;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Wilaya Coverage Mobile */
    .wilaya-coverage {
        padding: 100px 0;
    }
    
    .coverage-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .highlight-content {
        text-align: center;
    }
    
    .wilaya-regions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wilaya-region {
        padding: 2rem;
    }
    
    .region-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .wilaya-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .wilaya-grid.extended {
        grid-template-columns: 1fr;
    }
    
    .wilaya-item {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Algeria Map Mobile */
    .algeria-map-container {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .map-title h3 {
        font-size: 1.5rem;
    }
    
    .algeria-map {
        max-width: 100%;
    }
    
    .headquarters-marker {
        top: 30%;
        left: 68%;
    }
    
    /* Mobile Map */
    
    .hq-logo {
        width: 30px;
        height: 30px;
        padding: 3px;
        border: 2px solid #dc2626;
    }
    
    .hq-label {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    
    .map-legend {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
}

/* ========================
   EMPLOYEES SECTION
   ======================== */

.employees {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.employees::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.dot{fill:rgba(220,38,38,0.05);}.line{stroke:rgba(220,38,38,0.08);stroke-width:0.5;fill:none;}</style></defs><circle cx="20" cy="20" r="1" class="dot"/><circle cx="80" cy="30" r="1.5" class="dot"/><circle cx="60" cy="70" r="1" class="dot"/><circle cx="30" cy="80" r="1.2" class="dot"/><line x1="20" y1="20" x2="80" y2="30" class="line"/><line x1="80" y1="30" x2="60" y2="70" class="line"/><line x1="60" y1="70" x2="30" y2="80" class="line"/></svg>') no-repeat;
    background-size: 200px 200px;
    background-position: 0 0, 100px 100px;
    pointer-events: none;
    z-index: 1;
}

.employees .container {
    position: relative;
    z-index: 2;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

.department-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(220, 38, 38, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.1);
    /* backdrop-filter removed for performance */
    -webkit-backdrop-filter: blur(10px);
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.department-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.department-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 25px -5px rgba(220, 38, 38, 0.1),
        0 10px 10px -5px rgba(220, 38, 38, 0.04),
        0 0 0 1px rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

.department-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 16px rgba(220, 38, 38, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.department-card:hover .department-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 24px rgba(220, 38, 38, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.department-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #dc2626, #ef4444, #f87171);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.department-card:hover .department-icon::before {
    opacity: 1;
}

.department-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.department-card:hover h3 {
    color: #dc2626;
}

.department-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.team-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-count::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.department-card:hover .team-count::before {
    left: 100%;
}

.department-card:hover .team-count {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* Staggered animation for cards */
.department-card:nth-child(1) { animation-delay: 0.1s; }
.department-card:nth-child(2) { animation-delay: 0.2s; }
.department-card:nth-child(3) { animation-delay: 0.3s; }
.department-card:nth-child(4) { animation-delay: 0.4s; }
.department-card:nth-child(5) { animation-delay: 0.5s; }

.department-card {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Employee Drawers - Hamburger Menu Style */
.employee-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    /* backdrop-filter removed for performance */
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
}

.employee-drawer.active {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.employee-drawer .drawer-header {
    background: rgba(220, 38, 38, 0.05);
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.employee-drawer .drawer-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    position: relative;
    overflow: hidden;
}

.employee-drawer .drawer-header h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    /* animation removed for performance */
    z-index: 1;
}

@keyframes goldWave {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.employee-drawer .drawer-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
    font-size: 1rem;
}

.employee-drawer .drawer-close:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.employee-drawer .drawer-content {
    padding: 0;
    flex: 1;
    background: transparent;
}

.employee-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.employee-card {
    background: transparent;
    border-radius: 0;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.3s ease-out forwards;
}

.employee-card:nth-child(1) { animation-delay: 0.1s; }
.employee-card:nth-child(2) { animation-delay: 0.2s; }
.employee-card:nth-child(3) { animation-delay: 0.3s; }
.employee-card:nth-child(4) { animation-delay: 0.4s; }
.employee-card:nth-child(5) { animation-delay: 0.5s; }
.employee-card:nth-child(6) { animation-delay: 0.6s; }

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

.employee-card:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: none;
    box-shadow: none;
    border-color: rgba(220, 38, 38, 0.1);
}

.employee-card.founder {
    background: rgba(220, 38, 38, 0.08);
    border-left: 3px solid #dc2626;
}

.employee-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
    flex-shrink: 0;
}

.employee-card:hover .employee-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.employee-card.founder .employee-avatar {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    box-shadow: 0 3px 10px rgba(185, 28, 28, 0.3);
}

.employee-info {
    flex: 1;
    min-width: 0;
}

.employee-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.employee-card:hover .employee-info h3 {
    color: #dc2626;
}

.employee-title {
    color: #dc2626;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employee-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.employee-contact p {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.employee-contact p i {
    color: #dc2626;
    font-size: 0.8rem;
    width: 12px;
    text-align: center;
    flex-shrink: 0;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

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

.employee-contact i {
    color: #dc2626;
    width: 16px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .employee-drawer {
        width: 280px;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .department-card {
        padding: 25px;
    }
    
    .employee-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .employee-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .employee-info h3 {
        font-size: 0.9rem;
    }
    
    .employee-title {
        font-size: 0.8rem;
    }
    
    .employee-contact p {
        font-size: 0.75rem;
    }
}

/* ===== SECTION BACKGROUNDS ===== */

/* Hero Section Background */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.1) 0%, 
        rgba(59, 130, 246, 0.1) 50%, 
        rgba(220, 38, 38, 0.1) 100%);
    animation: heroGradient 8s ease-in-out infinite;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    animation: heroPulse 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroGradient {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* About Section Background */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.02) 50%, transparent 70%);
    z-index: -1;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

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

/* Network/Coverage Section Background */
.wilaya-coverage {
    position: relative;
    overflow: hidden;
}

.wilaya-coverage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(220, 38, 38, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(220, 38, 38, 0.03) 100%);
    z-index: -1;
}

.wilaya-coverage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23network)"/></svg>');
    animation: networkPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Services Section Background */
.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(255, 152, 0, 0.05) 0%, rgba(59, 130, 246, 0.05) 33%, rgba(76, 175, 80, 0.05) 66%, rgba(220, 38, 38, 0.05) 100%);
    z-index: -1;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    animation: serviceColors 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes serviceColors {
    0%, 100% { opacity: 0.2; }
    25% { opacity: 0.4; }
    50% { opacity: 0.3; }
    75% { opacity: 0.5; }
}

/* Employees Section Background */
.employees {
    position: relative;
    overflow: hidden;
}

.employees::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.04) 0%, 
        rgba(220, 38, 38, 0.04) 50%, 
        rgba(59, 130, 246, 0.04) 100%);
    z-index: -1;
}

.employees::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, transparent 40%, rgba(59, 130, 246, 0.02) 50%, transparent 60%),
        linear-gradient(-30deg, transparent 40%, rgba(220, 38, 38, 0.02) 50%, transparent 60%);
    animation: teamLines 15s linear infinite;
    z-index: -1;
}

@keyframes teamLines {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Contact Section Background */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    z-index: -1;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="business" patternUnits="userSpaceOnUse" width="30" height="30"><rect x="0" y="0" width="2" height="2" fill="rgba(59,130,246,0.1)"/><rect x="28" y="0" width="2" height="2" fill="rgba(220,38,38,0.1)"/><rect x="0" y="28" width="2" height="2" fill="rgba(220,38,38,0.1)"/><rect x="28" y="28" width="2" height="2" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23business)"/></svg>');
    animation: businessPattern 12s ease-in-out infinite;
    z-index: -1;
}

@keyframes businessPattern {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
}

/* Partnerships Section Background */
.partnerships {
    position: relative;
    overflow: hidden;
}

.partnerships::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.03) 0%, 
        rgba(59, 130, 246, 0.03) 33%, 
        rgba(76, 175, 80, 0.03) 66%, 
        rgba(220, 38, 38, 0.03) 100%);
    z-index: -1;
}

.partnerships::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.08) 0%, transparent 40%);
    animation: partnerGlow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes partnerGlow {
    0%, 100% { opacity: 0.3; }
    33% { opacity: 0.6; }
    66% { opacity: 0.4; }
}

/* Ensure content stays above backgrounds */
.hero-content,
.about-content,
.wilaya-coverage .container,
.services .container,
.employees .container,
.contact .container,
.partnerships .container {
    position: relative;
    z-index: 1;
}

