:root {
    --primary-red: #E31E24;
    --dark-blue: #1a1a1a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

[lang="en"] .lang-ar {
    display: none;
}

[lang="ar"] .lang-en {
    display: none;
}

[lang="en"] {
    direction: ltr;
    text-align: left;
}

.menu-toggle {
    display: none;
}

.main-header {
    background: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-red);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
}

.logo-text h1 {
    font-size: 20px;
    color: var(--primary-red);
    line-height: 1;
    font-weight: 900;
}

.logo-text span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #555;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

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

.lang-btn-nav {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2000') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.red-text {
    color: var(--primary-red);
}

.btn-red {
    background: var(--primary-red);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-bg);
}

.bg-dark {
    background: var(--dark-blue);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.red-line {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto 40px;
}

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

.s-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-top: 5px solid transparent;
}

.s-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary-red);
}

.s-icon {
    font-size: 45px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.contact-item i {
    color: var(--primary-red);
}

.contact-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wa-btn {
    background: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.call-btn {
    background: var(--primary-red);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp {
    background: #25d366;
}

.phone {
    background: var(--primary-red);
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }

    .contact-flex {
        flex-direction: column;
        text-align: center;
    }
    .logo img{
    height: 76px;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.exp-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--red);
    text-align: center;
    z-index: 5;
}

.exp-badge span {
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
}

.v-m-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.v-m-item {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    border-right: 4px solid var(--red);
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.f-item-pro {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.f-item-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.1);
    border-color: var(--red);
}

.stats-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box h3 {
    font-size: 50px;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    color: #555;
    font-weight: bold;
}

.contact-container {
    margin-top: 50px;
}

.contact-card-pro {
    background: #111;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #ccc;
}

.info-item i {
    color: var(--red);
    font-size: 24px;
}

@media (max-width: 992px) {

    .grid-2,
    .features-grid-3,
    .stats-grid,
    .v-m-grid,
    .contact-card-pro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-card-pro {
        padding: 40px 20px;
    }

    .info-item {
        justify-content: center;
    }

    .exp-badge {
        right: 50%;
        transform: translateX(50%);
        top: -30px;
    }
}

.about-img-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.red-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    background: rgba(227, 30, 36, 0.07);
    border-radius: 30px;
    z-index: -1;
}

[lang="en"] .red-bg-shape {
    right: auto;
    left: 0;
}

.main-about-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.v-m-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.v-m-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-top: 3px solid var(--red);
    transition: 0.3s;
}

.v-m-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.1);
}

.v-m-icon {
    width: 45px;
    height: 45px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.v-m-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.v-m-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

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

    .red-bg-shape {
        width: 90%;
        height: 80%;
    }
}

.stat-box h3 {
    font-variant-numeric: tabular-nums;
    min-width: 150px;
    display: inline-block;
}

.contact-area {
    padding-bottom: 50px;
    margin-top: -30px;
}

.contact-card-modern {
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    gap: 40px;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-methods-list {
    margin-top: 40px;
}

.c-method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.c-method-item i {
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.method-txt h4 {
    font-size: 16px;
    color: #777;
    margin-bottom: 5px;
}

.method-txt span {
    font-weight: 800;
    font-size: 18px;
    color: var(--dark);
}

.contact-actions-side {
    flex: 0.8;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.service-hours {
    text-align: center;
    font-weight: bold;
    color: var(--red);
    background: rgba(227, 30, 36, 0.05);
    padding: 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.btn-wa-footer {
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    display: block;
    transition: 0.3s;
}

.btn-call-footer {
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    display: block;
    transition: 0.3s;
}

.btn-wa-footer:hover,
.btn-call-footer:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.footer-pro {
    background: #111;
    color: #eee;
    padding: 80px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand img {
    height: 60px
}

.footer-brand p {
    color: #888;
    font-size: 14px;
}

.footer-links-col h4,
.footer-contact h4 {
    color: var(--red);
    margin-bottom: 25px;
}

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

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

.footer-links-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links-col ul li a:hover {
    color: var(--red);
    padding-right: 10px;
}

.footer-vision {
    text-align: center;
}

.f-vision-img {
    height: 70px;
    margin-bottom: 15px;
}

.copyright-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 13px;
    color: #555;
}

@media (max-width: 992px) {
    .contact-card-modern {
        flex-direction: column;
        padding: 30px 20px;
    }

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

    .footer-brand .logo {
        justify-content: center;
    }
}

@media (max-width: 992px) {

    .menu-toggle {
        display: block !important;
        font-size: 24px;
        color: var(--primary-red);
        cursor: pointer;
        z-index: 2100;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 2050;
    }
}
.hero-content h2.lang-ar, .hero-content h2.lang-en {
    animation: slideFromRight 1.2s ease-out forwards;
}

.hero-content .red-glow {
    display: inline-block;
    animation: slideFromLeft 1.2s ease-out forwards;
}

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

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

.hero-content {
    animation: floatingHero 4s ease-in-out infinite;
}

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

.btn-red, .btn-outline {
    position: relative;
    overflow: hidden;
}

.btn-red::after, .btn-outline::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: 0s;
    animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
    0% { left: -60%; }
    15% { left: 120%; }
    100% { left: 120%; }
}

.red-glow {
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(227, 30, 36, 0.2); }
    50% { text-shadow: 0 0 30px rgba(227, 30, 36, 0.8); }
}
.hero-btns {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 20px; 
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column; 
        gap: 10px;
    }
    
    .btn-red, .btn-outline {
        width: 100%;
        max-width: 280px; 
        margin: 5px 0 !important;
    }
}
.section-header.text-center {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 40px;
}

.f-item-pro {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); 
    position: relative;
    overflow: hidden;
}

.f-item-pro::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transition: 0.4s;
}

.f-item-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.1);
}

.f-item-pro:hover::after {
    transform: scaleX(1);
}

.f-item-pro i {
    width: 80px;
    height: 80px;
    background: rgba(227, 30, 36, 0.05); 
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.f-item-pro:hover i {
    background: var(--red);
    color: #fff;
    transform: rotateY(360deg); 
}

.f-item-pro h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.f-item-pro p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .f-item-pro {
        padding: 35px 20px;
    }
}
.expand-section {
    background-color: #fff;
    padding: 60px 0;
}

.expand-banner {
    background: #fdfdfd;
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center; 
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.expand-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(227, 30, 36, 0.03);
    border-radius: 50%;
}

.expand-content-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.expand-content-box p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 35px; 
    line-height: 1.8;
}

.btn-red-pro {
    background: var(--red);
    color: var(--primary-red);
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
    transition: 0.3s;
}

.btn-red-pro:hover {
    transform: translateY(-5px);
    background: #000; 
    color: #fff;
}

@media (max-width: 768px) {
    .expand-banner {
        padding: 40px 20px;
    }
    .expand-content-box h2 {
        font-size: 24px;
    }
    .expand-content-box p {
        font-size: 15px;
    }
    .btn-red-pro {
        width: 100%;
        padding: 14px 20px;
    }
}