@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #024d44;
    --primary-light: #03695d;
    --primary-dark: #013a34;
    --gold: #e2aa34;
    --gold-hover: #c9952a;
    --white: #ffffff;
    --light-bg: #f0f5f4;
    --light-green-bg: #e8f0ee;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --card-bg: #FFF;
    --border-color: rgba(2, 77, 68, 0.2);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: var(--primary);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.header-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: var(--primary);
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    cursor: pointer;
    border: none;
}

.btn-call {
    background: var(--gold);
    color: var(--white);
}

.btn-call:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: transparent;
    border: 2px solid var(--gold) !important;
    color: var(--gold);
}

.btn-whatsapp:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    min-width: 140px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.stat-card .label {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.9;
}

.hero-image {
    flex: 0 0 400px;
}

.hero-image-wrapper {
    background: var(--primary-light);
    border-radius: 20px;
    padding: 40px;
    border: 4px solid var(--white);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper svg {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.hero-image-wrapper h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.hero-image-wrapper p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 10px auto 15px;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
    background: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 350px;
}

.about-image-wrapper {
    background: var(--primary);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
}

.about-image-wrapper svg {
    width: 180px;
    height: 180px;
    fill: var(--white);
}

.about-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: #e1f0eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    font-size: 1.1rem;
    margin-top: 5px;
}

.value-item h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--primary);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.cta-banner .highlight {
    color: var(--gold);
    font-weight: 700;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--primary);
    font-size: 1rem;
    padding: 14px 35px;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== SERVICES ===== */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(2, 77, 68, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.service-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-logo img,
.service-logo svg {
    max-width: 100%;
    height: 175px;
    object-fit: contain;
}

.service-card-header .service-img {
    max-height: 80px;
    margin: 0 auto 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: right;
}

.service-card .desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: right;
}

.service-card .sub-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: right;
}

.service-card ul {
    margin: 0 0 30px 0;
    padding-right: 15px;
    text-align: right;
    direction: rtl;
}

.service-card ul li {
    position: relative;
    padding: 2px 15px 2px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.service-card ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    position: absolute;
    right: 0;
    top: 13px;
}

.service-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.service-card-buttons .btn-primary {
    flex: 1;
    justify-content: center;
    font-size: 0.88rem;
    padding: 10px 15px;
    border-radius: 8px;
}

.service-card-buttons .btn-call {
    background: var(--primary);
    color: var(--white);
}

.service-card-buttons .btn-call:hover {
    background: var(--primary-dark);
}

.service-card-buttons .btn-whatsapp {
    border: 2px solid var(--gold) !important;
    color: var(--gold);
    background: transparent;
}

.service-card-buttons .btn-whatsapp:hover {
    background: var(--gold);
    color: var(--white);
}

/* ===== CAR TRANSFER ===== */
.car-transfer {
    background: var(--light-bg);
    padding: 80px 0;
}

.car-transfer-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.car-transfer-content::before,
.car-transfer-content::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.08;
}

.car-transfer-content::before {
    top: -40px;
    right: -40px;
}

.car-transfer-content::after {
    bottom: -40px;
    left: -40px;
}

.car-transfer-image {
    flex: 0 0 400px;
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.car-transfer-image img,
.car-transfer-image svg {
    max-width: 100%;
    height: auto;
}

.car-transfer-text {
    flex: 1;
}

.car-transfer-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.car-transfer-text h2 span {
    color: var(--gold);
}

.car-transfer-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.car-transfer-text .car-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 80px 0;
}

.why-us-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-us-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-us-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid rgba(2, 77, 68, 0.08);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(2, 77, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== PARTNERS ===== */
.partners {
    background: var(--light-bg);
    padding: 80px 0;
}

.partners h6 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    direction: ltr;
}

.partners-track {
    display: flex;
    animation: scroll-partners 20s linear infinite;
    width: max-content;
}

.partner-logo {
    flex-shrink: 0;
    height: 150px;
    display: flex;
    align-items: center;
    padding: 0 55px;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    height: 110px;
    max-width: 240px;
    object-fit: contain;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--primary);
    padding: 80px 0;
}

.reviews .section-title h2 {
    color: var(--white);
}

.reviews .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.reviews .section-title .underline {
    background: var(--white);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    padding: 0 20px;
}

.review-card-inner {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
}

.review-stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-card-inner p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-card-inner h4 {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.reviews-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.reviews-nav button.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* ===== MAP ===== */
.map-section {
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    padding: 60px 0 0;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-about .footer-logo svg {
    width: 45px;
    height: 45px;
}

.footer-about .footer-logo h3 {
    font-size: 1.2rem;
}

.footer-about .footer-logo span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-about>p {
    font-size: 0.88rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-links a {
    display: block;
    padding: 5px 0;
    font-size: 0.88rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-right: 8px;
}

.footer-services-list li {
    padding: 5px 0;
    font-size: 0.88rem;
    opacity: 0.8;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    opacity: 0.85;
}

.footer-contact-item i {
    font-size: 1.1rem;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.phone {
    background: #2196F3;
}

.float-btn.whatsapp {
    background: #25D366;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding-bottom: 60px;
    }

    .hero-image {
        flex: none;
        width: 280px;
        margin-top: 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: none;
        width: 280px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-transfer-content {
        flex-direction: column;
    }

    .car-transfer-image {
        flex: none;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-card {
        min-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand,
    .footer-contact {
        align-items: center;
    }

    .about-image {
        width: 100%;
    }

    .value-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .car-transfer-content {
        padding: 25px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-buttons,
    .car-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        padding: 25px 20px;
    }

    .floating-buttons {
        bottom: 20px;
        left: 20px;
        right: auto;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .partner-logo {
        height: 100px;
        padding: 0 30px;
    }

    .partner-logo img {
        height: 70px;
        max-width: 150px;
    }
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 1001;
    padding: 80px 30px 30px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav a {
    display: block;
    color: var(--white);
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-overlay.open {
    display: block;
}

@media (max-width: 992px) {
    .mobile-nav {
        display: block;
    }

    .header-cta-desktop {
        display: none;
    }
}