﻿/* -------------------- فونت‌ها -------------------- */
@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelakfa-black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelakfa-bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelakfa-regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelakfa-light.ttf') format('truetype');
    font-weight: 300;
}

* {
    font-family: 'Pelak', sans-serif ;
}

/* -------------------- رنگ‌ها و متغیرها -------------------- */
:root {
    --bg: #fdfcf7; /* شیری */
    --card: #ffffff; /* سفید برای کارت‌ها */
    --gold: #f6c453; /* طلایی */
    --accent: #6b8afd; /* آبی سلطنتی */
    --muted: #555; /* خاکستری نزدیک مشکی */
    --ring: rgba(246,196,83,.35);
    --shadow: 0 20px 40px rgba(0,0,0,.08);
    --radius: 18px;
   
}

/* -------------------- بدنه -------------------- */
body {
    background: var(--bg);
    color: #171717; /* متن نزدیک مشکی */
    min-height: 100vh;
  
}

    body.modal-open {
        overflow: auto !important;
        padding-right: 0 !important;
    }

/* -------------------- ناوبری -------------------- */
.navbar {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

    .navbar .nav-link {
        color: #555 !important;
    }

        .navbar .nav-link:hover {
            color: var(--gold) !important;
        }

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .2rem .2rem; /* کمی فاصله بیشتر برای تناسب لوگوی بزرگ‌تر */
    border-radius: 999px;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(47, 47, 47, 0.92));
    border: 1px solid #f5d142;
    color: #222;
}

    /* 🔹 اندازه و تنظیم لوگو */
    .brand-badge .logo-img {
        height: 50px; /* 👈 اندازه لوگو را می‌توانی تغییر دهی */
        width: auto;
        display: block;
    }

/* ---- دکمه ورود رانندگان ---- */
.btn-driver-login {
    background: linear-gradient(135deg, #f6c453, #ffd95a);
    color: #222;
    font-weight: 600;
    border: none;
    padding: 6px 14px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(246, 196, 83, 0.4);
}

    .btn-driver-login:hover {
        background: linear-gradient(135deg, #ffd95a, #f6c453);
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(246, 196, 83, 0.5);
    }

/* 📱 نسخه موبایل */
@media (max-width: 768px) {
    .btn-driver-login {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}


/* -------------------- هیرو -------------------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    /*background: url('../images/hero-bg.jpg') no-repeat center center;*/
    margin-top: 50px;
}

    .hero h1 {
        font-weight: 800;
        line-height: 1.2;
    }

    .hero .lead {
        color: var(--muted);
    }

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 40px 15px;
        background-position: top;
    }

        .hero h1 {
            font-size: 1.5rem;
            line-height: 1.4;
        }

        .hero p {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .hero .btn {
            font-size: 0.85rem;
            padding: 8px 16px;
        }
}

.text-gold {
    color: #b8860b;
    font-weight: 600;
}

#distanceInfo {
    background: #fff8e1;
    border-radius: 10px;
    padding: 8px 12px;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.trust-text {
    background: radial-gradient(circle at center, rgba(34,197,94,0.12), transparent 70%);
    border-radius: 16px;
    padding: 18px 24px;
    margin-top: 10px;
    transition: all 0.4s ease;
}

    .trust-text:hover {
        background: radial-gradient(circle at center, rgba(34,197,94,0.2), transparent 80%);
    }

    .trust-text p {
        font-size: 1.15rem;
        font-weight: 700; /* بولد */
        line-height: 1.9;
        margin: 6px 0;
        background: linear-gradient(90deg, #4ade80, #16a34a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 10px rgba(34, 197, 94, 0.25);
        transition: all 0.3s ease;
    }


.lux {
    background: linear-gradient(90deg, #f6c453, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(246,196,83,0.3);
}

/* 📱 نسخه موبایل */
@media (max-width: 768px) {
    .trust-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .trust-text {
        padding: 14px 18px;
        border-radius: 12px;
    }
}

/* -------------------- کارت‌ها -------------------- */
.glass-card {
    background: var(--card);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: #222;
}

.ring {
    box-shadow: 0 0 0 4px var(--ring);
}

/* 🔹 کارت ماشین‌ها */
.car-card {
    width: 100% !important;
    margin: 0 auto 15px auto;
    text-align: center;
    border: 2px dashed #979797;
    border-radius: 12px;
    background: #feffed;
    line-height: 25px;
    padding: 6px;
    transition: .25s transform, .25s box-shadow;
}

    .car-card:hover {
        transform: translateY(-6px);
    }

    .car-card h5,
    .car-card .fw-bold,
    .car-card .text-muted {
        border-right: 5px solid #ffb1017b;
        padding-right: 10px;
    }

/* -------------------- دکمه‌ها -------------------- */
.btn-gold {
    background: linear-gradient(135deg,var(--gold),#ffd98d);
    color: #2b1a00;
    font-weight: 800;
    border: 0;
    border-radius: 14px;
}

    .btn-gold:hover {
        filter: brightness(.95);
    }

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(0,0,0,.18);
    color: #222;
    border-radius: 14px;
}

.gx-1 {
    --bs-gutter-x: 0.1rem !important;
}

/* کنترل فاصله بین ردیف‌ها (عمودی) */
.gy-3 {
    --bs-gutter-y: 0.5rem !important;
}

/* دکمه فلش */
.swap-btn {
    background: #f5d142;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 18px;
    transition: 0.3s;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

    .swap-btn:hover {
        background-color: #f5d142;
        color: #222;
        border-color: #e0c13a;
        transform: rotate(180deg);
    }

@media (max-width: 768px) {
    .booking-form .form-group {
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* تراز تمام محتوا از سمت راست */
        width: 100%;
    }

    .booking-form label {
        width: 100%;
        text-align: right;
        margin-bottom: 4px;
    }

    .booking-form select,
    .booking-form input {
        width: 100%;
        box-sizing: border-box;
        text-align: right;
        padding-right: 10px !important;
    }
}



/* -------------------- اینپوت‌ها -------------------- */
label.small {
    color: #444;
}

.input-dark, .form-select {
    background: #fff;
    border-color: #ccc;
    color: #222;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .input-dark:focus, .form-select:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 .2rem rgba(246,196,83,.25);
    }

/* -------------------- کمبوباکس (Select2) -------------------- */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 50px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #222 !important;
        line-height: 38px;
    }

.select2-container--default .select2-results__option {
    color: #222 !important;
    background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--gold);
    color: #000;
}

/* -------------------- تیتر بخش‌ها -------------------- */
.section-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #222;
}

    .section-title .dot {
        width: 10px;
        height: 10px;
        margin-left: 6px;
        background-color: #faf504;
        border-radius: 50%;
        animation: pulse 1.5s infinite ease-in-out;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

/* -------------------- ویژگی‌ها -------------------- */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .55rem;
    border-radius: 999px;
    background: rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.08);
    font-size: .8rem;
    color: #222;
}

.feature {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #444;
}

    .feature i {
        font-size: 1.1rem;
        color: var(--gold);
    }

/* -------------------- متن لوکس -------------------- */
h1.display-5 {
    font-weight: 700;
    background: linear-gradient(90deg, #444, #4f4f4f, #9b9b9b, #8a8b80, #8b8b81);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-move 6s linear infinite;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.lux {
    color: #e13fac;
    animation: flicker 1s infinite;
}

@keyframes flicker {
    0%,19%,21%,23%,25%,54%,56%,100% {
        opacity: 1;
        text-shadow: 0 0 1px #e13fac, 0 0 2px #ff5dca, 0 0 15px #ff78d3;
    }

    20%,24%,55% {
        opacity: 0.6;
        text-shadow: none;
    }
}

/* -------------------- فوتر -------------------- */
/* ---------------- Footer ---------------- */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
    color: #eee;
    border-top: 3px solid #f6c453;
    box-shadow: 0 -3px 15px rgba(246,196,83,0.25);
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(246,196,83,0.07), transparent 60%);
        animation: glowMove 6s linear infinite;
        z-index: 0;
    }

@keyframes glowMove {
    0% {
        transform: translateX(-20%);
    }

    50% {
        transform: translateX(20%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* متن فوتر */
.footer-text {
    font-weight: 500;
    color: #ccc;
}

    .footer-text strong {
        color: #f6c453;
    }

/* دکمه‌های شبکه اجتماعی */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .footer-btn i {
        font-size: 1.1rem;
    }

    .footer-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 12px rgba(246,196,83,0.4);
    }

    /* رنگ اختصاصی هر شبکه */
    .footer-btn.insta:hover {
        background: radial-gradient(circle at 30% 107%, #f58529, #dd2a7b, #8134af, #515bd4);
    }

    .footer-btn.whatsapp:hover {
        background: #25d366;
    }

    .footer-btn.call:hover {
        background: #f6c453;
        color: #222;
    }

.text-gold {
    color: #f6c453;
}

/* 📱 نسخه موبایل */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
    }

    .footer {
        margin-bottom: 60px;
    }
}


#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

body, form, .container, .hero, .glass-card {
    position: relative;
    z-index: 1;
}

/* -------------------- مودال -------------------- */
.modal-backdrop.show {
    z-index: -1 !important;
}

.modal {
    z-index: 1060 !important;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden !important;
}

.modal-content {
    max-height: 100%;
    background: #fff;
    color: #000;
    border-radius: 14px;
    padding: 0;
}

.modal-body {
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden !important;
    width: 99%;
    padding: 15px;
}

.modal-header {
    width: 99%;
}

#customBackdrop {
    position: absolute;
    z-index: 1061 !important;
    top: 0;
    width: 100%;
    height: 100%;
    margin-top: -90px;
    background-color: #232323d9;
    display: none;
}

#galleryModal {
    z-index: 1065 !important;
    height: 120% !important;
}

.carousel-item img {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    background: linear-gradient(90deg,#353b00,#000,#000,#000,#353b00);
}

/* -------------------- کارت‌ها و سایر اجزاء -------------------- */
.soft-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
    padding: 15px;
}

.badge-vip {
    background: linear-gradient(135deg,#f59e0b,#fbbf24);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}



.phone-banner {
    font-family: PelakFA-Black;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    /* ✨ گرادینت چندرنگ */
    background: linear-gradient(120deg, rgba(246, 196, 83, 0.6), /* طلایی اصلی */
    rgb(204, 255, 77, 0.50), /* کهربایی */
    rgba(255, 217, 90, 0.4), /* زرد روشن */
    rgb(251, 255, 148, 0.50), /* کرمی */
    rgba(246, 196, 83, 0.6), /* طلایی دوباره */
    rgba(230, 169, 59, 0.5)); /* طلایی تیره */

    background: linear-gradient(120deg, #ffb1004f, #ff3dbf5c, #d4cc375b, #80b5c452, #cbffb071, #f6c4533e);
    background-size: 400% 400%;
    animation: gradientFlow 8s ease infinite;
    box-shadow: 0 6px 20px rgba(246,196,83,0.35);
    border-bottom: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 20px rgba(246,196,83,0.5);
    margin-bottom: -60px;
}

/* انیمیشن گرادینت */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*.contact-box i {
    color: #000;
    font-size: 1.4rem;
    animation: pulseIcon 1.3s infinite;
   
}*/
@keyframes pulseIcon {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.8;
    }
}
.contact-box {
    
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border: dotted 2px rgb(0, 0, 0);
    background-color: rgb(255, 255, 255, 0.55)
}

    .contact-box:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.25);
    }

    .contact-box i {
        font-size: 1.3rem;
        color: #000;
        animation: pulseIcon 1.2s infinite;
    }

.phone-number {

    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
}

    .phone-number .label {
        font-weight: 800;
    }

    .phone-number .num {
        direction: ltr;
       
    }

    .phone-number .name {
        font-weight: 700;
    }

        .phone-number .name small {
            font-size: 0.8rem;
            font-weight: 500;
            color: #333;
        }



/* 📱 نسخه موبایل */
@media (max-width: 768px) {
    .phone-banner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 16px;
    }

    .contact-box {
        width: 100%;
        justify-content: center;
    }
}






.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f6c453;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 2px solid #fff;
    z-index: 1000;
    font-weight: bold;
}

    .mobile-footer a {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        transition: 0.3s;
    }

        .mobile-footer a i {
            font-size: 22px;
            margin-bottom: 4px;
        }

        .mobile-footer a:hover {
            opacity: 0.85;
        }



@media (min-width: 769px) {
    .mobile-footer {
        display: none;
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

    .features .chip {
        background: #eaeaea99;
        color: #414141;
        padding: 6px 10px;
        border-radius: 20px;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

        .features .chip i {
            font-size: 14px;
        }

.car-info h6 {
    line-height: 30px;
    text-align: center;
    background-color: #fcffcd;
    padding: 4px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.car-img {
    max-width: 120px;
}

    .car-img img {
        max-width: 140px;
        margin-bottom: 6px;
        margin-right: -18px;
    }

    .car-img button.btn-gallery {
        font-size: 11px;
        padding: 4px 10px;
        background: #fff8cc;
        border: 1px solid #eee;
        color: #333;
        border-radius: 6px;
        margin-right: -25px;
    }

.car-info .price {
    font-size: 1.0rem;
    font-weight: bold;
    color: #00b9b4;
    text-align: right;
}

    .car-info .price i {
        color: #e13fac;
    }

.btn-reserve {
    display: inline-block;
    padding: 4px 29px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg,#f6c453,#ffae00);
    color: #222;
    border: none;
    transition: 0.3s;
}

    .btn-reserve:hover {
        background: linear-gradient(135deg,#ffae00,#f6c453);
        color: #000;
        transform: translateY(-2px);
    }

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

    .car-features span {
        white-space: nowrap;
    }

@media (max-width: 768px) {
    .car-features span {
        flex: 0 0 30%;
    }
}



.logo-img {
    height: 50px;
    width: auto;
    display: block;
 
}


.gallery {
    --g: 8px; /* the gap */

    display: grid;
    clip-path: inset(1px); /* to avoid visual glitchs */
}

    .gallery > img {
        --_p: calc(-1*var(--g));
        grid-area: 1/1;
        width: 350px; /* control the size */
        aspect-ratio: 1;
        cursor: pointer;
        transition: .3s .1s;
    }

        .gallery > img:first-child {
            clip-path: polygon(0 0, calc(100% + var(--_p)) 0, 0 calc(100% + var(--_p)))
        }

        .gallery > img:last-child {
            clip-path: polygon(100% 100%, 100% calc(0% - var(--_p)), calc(0% - var(--_p)) 100%)
        }

    .gallery:hover > img:last-child,
    .gallery:hover > img:first-child:hover {
        --_p: calc(50% - var(--g));
    }

        .gallery:hover > img:first-child,
        .gallery:hover > img:first-child:hover + img {
            --_p: calc(-50% - var(--g));
        }




/*------------------------سوالات پر تکرار------------------------*/
#faq .accordion-button {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(246, 196, 83, 0.3);
    border-radius: 10px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(246, 196, 83, 0.05);
}

    #faq .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #f6c453, #ffd95a);
        color: #000;
        box-shadow: 0 4px 12px rgba(246, 196, 83, 0.3);
    }

#faq .accordion-body {
    background: #fffdf6;
    border: 1px solid rgba(246, 196, 83, 0.2);
    border-radius: 0 0 10px 10px;
    padding: 14px 16px;
    line-height: 1.8;
}

#faq .accordion-item {
    border: none;
}

#faq .section-title span {
    font-weight: 700;
}

#faq .dot {
    background-color: #f6c453;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
}


/* ---------------- دفتر مرکزی ---------------- */
.office-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(246, 196, 83, 0.35);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(246, 196, 83, 0.15);
    backdrop-filter: blur(10px);
    direction: rtl;
}

    .office-box h4 {
        border-bottom: 2px solid #f6c453;
        display: inline-block;
        padding-bottom: 4px;
        font-weight: 700;
        color: #222;
    }

    .office-box p {
        color: #333;
        font-size: 0.95rem;
    }

.text-gold {
    color: #f6c453 !important;
}

.map-box iframe {
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.map-box:hover iframe {
    transform: scale(1.02);
}

/* 📱 نسخه موبایل */
@media (max-width: 768px) {
    .office-box {
        text-align: center;
    }

        .office-box h4 {
            font-size: 1.1rem;
        }

    .map-box iframe {
        height: 200px;
    }
}


/* ✨ Lazy Load Fade-in Effect */
.lazy-fade {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .lazy-fade.loaded {
        opacity: 1;
        transform: scale(1);
    }


/*======================= section =============================*/


.popular-routes {
    background: linear-gradient(180deg, #fff9e5, #fff);
    border-top: 2px solid #f6c45355;
    border-bottom: 2px solid #f6c45355;
    position: relative;
    overflow: hidden;
}

    .popular-routes::before {
        content: "";
        position: absolute;
        top: 0;
        right: -40%;
        width: 180%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(246, 196, 83, 0.12) 0%, transparent 70%);
        animation: glowMove 8s linear infinite;
    }

@keyframes glowMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0);
    }
}

.route-card {
    background: #fff;
    border: 2px solid #f6c45366;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(246, 196, 83, 0.25);
    transition: all 0.3s ease;
    padding: 12px 10px;
    font-family: 'Vazirmatn', 'PelakFA-Black', sans-serif;
    font-weight: 600;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    text-align: center;
}

    .route-card i {
        color: #f6c453;
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .route-card:hover {
        background: linear-gradient(135deg, #f6c453, #ffd95a);
        color: #222;
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(246, 196, 83, 0.4);
    }

        .route-card:hover i {
            color: #000;
        }

@media (max-width: 576px) {
    .route-card {
        font-size: 0.9rem;
        min-height: 80px;
    }

        .route-card i {
            font-size: 1.3rem;
        }
}


/*====================== مودال راننداه ========================*/

.bg-gold {
    background: linear-gradient(90deg,#f6c453,#ffd95a,#f6c453);
}

.btn-gold {
    background: linear-gradient(90deg,#f6c453,#ffd95a);
    color: #000;
    border: none;
    font-weight: 600;
}

    .btn-gold:hover {
        opacity: .9;
    }


/* 🎯 تایمر گرد طلایی */
.timer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-circle {
    width: 60px;
    height: 60px;
    border: 3px solid #f6c453;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 1s infinite alternate;
    box-shadow: 0 0 10px rgba(246, 196, 83, 0.6);
}

    .timer-circle span {
        font-size: 1.3rem;
        color: #000;
        font-weight: bold;
        font-family: "PelakFA-Black", sans-serif;
    }

@keyframes pulse {
    from {
        transform: scale(1);
        box-shadow: 0 0 6px rgba(246,196,83,0.5);
    }

    to {
        transform: scale(1.08);
        box-shadow: 0 0 15px rgba(246,196,83,0.9);
    }
}

/* ✨ پیام‌ها */
.lbl-success {
    color: #28a745 !important;
    background: #e6ffee;
    border-radius: 10px;
    padding: 8px 10px;
}

.lbl-error {
    color: #dc3545 !important;
    background: #ffe6e6;
    border-radius: 10px;
    padding: 8px 10px;
}

.lbl-warning {
    color: #b8860b !important;
    background: #fff4e1;
    border-radius: 10px;
    padding: 8px 10px;
}
/* دکمه ورود رانندگان */
.btn-driver-login {
    background-color: #ffb100;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

    .btn-driver-login:hover {
        background-color: #ffcc33;
        color: #000;
        transform: translateY(-2px);
    }

/* دکمه استخدام (سبز ملایم) */
/* ✨ دکمه طلایی شیک */
.btn-hire {
    background: linear-gradient(120deg, #93ff5a, #78f653, #89e44a);
    color: #000;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    /* افکت حرکت نور روی دکمه */
    .btn-hire::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.4);
        transform: skewX(-25deg);
        transition: left 0.8s ease;
    }

    .btn-hire:hover::before {
        left: 125%;
    }

    .btn-hire:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }

/* ✨ افکت پالس طلایی */
.pulse-gold {
    animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(246,196,83,0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(246,196,83,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(246,196,83,0);
    }
}

/* 📱 نسخه موبایل کمی کوچک‌تر */
@media (max-width:768px) {
    .btn-hire {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}

/* در موبایل: دکمه‌ها فول‌عرض و مرتب */
@media (max-width: 992px) {
    .btn-driver-login,
    .btn-hire {
        width: 100%;
        text-align: center;
        padding: 10px 0 !important;
        font-size: 1rem;
    }

    .navbar .d-flex.align-items-center {
        width: 100%;
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }
}
/* بک‌دراپ سفارشی استاندارد */
.custom-backdrop {
    position: fixed; /* کل ویوپورت، نه absolute */
    inset: 0; /* top/right/bottom/left = 0 */
    background: rgba(35,35,35,.85);
    display: none;
    z-index: 1054; /* کمی پایین‌تر از مودال */
    opacity: 0;
    transition: opacity .2s ease;
}

    .custom-backdrop.show {
        display: block;
        opacity: 1;
    }

/* مطمئن می‌شویم مودال همیشه بالای بک‌دراپ باشه */
.modal {
    z-index: 1055;
}

/* وقتی مودال بازه، اسکرول بدنه قفل شود */
body.modal-open-custom {
    overflow: hidden;
    padding-right: var(--bs-scrollbar-width, 0);
}




/*============ هدر پستی ================*/
/* 🎨 پس‌زمینه طلایی تمام‌عرض */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1030; /* پیش‌فرض Bootstrap */
    transition: all 0.4s ease;
}

.track-banner {
    width: 100%;
    height: 160vh; /* 👈 فقط یک ارتفاع کامل صفحه */
    background: radial-gradient(circle at 30% 30%, #ffeaa4, #e9b94e 60%, #d49605 90%);
    background-size: 200% 200%;
    animation: gradientWave 10s ease-in-out infinite;
    display: flex;
    align-items: center; /* عموداً وسط */
    justify-content: center; /* افقاً وسط */
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
    z-index: 9990 !important;
    margin-top: -300px; /* 👈 فقط برای پوشاندن پشت منو، نه بیشتر */
    padding-top: 0; /* ❌ padding منفی لازم نیست */
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 🚀 انیمیشن fade-up هنگام لود */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.5s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* کارت سفید وسط */
.track-card {
    background: rgba(255,255,255,0.93);
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .track-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    /* آیکون */
    .track-card i {
        color: #000;
        font-size: 2rem;
        margin-bottom: 8px;
    }

/* دکمه طلایی */
.btnTrack {
    background-color: #78f653;
    color: #000;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

    .btnTrack:hover {
        background-color: #63e44a;
        color: #000;
        transform: scale(1.05);
    }


/* واکنش‌گرا */
@media (max-width: 768px) {
   
        .track-card {
        padding: 1rem 1.2rem;
        border-radius: 12px;
    }

        .track-card p {
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .track-card i {
            font-size: 1.5rem;
        }

    .btn-gold {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}






/* 🌈 نوار پیشرفت بالای صفحه */
/* 🌿 نوار پیشرفت سبز و ضخیم */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px; /* ⬅ ضخامت بیشتر */
    background: rgba(255, 255, 255, 0.15);
    z-index: 9999;
    overflow: hidden;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #28a745, #43d17d, #28a745);
    background-size: 300% 100%;
    animation: progressMove 4s linear infinite;
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.6);
    transition: width 0.3s ease;
    border-radius: 0 5px 5px 0;
}

/* 🌊 انیمیشن موجی روی progress */
@keyframes progressMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* کپچا جعلی */
.fake-captcha {
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    padding: 14px 20px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.captcha-logo {
    width: 25px;
    opacity: 0.8;
}

.captcha-check {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

    .captcha-check input {
        position: absolute;
        width: 22px;
        height: 22px;
        opacity: 0;
        cursor: pointer;
        z-index: 2;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.captcha-check input:checked ~ .checkmark {
    background-color: #4caf50;
    border-color: #4caf50;
    animation: checkmarkSpin 0.5s ease;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.captcha-check input:checked ~ .checkmark::after {
    display: block;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@keyframes checkmarkSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.captcha-label {
    font-size: 0.95rem;
    color: #333;
    user-select: none;
    cursor: pointer;
}

.captcha-spinner {
    display: none;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .captcha-label {
        font-size: 0.85rem;
    }
}

/* 💚 دکمه سبز با افکت چشم‌نواز */
.btn-green {
    background: linear-gradient(135deg, #5cd48c, #3dbb6b);
    color: #fff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.35);
    animation: pulseGreen 2s infinite ease-in-out;
}

    /* 🟢 افکت Hover */
    .btn-green:hover {
        background: linear-gradient(135deg, #6fe39a, #4ed17a);
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 0 25px rgba(76, 175, 80, 0.55);
        color: #fff;
    }

/* ✨ افکت پالس ملایم */
@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 12px rgba(76, 175, 80, 0.4);
    }

    50% {
        box-shadow: 0 0 22px rgba(76, 175, 80, 0.7);
    }

    100% {
        box-shadow: 0 0 12px rgba(76, 175, 80, 0.4);
    }
}

/* حالت غیرفعال (قبل از تیک کپچا) */
.btn-green.disabled {
    background: linear-gradient(135deg, #b8e6c8, #a5d9b9);
    opacity: 0.7;
    pointer-events: none;
    box-shadow: none;
}


/* 🚫 جلوگیری از انتخاب تمام متن‌ها در کل صفحه */
* {
    -webkit-user-select: none !important; /* برای Chrome و Safari */
    -moz-user-select: none !important; /* برای Firefox */
    -ms-user-select: none !important; /* برای IE/Edge */
    user-select: none !important; /* استاندارد */
}





/* =================== 🎯 هدر تاکسی بین‌شهری =================== */
/* ✨ پس‌زمینه موجی و گرادینت زنده */
.hero {
    position: relative;
    /*min-height: 100vh;*/
    background: radial-gradient(circle at 20% 30%, #fff9e5, #fff);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f6c45333, #ffd95a55, #fff3c955, #fff);
    background-size: 400% 400%;
    animation: heroFlow 12s ease infinite;
    filter: blur(60px);
    z-index: 1;
}

@keyframes heroFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 🌟 تیتر اصلی سئو */
/* ✨ افکت حرکتی برای عنوان اصلی */
#mainTitle {
    font-family: 'Pelak', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-align: right;
    position: relative;
    background: linear-gradient( 90deg, #f6c453, #ffd95a, #f6c453, #ffe68b, #f6c453 );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleMove 6s linear infinite;
    letter-spacing: -0.5px;
}

/* 🔹 انیمیشن حرکت گرادینت طلایی */
@keyframes titleMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    }
}

/* ✨ افکت خاص برای کلمه تاکسی شیک */
.lux {
    display: inline-block;
    position: relative;
    font-weight: 800;
    background: linear-gradient(90deg, #e13fac, #ff9ed9, #e13fac);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxWave 3s ease-in-out infinite;
}

/* موج ملایم صورتی */
@keyframes luxWave {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }

    50% {
        background-position: 100% 50%;
        transform: scale(1.05);
    }

    100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
}

/* 📱 نسخه موبایل */
@media (max-width: 768px) {
    #mainTitle {
        font-size: 2rem;
        text-align: center;
        line-height: 1.5;
    }
}


/* 💎 افکت شیشه‌ای کارت رزرو */
.glass-card {
    background: rgba(255,255,255,0.9);
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246,196,83,0.3);
    transition: all 0.4s ease;
}

    .glass-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(246,196,83,0.35);
    }

/* 🌟 انیمیشن fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 نسخه موبایل */
@media (max-width: 768px) {
    #mainTitle {
        font-size: 2rem;
        text-align: center;
    }

    #heroTrust p {
        text-align: center;
        font-size: 1rem;
    }
}

/* 🌟 استایل خاص برای پیام تاکسی شیک */
/* 🌟 ظاهر کلی SweetAlert */
.fancy-popup {
    border-radius: 18px !important;
    border: 2px solid #f6c453 !important;
    box-shadow: 0 0 25px rgba(246,196,83,0.35) !important;
    animation: glowPopup 3s infinite ease-in-out;
}

@keyframes glowPopup {
    0%, 100% {
        box-shadow: 0 0 15px rgba(246,196,83,0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(246,196,83,0.8);
    }
}

/* آیکون */
.swal-icon {
    font-size: 3rem;
    color: #f6c453;
    animation: pulseIcon 1.8s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.85;
    }
}

/* عنوان */
.swal-title {
    color: #333;
    font-weight: 800;
    margin-top: 8px;
    font-family: 'Pelak', sans-serif;
}

/* متن اصلی */
.swal-text {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-top: 8px;
    font-family: 'Pelak', sans-serif;
    text-align: center;
}

/* ✳️ کلمه استخدام سبز ملایم */
.text-hire {
    color: #22bb66;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(34,187,102,0.3);
}

/* لینک پایینی */
.swal-link-box {
    margin-top: 16px;
    text-align: center;
}

.swal-link {
    display: inline-block;
    background: linear-gradient(135deg, #f6c453, #ffd95a);
    color: #000;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(246,196,83,0.35);
}

    .swal-link:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #ffd95a, #f6c453);
        box-shadow: 0 6px 20px rgba(246,196,83,0.55);
    }

/* 📱 واکنش‌گرا */
@media (max-width: 600px) {
    .swal-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .swal-link {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
}





.phone-banner {
    position: relative;
    overflow: visible !important; /* ⛔ بخش حیاتی: اجازه بده کارت بیرون دیده بشه */
    z-index: 5;
    font-family: PelakFA-Black;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    margin-top: 90px;
    background: linear-gradient(120deg, #ffb1004f, #ff3dbf5c, #d4cc375b, #80b5c452, #cbffb071, #f6c4533e);
    background-size: 400% 400%;
    animation: gradientFlow 8s ease infinite;
    box-shadow: 0 6px 20px rgba(246,196,83,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.15);
}

/* 🧠 کارت هوش مصنوعی TaxiShik */
.ai-banner {
    position: relative; /* نه absolute */
    transform: translateY(-50%); /* 🔥 نصف کارت روی phone-banner بیفته */
    background: linear-gradient(145deg, #fff5cc, #ffe9a0);
    border: 1px solid rgba(245,179,0,.4);
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255,214,90,.25);
    cursor: pointer;
    overflow: hidden;
    transition: all .25s ease;
    z-index: 10;
    max-width: 420px;
    padding: 1rem;
    margin: 140px auto; /* وسط چین */
    margin-bottom:-190px;
}

    .ai-banner:hover {
        transform: translateY(-55%);
        box-shadow: 0 0 45px rgba(255,214,90,.35);
    }

.ai-title {
    background: linear-gradient(90deg,#f5b300,#e2a800);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.2rem;
}

.ai-desc {
    color: #111;
    font-weight: 500;
    font-size: .8rem;
}

.robot-icon {
    color: #f5b300;
    margin-left: .4rem;
    animation: pulse 2s infinite ease-in-out;
}

/* 🔸 لینک “اطلاعات بیشتر” */
.ai-more {
    font-size: .8rem;
    font-weight: 600;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    background: rgba(255, 207, 61, 0.85);
    border-radius: 12px;
    padding: .25rem .8rem;
    transition: all .25s ease;
    user-select: none;
}

    .ai-more:hover {
        background: rgba(255,214,90,.35);
        color: #000;
    }

/* 💫 انیمیشن درخشش */
@keyframes pulse {
    0%,100% {
        opacity: 0.9;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.ai-light {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,.5), rgba(255,255,255,.1), transparent);
    transform: skewX(-20deg);
    animation: sweep 4s infinite;
}

@keyframes sweep {
    0% {
        left: -150%;
    }

    60% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* 📱 نسخه موبایل */
@media (max-width: 768px) {
    .ai-banner {
        transform: translateY(-40%);
        max-width: 90%;
        padding: .9rem;
    }

    .ai-title {
        font-size: 1rem;
    }

    .ai-desc {
        font-size: .75rem;
    }
}



.intro-box {
    background: #fffef8;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .intro-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

.text-gold {
    color: #c9a226;
}


