/* Modern Comfortable Color Scheme - Easy on the Eyes */

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    /* Primary Colors - Professional Dark Blue */
    --primary-color: #00263d;          /* Dark blue */
    --primary-dark: #001a2e;           /* Darker blue */
    --primary-light: #4a6b7a;          /* Light blue */
    
    /* Secondary Colors - Warm and Inviting */
    --secondary-color: #10b981;        /* Soft emerald */
    --secondary-dark: #059669;         /* Darker emerald */
    --secondary-light: #6ee7b7;        /* Light emerald */
    
    /* Accent Colors - Gentle and Modern */
    --accent-color: #f59e0b;           /* Soft amber */
    --accent-dark: #d97706;            /* Darker amber */
    --accent-light: #fcd34d;           /* Light amber */
    
    /* Neutral Colors - Easy on the Eyes */
    --text-primary: #1f2937;           /* Soft dark gray */
    --text-secondary: #6b7280;         /* Medium gray */
    --text-light: #9ca3af;             /* Light gray */
    
    /* Background Colors - Soft and Clean */
    --bg-primary: #ffffff;             /* Pure white */
    --bg-secondary: #f9fafb;           /* Very light gray */
    --bg-tertiary: #f3f4f6;            /* Light gray */
    --bg-dark: #111827;                /* Soft dark */
    
    /* Border Colors - Subtle */
    --border-color: #e5e7eb;           /* Light gray border */
    --border-dark: #d1d5db;            /* Medium gray border */
    
    /* Success/Error Colors - Gentle */
    --success-color: #10b981;          /* Soft green */
    --error-color: #ef4444;            /* Soft red */
    --warning-color: #f59e0b;          /* Soft orange */
    --info-color: #3b82f6;             /* Soft blue */
    
    /* Shadow Colors - Subtle */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #00263d 0%, #4a6b7a 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

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

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Cairo Optimized */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-family: 'Cairo', sans-serif;
}

h1 {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.025em;
}

h3 {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

h4 {
    font-weight: 600;
    font-size: 1.25rem;
}

h5 {
    font-weight: 500;
    font-size: 1.1rem;
}

h6 {
    font-weight: 500;
    font-size: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Cairo', sans-serif;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 38, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 38, 61, 0.4);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Logo container styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.logo-image {
    max-height: 40px;
    max-width: 150px;
    object-fit: contain;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-login {
    background: var(--gradient-primary);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 38, 61, 0.3);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px var(--shadow-medium);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

/* Country Selector */
.country-selector .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.country-selector .dropdown-menu {
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.country-selector .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.country-selector .dropdown-menu a.active {
    background: var(--primary-color);
    color: white;
}

.country-selector .dropdown-menu a:hover {
    background: var(--bg-secondary);
}

.country-selector .dropdown-menu a.active:hover {
    background: var(--primary-dark);
}

/* Language Switcher */
.language-switcher .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.features-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Swiper Navigation Buttons */
.features-swiper .swiper-button-next,
.features-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: all 0.3s ease;
}

.features-swiper .swiper-button-next:hover,
.features-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.features-swiper .swiper-button-next:after,
.features-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Features Swiper Pagination */
.features-swiper .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.features-swiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.features-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Customers Section */
.customers {
    padding: 80px 0;
    background: white;
    position: relative;
}

.customers-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.customers-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.5s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    width: 100%;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.customer-card:nth-child(even) {
    animation: none;
}

.customer-card:nth-child(3n) {
    animation: none;
}

.customer-card:nth-child(4n) {
    animation: none;
}

.customer-card:nth-child(5n) {
    animation: none;
}

.customer-card:nth-child(6n) {
    animation: none;
}

.customer-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.customer-card.slide-out-left {
    animation: slideOutLeft 0.5s ease forwards;
    pointer-events: none;
}

.customer-card.slide-out-right {
    animation: slideOutRight 0.5s ease forwards;
    pointer-events: none;
}

.customer-card.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

.customer-card.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

/* Force customer logo sizing - ULTRA SPECIFIC */
.customers .customers-grid .customer-card img,
.customers-grid .customer-card img,
.customer-card img {
    width: 100% !important;
    max-width: 200px !important;
    height: 200px !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    margin-bottom: 1rem !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transition: transform 0.3s ease;
}

.customer-card:hover img {
    transform: scale(1.05);
}

.customer-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.customer-card:hover h4 {
    color: var(--primary-color);
}

/* Customer Card Link Styling */
.customer-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.customer-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.customer-card-link:hover .customer-card {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

/* Swiper Navigation Buttons */
.customers-swiper .swiper-button-next,
.customers-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: all 0.3s ease;
}

.customers-swiper .swiper-button-next:hover,
.customers-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.customers-swiper .swiper-button-next:after,
.customers-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.customers-swiper .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.customers-swiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.customers-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Partners Swiper Styling */
.partners-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.partners-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.partners-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
}

.partner-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.5s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    width: 100%;
}

.partner-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

/* Force partner logo sizing */
.partners .partners-swiper .partner-card img,
.partners-swiper .partner-card img,
.partner-card img {
    width: 100% !important;
    max-width: 200px !important;
    height: 200px !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    margin-bottom: 1rem !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transition: transform 0.3s ease;
}

.partner-card:hover img {
    transform: scale(1.05);
}

/* Partner Card Link Styling */
.partner-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.partner-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.partner-card-link:hover .partner-card {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

/* Swiper Navigation Buttons for Partners */
.partners-swiper .swiper-button-next,
.partners-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: all 0.3s ease;
}

.partners-swiper .swiper-button-next:hover,
.partners-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.partners-swiper .swiper-button-next:after,
.partners-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination for Partners */
.partners-swiper .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.partners-swiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.partners-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Customer Slider Arrow Controls */
.customer-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.customer-slider-arrow.show {
    display: flex; /* Show when needed */
}

.customer-slider-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.customer-slider-arrow:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: translateY(-50%);
    box-shadow: none;
}

.customer-slider-arrow.prev {
    left: 20px;
}

.customer-slider-arrow.next {
    right: 20px;
}

/* Mobile Responsive - Show only one customer per slide */
@media (max-width: 768px) {
    .customers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        touch-action: pan-y pinch-zoom;
        user-select: none;
    }
    
    .customer-card {
        min-height: 200px;
        padding: 1rem;
        position: relative;
    }
    
    .customer-card:nth-child(even),
    .customer-card:nth-child(3n),
    .customer-card:nth-child(4n),
    .customer-card:nth-child(5n),
    .customer-card:nth-child(6n) {
        animation: none;
    }
    
    .customer-card img {
        max-width: 150px !important;
        height: 150px !important;
    }
    
    /* Hide arrows on mobile */
    .customer-slider-arrow {
        display: none !important;
    }
    
    /* Partners mobile styles */
    .partner-card {
        min-height: 200px;
        padding: 1rem;
        position: relative;
    }
    
    .partner-card img {
        max-width: 150px !important;
        height: 150px !important;
    }
}

/* Animation Keyframes */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.customer-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.customer-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.customer-slider-dot.active {
    background: var(--primary-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: fill;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Services Swiper Navigation Buttons */
.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: all 0.3s ease;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.services-swiper .swiper-button-next:after,
.services-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Services Swiper Pagination */
.services-swiper .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.services-swiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.services-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Country Selector */
.country-selector {
    text-align: center;
}

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

.country-selector .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.country-selector .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.country-selector .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 38, 61, 0.1);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.g-recaptcha > div {
    transform: scale(0.9);
    transform-origin: center;
}

@media (max-width: 768px) {
    .g-recaptcha > div {
        transform: scale(0.8);
    }
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 38, 61, 0.1);
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0 20px;
}

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

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

/* Footer logo styling */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    height: 40px;
}

.footer-logo {
    max-height: 40px !important;
    max-width: 150px !important;
    object-fit: contain !important;
}

.footer-site-name {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

.app-links img {
    height: 40px;
    border-radius: 6px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

/* Mobile Menu Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
    padding: 10px;
}

/* Prevent body scroll when mobile menu is open */
body.nav-open {
    overflow: hidden;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Footer Mobile Styles */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo-container {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-site-name {
        font-size: 1.3rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .app-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .nav-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 80px 0 0 0;
        box-sizing: border-box;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100% !important;
        text-align: left;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        float: none !important;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(8) { transition-delay: 0.45s; }
    
    .nav-menu a {
        display: block !important;
        align-items: center;
        justify-content: space-between;
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1.2rem 2rem;
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        min-width: auto;
        text-align: left;
        position: relative;
        width: 100% !important;
    }
    
    .nav-menu a:hover {
        background: rgba(59, 130, 246, 0.05);
        color: #3b82f6;
        transform: none;
        box-shadow: none;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: #3b82f6;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-menu a:hover::after {
        transform: scaleY(1);
    }
    
    .nav-menu .dropdown {
        position: static;
        width: 100%;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        background: rgba(248, 250, 252, 0.8);
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        display: none;
        opacity: 1;
        transform: none;
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        max-height: none;
        overflow: visible;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .nav-menu .dropdown-menu li {
        margin: 0;
        opacity: 1;
        transform: none;
        border-bottom: none;
    }
    
    .nav-menu .dropdown-menu a {
        font-size: 1rem;
        padding: 1rem 3rem;
        background: transparent;
        border: none;
        min-width: auto;
        margin: 0;
        color: #666;
    }
    
    .nav-menu .dropdown-menu a:hover {
        background: rgba(59, 130, 246, 0.05);
        color: #3b82f6;
    }
    
    .nav-menu .dropdown-menu a::after {
        width: 2px;
        left: 1rem;
    }
    
    .nav-menu .country-selector {
        margin-top: 0;
        border-top: none;
        background: transparent;
    }
    
    .nav-menu .country-selector .dropdown-menu {
        background: rgba(248, 250, 252, 0.8);
        border: none;
        box-shadow: none;
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
    }
    
    .nav-menu .country-selector.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu .country-selector .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 3rem;
        font-size: 0.9rem;
    }
    
    .nav-menu .country-selector .dropdown-menu a.active {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }
    
    .nav-menu .language-switcher {
        margin-top: 0;
        border-top: none;
        background: transparent;
    }
    
    .nav-menu .language-switcher .dropdown-menu {
        background: rgba(248, 250, 252, 0.8);
        border: none;
        border-radius: 0;
        margin: 0;
        box-shadow: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu .language-switcher .dropdown-menu a {
        color: #666;
        font-weight: 500;
        border-radius: 0;
        margin: 0;
        padding: 1rem 3rem;
        background: transparent;
        border: none;
    }
    
    .nav-menu .language-switcher .dropdown-menu a.active {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }
    
    .nav-menu .language-switcher .dropdown-menu a:hover {
        background: rgba(59, 130, 246, 0.05);
        color: #3b82f6;
    }
    
    .nav-menu .btn-login {
        background: var(--gradient-primary);
        color: white;
        border: none;
        font-weight: 600;
        margin: 1rem 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 38, 61, 0.3);
        text-align: center;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
        width: auto;
        max-width: 200px;
        display: inline-block;
    }
    
    .nav-menu .btn-login:hover {
        background: linear-gradient(135deg, #001a2e, #00263d);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0, 38, 61, 0.4);
    }
    
    .nav-menu .btn-login::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    /* Hamburger Animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #333;
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #333;
    }
    
    /* RTL Support for Mobile */
    [dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
        border-right: none;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    [dir="rtl"] .nav-menu.active {
        right: 0;
    }
    
    [dir="rtl"] .nav-menu li {
        text-align: right;
        transform: translateX(20px);
    }
    
    [dir="rtl"] .nav-menu.active li {
        transform: translateX(0);
    }
    
    [dir="rtl"] .nav-menu a {
        text-align: right;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    
    [dir="rtl"] .nav-menu a::after {
        left: auto;
        right: 0;
    }
    
    [dir="rtl"] .nav-menu .dropdown-menu a {
        padding: 1rem 3rem 1rem 2rem;
    }
    
    [dir="rtl"] .nav-menu .dropdown-menu a::after {
        left: auto;
        right: 1rem;
    }
    
    [dir="rtl"] .nav-menu .language-switcher .dropdown-menu {
        margin: 0.5rem 1rem 0.5rem 0.5rem;
    }
    
    /* Other mobile styles */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Footer Extra Small Mobile */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        padding: 0 0.5rem;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-site-name {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .app-links img {
        height: 35px;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .contact {
        padding: 40px 0;
    }
    
    .contact-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-method {
        padding: 0.6rem;
        gap: 0.6rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Services Mobile Responsive */
    .services-swiper {
        padding: 0 1rem;
    }
    
    .service-card {
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
    }
    
    .service-card .btn-outline {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    .service-image img {
        object-fit: fill !important;
        height: 150px !important;
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        vertical-align: top !important;
    }
    
    .service-image {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
        font-size: 0 !important;
        display: block !important;
        height: 150px !important;
    }
}

/* Features Page Styles */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0 4rem 0;
    margin-top: 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Styles */
.features-timeline {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        #f59e0b 0%, 
        #ef4444 25%, 
        #dc2626 50%, 
        #10b981 75%, 
        #3b82f6 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item.left .timeline-content {
    text-align: right;
    padding-right: 3rem;
}

.timeline-item.right .timeline-content {
    text-align: left;
    padding-left: 3rem;
}

.timeline-content {
    width: 45%;
    position: relative;
}

.timeline-item.left .timeline-content {
    float: left;
}

.timeline-item.right .timeline-content {
    float: right;
}

.timeline-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.timeline-item.left .timeline-card::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-item.right .timeline-card::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Color variations for timeline icons */
.timeline-item:nth-child(1) .timeline-icon {
    background: #f59e0b;
}

.timeline-item:nth-child(2) .timeline-icon {
    background: #ef4444;
}

.timeline-item:nth-child(3) .timeline-icon {
    background: #dc2626;
}

.timeline-item:nth-child(4) .timeline-icon {
    background: #10b981;
}

.timeline-item:nth-child(5) .timeline-icon {
    background: #3b82f6;
}

.timeline-item:nth-child(6) .timeline-icon {
    background: #8b5cf6;
}

.timeline-item:nth-child(7) .timeline-icon {
    background: #ec4899;
}

.timeline-item:nth-child(8) .timeline-icon {
    background: #06b6d4;
}

.timeline-item:nth-child(n+9) .timeline-icon {
    background: var(--primary-color);
}

.timeline-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--border-color);
}

/* Color variations for timeline dots */
.timeline-item:nth-child(1) .timeline-dot {
    background: #f59e0b;
}

.timeline-item:nth-child(2) .timeline-dot {
    background: #ef4444;
}

.timeline-item:nth-child(3) .timeline-dot {
    background: #dc2626;
}

.timeline-item:nth-child(4) .timeline-dot {
    background: #10b981;
}

.timeline-item:nth-child(5) .timeline-dot {
    background: #3b82f6;
}

.timeline-item:nth-child(6) .timeline-dot {
    background: #8b5cf6;
}

.timeline-item:nth-child(7) .timeline-dot {
    background: #ec4899;
}

.timeline-item:nth-child(8) .timeline-dot {
    background: #06b6d4;
}

.timeline-item:nth-child(n+9) .timeline-dot {
    background: var(--primary-color);
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Section Header Actions */
.section-header-actions {
    margin-top: 1.5rem;
}

.section-header-actions .btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-header-actions .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

/* Responsive Design for Features Page */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .features-timeline {
        padding: 3rem 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        width: 100%;
        float: none;
        text-align: left;
        padding-left: 4rem;
        padding-right: 1rem;
    }
    
    .timeline-card {
        padding: 1.5rem;
    }
    
    .timeline-item.left .timeline-card::after,
    .timeline-item.right .timeline-card::after {
        display: none;
    }
    
    .timeline-node {
        left: 30px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-card h3 {
        font-size: 1.2rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-method {
    flex-direction: row-reverse;
}

[dir="rtl"] .pricing-features i {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* RTL Timeline Support */
[dir="rtl"] .timeline-item.left .timeline-content {
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
}

[dir="rtl"] .timeline-item.right .timeline-content {
    text-align: right;
    padding-right: 3rem;
    padding-left: 0;
}

[dir="rtl"] .timeline-item.left .timeline-card::after {
    left: -15px;
    right: auto;
    border-right: 15px solid white;
    border-left: none;
}

[dir="rtl"] .timeline-item.right .timeline-card::after {
    right: -15px;
    left: auto;
    border-left: 15px solid white;
    border-right: none;
}

/* RTL Mobile Menu */
@media (max-width: 768px) {
    [dir="rtl"] .nav-menu {
        transform: translateX(100%);
    }
    
    [dir="rtl"] .nav-menu.active {
        transform: translateX(0);
    }
}

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

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure all containers don't cause horizontal scroll */
.container,
.contact-content,
.hero-container,
.pricing-grid,
.features-swiper,
.customers-swiper,
.services-swiper,
.partners-swiper {
    max-width: 100%;
}

/* Footer specific styling */
.footer {
    box-sizing: border-box;
    width: 100%;
}

.footer-content {
    box-sizing: border-box;
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

/* RTL Support for Scroll to Top */
[dir="rtl"] .scroll-to-top {
    right: auto;
    left: 50px;
}

/* Mobile Responsive Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    [dir="rtl"] .scroll-to-top {
        right: auto;
        left: 30px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    [dir="rtl"] .scroll-to-top {
        right: auto;
        left: 20px;
    }
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.whatsapp-tooltip {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--primary-color);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 55px;
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* RTL Support for WhatsApp Button */
[dir="rtl"] .whatsapp-sticky {
    left: auto;
    right: 50px;
}

[dir="rtl"] .whatsapp-tooltip {
    left: auto;
    right: 50px;
}

[dir="rtl"] .whatsapp-tooltip::after {
    right: auto;
    left: 100%;
    border-right-color: transparent;
    border-left-color: var(--primary-color);
}

[dir="rtl"] .whatsapp-btn:hover .whatsapp-tooltip {
    left: auto;
    right: 55px;
}

/* Mobile Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 50px;
        left: 50px;
    }
    
    .whatsapp-btn {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    [dir="rtl"] .whatsapp-sticky {
        left: auto;
        right: 50px;
    }
}

@media (max-width: 480px) {
    .whatsapp-sticky {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-btn {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
    }
    
    [dir="rtl"] .whatsapp-sticky {
        left: auto;
        right: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-secondary,
    .scroll-to-top,
    .whatsapp-sticky {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
