/*
Theme Name: Devka International Trading
Theme URI: https://www.devkafzc.com
Author: Mike - Devka International General Trading FZCO
Description: Premium Software & Hardware Solutions - Jebel Ali Freezone Dubai with Africa Presence
Version: 1.0.0
License: GPL v2 or later
Text Domain: devkafzc
*/

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --primary-blue: #0055A4;
    --dubai-gold: #C5A572;
    --africa-green: #00843D;
    --accent-orange: #FF6B35;
    --dark-navy: #0A2463;
    --light-gray: #F8F9FA;
    --text-dark: #2D3748;
    --success-green: #28A745;
    --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.08);
    --gradient-blue: linear-gradient(135deg, #0055A4 0%, #0A2463 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

/* ===== HEADER ===== */
.site-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--dubai-gold);
}

.header-top-bar {
    background: var(--gradient-blue);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.freezone-badge {
    background: var(--dubai-gold);
    color: var(--dark-navy);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-contact a {
    color: white;
    text-decoration: none;
}

.header-main {
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-logo {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    position: relative;
}

.company-logo:after {
    content: 'FZCO';
    position: absolute;
    top: -8px;
    right: -45px;
    font-size: 12px;
    background: var(--dubai-gold);
    color: var(--dark-navy);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.company-tagline {
    font-size: 0.9rem;
    color: #666;
    border-left: 2px solid #eee;
    padding-left: 15px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-blue);
}

.main-navigation a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dubai-gold);
    transition: width 0.3s;
}

.main-navigation a:hover:after {
    width: 100%;
}

.header-cta .btn-request {
    background: var(--accent-orange);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.header-cta .btn-request:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* ===== HERO SLIDERS ===== */
.hero-sliders-section {
    background: #f5f7fa;
    padding: 60px 0;
}

.sliders-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.slider-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

.slider-header {
    background: var(--gradient-blue);
    color: white;
    padding: 20px;
    text-align: center;
}

.slider-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.slider-products {
    padding: 25px;
    min-height: 350px;
}

.product-slide {
    text-align: center;
    padding: 15px;
}

.product-image {
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-name {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-edition {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product-price {
    color: var(--success-green);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 10px 0;
}

.btn-inquire {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.btn-inquire:hover {
    background: var(--dark-navy);
}

/* ===== COMPANY INTRO ===== */
.company-intro {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.company-badge-large {
    background: var(--dubai-gold);
    color: var(--dark-navy);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 30px;
}

.company-name-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 15px;
    line-height: 1.2;
}

.company-subtitle {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.intro-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.stat-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* ===== SOFTWARE SHOWCASE ===== */
.software-showcase {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--dubai-gold);
}

.software-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

.category-header {
    background: var(--gradient-blue);
    color: white;
    padding: 25px;
    text-align: center;
}

.category-products {
    padding: 25px;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.product-info h4 {
    color: var(--dark-navy);
    margin-bottom: 5px;
    font-size: 1rem;
}

/* ===== HARDWARE SECTION ===== */
.hardware-section {
    padding: 80px 0;
    background: white;
}

.hardware-brands {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.brand-logo {
    width: 150px;
    height: 80px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
}

/* ===== AFRICA PRESENCE ===== */
.africa-presence {
    background: #f0f9f0;
    padding: 100px 0;
}

.africa-overlay {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.presence-header {
    text-align: center;
    margin-bottom: 50px;
}

.presence-header h2 {
    font-size: 2.8rem;
    color: var(--africa-green);
    margin-bottom: 15px;
}

.world-map-container {
    position: relative;
    height: 400px;
    background: #e9ecef;
    border-radius: 10px;
    margin: 40px 0;
}

.country-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--africa-green);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--africa-green);
    cursor: pointer;
}

.african-countries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.country-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--africa-green);
}

.country-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: var(--gradient-blue);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
}

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

.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
}

.wpcf7-submit {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 16px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
}

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

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

.footer-company h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dubai-gold);
}

.footer-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--dubai-gold);
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--dubai-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2D3748;
    color: #999;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .sliders-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top-content,
    .header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .company-branding {
        flex-direction: column;
        text-align: center;
    }
    
    .company-tagline {
        border-left: none;
        padding-left: 0;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Template Parts Styles */
.btn-view-all {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    margin-top: 15px;
}

.btn-view-all:hover {
    text-decoration: underline;
}

.category-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
}

.software-cta {
    background: var(--gradient-blue);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.software-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.software-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .software-categories {
        grid-template-columns: 1fr;
    }
    
    .brand-products {
        grid-template-columns: 1fr;
    }
    
    .african-countries {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SLIDER FIXES ===== */
.product-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-slide.slide-active {
    opacity: 1;
    position: relative;
}

.slider-products {
    position: relative;
    min-height: 400px;
}

/* Ensure slides are visible */
.slide-active {
    display: block !important;
    visibility: visible !important;
}

/* Animation for slides */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-active {
    animation: slideIn 0.5s ease forwards;
}

/* Fix for jQuery issues */
.no-js .product-slide {
    display: block;
    opacity: 1;
    position: relative;
}

.no-js .slider-controls {
    display: none;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

.contact-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-badges .badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-main-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
}

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

.contact-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.contact-card-header {
    background: var(--primary-blue);
    color: white;
    padding: 20px;
}

.contact-card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card-body {
    padding: 25px;
}

.contact-card-body p {
    margin: 0 0 10px 0;
    color: #555;
}

.map-link, .call-link, .email-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-item, .email-item, .hours-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.phone-item:last-child, .email-item:last-child, .hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.phone-item strong, .email-item strong, .hours-item strong {
    display: block;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.contact-form-main {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-intro h2 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 2rem;
}

.form-intro p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-form-container {
    margin: 30px 0;
}

/* Contact Form 7 Styles */
.wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wpcf7-form p {
    margin: 0;
}

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

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #f8fafc;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    background: white;
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form .full-width {
    grid-column: 1 / -1;
}

.wpcf7-submit {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    width: 100%;
}

.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
}

.wpcf7-response-output {
    border-radius: 10px !important;
    margin: 20px 0 !important;
    padding: 20px !important;
    text-align: center;
}

.form-notes {
    margin-top: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 10px;
}

.form-notes .note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.form-notes .note i {
    color: var(--primary-blue);
}

/* Departments Section */
.departments-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 50px;
}

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

.department-card {
    text-align: center;
    padding: 30px 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
}

.department-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.department-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.department-card h3 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.department-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.department-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.department-link:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* Form Fallback Styles */
.form-fallback, .plugin-warning {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

.form-fallback h3, .plugin-warning h3 {
    color: #856404;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fallback-contact {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wpcf7-form {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-form-main {
        padding: 25px 20px;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MODERN CONTACT PAGE STYLES ===== */

/* Modern Hero */
.modern-contact-hero {
    background: linear-gradient(135deg, 
        rgba(0, 85, 164, 0.95) 0%, 
        rgba(10, 36, 99, 0.9) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.modern-contact-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number small {
    font-size: 1rem;
    opacity: 0.7;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 300px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.float-element.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.float-element.element-3 {
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

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

/* Modern Contact Grid */
.modern-contact-grid {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
}

@media (max-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Modern Cards */
.modern-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.modern-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.modern-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.quick-link:hover {
    background: white;
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.link-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.link-content {
    flex: 1;
}

.link-title {
    display: block;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.link-detail {
    display: block;
    color: #666;
    font-size: 0.95rem;
}

.link-arrow {
    color: #ccc;
    transition: transform 0.3s;
}

.quick-link:hover .link-arrow {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Location Card */
.location-address {
    line-height: 1.7;
    margin-bottom: 20px;
}

.location-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-blue);
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.location-btn:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
}

/* Support Card */
.support-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.channel-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--dark-navy);
}

.channel-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

/* Main Contact Form */
.contact-main {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.form-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Form Styling */
.modern-contact-form,
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group {
    margin-bottom: 0;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 85, 164, 0.1);
    outline: none;
}

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

.submit-btn,
.wpcf7-submit {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    width: 100%;
}

.submit-btn:hover,
.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.privacy-note,
.response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

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

.response-time i {
    color: var(--accent-orange);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #f0f7ff;
    border-radius: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

.badge i {
    font-size: 1.2rem;
}

/* Africa Section */
.contact-africa {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.section-badge {
    display: inline-block;
    background: var(--africa-green);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.africa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.africa-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.africa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 20px;
}

.africa-card h3 {
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.africa-card p {
    color: #666;
    margin-bottom: 20px;
}

.country-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.country-contact:hover {
    text-decoration: underline;
}

.africa-cta {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.africa-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.africa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--africa-green);
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.africa-btn:hover {
    background: #00662a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 132, 61, 0.3);
}

/* Interactive Map */
.interactive-map {
    padding: 100px 0;
    background: white;
}

.interactive-map h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 50px;
}

.map-visual {
    max-width: 900px;
    margin: 0 auto;
}

.map-base {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e2e8f0 100%);
    border-radius: 20px;
    overflow: hidden;
}

.dubai-pin {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pin-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 85, 164, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 85, 164, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 85, 164, 0); }
}

.pin-label {
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-blue) 0%, transparent 100%);
    height: 2px;
    transform-origin: left center;
}

.line-ghana {
    top: 40%;
    left: 20%;
    width: 30%;
    transform: rotate(15deg);
}

.line-angola {
    top: 45%;
    left: 20%;
    width: 35%;
    transform: rotate(-10deg);
}

.line-congo {
    top: 50%;
    left: 20%;
    width: 32%;
    transform: rotate(5deg);
}

.line-ivorycoast {
    top: 55%;
    left: 20%;
    width: 28%;
    transform: rotate(25deg);
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.dubai-dot {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
}

.africa-dot {
    background: var(--africa-green);
}

/* Plugin Alert */
.plugin-alert {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.plugin-alert i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.plugin-alert h3 {
    color: #856404;
    margin-bottom: 15px;
}

.plugin-alert p {
    color: #856404;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-main {
        padding: 30px 20px;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== MODERN FRONT PAGE STYLES ===== */

/* Modern Hero Section */
.modern-hero {
    background: linear-gradient(135deg, #0A2463 0%, #001E3C 100%);
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 40px;
}

.hero-badge i {
    color: #FFD700;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

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

.gradient-text {
    background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.primary-cta {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8C00 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hover-effect {
    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.7s;
}

.primary-cta:hover .hover-effect {
    left: 100%;
}

.hero-stats-modern {
    display: flex;
    gap: 50px;
}

@media (max-width: 768px) {
    .hero-stats-modern {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

.stat-modern {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00C6FF;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Hero Visual */
.hero-visual-modern {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    width: 180px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.float-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float-1 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation: float-2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation: float-3 8s ease-in-out infinite;
    animation-delay: 2s;
}

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

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

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00C6FF;
}

.float-card h4 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.float-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.card-sparkle {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 20px #FFD700;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Brands Marquee */
.brands-marquee {
    background: #0A2463;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

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

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 50px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.brand-item:hover {
    color: white;
    transform: translateY(-5px);
}

.brand-item i {
    margin-bottom: 10px;
}

.brand-item img {
    height: 48px;
    width: auto;
    margin-bottom: 10px;
    filter: brightness(0) invert(0.8);
    transition: filter 0.3s;
}

.brand-item:hover img {
    filter: brightness(0) invert(1);
}

.brand-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Featured Products */
.featured-products {
    padding: 120px 0;
    background: #f8fafc;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-title-modern {
    font-size: 3.5rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-main {
    display: block;
    font-weight: 300;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8C00 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.product-title {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature {
    background: #f0f7ff;
    color: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success-green);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: gap 0.3s;
}

.product-cta:hover {
    gap: 15px;
}

.product-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.product-card:hover .product-glow {
    opacity: 1;
}

.view-all-products {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: white;
    color: var(--dark-navy);
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.view-all-btn:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.arrow-container {
    position: relative;
    width: 40px;
    height: 20px;
}

.arrow-container i {
    position: absolute;
    transition: all 0.3s;
}

.arrow-container i:first-child {
    left: 0;
}

.arrow-container i:last-child {
    left: 20px;
    opacity: 0;
}

.view-all-btn:hover .arrow-container i:first-child {
    left: -20px;
    opacity: 0;
}

.view-all-btn:hover .arrow-container i:last-child {
    left: 0;
    opacity: 1;
}

/* Why Choose Us */
.why-choose-modern {
    padding: 120px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.why-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--dark-navy);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.benefit-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke-dasharray: 817;
    stroke-dashoffset: 817;
    animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
    to { stroke-dashoffset: 163; } /* 80% */
}

.stat-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.stat-percent {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.stat-items {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-item-ring {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.stat-item-ring:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.stat-item-ring:nth-child(2) {
    bottom: 10%;
    left: 30%;
    transform: translateX(-50%);
}

.stat-item-ring:nth-child(3) {
    bottom: 10%;
    right: 30%;
    transform: translateX(50%);
}

.stat-item-ring i {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-item-ring span {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

/* Africa Modern */
.africa-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.africa-header {
    text-align: center;
    margin-bottom: 80px;
}

.africa-map-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1200px) {
    .africa-map-modern {
        grid-template-columns: 1fr;
    }
}

.map-container {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 30px;
    overflow: hidden;
}

.map-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-dot {
    position: absolute;
    cursor: pointer;
}

.dot-pulse {
    width: 20px;
    height: 20px;
    background: var(--africa-green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(0, 132, 61, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 132, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 132, 61, 0); }
}

.dot-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    color: var(--dark-navy);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-dot:hover .dot-label {
    opacity: 1;
}

/* Dot positions */
.dot-ghana { top: 30%; left: 45%; }
.dot-angola { top: 60%; left: 50%; }
.dot-congo { top: 50%; left: 55%; }
.dot-ivory { top: 35%; left: 40%; }
.dot-benin { top: 40%; left: 48%; }
.dot-burkina { top: 35%; left: 44%; }
.dot-mali { top: 30%; left: 42%; }
.dot-guinea { top: 38%; left: 38%; }

.africa-countries {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.country-card-modern {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.country-card-modern:hover {
    transform: translateX(10px);
}

.country-flag {
    font-size: 2.5rem;
}

.country-info h4 {
    color: var(--dark-navy);
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.country-info p {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.country-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.country-link:hover {
    gap: 15px;
}

/* Modern CTA */
.modern-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.modern-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

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

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
}

.cta-button-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 45px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.cta-button-modern.primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8C00 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.cta-button-modern.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.cta-button-modern.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.cta-button-modern.primary:hover .button-shine {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MODERN ABOUT US PAGE STYLES ===== */

/* Modern Hero */
.about-hero-modern {
    background: linear-gradient(135deg, 
        rgba(10, 36, 99, 0.95) 0%, 
        rgba(0, 30, 60, 0.92) 100%),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.about-hero-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 198, 255, 0.15) 0%, transparent 50%);
}

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

@media (max-width: 1200px) {
    .hero-content-about {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
}

.hero-badge-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 40px;
}

.hero-badge-about i {
    color: #FFD700;
}

.hero-title-about {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title-line {
    display: block;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-about {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.hero-description-about {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 50px;
}

.hero-stats-about {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-stats-about {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .hero-title-about {
        font-size: 2.8rem;
    }
    
    .hero-subtitle-about {
        font-size: 1.5rem;
    }
}

.stat-item-about {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #00C6FF;
    margin-bottom: 8px;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual-about {
    position: relative;
    height: 400px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-element {
    position: absolute;
    width: 160px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.visual-element:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.visual-element i {
    font-size: 2.5rem;
    color: #00C6FF;
}

.visual-element span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.ele-1 {
    top: 10%;
    left: 10%;
    animation: float-up 6s ease-in-out infinite;
}

.ele-2 {
    top: 40%;
    right: 10%;
    animation: float-up 7s ease-in-out infinite 1s;
}

.ele-3 {
    bottom: 10%;
    left: 30%;
    animation: float-up 8s ease-in-out infinite 2s;
}

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

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.chevron {
    width: 30px;
    height: 8px;
    opacity: 0;
    transform: scale(0.3);
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
    animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: white;
}

.chevron:before {
    left: 0;
    transform: skewY(30deg);
}

.chevron:after {
    right: 0;
    transform: skewY(-30deg);
}

@keyframes move-chevron {
    25% { opacity: 1; }
    33.3% { opacity: 1; transform: translateY(30px); }
    66.6% { opacity: 1; transform: translateY(40px); }
    100% { opacity: 0; transform: translateY(55px) scale(0.5); }
}

/* Company Story */
.company-story {
    padding: 120px 0;
    background: #f8fafc;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1200px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-navy);
    margin-bottom: 40px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 40px;
}

.story-timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-orange));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -40px;
    top: 0;
    background: var(--primary-blue);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 85, 164, 0.3);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-left: 40px;
}

.timeline-content h3 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visual-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.visual-card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-blue);
}

.visual-card h3 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.visual-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mission & Vision */
.mission-vision-modern {
    padding: 120px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 1200px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.mission-card,
.vision-card {
    background: #f8fafc;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.mission-card:before,
.vision-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
}

.mission-card h2,
.vision-card h2 {
    color: var(--dark-navy);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.point i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.point span {
    color: #555;
    font-weight: 500;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.goal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.goal-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.3;
    line-height: 1;
}

.goal-content h4 {
    color: var(--dark-navy);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.goal-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Company Values */
.company-values {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    color: var(--dark-navy);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: #f0f7ff;
    color: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Leadership Team */
.leadership-team {
    padding: 120px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-member {
    background: #f8fafc;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.member-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.member-social a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.member-info {
    padding: 40px;
}

.member-info h3 {
    color: var(--dark-navy);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.position {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
}

.bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    background: #f0f7ff;
    color: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Africa Network */
.africa-network-about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 1200px) {
    .network-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.map-visual {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.dubai-center {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.center-dot {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 0 0 10px rgba(0, 85, 164, 0.2);
}

.center-label {
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.africa-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.country-dot {
    position: absolute;
    cursor: pointer;
}

.country-dot .dot {
    width: 20px;
    height: 20px;
    background: var(--africa-green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.country-name {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    color: var(--dark-navy);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-dot:hover .country-name {
    opacity: 1;
}

/* Dot positions */
.country-dot[data-country="Ghana"] { top: 30%; left: 45%; }
.country-dot[data-country="Angola"] { top: 60%; left: 50%; }
.country-dot[data-country="Ivory Coast"] { top: 35%; left: 40%; }
.country-dot[data-country="Congo"] { top: 50%; left: 55%; }

.network-info h3 {
    color: var(--dark-navy);
    font-size: 2rem;
    margin-bottom: 25px;
}

.network-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.languages h4 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language {
    background: white;
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #f0f7ff;
}

/* SEO Content */
.seo-content {
    padding: 120px 0;
    background: white;
}

.seo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

@media (max-width: 1200px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.seo-main h2 {
    color: var(--dark-navy);
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.3;
}

.seo-article h3 {
    color: var(--dark-navy);
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

.seo-article p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.seo-points {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.point-item:last-child {
    margin-bottom: 0;
}

.point-item i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.point-item span {
    color: #555;
    font-weight: 500;
    font-size: 1.05rem;
}

.sidebar-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-card:last-child {
    margin-bottom: 0;
}

.sidebar-card h4 {
    color: var(--dark-navy);
    margin-bottom: 25px;
    font-size: 1.3rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.facts-list,
.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.facts-list li,
.services-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #555;
    font-size: 0.95rem;
}

.facts-list li:last-child,
.services-list li:last-child {
    border-bottom: none;
}

.facts-list li strong {
    color: var(--dark-navy);
    margin-right: 10px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: white;
    text-align: center;
}

.cta-card h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1rem;
}

.sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.sidebar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Final CTA */
.final-cta-about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 250px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8C00 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.info-item i {
    color: #00C6FF;
}