/* =========================================================
   NOKHBATY - MAIN STYLE
   ========================================================= */

:root {
    --green: #006C35;
    --green-dark: #004d26;
    --green-light: #eef9f2;
    --orange: #ff9800;
    --blue: #38bdf8;
    --dark: #0b1220;
    --dark-2: #0f172a;
    --text: #333;
    --muted: #666;
    --white: #fff;
}

/* =========================================================
   GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Cairo", sans-serif;
    background: #f5f7f6;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

img,
video {
    max-width: 100%;
    height: auto;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 10px 20px;

    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    min-height: 50px;
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #25D366;
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* =========================================================
   HERO - FULL SCREEN
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* =========================================================
   HERO SLIDES
   ========================================================= */

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.05);

    transition:
        opacity 1s ease-in-out,
        transform 6s ease-in-out,
        visibility 1s ease-in-out;

    z-index: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    animation: zoomHero 6s ease-in-out;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.20),
        rgba(0, 0, 0, 0.65)
    );

    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.10),
        rgba(0, 0, 0, 0.35)
    );

    z-index: 2;

    pointer-events: none;
}

@keyframes zoomHero {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.05);
    }
}

/* =========================================================
   HERO LOGO
   ========================================================= */

.logo-circle {
    position: absolute;

    top: 80px;
    right: 20px;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* =========================================================
   HERO TEXT
   ========================================================= */

.hero-text {
    position: absolute;

    top: 94px;
    right: 110px;

    max-width: 75%;

    color: #fff;

    z-index: 10;

    text-align: right;

    font-size: 13px;
    line-height: 1.6;

    animation: fadeDown 1s ease;
}

.hero-text h5 {
    margin-bottom: 5px;
}

.hero-text p {
    margin: 0;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   FLOAT BUTTONS
   ========================================================= */

.float-btns {
    position: fixed;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 9998;
}

.float-btns a {
    display: flex;

    margin-bottom: 10px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    color: #fff;

    align-items: center;
    justify-content: center;

    font-size: 20px;

    transition: 0.3s;

    text-decoration: none;

    border: none;
    outline: none;
}

.float-btns a:hover {
    transform: scale(1.1);
}

.call {
    background: #007bff;
}

.whatsapp {
    background: #25D366;
}

.finance {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px 14px;

    border-radius: 30px;

    color: #006C35 !important;

    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0, 108, 53, 0.15);

    transition: 0.3s;

    border: 2px solid #006C35;
}

.finance i {
    font-size: 18px;
    color: #006C35;
}

.finance span {
    font-size: 14px;
    color: #006C35;
}

.finance:hover {
    transform: scale(1.08);
}

.finance:hover i,
.finance:hover span {
    color: #fff;
}

/* =========================================================
   SEARCH
   ========================================================= */

.search-box {
    margin-top: -40px;

    position: relative;

    z-index: 20;
}

.search-card {
    background: #fff;

    padding: 20px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   BRANDS
   ========================================================= */

.brands {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
}

.brand-btn {
    padding: 8px 15px;

    background: #eee;

    border-radius: 20px;

    text-decoration: none;

    color: #333;

    font-size: 14px;

    transition: 0.3s;
}

.brand-btn:hover {
    background: #006C35;
    color: #fff;

    transform: scale(1.05);
}

.brand-marquee {
    overflow: hidden;

    padding: 15px 0;

    background: #fff;

    border-radius: 15px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    margin-top: 20px;
}

.brand-track {
    display: flex;

    gap: 10px;

    width: max-content;

    animation: scrollBrands 25s linear infinite;
}

.brand-pill {
    white-space: nowrap;

    padding: 8px 16px;

    border-radius: 999px;

    background: #f3f4f6;

    color: #333;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;

    border: 1px solid transparent;
}

.brand-pill:hover {
    background: #006C35;

    color: #fff;

    transform: scale(1.05);

    border-color: #006C35;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================
   CAR CARDS
   ========================================================= */

.car-card {
    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    position: relative;

    transition: 0.3s;

    display: flex;

    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.car-img {
    height: 200px;

    width: 100%;

    object-fit: cover;

    display: block;
}

.car-body {
    position: relative;

    z-index: 2;

    padding: 10px;

    background: #fff;
}

.car-body * {
    opacity: 1 !important;
    visibility: visible !important;
}

.car-body h6 {
    margin-bottom: 5px;
}

.car-body p {
    margin-bottom: 5px;
}

.price {
    color: var(--green);

    font-weight: 700;

    display: block;
}

.installment {
    display: block;

    font-size: 13px;

    color: #555;
}

.badge-top {
    position: absolute;

    top: 10px;
    right: 10px;

    background: var(--green);

    color: #fff;

    padding: 3px 10px;

    border-radius: 10px;

    font-size: 12px;

    z-index: 5;
}

/* =========================================================
   LIKE
   ========================================================= */

.like {
    position: absolute;

    top: 10px;
    left: 10px;

    background: #fff;

    border-radius: 50%;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    flex-direction: column;

    font-size: 12px;

    z-index: 5;
}

.like i {
    transition: 0.3s;
}

.like.active i {
    color: red;

    transform: scale(1.2);
}

/* =========================================================
   CAR BUTTONS
   ========================================================= */

.car-card .d-flex {
    display: flex;

    gap: 10px;

    padding-right: 10px;
    padding-top: 25px;

    justify-content: space-between;
}

.view-btn {
    flex: 1;

    text-align: center;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    margin: 0;

    padding: 10px;

    transition: 0.3s;

    color: #fff !important;

    text-decoration: none !important;
}

.view-btn.view {
    background: #006C35;

    animation: pulseBtn 2s infinite;
}

.view-btn.install {
    background: #ff9800;

    animation: pulseBtn 2.3s infinite;
}

.view-btn:hover {
    color: #fff !important;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(0, 108, 53, 0.5);
    }

    70% {
        transform: scale(1.05);

        box-shadow:
            0 0 0 10px rgba(0, 108, 53, 0);
    }

    100% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(0, 108, 53, 0);
    }
}

#loadMore {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin: auto;
}

/* =========================================================
   HIDDEN CARS
   ========================================================= */

.hidden-car {
    display: none;
}

/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-wrapper {
    overflow: hidden;

    position: relative;

    white-space: nowrap;
}

.reviews-track {
    display: flex;

    gap: 20px;

    width: max-content;

    animation: scrollLoop 22s linear infinite;
}

.review {
    background: #fff;

    padding: 18px;

    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    min-width: 340px;

    flex-shrink: 0;

    transition: 0.3s;
}

.review:hover {
    transform: translateY(-8px);
}

.rev-top {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 10px;
}

.avatar {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #006C35;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: bold;
}

.stars {
    color: #f5b50a;

    font-size: 14px;
}

.review p {
    font-size: 14px;

    color: #444;

    margin: 0;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================
   PARTNERS
   ========================================================= */

.partner-logo {
    width: 120px;

    opacity: 0.8;

    transition: 0.3s;
}

.partner-logo:hover {
    opacity: 1;

    transform: scale(1.1);
}

/* =========================================================
   WHY US
   ========================================================= */

.why-us {
    background: #fff;

    border-radius: 20px;

    padding: 40px 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    text-align: center;

    overflow: hidden;

    position: relative;
}

.why-us h2 {
    color: var(--green);

    margin-bottom: 30px;

    font-weight: 700;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(200px, 1fr));

    gap: 20px;
}

.why-card {
    padding: 20px;

    border-radius: 15px;

    background: #f9fafb;

    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);

    background: #eef7f1;
}

.why-card i {
    font-size: 30px;

    color: var(--green);

    margin-bottom: 10px;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-modern {
    padding: 90px 20px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );

    font-family: Arial, sans-serif;

    color: #fff;
}

.about-wrapper {
    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 40px;

    align-items: center;
}

.about-left h2 {
    font-size: 40px;

    margin-bottom: 15px;
}

.about-left p {
    color: #cbd5e1;

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 10px;
}

.contact {
    margin-top: 15px;

    font-size: 18px;

    font-weight: bold;

    color: #38bdf8;
}

.actions {
    margin-top: 20px;

    display: flex;

    gap: 10px;
}

.actions a {
    padding: 10px 18px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

.actions a:first-child {
    background: #22c55e;

    color: #fff;
}

.actions a:last-child {
    border: 2px solid #38bdf8;

    color: #38bdf8;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    padding: 40px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.glass-card h3 {
    font-size: 24px;

    margin-bottom: 10px;
}

.glass-card p {
    color: #cbd5e1;
}

.glass-card span {
    display: inline-block;

    margin-top: 15px;

    font-size: 12px;

    color: #94a3b8;

    letter-spacing: 2px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.pro-footer {
    background: #0b1220;

    color: #fff;

    padding: 70px 20px 20px;

    font-family: Arial, sans-serif;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    margin-bottom: 30px;
}

.footer-box h3 {
    margin-bottom: 15px;

    font-size: 18px;

    color: #38bdf8;
}

.footer-box p {
    color: #cbd5e1;

    line-height: 1.7;
}

.footer-box ul {
    list-style: none;

    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #cbd5e1;

    text-decoration: none;

    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #22c55e;

    padding-right: 5px;
}

.wa,
.call {
    display: block;

    margin-top: 10px;

    padding: 10px;

    border-radius: 10px;

    text-decoration: none;

    text-align: center;

    font-weight: bold;

    transition: 0.3s;
}

.wa {
    background: #22c55e;

    color: #fff;
}

.call {
    border: 2px solid #38bdf8;

    color: #38bdf8;
}

.wa:hover {
    transform: scale(1.05);
}

.call:hover {
    background: #38bdf8;

    color: #0b1220;
}

.footer-bottom {
    text-align: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #94a3b8;

    font-size: 13px;
}

/* =========================================================
   CONTACT / MAP / REVIEWS
   ========================================================= */

.contact-reviews {
    padding: 70px 20px;

    background: #f6f8f7;

    font-family: Arial, sans-serif;
}

.grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.box {
    background: #fff;

    border-radius: 16px;

    padding: 15px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
    width: 100%;

    height: 280px;

    border: 0;

    border-radius: 12px;

    margin-top: 10px;
}

.small {
    font-size: 13px;

    color: #666;

    margin-top: 10px;
}

.rating {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 20px;

    color: #006C35;

    margin: 10px 0;
}

.contact p {
    margin: 10px 0;

    font-weight: bold;
}

.btn {
    display: block;

    text-align: center;

    padding: 10px;

    margin-top: 10px;

    background: #006C35;

    color: #fff;

    border-radius: 10px;

    text-decoration: none;

    transition: 0.3s;
}

.btn:hover {
    background: #004d26;
}

.btn.outline {
    background: transparent;

    border: 2px solid #006C35;

    color: #006C35;
}

.reviews {
    max-height: 300px;

    overflow-y: auto;

    padding-right: 5px;
}

.reviews .review {
    background: #f7f7f7;

    padding: 10px;

    border-radius: 10px;

    margin-bottom: 10px;

    transition: 0.3s;

    min-width: auto;
}

.reviews .review:hover {
    transform: scale(1.02);
}

.reviews .review b {
    color: #111;
}

.reviews .review p {
    margin: 5px 0 0;

    color: #555;

    font-size: 14px;
}

/* =========================================================
   TAX SECTION
   ========================================================= */

.tax-section {
    padding: 70px 20px;

    background: #fff;
}

.tax-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    align-items: center;

    background: #f7f9f8;

    padding: 25px;

    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}

.tax-text h2 {
    color: #006C35;

    margin-bottom: 10px;
}

.tax-text p {
    color: #555;

    line-height: 1.7;
}

.tax-text ul {
    margin-top: 15px;

    padding-right: 18px;
}

.tax-text li {
    margin-bottom: 8px;

    color: #222;

    font-weight: 500;
}

.tax-image img {
    width: 100%;

    border-radius: 14px;

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

.tax-image img:hover {
    transform: scale(1.03);
}

/* =========================================================
   TAX NOTE
   ========================================================= */

.tax-note-strong {
    margin-top: 20px;

    padding: 18px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #16a34a,
            #22c55e
        );

    color: #fff;

    text-align: center;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.8;

    box-shadow:
        0 15px 40px rgba(34, 197, 94, 0.5);

    position: relative;

    overflow: hidden;
}

.tax-note-strong::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 200%;
    height: 100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );

    animation: shineMove 3s linear infinite;
}

.tax-note-strong i {
    display: block;

    font-size: 22px;

    margin-bottom: 8px;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* =========================================================
   SOCIALS
   ========================================================= */

.socials {
    display: flex;

    gap: 10px;

    margin-top: 15px;
}

.social {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;

    transition: 0.3s;
}

.fb {
    background: #1877f2;
}

.tt {
    background: #000;
}

.snap {
    background: #fffc00;

    color: #000;
}

.social:hover {
    transform: scale(1.15) rotate(5deg);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   TIKTOK
   ========================================================= */

.tiktok-profile {
    padding: 50px 20px;

    text-align: center;

    background: #fafafa;
}

.tiktok-profile .title {
    font-size: 28px;

    margin-bottom: 20px;

    font-weight: bold;
}

.embed-wrapper {
    display: flex;

    justify-content: center;
}

/* =========================================================
   APP SECTION
   ========================================================= */

.app-section {
    padding: 90px 20px;

    background:
        linear-gradient(
            135deg,
            #f5f7fa,
            #eef4f2
        );
}

.app-card {
    display: grid;

    grid-template-columns:
        1.2fr 420px;

    gap: 50px;

    align-items: center;

    background: #fff;

    border-radius: 30px;

    padding: 50px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    position: relative;
}

.app-card::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: #006C35;

    opacity: 0.05;

    border-radius: 50%;

    top: -150px;
    left: -120px;
}

.app-content {
    position: relative;

    z-index: 2;
}

.app-badge {
    display: inline-block;

    background: #006C35;

    color: #fff;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;

    margin-bottom: 18px;
}

.app-content h2 {
    font-size: 42px;

    font-weight: 800;

    margin-bottom: 20px;

    color: #111;
}

.app-content h2 span {
    color: #006C35;
}

.app-content p {
    color: #666;

    line-height: 2;

    font-size: 17px;

    margin-bottom: 30px;
}

.app-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 35px;
}

.feature {
    display: flex;

    align-items: center;

    gap: 12px;

    background: #f8f8f8;

    border-radius: 16px;

    padding: 16px;

    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);

    background: #eef9f2;
}

.feature i {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #006C35;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.google-play-btn {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 18px 30px;

    border-radius: 18px;

    background: #111827;

    color: #fff !important;

    transition: 0.35s;

    text-decoration: none;

    font-weight: bold;
}

.google-play-btn:hover {
    transform: translateY(-6px);

    color: #fff !important;

    box-shadow:
        0 20px 35px rgba(0, 0, 0, 0.2);
}

.google-play-btn i {
    font-size: 42px;
}

.google-play-btn small {
    display: block;

    color: #bbb;

    font-size: 12px;
}

.google-play-btn strong {
    font-size: 20px;
}

.phone-preview {
    display: flex;

    justify-content: center;
}

.phone-frame {
    width: 300px;

    background:
        linear-gradient(
            180deg,
            #111827,
            #1f2937
        );

    color: #fff;

    border-radius: 35px;

    padding: 40px 25px;

    text-align: center;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3);

    animation:
        floatPhone 3.5s ease-in-out infinite;
}

.phone-frame img {
    width: 120px;
    height: 120px;

    border-radius: 30px;

    background: #fff;

    padding: 12px;

    margin-bottom: 20px;
}

.phone-frame h3 {
    font-weight: 700;

    margin-bottom: 10px;
}

.phone-frame p {
    color: #cfcfcf;

    margin-bottom: 25px;
}

.phone-frame .rating {
    display: flex;

    flex-direction: column;

    gap: 10px;

    font-size: 20px;

    color: #fff;
}

.phone-frame .rating span {
    color: #ddd;

    font-size: 15px;
}

@keyframes floatPhone {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================================================
   OLD APP DOWNLOAD SUPPORT
   ========================================================= */

.app-download {
    padding: 70px 20px;

    background:
        linear-gradient(
            135deg,
            #006C35,
            #003d20
        );
}

.app-box {
    display: grid;

    grid-template-columns:
        1fr 350px;

    gap: 40px;

    align-items: center;

    background: #fff;

    border-radius: 30px;

    padding: 40px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2);
}

.app-text h2 {
    color: #006C35;

    font-size: 35px;

    font-weight: 800;
}

.app-text p {
    color: #555;

    line-height: 2;

    font-size: 17px;
}

.app-text ul {
    list-style: none;

    padding: 0;

    margin: 20px 0;
}

.app-text li {
    margin-bottom: 10px;

    font-size: 16px;
}

.download-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #006C35;

    color: #fff;

    padding: 15px 25px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    font-size: 17px;

    transition: 0.3s;
}

.download-btn:hover {
    transform: scale(1.08);

    background: #004d26;
}

.download-btn i {
    font-size: 25px;
}

.phone {
    background: #111827;

    border-radius: 35px;

    padding: 30px;

    text-align: center;

    color: #fff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4);
}

.phone img {
    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: #fff;

    padding: 10px;
}

.phone h3 {
    margin-top: 20px;
}

.phone span {
    color: #ccc;
}

/* =========================================================
   POPUP
   ========================================================= */

.offer-popup {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s ease;
}

.offer-popup.show {
    opacity: 1;

    visibility: visible;
}

.popup-card {
    width: 90%;

    max-width: 340px;

    background: #fff;

    border-radius: 16px;

    padding: 22px;

    text-align: center;

    position: relative;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3);

    font-family: "Cairo", sans-serif;

    animation: popIn 0.35s ease;
}

@keyframes popIn {
    from {
        transform: scale(0.8);

        opacity: 0;
    }

    to {
        transform: scale(1);

        opacity: 1;
    }
}

.icon {
    font-size: 34px;

    color: #006C35;

    margin-bottom: 10px;
}

.popup-card h3 {
    margin-bottom: 10px;

    color: #0f172a;

    font-size: 18px;
}

.popup-card p {
    font-size: 14px;

    color: #555;

    line-height: 1.7;
}

.popup-btn {
    display: inline-block;

    margin-top: 15px;

    padding: 12px 18px;

    background: #006C35;

    color: #fff;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;

    position: relative;

    overflow: hidden;

    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(0, 108, 53, 0.5);
    }

    50% {
        transform: scale(1.06);

        box-shadow:
            0 0 0 10px rgba(0, 108, 53, 0);
    }

    100% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(0, 108, 53, 0);
    }
}

.close-btn {
    position: absolute;

    top: 10px;
    left: 12px;

    cursor: pointer;

    color: #777;

    font-size: 18px;
}

.close-btn:hover {
    color: #000;
}

.popup-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 15px;
}

.popup-btn.primary {
    background: #006C35;

    color: #fff;
}

.popup-btn.secondary {
    background: #f1f5f9;

    color: #0f172a;

    border: 1px solid #ddd;
}

.popup-btn.secondary:hover {
    background: #e2e8f0;
}

/* =========================================================
   VIP OFFERS
   ========================================================= */

.vip-title {
    color: #006C35;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .app-card {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 30px;
    }

    .phone-preview {
        order: -1;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .feature {
        justify-content: flex-start;
    }

    .app-content h2 {
        font-size: 30px;
    }

    .google-play-btn {
        width: 100%;

        justify-content: center;
    }

    .phone-frame {
        width: 260px;
    }

    .app-section {
        padding: 50px 15px;
    }

    .app-card {
        display: flex;

        flex-direction: column;

        padding: 25px;

        gap: 30px;

        text-align: center;

        border-radius: 22px;
    }

    .phone-frame {
        width: 220px;

        margin: auto;

        padding: 25px 20px;
    }

    .phone-frame img {
        width: 90px;
        height: 90px;
    }

    .app-content h2 {
        font-size: 26px;

        line-height: 1.5;
    }

    .app-content p {
        font-size: 15px;

        line-height: 1.9;
    }

    .app-features {
        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;
    }

    .feature {
        justify-content: flex-start;

        text-align: right;
    }

    .google-play-btn {
        width: 100%;

        justify-content: center;

        padding: 15px;
    }

    .google-play-btn strong {
        font-size: 18px;
    }

    .google-play-btn i {
        font-size: 34px;
    }
}

/* =========================================================
   MOBILE 768
   ========================================================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* HERO FULL SCREEN MOBILE */
    .hero {
        width: 100%;

        height: 100vh;
        height: 100dvh;

        min-height: 100vh;
        min-height: 100dvh;
    }

    .slide {
        transform: none !important;

        animation: none !important;

        background-size: cover !important;

        background-position: center center !important;
    }

    .slide.active {
        animation: none !important;

        transform: none !important;
    }

    /* NAVBAR */

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 60px;

        right: 0;

        width: 100%;

        background: rgba(0, 0, 0, 0.85);

        flex-direction: column;

        display: none;

        padding: 15px;

        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    /* HERO LOGO */

    .logo-circle {
        width: 100px;
        height: 100px;

        top: 110px;
        right: 10px;

        margin: 0;
    }

    .logo-circle img {
        width: 100%;
        height: 100%;
    }

    /* HERO TEXT */

    .hero-text {
        top: 115px;

        right: 120px;

        max-width: 75%;

        font-size: 13px;

        margin: 0;
    }

    /* FLOAT */

    .float-btns {
        left: 10px;

        bottom: 20px;

        top: auto;

        transform: none;
    }

    .finance {
        background: transparent !important;

        border: 2px solid #006C35;

        box-shadow: none !important;

        padding: 10px 14px;

        border-radius: 30px;
    }

    .finance span {
        display: inline;

        background: transparent;

        font-size: 13px;

        color: #006C35;
    }

    .finance i {
        background: transparent;

        color: #006C35;
    }

    /* SEARCH */

    .search-card {
        padding: 15px;
    }

    .search-box .row {
        flex-direction: column;
    }

    .search-box .col-md-10,
    .search-box .col-md-2 {
        width: 100%;
    }

    /* CARS */

    .col-md-3 {
        flex: 0 0 100%;

        max-width: 100%;
    }

    .car-card {
        margin-bottom: 15px;

        transform: none !important;

        width: 100%;
    }

    .car-img {
        height: 220px;

        object-fit: cover;
    }

    .car-body {
        position: relative;

        z-index: 5;

        background: #fff;
    }

    .price {
        display: block;

        font-size: 16px;

        color: #006C35;
    }

    .installment {
        display: block;

        font-size: 13px;

        color: #333;
    }

    .car-card .d-flex {
        padding-left: 25px;
    }

    .view-btn {
        font-size: 12px;

        padding: 8px;
    }

    /* REVIEWS */

    .review {
        min-width: 260px;
    }

    /* PARTNERS */

    .partner-logo {
        width: 80px;
    }

    /* ABOUT */

    .about-wrapper {
        grid-template-columns: 1fr !important;
    }

    .glass-card {
        padding: 25px;
    }

    /* GRIDS */

    .grid {
        grid-template-columns: 1fr !important;
    }

    .tax-box {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-reviews .grid {
        grid-template-columns: 1fr !important;
    }

    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* LOAD MORE */

    #loadMore {
        width: 90%;
    }

    /* BRAND MARQUEE */

    .brand-track {
        animation-duration: 18s;
    }

    /* TIKTOK */

    .tiktok-profile {
        padding: 40px 15px;
    }

    .tiktok-profile .title {
        font-size: 24px;
    }

    /* ABOUT */

    .about-left h2 {
        font-size: 32px;
    }

    .about-left p {
        font-size: 15px;
    }

    /* TAX */

    .tax-section {
        padding: 50px 15px;
    }

    /* POPUP */

    .popup-card {
        max-width: 340px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-text {
        right: 115px;

        max-width: 65%;

        font-size: 12px;
    }

    .logo-circle {
        width: 85px;
        height: 85px;

        top: 105px;
    }

    .float-btns {
        left: 8px;

        bottom: 15px;
    }

    .float-btns a {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .car-img {
        height: 200px;
    }

    .app-content h2 {
        font-size: 24px;
    }

    .phone-frame {
        width: 200px;
    }

    .why-us {
        padding: 30px 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .actions {
        flex-direction: column;
    }

    .socials {
        justify-content: center;
    }
}
/* زرار طلب شراء */
.purchase-btn {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 50%,
        #006C35 50%,
        #006C35 100%
    ) !important;

    color: #006C35 !important;

    border: 2px solid #006C35 !important;

    min-width: 230px;

    transition: all 0.25s ease;
}

/* الكلام والأيقونة */
.purchase-btn i,
.purchase-btn {
    color: #006C35 !important;
}

/* نخلي النص السفلي أبيض عن طريق تغيير شكل المحتوى */
.purchase-btn {
    color: transparent !important;
}

/* Hover */
.purchase-btn:hover {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 50%,
        #00552a 50%,
        #00552a 100%
    ) !important;

    border-color: #00552a !important;

    transform: translateY(-2px);
}

/* أيقونة + النص */
.purchase-btn i {
    color: #006C35 !important;
}
.purchase-btn {
    padding: 0 !important;
    overflow: hidden;
    min-width: 230px;
    border: 2px solid #006C35 !important;
    background: #006C35 !important;
    transition: 0.25s ease;
}

.purchase-text-top {
    display: block;
    padding: 13px 28px;
    background: #fff;
    color: #006C35;
}

.purchase-text-bottom {
    display: block;
    padding: 8px 28px;
    background: #006C35;
    color: #fff;
    font-size: 14px;
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,108,53,.25) !important;
}

.purchase-btn:hover .purchase-text-top {
    background: #f8fff9;
}

.purchase-btn:hover .purchase-text-bottom {
    background: #00552a;
}
/* =========================================================
   NOKHBATY - HERO FINAL RESPONSIVE FIX
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000;
}

/* كل Slide ياخد نفس مقاس الـ Hero بالظبط */
.slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* لو الصورة موجودة كـ img */
.slide picture,
.slide-image {
    display: block;

    width: 100%;
    height: 100%;
}

.slide-image {
    object-fit: cover;
    object-position: center center;
}

/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 769px) {

    .hero {
        height: 100vh;
        height: 100dvh;

        min-height: 650px;
        max-height: none;
    }

    .slide-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 481px) and (max-width: 768px) {

    .hero {
        height: 100vh;
        height: 100dvh;

        min-height: 600px;
    }

    .slide-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        width: 100%;

        height: 100vh;
        height: 100dvh;

        min-height: 600px;
        max-height: none;
    }

    .slide {
        width: 100%;
        height: 100%;
    }

    .slide-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }
}