/* ===== CSS RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors – لون رئيسي رسمي (سليت) بدل الأزرق */
    --primary-blue: #1e293b;
    --accent-gold: #f4c63a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-light: #e9ecef;
    
    /* Typography */
    --font-arabic: 'Tajawal', Arial, sans-serif;
    --font-english: 'Roboto', 'Open Sans', Arial, sans-serif;
    
    /* Spacing */
    --container-max-width: 1400px;
    --section-padding: 80px 0;
    --mobile-padding: 60px 0;
    
    /* Borders & Shadows */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.1);
    --shadow-md: 0 4px 20px rgba(30, 41, 59, 0.12);
    --shadow-lg: 0 8px 32px rgba(30, 41, 59, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-out;
    
    /* Micro-interactions: سريعة، ناعمة، متناسقة */
    --micro-duration: 0.22s;
    --micro-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --micro-hover-lift: translateY(-2px);
    --micro-active-press: scale(0.98);
    
    /* Responsive Breakpoints */
    --breakpoint-xs: 0px;
    --breakpoint-sm: 480px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1200px;
    --breakpoint-2xl: 1400px;
    
    /* Responsive Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Responsive Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
    --primary-blue: #94a3b8;
    --accent-gold: #f5d24a;
    --white: #12141c;
    --light-gray: #1a1e26;
    --dark-gray: #e6e9ee;
    --text-gray: #9ca3af;
    --border-light: #2d333d;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .header {
    background: rgba(18, 20, 28, 0.96);
    border-bottom-color: var(--border-light);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(18, 20, 28, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .achievements-section {
    background: linear-gradient(135deg, #1a1e26 0%, #151920 100%);
    border-bottom-color: var(--accent-gold);
}

[data-theme="dark"] .achievement-card {
    background: var(--light-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: var(--border-light);
}

[data-theme="dark"] .achievement-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .company-logo-card {
    background: var(--light-gray);
    border-color: var(--border-light);
}

[data-theme="dark"] .company-logo-card:hover {
    border-color: var(--accent-gold);
}

[data-theme="dark"] .project-card {
    background: var(--light-gray);
    border-color: var(--border-light);
}

[data-theme="dark"] .project-card:hover,
[data-theme="dark"] .company-logo-card:hover {
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .cta-split-card .cta-side,
[data-theme="dark"] .dropdown-menu {
    background: var(--light-gray);
    border-color: var(--border-light);
}

[data-theme="dark"] .hero-image,
[data-theme="dark"] .hero-video {
    opacity: 0.92;
}

[data-theme="dark"] .footer {
    background: #0f172a;
    color: #e6e9ee;
}

[data-theme="dark"] .footer-description,
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-link,
[data-theme="dark"] .contact-details .contact-item,
[data-theme="dark"] .footer .contact-value,
[data-theme="dark"] .footer .contact-label,
[data-theme="dark"] .footer .contact-info {
    color: rgba(230, 233, 238, 0.9);
}

[data-theme="dark"] .footer-title {
    color: var(--accent-gold);
}

[data-theme="dark"] .footer-title i,
[data-theme="dark"] .footer-link i {
    color: rgba(230, 233, 238, 0.95);
}

[data-theme="dark"] .trust-item span,
[data-theme="dark"] .trust-item i {
    color: rgba(230, 233, 238, 0.95);
}

[data-theme="dark"] .trust-item {
    background: rgba(244, 198, 58, 0.15);
    border-color: rgba(244, 198, 58, 0.3);
}

[data-theme="dark"] .trust-item:hover {
    background: rgba(244, 198, 58, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .floating-shape,
[data-theme="dark"] .page-floating-shape {
    background: linear-gradient(45deg, var(--accent-gold), rgba(245, 210, 74, 0.25));
    opacity: 0.15;
}

[data-theme="dark"] .footer-particles,
[data-theme="dark"] .page-particles {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--accent-gold), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(245, 210, 74, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-gold), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(245, 210, 74, 0.25), transparent);
    opacity: 0.35;
}

[data-theme="dark"] .page-floating-shape {
    opacity: 0.12;
}

[data-theme="dark"] .copyright {
    color: rgba(230, 233, 238, 0.75);
}

[data-theme="dark"] .social-media .social-link:hover {
    background: var(--dark-gray);
    color: var(--white);
}

[data-theme="dark"] .swiper-button-next,
[data-theme="dark"] .swiper-button-prev {
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    color: var(--primary-blue);
}

[data-theme="dark"] .company-details-panel,
[data-theme="dark"] .no-customers-content {
    background: var(--light-gray);
    border-color: var(--border-light);
}

[data-theme="dark"] .companies-section {
    background: linear-gradient(135deg, rgba(26, 30, 38, 0.98) 0%, rgba(18, 20, 28, 1) 100%);
}

[data-theme="dark"] .companies-section .section-header {
    background: rgba(26, 30, 38, 0.9);
    border-color: var(--border-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .companies-showcase,
[data-theme="dark"] .about-section,
[data-theme="dark"] .projects-section,
[data-theme="dark"] .clients-section {
    background-color: transparent;
}

[data-theme="dark"] main {
    background-color: var(--white);
}

[data-theme="dark"] .stat-item-small,
[data-theme="dark"] .about-description {
    color: var(--text-gray);
}

[data-theme="dark"] .logo-container,
[data-theme="dark"] .company-logo-main {
    filter: brightness(1.05);
}

[data-theme="dark"] .no-projects .no-projects-content,
[data-theme="dark"] .no-companies .no-companies-content {
    background: var(--light-gray);
    border-color: var(--border-light);
    color: var(--dark-gray);
}

/* صفحة من نحن: رؤيتنا ورسالتنا والإحصائيات */
[data-theme="dark"] .vision-mission-simple,
[data-theme="dark"] .mission-vision-section {
    background: var(--white);
}

[data-theme="dark"] .vision-mission-simple {
    background: var(--light-gray);
    border-color: var(--border-light);
}

[data-theme="dark"] .stats-header {
    background: rgba(26, 30, 38, 0.92);
    backdrop-filter: blur(20px);
    border-color: var(--border-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .stat-simple {
    background: var(--light-gray);
    border-color: var(--border-light);
}

[data-theme="dark"] .mission-vision-section .section-header {
    background: transparent;
}

[data-theme="dark"] .section-header {
    background: rgba(26, 30, 38, 0.92);
    border-color: var(--border-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .stats-section {
    background: var(--white);
}

/* صفحة كلمة رئيس مجلس الإدارة */
[data-theme="dark"] .chairman-message-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

[data-theme="dark"] .chairman-profile,
[data-theme="dark"] .message-content {
    background: var(--light-gray);
    border-color: var(--border-light);
}

[data-theme="dark"] .vision-mission-section .vision-card,
[data-theme="dark"] .vision-mission-section .mission-card {
    background: var(--light-gray);
    border-color: var(--border-light);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--light-gray);
    border-color: var(--border-light);
    color: var(--dark-gray);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--text-gray);
}

[data-theme="dark"] .contact-info-card .contact-detail-value,
[data-theme="dark"] .contact-info-card .contact-detail-label,
[data-theme="dark"] .contact-info-card .contact-info-title {
    color: rgba(230, 233, 238, 0.95);
}

[data-theme="dark"] .contact-info-card .contact-info-title i {
    color: var(--accent-gold);
}

/* صفحة تفاصيل المشروع - إزالة الخلفية البيضاء في الوضع الداكن */
[data-theme="dark"] .project-details-section,
[data-theme="dark"] .project-description-section,
[data-theme="dark"] .back-to-projects-section {
    background-color: var(--white) !important;
}

[data-theme="dark"] .media-gallery-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%) !important;
}

[data-theme="dark"] .project-details-section .project-main-title,
[data-theme="dark"] .project-details-section .info-label,
[data-theme="dark"] .project-details-section .info-value,
[data-theme="dark"] .project-details-section .info-content,
[data-theme="dark"] .project-description-section .section-title,
[data-theme="dark"] .project-description-section .project-description-text,
[data-theme="dark"] .project-description-section .tags-title,
[data-theme="dark"] .project-description-section .tags-container .tag {
    color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="dark"] .project-details-section .info-icon {
    background: var(--primary-blue) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="dark"] .project-details-section .info-icon i {
    color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="dark"] .gallery-count {
    color: rgba(230, 233, 238, 0.9);
}

[data-theme="dark"] .gallery-item {
    background: var(--light-gray);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .gallery-item:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .gallery-empty {
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .gallery-empty .empty-content h3,
[data-theme="dark"] .gallery-empty .empty-content p {
    color: rgba(230, 233, 238, 0.9);
}

[data-theme="dark"] .gallery-empty .empty-content i {
    color: var(--accent-gold);
}

[data-theme="dark"] .view-toggle-btn {
    background: var(--light-gray);
    border-color: var(--border-light);
    color: rgba(230, 233, 238, 0.9);
}

[data-theme="dark"] .view-toggle-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

[data-theme="dark"] .view-toggle-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: rgba(230, 233, 238, 0.95);
}

[data-theme="dark"] .media-gallery-section .section-title {
    color: rgba(230, 233, 238, 0.95);
}

[data-theme="dark"] .gallery-carousel-container {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Theme toggle: in light mode show moon, in dark mode show sun */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-blue);
    font-size: 1.2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.theme-toggle:hover {
    color: var(--accent-gold);
    background: var(--light-gray);
}
.theme-toggle .theme-icon-dark {
    display: none;
}
[data-theme="dark"] .theme-toggle .theme-icon-light {
    display: none;
}
[data-theme="dark"] .theme-toggle .theme-icon-dark {
    display: inline-block;
}
[data-theme="dark"] .theme-toggle {
    color: var(--accent-gold);
}
[data-theme="dark"] .theme-toggle:hover {
    color: var(--primary-blue);
    background: var(--light-gray);
}

/* ===== BASE STYLES ===== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-arabic);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

[dir="rtl"] {
    text-align: right;
}

[dir="ltr"] {
    text-align: left;
    font-family: var(--font-english);
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Focus visible for better accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
}

/* Special styling for stats section title */
.stats-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
    border-radius: 2px;
}

[dir="ltr"] .section-title::after {
    left: 0;
    right: auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1rem 0;
    max-width: 600px;
}

.section-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.section-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.section-link:hover::before {
    width: 100%;
}

[dir="ltr"] .section-link::before {
    left: 0;
    right: auto;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-blue);
    min-height: 44px;
    min-width: 44px;
}

.cta-button:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(47, 90, 142, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-logo {
        flex: 1;
        min-width: 120px;
    }
    
    .nav-logo .logo-img {
        max-height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        text-align: right;
        border-radius: 0;
    }
    
    .nav-link:hover {
        background: var(--light-gray);
    }
    
    .dropdown-menu {
        position: static;
        background: var(--light-gray);
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-link {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid var(--border-light);
    }
    
    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-blue);
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--border-radius);
        transition: var(--transition);
    }
    
    .mobile-toggle:hover {
        background: var(--light-gray);
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(47, 90, 142, 0.1);
}

.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
    z-index: 1001;
}




.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    align-items: center;
    padding: 0;
}

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
    transition: all 0.3s ease;
    transform: translateX(50%);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

[dir="ltr"] .nav-link::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
/* عناصر القائمة الجانبية للجوال (اطلب عرض سعر + ثيم + لغة) — تُخفى على الديسكتوب */
.nav-menu-mobile-actions {
    display: none;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta-btn:hover {
    background: #254a7a;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 90, 142, 0.35);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-right: 0.25rem;
}

.dropdown:hover .dropdown-icon,
.dropdown:focus-within .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(47, 90, 142, 0.15);
    border-radius: 12px;
    min-width: 280px;
    list-style: none;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(47, 90, 142, 0.1);
}

[dir="ltr"] .dropdown-menu {
    left: 0;
    right: auto;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 8px;
    margin: 0 0.5rem;
    position: relative;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, var(--light-gray), rgba(244, 198, 58, 0.1));
    color: var(--accent-gold);
    transform: translateX(-3px);
}

.dropdown-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.3s ease;
    transform: translateY(-50%);
    border-radius: 2px;
}

.dropdown-link:hover::before {
    height: 60%;
}

[dir="ltr"] .dropdown-link:hover {
    transform: translateX(3px);
}

[dir="ltr"] .dropdown-link::before {
    left: 0;
    right: auto;
}

/* Language Switcher - تم تحسين التصميم بشكل بسيط */
.lang-switcher {
    display: flex;
    background: rgba(47, 90, 142, 0.08);
    border-radius: 30px;
    padding: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(47, 90, 142, 0.1);
}

.lang-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--primary-blue);
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 40px;
    min-width: 45px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.lang-text {
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4c63a 100%);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(244, 198, 58, 0.4);
    transform: translateY(-1px);
}

.lang-btn:hover:not(.active) {
    background: rgba(47, 90, 142, 0.15);
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 90, 142, 0.2);
}

.lang-btn:hover .lang-text {
    transform: scale(1.05);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-toggle:hover {
    background: rgba(47, 90, 142, 0.1);
    transform: scale(1.05);
}

.mobile-toggle:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.mobile-toggle:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.mobile-toggle[aria-expanded="true"] {
    background: rgba(244, 198, 58, 0.1);
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
    position: relative;
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--accent-gold);
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--accent-gold);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        aspect-ratio: 16 / 9;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Hero overlay & content */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.35) 50%, rgba(15, 23, 42, 0.2) 100%);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    z-index: 2;
}

.hero-headline {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 1rem;
    max-width: 720px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 0 1.75rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary {
    background: var(--accent-gold, #d4a853);
    color: #0f172a;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
}

[data-theme="dark"] .hero-headline { color: #fff; }
[data-theme="dark"] .hero-description { color: rgba(255, 255, 255, 0.9); }

@media (max-width: 767px) {
    .hero-content { padding: 1.5rem 1rem; }
    .hero-cta-group { flex-direction: column; width: 100%; max-width: 280px; }
    .hero-btn { width: 100%; }
}

/* ===== MICRO-INTERACTIONS (UX) ===== */
/* أزرار: Hover ناعم + ضغط (Active) */
.hero-btn,
.cta-button,
.submit-btn,
.section-link,
a.hero-btn,
.btn {
    transition: transform var(--micro-duration) var(--micro-ease),
                box-shadow var(--micro-duration) var(--micro-ease),
                background-color var(--micro-duration) var(--micro-ease),
                border-color var(--micro-duration) var(--micro-ease),
                opacity var(--micro-duration) var(--micro-ease);
}

.hero-btn:active,
.cta-button:active,
.submit-btn:active,
.btn:active,
.section-link:active {
    transform: var(--micro-active-press);
}

.cta-side,
.cta-side.cta-download,
.cta-side.cta-contact {
    transition: transform var(--micro-duration) var(--micro-ease),
                box-shadow var(--micro-duration) var(--micro-ease);
}

.cta-side:active {
    transform: var(--micro-active-press);
}

/* بطاقات: Hover + Active */
.project-card,
.testimonial-card,
.company-logo-card,
.achievement-card,
.feature-item,
.contact-info-card {
    transition: transform var(--micro-duration) var(--micro-ease),
                box-shadow var(--micro-duration) var(--micro-ease);
}

.project-card:active,
.testimonial-card:active,
.company-logo-card:active {
    transform: var(--micro-active-press);
}

/* روابط البطاقات (عند الضغط على الرابط داخل البطاقة) */
.project-card a:active,
.testimonial-card a:active {
    opacity: 0.92;
}

/* تحسين استجابة اللمس على الجوال (تقليل highlight الافتراضي) */
.hero-btn,
.cta-button,
.cta-side,
.submit-btn,
.project-card,
.testimonial-card,
.company-logo-card,
.section-link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.06);
}

/* Lazy Loading: انتقال بصري سلس عند ظهور الصورة */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.35s var(--micro-ease);
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* الصور التي تُحمّل فوراً (مثل Hero) لا نطبق عليها التلاشي */
img[loading="eager"],
img:not([loading]) {
    opacity: 1;
}

/* احترام تفضيل المستخدم لتقليل الحركة */
@media (prefers-reduced-motion: reduce) {
    .hero-btn,
    .cta-button,
    .cta-side,
    .project-card,
    .testimonial-card,
    .company-logo-card,
    .achievement-card,
    .feature-item,
    img[loading="lazy"] {
        transition-duration: 0.01ms !important;
    }
    
    .hero-btn:hover,
    .hero-btn-secondary:hover,
    .project-card:hover,
    .testimonial-card:hover,
    .company-logo-card:hover {
        transform: none;
    }
    
    img[loading="lazy"] {
        opacity: 1;
    }
    
    img[loading="lazy"].loaded {
        opacity: 1;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--light-gray, #f8fafc);
}

.testimonials-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--dark-gray, #0f172a);
    text-align: center;
    margin: 0 0 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.testimonial-card {
    background: var(--white, #fff);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light, #e2e8f0);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray, #475569);
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light, #e2e8f0);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark-gray, #0f172a);
}

.testimonial-title {
    font-size: 0.8125rem;
    color: var(--text-gray, #64748b);
}

[data-theme="dark"] .testimonials-section {
    background: rgba(15, 23, 42, 0.4);
}

[data-theme="dark"] .testimonial-card {
    background: var(--card-bg-dark, rgba(30, 41, 59, 0.6));
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .testimonial-quote { color: rgba(255, 255, 255, 0.85); }
[data-theme="dark"] .testimonial-name { color: #fff; }
[data-theme="dark"] .testimonial-title { color: rgba(255, 255, 255, 0.6); }
[data-theme="dark"] .testimonial-footer { border-color: rgba(255, 255, 255, 0.1); }

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .testimonial-card { padding: 1.25rem; }
}

/* ===== STORYTELLING (تسلسل القصة) ===== */
.story-need {
    background: var(--light-gray, #f8fafc);
}

.story-need-text {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-gray, #475569);
    text-align: center;
    line-height: 1.5;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.story-lead {
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    color: var(--text-gray, #64748b);
    line-height: 1.55;
    margin: 0 0 1rem;
    max-width: 520px;
}

.story-title {
    margin-bottom: 0.5rem;
}

.story-cta {
    background: linear-gradient(135deg, var(--primary-blue, #1e3a5f) 0%, #0f172a 100%);
    color: #fff;
    text-align: center;
}

.story-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.story-cta-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #fff;
}

.story-cta-text {
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin: 0 0 1.5rem;
}

.story-cta-btn {
    display: inline-flex;
}

[data-theme="dark"] .story-need {
    background: rgba(15, 23, 42, 0.35);
}

[data-theme="dark"] .story-need-text {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .story-lead {
    color: rgba(255, 255, 255, 0.75);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Responsive About Section */
@media (max-width: 767px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-intro {
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: var(--font-size-sm);
        line-height: 1.7;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .about-content {
        gap: 2.5rem;
    }
}

.about-intro {
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.about-description strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.about-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.about-cta {
    margin-top: 2rem;
}

.cta-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.cta-split-card {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, rgba(47, 90, 142, 0.02) 100%);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(47, 90, 142, 0.1);
    border: 1px solid rgba(47, 90, 142, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-split-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(47, 90, 142, 0.03) 50%, transparent 52%);
    pointer-events: none;
    z-index: 0;
}

.cta-side {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    min-height: 70px;
}

.cta-side:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(47, 90, 142, 0.15);
}

.cta-download {
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.05) 0%, rgba(47, 90, 142, 0.02) 100%);
    border: 1px solid rgba(47, 90, 142, 0.1);
}

.cta-download:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f172a 100%);
    color: var(--white);
    border-color: var(--primary-blue);
}

.cta-contact {
    background: linear-gradient(135deg, rgba(244, 198, 58, 0.05) 0%, rgba(244, 198, 58, 0.02) 100%);
    border: 1px solid rgba(244, 198, 58, 0.2);
}

.cta-contact:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6b82e 100%);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
}

.cta-icon-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(47, 90, 142, 0.1);
    transition: all 0.3s ease;
}

.cta-download:hover .cta-icon-bg {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.cta-contact:hover .cta-icon-bg {
    background: rgba(47, 90, 142, 0.2);
    transform: scale(1.1);
}

.cta-icon {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.cta-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 400;
    transition: all 0.3s ease;
}

.cta-arrow {
    opacity: 0.6;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.cta-side:hover .cta-arrow {
    opacity: 1;
    transform: translateX(-3px);
}

.cta-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 60%;
    width: 2px;
    z-index: 3;
}

.divider-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(47, 90, 142, 0.2), transparent);
    border-radius: 1px;
}

.divider-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--white);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Services Home Section */
.services-home-section .section-header.text-center {
    margin-bottom: 2.5rem;
}
.services-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.service-home-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(47, 90, 142, 0.15);
    border-color: var(--primary-blue);
}
.service-home-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.1), rgba(244, 198, 58, 0.1));
    border-radius: 14px;
    margin-bottom: 1.25rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: transform 0.25s ease, background 0.25s ease;
}
.service-home-card:hover .service-home-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.2), rgba(244, 198, 58, 0.15));
}
.service-home-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}
.service-home-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex: 1;
}
.service-home-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease;
}
.service-home-card:hover .service-home-link {
    gap: 0.5rem;
}
@media (max-width: 1024px) {
    .services-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-home-grid {
        grid-template-columns: 1fr;
    }
    .service-home-card {
        padding: 1.5rem;
    }
}

.about-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

.company-logo-main {
    width: 100%;
    height: auto;
    max-width: 250px;
    filter: drop-shadow(0 10px 30px rgba(47, 90, 142, 0.2));
    transition: var(--transition);
}

.company-logo-main:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(47, 90, 142, 0.3));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(244, 198, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.stat-item-small {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-item-small .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.stat-item-small .stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== COMPANIES SECTION ===== */
.companies-section {
    background: linear-gradient(135deg, 
        rgba(47, 90, 142, 0.03) 0%, 
        rgba(244, 198, 58, 0.02) 50%, 
        rgba(47, 90, 142, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(47, 90, 142, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 198, 58, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(47, 90, 142, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.companies-section .container {
    position: relative;
    z-index: 2;
}

/* ===== COMPANIES SECTION HEADER ===== */
.companies-section .section-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 
        0 8px 32px rgba(47, 90, 142, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.companies-section .section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--accent-gold) 50%, 
        var(--primary-blue) 100%);
}

.companies-section .section-title {
    color: var(--primary-blue);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.companies-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.companies-section .section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(47, 90, 142, 0.08);
    border: 1px solid rgba(47, 90, 142, 0.15);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.companies-section .section-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(47, 90, 142, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.companies-section .section-link:hover {
    background: rgba(47, 90, 142, 0.12);
    border-color: rgba(47, 90, 142, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(47, 90, 142, 0.15);
}

.companies-section .section-link:hover::before {
    left: 100%;
}

.companies-section .section-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.companies-section .section-link:hover i {
    transform: translateX(-3px);
}


/* ===== UNIVERSAL SECTION HEADERS WITH GLASS EFFECT ===== */
.section-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 8px 32px rgba(47, 90, 142, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--accent-gold) 50%, 
        var(--primary-blue) 100%);
}

.section-header .section-title {
    color: var(--primary-blue);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-header .section-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 500px;
}

.section-header .section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    background: rgba(47, 90, 142, 0.08);
    border: 1px solid rgba(47, 90, 142, 0.15);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.section-header .section-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(47, 90, 142, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.section-header .section-link:hover {
    background: rgba(47, 90, 142, 0.12);
    border-color: rgba(47, 90, 142, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(47, 90, 142, 0.15);
}

.section-header .section-link:hover::before {
    left: 100%;
}

.section-header .section-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.section-header .section-link:hover i {
    transform: translateX(-3px);
}

/* ===== SECTION-SPECIFIC GLASS BACKGROUNDS ===== */
.about-section {
    background: linear-gradient(135deg, 
        rgba(47, 90, 142, 0.02) 0%, 
        rgba(244, 198, 58, 0.01) 50%, 
        rgba(47, 90, 142, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(47, 90, 142, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(244, 198, 58, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.projects-section {
    background: linear-gradient(135deg, 
        rgba(47, 90, 142, 0.03) 0%, 
        rgba(244, 198, 58, 0.02) 50%, 
        rgba(47, 90, 142, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(47, 90, 142, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(244, 198, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.projects-section .container {
    position: relative;
    z-index: 2;
}

/* Media Section - COMMENTED OUT */
/*
.media-section {
    background: linear-gradient(135deg, 
        rgba(47, 90, 142, 0.02) 0%, 
        rgba(244, 198, 58, 0.01) 50%, 
        rgba(47, 90, 142, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 20%, rgba(47, 90, 142, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(244, 198, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.media-section .container {
    position: relative;
    z-index: 2;
}
*/

/* ===== ACHIEVEMENTS SECTION - REDESIGNED ===== */
.achievements-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-gold);
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 40%, rgba(47, 90, 142, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(244, 198, 58, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.achievements-section .container {
    position: relative;
    z-index: 2;
    padding: 40px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.achievements-title {
    text-align: center;
    margin-bottom: 2rem;
}

.achievements-title h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    position: relative;
}

.achievements-title h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.achievements-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.8;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Achievement Card */
.achievement-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(47, 90, 142, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(47, 90, 142, 0.15);
    border-color: var(--accent-gold);
}

/* Achievement Icon */
.achievement-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(47, 90, 142, 0.3));
}

/* National Pride Icon (for regions) */
.achievement-icon.national {
    color: var(--accent-gold);
}

.achievement-icon.national::after {
    content: '🇸🇦';
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Achievement Number */
.achievement-number {
    font-family: 'Inter', 'Tajawal', sans-serif !important;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.achievement-number .plus-sign {
    color: var(--accent-gold);
    font-size: 0.8em;
    margin-left: 0.2rem;
}

.achievement-card:hover .achievement-number {
    text-shadow: 0 0 12px rgba(47, 90, 142, 0.2);
}

.achievement-card:hover .achievement-number .plus-sign {
    text-shadow: 0 0 8px rgba(244, 198, 58, 0.6);
}

/* Achievement Label */
.achievement-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

/* Achievement Description */
.achievement-description {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.8;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* Animation Classes */
.achievement-card.animate-in {
    animation: slideUpFadeIn 0.6s ease-out forwards;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.achievement-number.counting {
    animation: countUp 1.2s ease-out forwards;
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* RTL/LTR Support for Achievements */
[dir="rtl"] .achievement-number {
    font-family: 'Inter', 'Tajawal', sans-serif !important;
}

[dir="ltr"] .achievement-number {
    font-family: 'Inter', 'Tajawal', sans-serif !important;
}

[dir="rtl"] .achievement-number .plus-sign {
    margin-left: 0;
    margin-right: 0.2rem;
}

[dir="ltr"] .achievement-number .plus-sign {
    margin-left: 0.2rem;
    margin-right: 0;
}

[dir="rtl"] .achievement-icon.national::after {
    right: -0.5rem;
    left: auto;
}

[dir="ltr"] .achievement-icon.national::after {
    left: -0.5rem;
    right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .achievements-section .container {
        padding: 30px 12px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .achievement-card {
        padding: 1.25rem 0.75rem;
    }
    
    .achievement-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-label {
        font-size: 0.9rem;
    }
    
    .achievement-description {
        font-size: 0.75rem;
    }
    
    .achievements-title h2 {
        font-size: 1.5rem;
    }
    
    .achievements-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .achievements-section .container {
        padding: 25px 8px;
    }
    
    .achievement-card {
        padding: 1rem 0.5rem;
    }
    
    .achievement-icon {
        font-size: 1.75rem;
    }
    
    .achievement-number {
        font-size: 1.75rem;
    }
    
    .achievement-label {
        font-size: 0.85rem;
    }
    
    .achievement-description {
        font-size: 0.7rem;
    }
    
    .achievements-title h2 {
        font-size: 1.25rem;
    }
    
    .achievements-subtitle {
        font-size: 0.85rem;
    }
}

.clients-section {
    background: linear-gradient(135deg, 
        rgba(47, 90, 142, 0.03) 0%, 
        rgba(244, 198, 58, 0.02) 50%, 
        rgba(47, 90, 142, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 35% 35%, rgba(47, 90, 142, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 65% 65%, rgba(244, 198, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.clients-section .container {
    position: relative;
    z-index: 2;
}

/* ===== STATS SECTION HEADER ===== */
.stats-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 8px 32px rgba(47, 90, 142, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stats-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--accent-gold) 50%, 
        var(--primary-blue) 100%);
}

.stats-header .section-title {
    color: var(--primary-blue);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
}

.stats-header .stats-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE DESIGN FOR COMPANIES SECTION ===== */
@media (max-width: 768px) {
    .companies-section .section-header {
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .companies-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .section-padding {
        padding: var(--mobile-padding);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: var(--font-size-sm);
        margin-bottom: 1.5rem;
    }
}

/* ===== GENERAL RESPONSIVE UTILITIES ===== */
@media (max-width: 767px) {
    .d-none-mobile {
        display: none !important;
    }
    
    .d-block-mobile {
        display: block !important;
    }
    
    .text-center-mobile {
        text-align: center !important;
    }
    
    .w-100-mobile {
        width: 100% !important;
    }
    
    .mb-mobile-1 {
        margin-bottom: 0.5rem !important;
    }
    
    .mb-mobile-2 {
        margin-bottom: 1rem !important;
    }
    
    .p-mobile-1 {
        padding: 0.5rem !important;
    }
    
    .p-mobile-2 {
        padding: 1rem !important;
    }
    
    .btn {
        min-height: 44px;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-group .btn:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .d-none-desktop {
        display: none !important;
    }
    
    .d-block-desktop {
        display: block !important;
    }
}
    
    .companies-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .companies-section .section-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }


@media (max-width: 480px) {
    .companies-section .section-header {
        padding: 1.25rem 1rem;
        border-radius: 15px;
    }
    
    .companies-section .section-title {
        font-size: 1.2rem;
    }
    
    .companies-section .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Universal section header responsive for small screens */
    .section-header {
        padding: 1.25rem 1rem;
        border-radius: 15px;
    }
    
    .section-header .section-title {
        font-size: 1.2rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .stats-header {
        padding: 1.25rem 1rem;
        border-radius: 15px;
    }
    
    .stats-header .section-title {
        font-size: 1.2rem;
    }
    
    .stats-header .stats-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ===== UNIVERSAL RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Universal section header responsive */
    .section-header {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header .section-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .stats-header {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-header .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .stats-header .stats-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0;
    }
}

/* ===== COMPANIES SHOWCASE ===== */
.companies-showcase {
    margin-top: 3rem;
}

.companies-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.company-logo-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(47, 90, 142, 0.08);
    border: 1px solid rgba(47, 90, 142, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.company-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.02) 0%, rgba(244, 198, 58, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.company-logo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(47, 90, 142, 0.15);
    border-color: rgba(244, 198, 58, 0.3);
}

.company-logo-card:hover::before {
    opacity: 1;
}

.company-logo-card.active {
    border-color: var(--primary-blue);
    background: rgba(47, 90, 142, 0.05);
}

.logo-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(47, 90, 142, 0.1));
}

.company-logo-card:hover .company-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(47, 90, 142, 0.2));
}

/* Company Details Panel */
.company-details-panel {
    background: linear-gradient(135deg, var(--white) 0%, rgba(47, 90, 142, 0.02) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(47, 90, 142, 0.1);
    border: 1px solid rgba(47, 90, 142, 0.08);
    margin-top: 2rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.company-details-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.company-details-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(244, 198, 58, 0.02) 50%, transparent 52%);
    pointer-events: none;
    z-index: 0;
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.details-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.2;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6b82e 100%);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 198, 58, 0.4);
    background: linear-gradient(135deg, #f4d04e 0%, var(--accent-gold) 100%);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(-3px);
}

.details-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(47, 90, 142, 0.15);
}

.company-detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.details-image:hover .company-detail-image {
    transform: scale(1.05);
}

.close-details-btn {
    display: none;
}

.company-profile-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    min-height: 320px;
}

.company-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

/* Card Header with Logo */
.company-card-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.company-logo-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.company-logo {
    background: var(--white);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    padding: 1.5rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.company-profile-card:hover .company-logo {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(244, 198, 58, 0.3);
    border-color: var(--primary-blue);
}

.company-logo img {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

/* Company Info */
.company-info {
    text-align: center;
    z-index: 2;
    position: relative;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.company-tagline {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.more-button {
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.more-button:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hover Overlay */
.company-profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f172a 100%);
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-profile-card:hover .company-profile-overlay {
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-link:hover {
    background: var(--white);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 198, 58, 0.4);
}

/* Background Pattern */
.company-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(244, 198, 58, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.company-profile-card:hover .company-card-header::before {
    opacity: 1;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive Projects Grid */
@media (max-width: 767px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-title {
        font-size: var(--font-size-lg);
    }
    
    .project-description {
        font-size: var(--font-size-sm);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.project-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-link {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.project-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.project-gallery-card:hover .project-gallery-image {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/* Gallery Overlay */
.project-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(47, 90, 142, 0.85) 0%,
        rgba(30, 61, 111, 0.9) 50%,
        rgba(47, 90, 142, 0.95) 100%
    );
    color: var(--white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.project-gallery-card:hover .project-gallery-overlay {
    transform: translateY(0);
}

.project-gallery-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.project-gallery-card:hover .project-gallery-content {
    transform: translateY(0);
    opacity: 1;
}

.project-gallery-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.project-gallery-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--accent-gold);
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.project-gallery-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: left 0.6s ease;
    z-index: -1;
}

.project-gallery-link:hover::before {
    left: 0;
}

.project-gallery-link:hover {
    color: var(--primary-blue);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 198, 58, 0.4);
}

.project-gallery-link i {
    transition: transform 0.3s ease;
}

.project-gallery-link:hover i {
    transform: translateX(-3px);
}

/* Gallery Card Hover Effects */
.project-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(244, 198, 58, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-gallery-card:hover::before {
    opacity: 1;
}

/* Projects Navigation Buttons */
.projects-nav-next,
.projects-nav-prev {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -30px;
}

.projects-nav-next:hover,
.projects-nav-prev:hover {
    background: var(--accent-gold);
    color: var(--primary-blue) !important;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(244, 198, 58, 0.4);
}

.projects-nav-next::after,
.projects-nav-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.projects-nav-next {
    right: -30px;
}

.projects-nav-prev {
    left: -30px;
}



/* Project Grid Card */
.project-grid-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(47, 90, 142, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: projectSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.project-grid-card:nth-child(1) { animation-delay: 0.1s; }
.project-grid-card:nth-child(2) { animation-delay: 0.2s; }
.project-grid-card:nth-child(3) { animation-delay: 0.3s; }
.project-grid-card:nth-child(4) { animation-delay: 0.4s; }
.project-grid-card:nth-child(5) { animation-delay: 0.5s; }
.project-grid-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes projectSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-grid-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(47, 90, 142, 0.2);
}

.project-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.project-grid-card:hover .project-grid-image {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/* Hover Overlay */
.project-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(47, 90, 142, 0.9) 0%,
        rgba(47, 90, 142, 0.7) 50%,
        rgba(244, 198, 58, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.project-grid-card:hover .project-grid-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-grid-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.project-grid-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.project-grid-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-grid-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.project-grid-link:hover::before {
    left: 0;
}

.project-grid-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.project-grid-link i {
    transition: transform 0.3s ease;
}

.project-grid-link:hover i {
    transform: translateX(-3px);
}

/* Card Hover Effects */
.project-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 198, 58, 0.1) 0%, rgba(47, 90, 142, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.project-grid-card:hover::before {
    opacity: 1;
}

/* Touch device hover effects */
.project-grid-card.touch-hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 40px rgba(47, 90, 142, 0.15);
}

.project-grid-card.touch-hover .project-grid-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Focus states for accessibility */
.project-grid-card:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

.project-grid-card.focused {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 35px rgba(47, 90, 142, 0.18);
}

/* Section Title Row */
.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1rem;
}

.section-title-row .section-title {
    margin-bottom: 0;
    flex: 1;
}

/* Projects CTA Section */
.projects-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
}

.projects-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    border-radius: 1px;
}

/* View All Projects Button */
.projects-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(47, 90, 142, 0.2);
    white-space: nowrap;
}

.projects-view-all-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(47, 90, 142, 0.3);
}

.projects-view-all-btn .btn-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.projects-view-all-btn:hover .btn-icon {
    transform: translateX(-4px);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.projects-view-all-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Card Hover Effects */
.project-horizontal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 198, 58, 0.05) 0%, rgba(47, 90, 142, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.project-horizontal-card:hover::before {
    opacity: 1;
}

/* Touch device hover effects */
.project-horizontal-card.touch-hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(47, 90, 142, 0.15);
}

.project-horizontal-card.touch-hover .project-horizontal-link {
    opacity: 1;
    transform: translateY(0);
}

.project-horizontal-card.touch-hover .project-horizontal-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Focus states for accessibility */
.project-horizontal-card:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

.project-horizontal-card.focused {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 35px rgba(47, 90, 142, 0.18);
}

/* Disabled button states */
.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Smooth scrolling for the carousel */
.projects-horizontal-carousel {
    scroll-behavior: smooth;
}

/* ===== MEDIA SECTION - COMMENTED OUT ===== */
/*
.media-section {
    background: var(--white);
}

.media-blog-grid {
    position: relative;
    margin-top: 3rem;
}
*/

/* Blog Article Card - COMMENTED OUT */
/*
.blog-article-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 420px;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-light);
}
*/

/* Blog Article Card Hover - COMMENTED OUT */
/*
.blog-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(47, 90, 142, 0.15);
    border-color: var(--accent-gold);
}
*/

/* Blog Article Image - COMMENTED OUT */
/*
.blog-article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}
*/

/* All Blog Article Styles - COMMENTED OUT */
/*
.blog-article-card:hover .blog-article-image {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.blog-article-content {
    padding: 2rem;
    height: calc(100% - 220px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-article-header {
    margin-bottom: 1rem;
}

.blog-article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #f0b90b);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.blog-article-card:hover .blog-article-title {
    color: var(--accent-gold);
}

.blog-article-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.blog-article-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.blog-article-date i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.blog-article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.blog-article-author i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.blog-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transition: left 0.6s ease;
    z-index: -1;
}

.blog-read-more:hover::before {
    left: 0;
}

.blog-read-more:hover {
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 90, 142, 0.3);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(-3px);
}

/* Blog Card Hover Effects */
.blog-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(244, 198, 58, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.blog-article-card:hover::before {
    opacity: 1;
}

/* Media Navigation Buttons */
.media-nav-prev {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--white) !important;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -25px;
}

.media-nav-prev:hover {
    background: var(--accent-gold);
    color: var(--primary-blue) !important;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(244, 198, 58, 0.4);
}

.media-nav-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.media-nav-prev {
    left: -25px;
}


/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3d6f 50%, var(--primary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::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><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 198, 58, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(244, 198, 58, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), #f0b90b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(244, 198, 58, 0.4);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-top: 0.5rem;
}

.stat-item:hover .stat-label {
    color: var(--accent-gold);
}

.stats-footer {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.stats-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Animated background elements */
.stats-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 198, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 198, 58, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(244, 198, 58, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 198, 58, 0);
    }
}

/* Completed state for stat items */
.stat-item.completed {
    animation: completedGlow 0.6s ease-out;
}

@keyframes completedGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 198, 58, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(244, 198, 58, 0.2);
    }
    100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(47, 90, 142, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 198, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.clients-section .container {
    position: relative;
    z-index: 2;
}

.client-logo {
    width: 240px;
    height: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    padding: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Swiper slide customization for clients */
.clients-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.clients-swiper .swiper-wrapper {
    align-items: center;
}

/* No Customers State */
.no-customers {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 300px;
}

.no-customers-content {
    text-align: center;
    max-width: 500px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.no-customers-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
    background-size: 300% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.no-customers-content i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6c757d, #495057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.no-customers-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.no-customers-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Clients Section */
@media (max-width: 768px) {
    .client-logo {
        width: 180px;
        height: 110px;
        padding: 6px;
    }
    
    .no-customers {
        padding: 3rem 1rem;
    }
    
    .no-customers-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .no-customers-content i {
        font-size: 3rem;
    }
    
    .no-customers-content h3 {
        font-size: 1.5rem;
    }
    
    .no-customers-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .client-logo {
        width: 160px;
        height: 100px;
        padding: 5px;
    }
    
    .no-customers-content {
        padding: 1.5rem 1rem;
    }
    
    .no-customers-content i {
        font-size: 2.5rem;
    }
    
    .no-customers-content h3 {
        font-size: 1.25rem;
    }
    
    .no-customers-content p {
        font-size: 0.95rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    margin-right: 5px;
}

[dir="ltr"] .footer-links a:hover {
    margin-left: 5px;
    margin-right: 0;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details .contact-item i {
    width: 20px;
    color: var(--accent-gold);
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-media .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-media .social-link:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 198, 58, 0.4);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ===== SWIPER CUSTOMIZATION ===== */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-blue) !important;
    font-size: 18px;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-gold);
    color: var(--primary-blue) !important;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-gray);
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold);
    opacity: 1;
    transform: scale(1.2);
}

/* ===== COMPANIES PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f172a 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::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><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.breadcrumb {
    margin-top: 2rem;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
}

.breadcrumb-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Companies Page Section */
.companies-page-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    min-height: 80vh;
    position: relative;
}

.companies-page-section::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><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(47,90,142,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.companies-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

/* Horizontal Company Cards */
.company-card-horizontal {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.company-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    opacity: 0;
    transition: var(--transition);
}

.company-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.company-card-horizontal:hover::before {
    opacity: 1;
}

.company-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.company-card-horizontal:hover .company-logo-img {
    transform: scale(1.05);
}

.company-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.3;
}

.company-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

.company-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    opacity: 0;
    transition: var(--transition);
}

.social-link i {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    transition: var(--transition);
}

.social-link.facebook {
    background: #1877f2;
    color: var(--white);
}

.social-link.twitter {
    background: #1da1f2;
    color: var(--white);
}

.social-link.linkedin {
    background: #0077b5;
    color: var(--white);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    transform: scale(1.1);
}

.visit-website-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.visit-website-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.visit-website-btn i {
    font-size: 0.9rem;
}

/* Legacy company-card styles for backward compatibility */
.company-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    opacity: 0;
    transition: var(--transition);
}

.company-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.company-card:hover::before {
    opacity: 1;
}

.company-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.company-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.company-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.company-card:hover .company-icon::before {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.company-icon i {
    font-size: 2rem;
    color: var(--white);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0;
    line-height: 1.3;
}

.company-card-body {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.company-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.company-card-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
    background: rgba(47, 90, 142, 0.02);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    opacity: 0;
    transition: var(--transition);
}

.social-link i {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link.facebook {
    background: #1877f2;
    color: var(--white);
}

.social-link.twitter {
    background: #1da1f2;
    color: var(--white);
}

.social-link.linkedin {
    background: #0077b5;
    color: var(--white);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Responsive Design for Companies Page */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .companies-list {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .company-card-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .company-logo {
        width: 100px;
        height: 100px;
    }
    
    .company-name {
        font-size: 1.25rem;
    }
    
    .company-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .visit-website-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Legacy styles for backward compatibility */
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .company-card {
        margin: 0;
    }
    
    .company-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .company-card-body {
        padding: 1rem 1.5rem;
    }
    
    .company-card-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .company-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .company-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .breadcrumb-list {
        font-size: 0.9rem;
    }
    
    .companies-list {
        padding: 0.5rem 0;
    }
    
    .company-card-horizontal {
        padding: 1rem;
        gap: 1rem;
    }
    
    .company-logo {
        width: 80px;
        height: 80px;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .company-description {
        font-size: 0.9rem;
    }
    
    .visit-website-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    /* Legacy styles for backward compatibility */
    .companies-grid {
        padding: 0 0.5rem;
    }
    
    .company-card-header {
        padding: 1rem;
    }
    
    .company-card-body {
        padding: 1rem;
    }
    
    .company-card-footer {
        padding: 1rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (641px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-cta {
        margin-top: 1.5rem;
    }
    
    .cta-container {
        max-width: 100%;
    }
    
    .cta-split-card {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .cta-side {
        padding: 0.875rem;
        gap: 0.625rem;
        min-height: 65px;
    }
    
    .cta-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .cta-icon {
        font-size: 1.125rem;
    }
    
    .cta-title {
        font-size: 0.95rem;
    }
    
    .cta-subtitle {
        font-size: 0.75rem;
    }
    
    .company-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Statistics - Tablet */
    .stats-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-number {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Companies Showcase - Tablet */
    .companies-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .company-logo-card {
        padding: 1.5rem;
    }
    
    .logo-wrapper {
        height: 100px;
        border-radius: 8px;
    }
    
    .details-content {
        grid-template-columns: 1fr 250px;
        gap: 2rem;
    }
    
    .company-details-panel {
        padding: 2rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .company-description {
        font-size: 1rem;
    }
    
    .company-detail-image {
        height: 180px;
    }
    
    /* Projects Gallery - Tablet */
    .project-gallery-card {
        height: 380px;
        width: 280px;
    }
    
    .project-gallery-overlay {
        padding: 2rem;
    }
    
    .project-gallery-title {
        font-size: 1.6rem;
    }
    
    .projects-nav-next,
    .projects-nav-prev {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .projects-nav-next {
        right: -25px;
    }
    
    .projects-nav-prev {
        left: -25px;
    }
    
    
    .project-grid-card {
        border-radius: 14px;
    }
    
    .project-grid-overlay {
        padding: 1.5rem;
    }
    
    .project-grid-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .project-grid-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .project-grid-link {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .projects-view-all-btn {
        padding: 0.9rem 2.2rem;
        font-size: 1.05rem;
    }
    
    .section-title-row {
        gap: 1.5rem;
    }
    
    /* Media Blog - Tablet - COMMENTED OUT */
    /*
    .blog-article-card {
        height: 380px;
    }
    
    .blog-article-image {
        height: 200px;
    }
    
    .blog-article-content {
        padding: 1.5rem;
        height: calc(100% - 200px);
    }
    
    .blog-article-title {
        font-size: 1.2rem;
    }
    
    .media-nav-prev {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .media-nav-prev {
        left: -22.5px;
    }
    */
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .section-padding {
        padding: var(--mobile-padding);
    }
    
    /* تم إصلاح تصميم أزرار تغيير اللغة في الهاتف المحمول */
    .lang-switcher {
        padding: 2px;
        border-radius: 20px;
        background: rgba(47, 90, 142, 0.06);
        box-shadow: 0 1px 6px rgba(47, 90, 142, 0.08);
    }
    
    .lang-btn {
        padding: 6px 10px;
        min-height: 32px;
        min-width: 35px;
        font-size: 0.8rem;
        border-radius: 18px;
        font-weight: 600;
    }
    
    .lang-btn.active {
        box-shadow: 0 2px 8px rgba(244, 198, 58, 0.3);
        transform: none;
    }
    
    .lang-btn:hover:not(.active) {
        transform: scale(1.02);
        box-shadow: 0 2px 6px rgba(47, 90, 142, 0.15);
    }
    
    /* Mobile Navigation */
    .mobile-toggle {
        display: flex !important;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-actions {
        order: 3;
    }
        /* على الجوال: إخفاء زر اطلب عرض سعر وزر الثيم ومبدّل اللغة من الشريط (تظهر داخل القائمة فقط) */
    .nav-actions .nav-cta-btn,
    .nav-actions .theme-toggle,
    .nav-actions .lang-switcher {
        display: none !important;
    }
    
    /* إظهار اطلب عرض سعر + ثيم + تغيير اللغة داخل القائمة الجانبية — ترتيب وتنسيق واضح */
    .nav-menu-mobile-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.5rem 0 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(47, 90, 142, 0.12);
        align-items: center;
    }
    /* زر "اطلب عرض سعر" بعرض كامل في الصف الأول */
    .nav-menu-mobile-actions .nav-cta-btn {
        display: inline-flex !important;
        justify-content: center;
        grid-column: 1 / -1;
    }
    /* زر الثيم في الصف الثاني — عمود أول */
    .nav-menu-mobile-actions .theme-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        justify-self: center;
    }
    /* مبدّل اللغة في الصف الثاني — عمود ثاني */
    .nav-menu-mobile-actions .lang-switcher {
        display: flex !important;
        justify-content: center;
        gap: 0.5rem;
        justify-self: center;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 7rem 2rem 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid rgba(47, 90, 142, 0.15);
        box-shadow: -20px 0 40px rgba(47, 90, 142, 0.1);
    }
    
    [dir="ltr"] .nav-menu {
        left: -100%;
        right: auto;
        border-right: 1px solid rgba(47, 90, 142, 0.15);
        border-left: none;
        box-shadow: 20px 0 40px rgba(47, 90, 142, 0.1);
    }
    
    .nav-menu.open {
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px) saturate(200%);
        -webkit-backdrop-filter: blur(30px) saturate(200%);
        box-shadow: -25px 0 50px rgba(47, 90, 142, 0.15);
        border-left: 1px solid rgba(47, 90, 142, 0.2);
    }
    
    .nav-menu.open::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(47, 90, 142, 0.05) 50%,
            rgba(244, 198, 58, 0.03) 100%
        );
        pointer-events: none;
        z-index: -1;
    }
    
    [dir="ltr"] .nav-menu.open {
        left: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px) saturate(200%);
        -webkit-backdrop-filter: blur(30px) saturate(200%);
        box-shadow: 25px 0 50px rgba(47, 90, 142, 0.15);
        border-right: 1px solid rgba(47, 90, 142, 0.2);
    }
    
    [dir="ltr"] .nav-menu.open::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(47, 90, 142, 0.05) 50%,
            rgba(244, 198, 58, 0.03) 100%
        );
        pointer-events: none;
        z-index: -1;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 2rem;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(47, 90, 142, 0.1);
        transform: translateX(30px);
        opacity: 0;
        animation: slideInMobile 0.6s ease forwards;
        position: relative;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-item:hover::before {
        opacity: 1;
    }
    
    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-item:nth-child(5) { animation-delay: 0.5s; }
    .nav-item:nth-child(6) { animation-delay: 0.6s; }
    .nav-item:nth-child(7) { animation-delay: 0.7s; }
    .nav-item:nth-child(8) { animation-delay: 0.8s; }
    
    @keyframes slideInMobile {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .nav-link {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.1rem;
        width: 100%;
        font-weight: 600;
        position: relative;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link:hover {
        background: rgba(47, 90, 142, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(47, 90, 142, 0.1);
    }
    
    .nav-link::after {
        bottom: 0.5rem;
        right: 0;
        transform: none;
    }
    
    [dir="ltr"] .nav-link::after {
        left: 0;
        transform: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(47, 90, 142, 0.08);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin: 0.5rem 0 0 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 12px;
        border: 1px solid rgba(47, 90, 142, 0.15);
        display: none;
        overflow: hidden;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
        animation: expandMobile 0.3s ease;
    }
    
    @keyframes expandMobile {
        from {
            opacity: 0;
            transform: scaleY(0);
        }
        to {
            opacity: 1;
            transform: scaleY(1);
        }
    }
    
    .dropdown-link {
        margin: 0;
        border-radius: 0;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown-link:hover {
        transform: translateX(3px);
        background: rgba(244, 198, 58, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 2px 10px rgba(244, 198, 58, 0.1);
    }
    
    .lang-switcher {
        margin-top: auto;
        justify-content: center;
        padding: 1rem 0;
        transform: translateY(30px);
        opacity: 0;
        animation: slideInMobile 0.6s ease 0.9s forwards;
    }
    
    /* Hero */
    .hero {
        aspect-ratio: 16 / 10;
    }
    
    /* Sections */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .about-cta {
        margin-top: 1.25rem;
    }
    
    .cta-container {
        max-width: 100%;
    }
    
    .cta-split-card {
        padding: 1rem;
        gap: 0.5rem;
        border-radius: 20px;
    }
    
    .cta-side {
        padding: 0.75rem;
        gap: 0.5rem;
        min-height: 60px;
        border-radius: 15px;
    }
    
    .cta-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .cta-icon {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 0.9rem;
    }
    
    .cta-subtitle {
        font-size: 0.7rem;
    }
    
    .cta-arrow {
        font-size: 0.8rem;
    }
    
    .divider-dot {
        width: 6px;
        height: 6px;
    }
    
    /* تم تحسين company-stats ليكون بشكل عمودي في الهاتف المحمول */
    .company-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .stat-item-small {
        padding: 0.75rem;
        min-height: auto;
    }
    
    .stat-item-small .stat-number {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-item-small .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .feature-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .company-logo-main {
        max-width: 200px;
    }
    
    /* Companies Showcase - Mobile */
    /* تم تحسين عرض الكاردات بشكل عمودي في الهاتف المحمول */
    .companies-logos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .company-logo-card {
        padding: 1.5rem;
    }
    
    /* تم تكبير الشعار قليلاً في الهاتف المحمول */
    .logo-wrapper {
        height: 100px;
        border-radius: 8px;
    }
    
    .details-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .details-image {
        order: -1;
    }
    
    .company-details-panel {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .company-name {
        font-size: 1.375rem;
    }
    
    .company-description {
        font-size: 0.95rem;
    }
    
    .company-detail-image {
        height: 160px;
    }
    
    .learn-more-btn {
        align-self: center;
        padding: 0.75rem 1.25rem;
    }
    
    
    .company-logo {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .company-logo img {
        max-height: 60px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-tagline {
        font-size: 0.9rem;
    }
    
    .more-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .company-profile-overlay {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .contact-item {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Projects Gallery - Mobile */
    .project-gallery-card {
        height: 320px;
        width: 260px;
    }
    
    .project-gallery-overlay {
        padding: 1.5rem;
    }
    
    .project-gallery-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .project-gallery-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .project-gallery-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .projects-nav-next,
    .projects-nav-prev {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-top: -22.5px;
    }
    
    .projects-nav-next {
        right: -22.5px;
    }
    
    .projects-nav-prev {
        left: -22.5px;
    }
    
    
    .project-grid-card {
        border-radius: 12px;
    }
    
    .project-grid-overlay {
        padding: 1.25rem;
    }
    
    .project-grid-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .project-grid-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .project-grid-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .projects-view-all-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .section-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-title-row .section-title {
        margin-bottom: 0.5rem;
    }
    
    /* Media Blog - Mobile - COMMENTED OUT */
    /*
    .blog-article-card {
        height: 360px;
    }
    
    .blog-article-image {
        height: 180px;
    }
    
    .blog-article-content {
        padding: 1.25rem;
        height: calc(100% - 180px);
    }
    
    .blog-article-category {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-article-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-article-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .blog-article-meta {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .media-nav-prev {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-top: -20px;
    }
    
    .media-nav-prev {
        left: -20px;
    }
    */
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    /* Statistics - Mobile */
    .stats-header {
        margin-bottom: 3rem;
    }
    
    .stats-subtitle {
        font-size: 1rem;
        margin-top: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    
    .stat-label {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
    
    .stats-footer {
        margin-top: 2rem;
    }
    
    .stats-note {
        font-size: 0.8rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    /* Swiper */
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none !important;
    }
    
    .hero {
        aspect-ratio: auto;
        height: 200px;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* ===== TAJWAL FONT FOR BOARD OF DIRECTORS ===== */
/* Apply Tajawal font specifically to Board of Directors dropdown */
.nav-item.dropdown .nav-link {
    font-family: 'Tajawal', 'Arial', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

/* Ensure dropdown menu items also use Tajawal */
.nav-item.dropdown .dropdown-menu .dropdown-link {
    font-family: 'Tajawal', 'Arial', sans-serif !important;
    font-weight: 500;
}

/* ===== PROFESSIONAL FOOTER REDESIGN ===== */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 30vh;
}

/* Animated Background Elements */
/* ===== أشكال متحركة خلفية لجميع الصفحات ===== */
.page-bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.page-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-gold), rgba(244, 198, 58, 0.25));
    animation: float 6s ease-in-out infinite;
    opacity: 0.08;
    transition: background 0.4s ease, opacity 0.4s ease;
}

.page-shape-1 {
    width: 280px;
    height: 280px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.page-shape-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 8%;
    animation-delay: 2s;
}

.page-shape-3 {
    width: 140px;
    height: 140px;
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.page-shape-4 {
    width: 220px;
    height: 220px;
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.page-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 15px 25px, var(--accent-gold), transparent),
        radial-gradient(2px 2px at 60px 60px, rgba(244, 198, 58, 0.4), transparent),
        radial-gradient(1px 1px at 100px 20px, var(--accent-gold), transparent),
        radial-gradient(1px 1px at 180px 100px, rgba(244, 198, 58, 0.25), transparent),
        radial-gradient(1px 1px at 250px 50px, var(--accent-gold), transparent);
    background-repeat: repeat;
    background-size: 300px 250px;
    animation: sparkle 8s linear infinite;
    opacity: 0.2;
    transition: opacity 0.4s ease;
}

.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-gold), rgba(244, 198, 58, 0.3));
    animation: float 6s ease-in-out infinite;
    opacity: 0.12;
    transition: background 0.4s ease, opacity 0.4s ease;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--accent-gold), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(244, 198, 58, 0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-gold), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(244, 198, 58, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: sparkle 8s linear infinite;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

/* CTA Strip */
.footer-cta-strip {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.25), rgba(244, 198, 58, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}
.footer-cta-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}
.footer-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.footer-cta-quote {
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid transparent;
}
.footer-cta-quote:hover {
    color: var(--white);
    background: #254a7a;
}
.footer-cta-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid transparent;
}
.footer-cta-whatsapp:hover {
    color: var(--white);
    background: #1da851;
}

/* Main Footer Content */
.footer-main {
    position: relative;
    z-index: 2;
    padding: 3rem 0 3.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 20px var(--accent-gold);
}

.footer-section {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-section::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.5s ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.1);
}

/* Footer About Column */
.footer-about .footer-logo-container {
    text-align: left;
    margin-bottom: 1rem;
}
.footer-logo-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}
.footer-logo-link:hover {
    opacity: 0.9;
}
.footer-company-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 0.35rem 0;
    letter-spacing: -0.02em;
}
.footer-tagline {
    font-size: 0.95rem;
    color: var(--accent-gold);
    margin: 0 0 1rem 0;
    font-weight: 500;
    line-height: 1.4;
}
.footer-about .footer-description {
    text-align: left;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

/* Company Section (legacy) */
.company-section {
    grid-column: span 1;
}

.footer-logo-container {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.footer-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.company-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.company-tagline {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: center;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 100px;
    flex: 1;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--white);
    text-align: center;
}

/* Navigation Section */
.navigation-section {
    background: rgba(47, 90, 142, 0.1);
    border-color: rgba(47, 90, 142, 0.2);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-title i {
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
    border-radius: 2px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-link::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.3s ease;
}

.footer-link:hover::before {
    left: 100%;
}

.footer-link:hover {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.9rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.footer-link:hover i {
    color: var(--accent-gold);
}

/* Footer Services List */
.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-services-list li {
    margin-bottom: 0.5rem;
}
.footer-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    border-radius: 8px;
    transition: color 0.2s ease, transform 0.2s ease, padding-right 0.2s ease;
}
.footer-service-link:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}
[dir="ltr"] .footer-service-link:hover {
    transform: translateX(-4px);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}
.footer-contact-item i {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-top: 0.15rem;
}
.footer-contact-link,
.footer-contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer-contact-link {
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-contact-link:hover {
    color: var(--accent-gold);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 2rem 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Footer Social */
.footer-social-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2rem;
}
.footer-social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 1rem 0;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.15rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: var(--white);
}
.footer-social-link.facebook { background: #1877f2; }
.footer-social-link.twitter { background: #1da1f2; }
.footer-social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social-link.linkedin { background: #0a66c2; }
.footer-social-link.youtube { background: #ff0000; }
.footer-social-link.whatsapp { background: #25D366; }

/* Footer Map */
.footer-map-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}
.footer-map-title i {
    color: var(--primary-blue);
}
.footer-map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}
.footer-map-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(244, 198, 58, 0.4);
    z-index: 5;
    backdrop-filter: blur(6px);
}
.footer-map-info h4 {
    color: var(--accent-gold);
    margin: 0 0 0.35rem 0;
    font-size: 0.95rem;
}
.footer-map-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}
.footer-map-container iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
    filter: grayscale(15%) contrast(1.05);
}

/* Footer Bottom */
.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}
.footer-copyright {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.footer-legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}
.footer-legal-link:hover {
    color: var(--accent-gold);
}
.footer-legal-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-details {
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.7rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Social Section */
.social-section {
    background: rgba(47, 90, 142, 0.1);
    border-color: rgba(47, 90, 142, 0.2);
}

.social-media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.social-link i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-link span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.newsletter-title {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    position: relative;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.8rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue));
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    transform: scale(1.05);
}

/* Map Section */
.footer-map-section {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.map-title i {
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--accent-gold);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.map-info h4 {
    color: var(--accent-gold);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.map-info p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.copyright-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--accent-gold);
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.badge i {
    font-size: 0.9rem;
}

/* Back to Top Button */
/* Floating Contact: WhatsApp + Call */
.floating-contact {
    position: fixed;
    bottom: 5.5rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: var(--white);
}
.floating-whatsapp {
    background: #25D366;
}
.floating-call {
    background: var(--primary-blue);
}
[dir="ltr"] .floating-contact {
    right: auto;
    left: 1.25rem;
}
@media (max-width: 768px) {
    .floating-contact {
        bottom: 4.5rem;
        right: 1rem;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
    [dir="ltr"] .floating-contact {
        left: 1rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes sparkle {
    0% { transform: translateX(0); }
    100% { transform: translateX(200px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .company-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        min-height: auto;
    }
    
    .footer-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-cta-text {
        font-size: 1rem;
    }
    
    .footer-cta-btns {
        justify-content: center;
    }
    
    .footer-main {
        padding: 2.5rem 0 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-about .footer-logo-container {
        text-align: center;
    }
    
    .footer-about .footer-description {
        text-align: center;
    }
    
    .footer-section {
        padding: 1.5rem 0;
    }
    
    .footer-links-col,
    .footer-services-col,
    .footer-contact-col {
        text-align: center;
    }
    
    .footer-links-col .footer-links,
    .footer-services-list {
        display: inline-block;
        text-align: right;
    }
    [dir="ltr"] .footer-links-col .footer-links,
    [dir="ltr"] .footer-services-list {
        text-align: left;
    }
    
    .footer-contact-list {
        display: inline-block;
        text-align: right;
    }
    [dir="ltr"] .footer-contact-list {
        text-align: left;
    }
    
    .trust-indicators {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .footer-divider {
        margin: 1.5rem 0 1rem;
    }
    
    .footer-social-wrap {
        margin-bottom: 1.5rem;
    }
    
    .footer-map-section {
        padding: 2rem 0;
    }
    
    .footer-map-container iframe {
        height: 260px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-left {
        order: 1;
    }
    
    .back-to-top {
        order: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .back-to-top.visible {
        transform: translateX(-50%) translateY(0);
    }
    
    .company-section {
        grid-column: span 1;
    }
}

/* ===== ARTICLE CARD STYLES - DELETED ===== */


/* ===== MISSION VISION VALUES ENHANCED STYLES ===== */

/* Section Header */
.mission-vision-section .section-header {
    margin-bottom: 4rem;
}

.mission-vision-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
}

.mission-vision-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(244, 198, 58, 0.3);
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Mission Cards */
.mission-card {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Card Background */
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000"/><circle cx="75" cy="75" r="1" fill="%23000"/><circle cx="50" cy="10" r="0.5" fill="%23000"/><circle cx="10" cy="60" r="0.5" fill="%23000"/><circle cx="90" cy="40" r="0.5" fill="%23000"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(47, 90, 142, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 198, 58, 0.1) 0%, transparent 50%);
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

/* Icon Wrapper */
.card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(47, 90, 142, 0.3);
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.1); opacity: 0.4; }
}

/* Card Header */
.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Description */
.card-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Card Highlight */
.card-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.1), rgba(244, 198, 58, 0.1));
    border-radius: var(--border-radius);
    border: 1px solid rgba(47, 90, 142, 0.2);
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.card-highlight i {
    color: var(--accent-gold);
}

/* Special Card Styles */
.mission-card-main {
    transform: scale(1.05);
    border: 2px solid var(--accent-gold);
}

.mission-card-main .card-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue));
}

.vision-card .card-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.values-card .card-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

/* Values Breakdown */
.values-breakdown {
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.05), rgba(244, 198, 58, 0.05));
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid rgba(47, 90, 142, 0.1);
}

.breakdown-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
}

.breakdown-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(47, 90, 142, 0.3);
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .mission-card-main {
        transform: none;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .values-breakdown {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-divider {
        gap: 0.5rem;
    }
    
    .divider-line {
        width: 40px;
    }
    
    .divider-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mission-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    .values-breakdown {
        padding: 1.5rem;
    }
    
    .value-item {
        padding: 1rem;
    }
}

/* ===== NEW ABOUT SECTION STYLES ===== */

/* About Section - Clean & Professional Design */
.about-section {
    background: var(--white);
    padding: 100px 0;
}

/* Company Introduction */
.about-intro-section {
    margin-bottom: 80px;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.intro-logo {
    text-align: center;
}

.company-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(47, 90, 142, 0.15));
}

/* Core Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(47, 90, 142, 0.08);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(47, 90, 142, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(47, 90, 142, 0.25);
}

.value-card .value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.value-card .value-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(47, 90, 142, 0.3);
}

.btn-primary:hover {
    background: #254a7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 90, 142, 0.4);
}

.btn-secondary {
    background: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(244, 198, 58, 0.3);
}

.btn-secondary:hover {
    background: #e6b835;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 198, 58, 0.4);
}

/* Statistics Section - Simple Design */
.stats-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

.stats-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-simple {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-simple:hover {
    border-color: var(--primary-blue);
}

.stat-simple-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-simple-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-simple-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-simple-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.4;
}

/* Mission & Vision Section - Simple Design */
.mission-vision-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

.mission-vision-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-mission-simple {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.vision-mission-simple:hover {
    border-color: var(--primary-blue);
}

.simple-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.simple-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.simple-title-section {
    flex: 1;
}

.simple-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 5px 0;
}

.simple-subtitle {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin: 0;
}

.simple-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for New About Section */
@media (max-width: 1200px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mission-vision-simple {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-mission-simple {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .intro-content {
        gap: 30px;
    }
    
    .intro-text .section-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .values-section {
        margin-bottom: 60px;
    }
    
    .values-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 60px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-header .section-title {
        font-size: 2rem;
    }
    
    .stats-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-simple {
        padding: 25px 15px;
    }
    
    .stat-simple-header {
        gap: 12px;
    }
    
    .stat-simple-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .stat-simple-number {
        font-size: 1.8rem;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .mission-vision-simple {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vision-mission-simple {
        padding: 20px;
    }
    
    .simple-header {
        gap: 15px;
    }
    
    .simple-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .simple-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .stats-simple {
        grid-template-columns: 1fr;
    }
    
    .stat-simple {
        padding: 20px 15px;
    }
    
    .stat-simple-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-simple-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .stat-simple-number {
        font-size: 1.6rem;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .vision-mission-simple {
        padding: 15px;
    }
    
    .simple-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .simple-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .simple-title {
        font-size: 1.2rem;
    }
}

/* ===== COMPANIES PAGE STYLES ===== */

/* Companies Grid Layout */
.companies-page-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Company Card Design */
.company-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(47, 90, 142, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(47, 90, 142, 0.15);
    border-color: var(--primary-blue);
}

/* Company Logo Container */
.company-logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.company-logo {
    width: 280px;
    height: 140px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--white);
    padding: 20px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.company-card:hover .company-logo {
    transform: scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(47, 90, 142, 0.2);
}

/* Company Info */
.company-info {
    margin-bottom: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.company-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Company Actions */
.company-actions {
    margin-top: auto;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    border: none;
    cursor: pointer;
}

.learn-more-btn:hover {
    background: #254a7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 90, 142, 0.3);
}

/* Responsive Design for Companies */
@media (max-width: 1200px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .company-card {
        padding: 35px 25px;
    }
    
    .company-logo {
        width: 240px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .companies-page-section {
        padding: 60px 0;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .company-card {
        padding: 30px 20px;
    }
    
    .company-logo {
        width: 210px;
        height: 105px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .company-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .company-card {
        padding: 25px 15px;
    }
    
    .company-logo {
        width: 190px;
        height: 95px;
        padding: 15px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .learn-more-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ===== COMPANY DETAIL PAGE STYLES ===== */

/* Company About Section */
.company-about-section {
    padding: 80px 0;
    background: var(--white);
}

/* Portfolio Section */
.company-portfolio-section {
    background: var(--light-gray);
    padding: 80px 0;
}

/* Project Showcase */
.project-showcase {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(47, 90, 142, 0.08);
    border: 1px solid var(--border-light);
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
}

.project-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.project-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.media-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(47, 90, 142, 0.1);
    transition: var(--transition);
}

.media-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 90, 142, 0.15);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.project-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: var(--light-gray);
}

/* Services Section */
.company-services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(47, 90, 142, 0.08);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(47, 90, 142, 0.15);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(47, 90, 142, 0.25);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Social Media & Contact Section */
.social-contact-section {
    background: var(--light-gray);
    padding: 80px 0;
}

/* Contact Layout - Two Rows */
.contact-methods-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.social-media-row,
.contact-methods-row {
    margin-bottom: 0;
}

.row-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.row-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* Social Media Icons */
.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-icon-wrapper {
    position: relative;
    display: inline-block;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(47, 90, 142, 0.1);
    border: 2px solid var(--border-light);
}

.social-icon i {
    font-size: 1.5rem;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 90, 142, 0.2);
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
    color: var(--white);
    border-color: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border-color: #dc2743;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    color: var(--white);
    border-color: #0077b5;
}

.social-icon.youtube:hover {
    background: #ff0000;
    color: var(--white);
    border-color: #ff0000;
}

/* Tooltips */
.social-tooltip,
.contact-tooltip {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(47, 90, 142, 0.3);
}

.social-tooltip::before,
.contact-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--primary-blue);
}

.contact-tooltip {
    bottom: -60px;
    min-width: 120px;
    text-align: center;
}

.tooltip-title {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}

.tooltip-detail {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.social-icon-wrapper:hover .social-tooltip,
.contact-icon-wrapper:hover .contact-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Contact Icons */
.contact-icons-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-icon-wrapper {
    position: relative;
    display: inline-block;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(47, 90, 142, 0.1);
    border: 2px solid var(--border-light);
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 90, 142, 0.2);
}

.contact-icon.phone:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.contact-icon.whatsapp:hover {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.contact-icon.email:hover {
    background: #ea4335;
    color: var(--white);
    border-color: #ea4335;
}

.contact-icon.map:hover {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.contact-icon.directions:hover {
    background: #6c757d;
    color: var(--white);
    border-color: #6c757d;
}

/* Google Maps Section */
.google-maps-section {
    margin-top: 80px;
}

.map-container {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(47, 90, 142, 0.1);
    border: 1px solid var(--border-light);
}

.map-info {
    text-align: center;
    margin-bottom: 25px;
}

.map-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.map-info p {
    color: var(--text-gray);
    font-size: 1rem;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(47, 90, 142, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 300px;
}

/* Directions Button - Same style as CTA buttons */
.cta-directions {
    background: linear-gradient(135deg, rgba(47, 90, 142, 0.1), rgba(30, 58, 95, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(47, 90, 142, 0.2);
    color: var(--primary-blue);
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-directions::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;
}

.cta-directions:hover {
    background: linear-gradient(135deg, var(--primary-blue), #0f172a);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 90, 142, 0.3);
    border-color: var(--primary-blue);
}

.cta-directions:hover::before {
    left: 100%;
}

.cta-directions .cta-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #e6b835);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.cta-directions .cta-icon {
    font-size: 1.2rem;
    color: var(--white);
    z-index: 2;
}

.cta-directions .cta-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cta-directions .cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.cta-directions .cta-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
}

.cta-directions .cta-arrow {
    margin-right: 15px;
    flex-shrink: 0;
}

.cta-directions .cta-arrow i {
    font-size: 1rem;
    transition: var(--transition);
}

.cta-directions:hover .cta-arrow i {
    transform: translateX(-3px);
}

/* Responsive Design for Company Detail */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .company-about-section {
        padding: 60px 0;
    }
    
    .company-portfolio-section {
        padding: 60px 0;
    }
    
    .project-showcase {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-description {
        font-size: 1rem;
    }
    
    .project-media {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-image,
    .project-video {
        height: 200px;
    }
    
    .company-services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-contact-section {
        padding: 60px 0;
    }
    
    .contact-methods-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-icons-container,
    .contact-icons-container {
        gap: 30px;
    }
    
    .google-maps-section {
        margin-top: 60px;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .cta-directions {
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .cta-directions .cta-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-left: 10px;
    }
    
    .cta-directions .cta-icon {
        font-size: 1rem;
    }
    
    .cta-directions .cta-title {
        font-size: 1rem;
    }
    
    .cta-directions .cta-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .project-showcase {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
    
    .project-image,
    .project-video {
        height: 180px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-icons-container,
    .contact-icons-container {
        gap: 20px;
    }
    
    .social-icon,
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon i,
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .map-container {
        padding: 15px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .cta-directions {
        padding: 12px 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cta-directions .cta-icon-wrapper {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
    
    .cta-directions .cta-content {
        order: 2;
    }
    
    .cta-directions .cta-arrow {
        order: 3;
        margin: 0 auto;
    }
}

/* ===== RTL/LTR SUPPORT ===== */
/* RTL (Arabic) Styles */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-list {
    flex-direction: row;
    /* justify-content: flex-end; */
}

[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-switcher {
    flex-direction: row-reverse;
}

[dir="rtl"] .dropdown-menu {
    right: 0;
    left: auto;
}

[dir="rtl"] .dropdown-icon {
    transform: rotate(180deg);
}

[dir="rtl"] .mobile-toggle {
    order: -1;
}

/* LTR (English) Styles */
[dir="ltr"] {
    text-align: left;
}

[dir="ltr"] .nav-list {
    flex-direction: row;
}

[dir="ltr"] .nav-actions {
    flex-direction: row;
}

/* Override for mobile screens */
@media (max-width: 768px) {
    [dir="ltr"] .nav-list {
        flex-direction: column;
    }
    
    [dir="rtl"] .nav-list {
        flex-direction: column;
    }
    
    [dir="ltr"] .nav-actions {
        flex-direction: row;
    }
    
    [dir="rtl"] .nav-actions {
        flex-direction: row-reverse;
    }
}

[dir="ltr"] .lang-switcher {
    flex-direction: row;
}

[dir="ltr"] .dropdown-menu {
    left: 0;
    right: auto;
}

[dir="ltr"] .dropdown-icon {
    transform: rotate(0deg);
}

[dir="ltr"] .mobile-toggle {
    order: 1;
}

/* Language-specific font adjustments - Safe approach */
[dir="rtl"] body {
    font-family: var(--font-arabic);
}

[dir="ltr"] body {
    font-family: var(--font-english);
}

/* Text elements only - preserve icons and other elements */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] p, [dir="rtl"] span, [dir="rtl"] div:not(.achievement-number), [dir="rtl"] a, [dir="rtl"] button,
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] label, [dir="rtl"] li,
[dir="rtl"] .nav-link, [dir="rtl"] .dropdown-link, [dir="rtl"] .breadcrumb,
[dir="rtl"] .card-title, [dir="rtl"] .card-text, [dir="rtl"] .btn-text {
    font-family: var(--font-arabic);
}

[dir="ltr"] h1, [dir="ltr"] h2, [dir="ltr"] h3, [dir="ltr"] h4, [dir="ltr"] h5, [dir="ltr"] h6,
[dir="ltr"] p, [dir="ltr"] span, [dir="ltr"] div:not(.achievement-number), [dir="ltr"] a, [dir="ltr"] button,
[dir="ltr"] input, [dir="ltr"] textarea, [dir="ltr"] label, [dir="ltr"] li,
[dir="ltr"] .nav-link, [dir="ltr"] .dropdown-link, [dir="ltr"] .breadcrumb,
[dir="ltr"] .card-title, [dir="ltr"] .card-text, [dir="ltr"] .btn-text {
    font-family: var(--font-english);
}

/* Specific font assignments for English */
[dir="ltr"] h1, [dir="ltr"] h2, [dir="ltr"] h3, [dir="ltr"] h4, [dir="ltr"] h5, [dir="ltr"] h6 {
    font-family: 'Roboto', Arial, sans-serif;
}

[dir="ltr"] p, [dir="ltr"] span, [dir="ltr"] div:not(.achievement-number), [dir="ltr"] a, [dir="ltr"] button,
[dir="ltr"] input, [dir="ltr"] textarea, [dir="ltr"] label, [dir="ltr"] li {
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Preserve icon fonts */
[dir="rtl"] .fas, [dir="rtl"] .far, [dir="rtl"] .fab, [dir="rtl"] .fa,
[dir="ltr"] .fas, [dir="ltr"] .far, [dir="ltr"] .fab, [dir="ltr"] .fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Preserve other icon fonts and special elements */
[dir="rtl"] .swiper-button-next, [dir="rtl"] .swiper-button-prev,
[dir="ltr"] .swiper-button-next, [dir="ltr"] .swiper-button-prev {
    font-family: "swiper-icons" !important;
}

/* Responsive adjustments for RTL/LTR */
@media (max-width: 768px) {
    [dir="rtl"] .nav-container {
        flex-direction: row-reverse;
    }
    
    [dir="ltr"] .nav-container {
        flex-direction: row;
    }
    
    [dir="rtl"] .nav-logo {
        order: 2;
    }
    
    [dir="ltr"] .nav-logo {
        order: 1;
    }
    
    [dir="rtl"] .nav-menu {
        order: 1;
    }
    
    [dir="ltr"] .nav-menu {
        order: 2;
    }
    
    [dir="rtl"] .nav-actions {
        order: 3;
    }
    
    [dir="ltr"] .nav-actions {
        order: 3;
    }
}


