/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: 'Cairo', 'Amiri', 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #003580;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    color: #003580;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 10px;
}

h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
}

h5 {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
}

/* Buttons */
.btn-read-more {
    background: none;
    border: 2px solid #003580;
    color: #003580;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: 'Cairo', 'Amiri', 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-read-more:hover {
    background: #003580;
    color: #FFFFFF;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(-4px);
}

.btn-view-more {
    background: none;
    border: none;
    color: #003580;
    font-family: 'Cairo', 'Amiri', 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    color: #0048A8;
}

.login-btn {
    padding: 10px 20px;
    background: #003580;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-family: 'Cairo', 'Amiri', 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #0048A8;
}

/* Header */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    height: 100%;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    height: 48px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 2px 6px rgba(0, 53, 128, 0.2));
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #003580;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333333;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-icon {
    font-size: 24px;
    color: #333333;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #003580 0%, #0048A8 100%);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img:hover {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.05);
}

.slide img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 53, 128, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.slide img:hover::after {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.slide img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.slide-overlay {
    display: none;
}

.slide-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #FFFFFF;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    animation: slideInLeft 1s ease-out;
}

.slide-content h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #FFFFFF, #F0F8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out;
}

.slide-content p {
    color: #FFFFFF;
    font-size: 20px;
    max-width: 450px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 1.4s ease-out;
}

.slide-content .btn-read-more {
    background: rgba(255, 255, 255, 0.95);
    color: #003580;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.6s ease-out;
    backdrop-filter: blur(10px);
}

.slide-content .btn-read-more:hover {
    background: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 53, 128, 0.3);
    border-color: #FFFFFF;
}

.slide-content .btn-read-more i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.slide-content .btn-read-more:hover i {
    transform: translateX(5px);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
    padding: 10px 0;
    position: relative;
    top: -50px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 53, 128, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 53, 128, 0.5);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #003580;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.indicator.active {
    background: #003580;
    border-color: #003580;
    box-shadow: 0 0 15px rgba(0, 53, 128, 0.4);
    transform: scale(1.3);
}

.indicator.active::before {
    width: 100%;
    height: 100%;
}

.indicator:hover {
    background: rgba(0, 53, 128, 0.7);
    transform: scale(1.2);
    border-color: #003580;
}



/* Services Section */
.services-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    font-size: 16px;
    color: #666666;
    margin-top: 10px;
}

.offers-subtitle {
    font-size: 14px !important;
    color: #999999 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    background: #003580;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 53, 128, 0.15);
}

.service-card:hover .service-image {
    opacity: 0.7;
}

.service-card:hover h3 {
    color: #FFFFFF;
}

.service-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.service-card h3 {
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

/* Service Card Links */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover .service-card {
    background: #003580;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 53, 128, 0.15);
}

.service-card-link:hover .service-image {
    opacity: 0.7;
}

.service-card-link:hover h3 {
    color: #FFFFFF;
}

/* Why CFC Section */
.why-cfc-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.why-cfc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-cfc-text h2 {
    margin-bottom: 25px;
}

.why-cfc-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.why-cfc-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-content {
    padding: 20px;
    text-align: center;
}

.offer-content h3 {
    margin-bottom: 15px;
    color: #003580;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #003580;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    line-height: 1.8;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FFFFFF;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h4 {
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.footer-links ul li a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.footer-social h5,
.footer-contact h5,
.footer-apps h5 {
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.social-links,
.contact-links,
.app-links {
    display: flex;
    gap: 15px;
}

.social-links a,
.contact-links a,
.app-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover,
.contact-links a:hover,
.app-links a:hover {
    transform: scale(1.1);
}

.social-links img,
.contact-links img,
.app-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-links a:hover img,
.contact-links a:hover img,
.app-links a:hover img {
    filter: brightness(1.2);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    margin-top: 30px;
}

.footer-copyright p {
    color: #CCCCCC;
    margin: 0;
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .slide img {
        object-fit: contain;
        object-position: center center;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .slide-content .btn-read-more {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .slide-counter {
        bottom: 30px;
        right: 20px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .slider-indicators {
        gap: 10px;
        margin: 8px 0;
        padding: 8px 0;
        top: -40px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-image {
        width: 60px;
        height: 60px;
    }
    
    .why-cfc-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .service-card {
        padding: 15px 8px;
    }
    
    .service-image {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .service-card h3 {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Very small mobile screens */
@media (max-width: 360px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .service-card {
        padding: 12px 6px;
    }
    
    .service-image {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 12px;
        line-height: 1.2;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.service-card,
.offer-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    width: 280px;
    height: calc(100vh - 70px);
    background: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
}

.mobile-menu .mobile-actions {
    padding: 20px;
    border-top: 1px solid #E0E0E0;
    margin-top: 20px;
}

.mobile-menu .language-switcher {
    margin-bottom: 15px;
    color: #333333;
}

.mobile-menu .login-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Hover Effects */
.service-card,
.offer-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Focus States for Accessibility */
.nav-menu a:focus,
.btn-read-more:focus,
.btn-view-more:focus,
.login-btn:focus {
    outline: 2px solid #003580;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid #000000;
    }
    
    .offer-card {
        border: 2px solid #000000;
    }
    
    .footer {
        background: #000000;
    }
}

/* Enhanced Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: #FFFFFF;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #E0E0E0;
}

.mobile-menu ul li {
    border-bottom: 1px solid #F5F5F5;
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    display: block;
    padding: 15px 25px;
    color: #333333;
    text-decoration: none;
    font-family: 'Cairo', 'Amiri', 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.mobile-menu ul li a:hover {
    background: #F8F9FA;
    color: #003580;
    padding-right: 30px;
}

.mobile-menu ul li a:active {
    background: #E8F4FD;
    color: #003580;
}

.mobile-actions {
    padding: 20px 25px;
    margin-top: 10px;
}

.mobile-menu .language-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #333333;
    font-family: 'Cairo', 'Amiri', 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu .language-switcher:hover {
    color: #003580;
}

.mobile-menu .language-switcher i {
    font-size: 12px;
    color: #666666;
    transition: transform 0.3s ease;
}

.mobile-menu .login-btn {
    width: 100%;
    padding: 15px;
    background: #003580;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-family: 'Cairo', 'Amiri', 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 53, 128, 0.2);
}

.mobile-menu .login-btn:hover {
    background: #0048A8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}

.mobile-menu .login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 53, 128, 0.2);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu open state animation */
.mobile-menu.active ~ .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu slide animation */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, right 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Close button for mobile menu */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    color: #666666;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333333;
}