* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

header {
    background: #111;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    color: #d4af37;
}

.hero {
    min-height: 70vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)
    ),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70");

    background-size: cover;
    background-position: center;

    color: white;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero button {
    padding: 15px 35px;

    border: none;
    border-radius: 8px;

    background: #d4af37;
    color: #111;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;
}

.hero button:hover {
    background: white;
}

footer {
    background: #111;
    color: white;

    text-align: center;

    padding: 20px;
}
.cars-section {
    padding: 70px 60px;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.cars-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    max-width: 1200px;

    margin: auto;
}

.car-card {
    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}

.car-card:hover {
    transform: translateY(-8px);
}

.car-card img {
    width: 100%;
    height: 230px;

    object-fit: cover;
}

.car-info {
    padding: 20px;
}

.car-info h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.car-info p {
    color: #666;
    margin-bottom: 15px;
}

.car-info strong {
    display: block;

    font-size: 24px;

    color: #b08d20;

    margin-bottom: 20px;
}

.car-info button {
    width: 100%;

    padding: 12px;

    border: none;

    border-radius: 6px;

    background: #111;

    color: white;

    font-size: 16px;

    cursor: pointer;
}

.car-info button:hover {
    background: #d4af37;

    color: #111;
}
@media (max-width: 900px) {

    .cars-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    header {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero p {
        font-size: 18px;
    }

    .cars-section {
        padding: 50px 20px;
    }

    .cars-container {
        grid-template-columns: 1fr;
    }

}
.car-details {
    max-width: 1200px;

    margin: 60px auto;

    padding: 20px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}

.car-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 15px;
}

.car-details-info h1 {
    font-size: 40px;

    margin-bottom: 20px;
}

.car-price {
    font-size: 32px;

    color: #b08d20;

    font-weight: bold;

    margin-bottom: 30px;
}

.specifications {
    margin-bottom: 30px;
}

.specifications p {
    padding: 12px 0;

    border-bottom: 1px solid #ddd;

    font-size: 18px;
}

.car-details-info button {
    padding: 15px 40px;

    background: #111;

    color: white;

    border: none;

    border-radius: 8px;

    font-size: 18px;

    cursor: pointer;
}

.car-details-info button:hover {
    background: #d4af37;

    color: #111;
}


@media (max-width: 700px) {

    .car-details {
        grid-template-columns: 1fr;

        margin: 30px auto;
    }

    .car-image img {
        height: 300px;
    }

    .car-details-info h1 {
        font-size: 30px;
    }

}
.search-section {
    padding: 50px 30px;

    background: white;
}

.search-box {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr
        auto;

    gap: 15px;
}

.search-box input,
.search-box select {

    width: 100%;

    padding: 14px;

    border: 1px solid #ddd;

    border-radius: 8px;

    font-size: 16px;

    background: white;
}

.search-box button {

    padding: 14px 25px;

    border: none;

    border-radius: 8px;

    background: #111;

    color: white;

    font-size: 16px;

    cursor: pointer;
}

.search-box button:hover {

    background: #d4af37;

    color: #111;

}


@media (max-width: 900px) {

    .search-box {

        grid-template-columns: 1fr 1fr;

    }

}


@media (max-width: 600px) {

    .search-box {

        grid-template-columns: 1fr;

    }

}
/* =========================
   صفحة إضافة السيارة
========================= */

.add-car-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.add-car-section .section-title {
    margin-bottom: 40px;
}

.add-car-section .section-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

#addCarForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
}

.add-car-button {
    grid-column: 1 / -1;

    padding: 16px;

    border: none;
    border-radius: 8px;

    background: #111;
    color: white;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;
}

.add-car-button:hover {
    background: #d4af37;
    color: #111;
}


/* الهاتف */

@media (max-width: 700px) {

    .add-car-section {
        margin: 30px 15px;
        padding: 25px 20px;
    }

    #addCarForm {
        grid-template-columns: 1fr;
    }

    .add-car-button {
        grid-column: auto;
    }

}
/* =========================
   لوحة الإدارة
========================= */

.admin-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.admin-actions {
    margin-bottom: 25px;
}

.admin-add-button {
    display: inline-block;

    padding: 14px 25px;

    background: #111;
    color: white;

    text-decoration: none;

    border-radius: 8px;

    font-weight: bold;
}

.admin-add-button:hover {
    background: #d4af37;
    color: #111;
}

.admin-search {
    margin-bottom: 30px;
}

.admin-search input {
    width: 100%;

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 8px;

    font-size: 17px;

    outline: none;
}

.admin-search input:focus {
    border-color: #d4af37;
}

.admin-cars-container {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.admin-car-card {
    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.08);
}

.admin-car-card img {
    width: 100%;

    height: 220px;

    object-fit: cover;
}

.admin-car-info {
    padding: 20px;
}

.admin-car-info h3 {
    margin-bottom: 10px;

    font-size: 22px;
}

.admin-car-info p {
    margin-bottom: 10px;

    color: #666;
}

.admin-car-info strong {
    display: block;

    font-size: 23px;

    color: #b08d20;

    margin-bottom: 15px;
}

.admin-buttons {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.admin-buttons button {
    flex: 1;

    padding: 10px;

    border: none;

    border-radius: 6px;

    background: #111;

    color: white;

    cursor: pointer;
}

.admin-buttons button:hover {
    background: #d4af37;

    color: #111;
}

.no-cars {
    text-align: center;

    font-size: 20px;

    grid-column: 1 / -1;
}


@media (max-width: 900px) {

    .admin-cars-container {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .admin-cars-container {
        grid-template-columns: 1fr;
    }

}
/* =========================
   حالة السيارة
========================= */

.car-status {
    display: inline-block;

    padding: 7px 12px;

    border-radius: 20px;

    font-size: 14px;

    font-weight: bold;

    margin-bottom: 15px;
}

.status-available {
    background: #dff5e5;
    color: #16803c;
}

.status-reserved {
    background: #fff0d6;
    color: #b06b00;
}

.status-sold {
    background: #ffe0e0;
    color: #c62828;
}
/* =========================
   صور السيارة
========================= */

.image-preview {
    grid-column: 1 / -1;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 10px;
}

.preview-image-box {
    position: relative;

    border-radius: 10px;

    overflow: hidden;

    border: 2px solid #ddd;

    background: #f5f5f5;
}

.preview-image-box img {
    width: 100%;

    height: 160px;

    object-fit: cover;

    display: block;
}

.main-image-label {
    position: absolute;

    bottom: 0;

    right: 0;

    left: 0;

    background: rgba(0, 0, 0, 0.75);

    color: white;

    text-align: center;

    padding: 8px;

    font-size: 14px;

    font-weight: bold;
}


@media (max-width: 700px) {

    .image-preview {
        grid-template-columns:
            repeat(2, 1fr);
    }

}
/* =====================================
   معرض صور السيارة
===================================== */

.car-gallery {
    width: 100%;
}


.main-car-image {
    width: 100%;
}


.main-car-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 15px;

    display: block;
}


.car-thumbnails {

    display: flex;

    gap: 12px;

    margin-top: 15px;

    overflow-x: auto;

    padding-bottom: 5px;

}


.car-thumbnail {

    width: 90px;

    height: 70px;

    object-fit: cover;

    border-radius: 8px;

    cursor: pointer;

    opacity: 0.7;

    border: 3px solid transparent;

    transition: 0.2s;

}


.car-thumbnail:hover {

    opacity: 1;

}


.car-thumbnail.active {

    opacity: 1;

    border-color: #d4af37;

}


/* =====================================
   الهاتف
===================================== */

@media (max-width: 700px) {

    .main-car-image img {

        height: 300px;

    }


    .car-thumbnail {

        width: 75px;

        height: 60px;

    }

}
/* =====================================
   صور صفحة تعديل السيارة
===================================== */

.image-preview {

    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(150px, 1fr));

    gap: 15px;

    margin: 20px 0;

}


.preview-image-box {

    position: relative;

    border-radius: 10px;

    overflow: hidden;

    background: #eee;

}


.preview-image-box img {

    width: 100%;

    height: 130px;

    object-fit: cover;

    display: block;

}


.main-image-label {

    position: absolute;

    bottom: 0;

    right: 0;

    left: 0;

    background: rgba(0, 0, 0, 0.75);

    color: white;

    text-align: center;

    padding: 7px;

    font-size: 14px;

}
/* ==================================================
   التصميم الجديد للصفحة الرئيسية
================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", "Tajawal", sans-serif;
}


/* =========================
   Header
========================= */

.main-header {
    width: 100%;

    min-height: 86px;

    padding: 0 6%;

    background:
        rgba(10, 10, 12, 0.96);

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: sticky;

    top: 0;

    z-index: 1000;

    backdrop-filter: blur(15px);
}


.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    text-decoration: none;
}


.brand-mark {
    width: 45px;

    height: 45px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #d8b65c,
            #a77c22
        );

    color: #111;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 24px;

    font-weight: 800;
}


.brand strong {
    display: block;

    font-size: 18px;

    line-height: 1.1;
}


.brand small {
    color: #aaa;

    font-size: 11px;
}


.main-nav {
    display: flex;

    align-items: center;

    gap: 32px;
}


.main-nav a {
    color: #ddd;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    position: relative;

    transition: 0.3s;
}


.main-nav a:hover,
.main-nav a.active {
    color: #d8b65c;
}


.main-nav a::after {
    content: "";

    position: absolute;

    right: 0;

    bottom: -10px;

    width: 0;

    height: 2px;

    background: #d8b65c;

    transition: 0.3s;
}


.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


.header-actions {
    display: flex;

    gap: 10px;

    align-items: center;
}


.admin-link {
    text-decoration: none;

    padding: 10px 18px;

    border: 1px solid
        rgba(216, 182, 92, 0.5);

    color: #d8b65c;

    border-radius: 8px;

    font-size: 13px;

    transition: 0.3s;
}


.admin-link:hover {
    background: #d8b65c;

    color: #111;
}


.mobile-menu-button {
    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 26px;

    cursor: pointer;
}


/* =========================
   Hero
========================= */

.hero-new {
    min-height:
        calc(100vh - 86px);

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 80px 7%;

    color: white;
}


.hero-slides,
.hero-slide,
.hero-overlay {
    position: absolute;

    inset: 0;
}


.hero-slide {
    background-size: cover;

    background-position: center;

    opacity: 0;

    transform: scale(1.06);

    transition:
        opacity 1.2s ease,
        transform 7s ease;
}


.hero-slide.active {
    opacity: 1;

    transform: scale(1);
}


.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 8, 0.28) 0%,
            rgba(5, 5, 8, 0.4) 40%,
            rgba(5, 5, 8, 0.58) 100%
        );
}


.hero-content {
    position: relative;

    z-index: 5;

    max-width: 760px;
}


.hero-badge {
    display: inline-block;

    padding: 8px 16px;

    border-radius: 40px;

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    backdrop-filter: blur(10px);

    color: #f2d98d;

    font-size: 13px;

    margin-bottom: 22px;
}


.hero-content h1 {
    font-family:
        "Tajawal",
        "Cairo",
        sans-serif;

    font-size:
        clamp(44px, 6vw, 78px);

    line-height: 1.18;

    margin-bottom: 22px;

    font-weight: 800;
}


.hero-content h1 span {
    display: block;

    color: #d8b65c;
}


.hero-content > p {
    max-width: 620px;

    font-size: 18px;

    line-height: 2;

    color:
        rgba(255, 255, 255, 0.85);

    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.primary-button,
.secondary-button {
    min-height: 54px;

    padding: 0 24px;

    border-radius: 10px;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    gap: 20px;

    justify-content: center;

    font-weight: 700;

    transition:
        transform 0.3s,
        background 0.3s;
}


.primary-button {
    background: #d8b65c;

    color: #111;
}


.primary-button:hover {
    transform: translateY(-3px);

    background: #f0cf75;
}


.secondary-button {
    background:
        rgba(255,255,255,0.09);

    color: white;

    border:
        1px solid
        rgba(255,255,255,0.3);

    backdrop-filter: blur(10px);
}


.secondary-button:hover {
    transform: translateY(-3px);

    background:
        rgba(255,255,255,0.18);
}


.hero-stats {
    display: flex;

    gap: 45px;

    margin-top: 55px;
}


.hero-stats div {
    display: flex;

    flex-direction: column;
}


.hero-stats strong {
    font-size: 25px;

    color: white;
}


.hero-stats span {
    font-size: 12px;

    color: #bbb;

    margin-top: 4px;
}


.hero-dots {
    position: absolute;

    z-index: 10;

    left: 5%;

    bottom: 52px;

    display: flex;

    gap: 9px;
}


.hero-dot {
    width: 34px;

    height: 4px;

    padding: 0;

    border: none;

    border-radius: 10px;

    background:
        rgba(255,255,255,0.4);

    cursor: pointer;

    transition: 0.3s;
}


.hero-dot.active {
    width: 60px;

    background: #d8b65c;
}


.scroll-down {
    position: absolute;

    z-index: 10;

    bottom: 45px;

    right: 7%;

    color: white;

    text-decoration: none;

    display: flex;

    gap: 12px;

    font-size: 12px;

    align-items: center;
}


.scroll-down b {
    width: 34px;

    height: 34px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.35);

    display: flex;

    align-items: center;

    justify-content: center;

    animation:
        scrollBounce 1.6s
        infinite;
}


@keyframes scrollBounce {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(7px);
    }

}


/* =========================
   Features
========================= */

.features-section {
    padding:
        0 6% 80px;

    background: #f5f5f2;
}


.features-grid {
    max-width: 1250px;

    margin:
        -45px auto 0;

    position: relative;

    z-index: 20;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.feature-card {
    padding: 35px;

    background: white;

    border-radius: 16px;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.07);

    border:
        1px solid #eee;
}


.feature-number {
    color: #b88b29;

    font-size: 13px;

    font-weight: 800;
}


.feature-card h3 {
    margin: 17px 0 8px;

    font-size: 21px;
}


.feature-card p {
    color: #777;

    line-height: 1.8;

    font-size: 14px;
}


/* =========================
   Cars
========================= */

.cars-section-new {
    padding:
        100px 6%;

    background: #f5f5f2;
}


.section-heading {
    max-width: 1250px;

    margin:
        0 auto 40px;

    display: flex;

    justify-content:
        space-between;

    gap: 30px;

    align-items: end;
}


.section-kicker {
    display: inline-block;

    color: #a77c22;

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 10px;
}


.section-heading h2,
.about-content h2 {
    font-family:
        "Tajawal",
        sans-serif;

    font-size:
        clamp(32px, 4vw, 48px);

    margin: 0;
}


.section-heading > p {
    color: #777;

    max-width: 400px;

    line-height: 1.8;

    font-size: 14px;
}


.modern-search-box {
    max-width: 1250px;

    margin:
        0 auto 45px;

    padding: 16px;

    background: white;

    border-radius: 15px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr auto;

    gap: 10px;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,0.06);
}


.search-main {
    display: flex;

    align-items: center;

    gap: 10px;

    border:
        1px solid #e2e2e2;

    border-radius: 9px;

    padding: 0 15px;
}


.search-icon {
    font-size: 23px;

    color: #999;
}


.search-main input {
    flex: 1;

    border: none;

    outline: none;

    font-family:
        "Cairo",
        sans-serif;

    background: transparent;

    min-height: 48px;
}


.modern-search-box select {
    border:
        1px solid #e2e2e2;

    border-radius: 9px;

    padding: 0 13px;

    font-family:
        "Cairo",
        sans-serif;

    background: white;
}


.search-button {
    border: none;

    background: #111;

    color: white;

    padding: 0 26px;

    border-radius: 9px;

    font-family:
        "Cairo",
        sans-serif;

    cursor: pointer;

    transition: 0.3s;
}


.search-button:hover {
    background: #b58b31;
}


.cars-section-new
.cars-container {
    max-width: 1250px;
}


.cars-section-new
.car-card {
    border-radius: 16px;

    box-shadow:
        0 10px 35px
        rgba(0,0,0,0.06);

    border:
        1px solid #eaeaea;

    transition:
        transform 0.35s,
        box-shadow 0.35s;
}


.cars-section-new
.car-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 20px 55px
        rgba(0,0,0,0.12);
}


.cars-section-new
.car-card img {
    height: 260px;
}


.cars-section-new
.car-info {
    padding: 24px;
}


.cars-section-new
.car-info h3 {
    font-family:
        "Tajawal",
        sans-serif;

    font-size: 22px;
}


/* =========================
   About
========================= */

.about-section {
    padding:
        110px 7%;

    background: white;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.about-content {
    max-width: 600px;
}


.about-content > p {
    margin:
        25px 0;

    color: #707070;

    line-height: 2;

    font-size: 15px;
}


.about-points {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.about-points div {
    display: flex;

    gap: 10px;

    align-items: center;

    font-weight: 600;

    font-size: 14px;
}


.about-points span {
    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: #f1e7c8;

    color: #8b681a;

    display: flex;

    align-items: center;

    justify-content: center;
}


.about-visual {
    position: relative;
}


.about-image-main img {
    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 20px;
}


.about-floating-card {
    position: absolute;

    right: -35px;

    bottom: 40px;

    padding: 22px 30px;

    background: #111;

    color: white;

    border-radius: 14px;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.22);
}


.about-floating-card strong,
.about-floating-card span {
    display: block;
}


.about-floating-card strong {
    color: #d8b65c;

    margin-bottom: 4px;
}


.about-floating-card span {
    font-size: 12px;

    color: #ccc;
}


/* =========================
   Services
========================= */

.services-section {
    background: #101012;

    color: white;

    padding:
        100px 7%;
}


.centered {
    justify-content: center;

    text-align: center;
}


.services-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.services-grid article {
    padding: 38px;

    border:
        1px solid
        rgba(255,255,255,0.1);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.035);

    transition: 0.3s;
}


.services-grid article:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(216,182,92,0.55);
}


.services-grid article > span {
    color: #d8b65c;

    font-weight: 800;
}


.services-grid h3 {
    margin: 18px 0 10px;

    font-size: 21px;
}


.services-grid p {
    color: #aaa;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================
   Contact
========================= */

.contact-section {
    padding:
        75px 8%;

    background:
        linear-gradient(
            135deg,
            #b78b2b,
            #d9bc6c
        );

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 40px;
}


.section-kicker.light {
    color: #2a210e;
}


.contact-section h2 {
    font-family:
        "Tajawal",
        sans-serif;

    font-size:
        clamp(28px, 4vw, 44px);

    margin-bottom: 8px;
}


.contact-section p {
    color:
        rgba(0,0,0,0.7);
}


.contact-button {
    min-width: 210px;

    height: 58px;

    background: #111;

    color: white;

    border-radius: 10px;

    text-decoration: none;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    padding: 0 22px;

    font-weight: 700;
}


/* =========================
   Footer
========================= */

.modern-footer {
    padding:
        55px 7% 25px;

    background: #08080a;

    color: white;
}


.footer-top {
    display: flex;

    justify-content:
        space-between;

    align-items: center;

    padding-bottom: 40px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.1);
}


.footer-links {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;
}


.footer-links a {
    color: #aaa;

    text-decoration: none;

    font-size: 13px;
}


.footer-links a:hover {
    color: #d8b65c;
}


.footer-bottom {
    display: flex;

    justify-content:
        space-between;

    padding-top: 22px;

    color: #777;

    font-size: 12px;
}


/* =========================
   Responsive
========================= */

@media
(max-width: 1000px) {

    .main-nav {
        display: none;

        position: absolute;

        top: 86px;

        right: 4%;

        left: 4%;

        padding: 25px;

        background: #111;

        border-radius: 12px;

        flex-direction: column;

        align-items: stretch;
    }


    .main-nav.open {
        display: flex;
    }


    .mobile-menu-button {
        display: block;
    }


    .admin-link {
        display: none;
    }


    .modern-search-box {
        grid-template-columns:
            1fr 1fr;
    }


    .search-main {
        grid-column:
            1 / -1;
    }


    .about-section {
        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .about-floating-card {
        right: 20px;
    }

}


@media
(max-width: 700px) {

    .main-header {
        min-height: 76px;

        padding: 0 18px;
    }


    .main-nav {
        top: 76px;
    }


    .hero-new {
        min-height:
            calc(100vh - 76px);

        padding:
            65px 22px 110px;
    }


    .hero-overlay {
        background:
            rgba(5,5,8,0.38);
    }


    .hero-content > p {
        font-size: 15px;
    }


    .hero-stats {
        gap: 20px;

        justify-content:
            space-between;
    }


    .hero-stats strong {
        font-size: 20px;
    }


    .hero-stats span {
        font-size: 10px;
    }


    .hero-dots {
        left: 22px;

        bottom: 35px;
    }


    .scroll-down {
        display: none;
    }


    .features-grid {
        grid-template-columns:
            1fr;

        margin-top: 0;

        padding-top: 40px;
    }


    .cars-section-new {
        padding:
            70px 18px;
    }


    .section-heading {
        flex-direction: column;

        align-items: start;
    }


    .modern-search-box {
        grid-template-columns:
            1fr;
    }


    .search-main {
        grid-column: auto;
    }


    .modern-search-box select,
    .search-button {
        min-height: 48px;
    }


    .about-section {
        padding:
            75px 20px;
    }


    .about-points {
        grid-template-columns:
            1fr;
    }


    .about-image-main img {
        height: 350px;
    }


    .services-section {
        padding:
            75px 20px;
    }


    .services-grid {
        grid-template-columns:
            1fr;
    }


    .contact-section {
        padding:
            55px 22px;

        flex-direction: column;

        align-items: stretch;
    }


    .footer-top,
    .footer-bottom {
        flex-direction: column;

        gap: 25px;

        align-items: flex-start;
    }


    .footer-links {
        gap: 15px;
    }

}