﻿/* ============================================================

   01. BASE & RESET
   02. TYPOGRAPHY & LINKS
   03. APPBAR
   04. HERO SECTION
   05. SERVICES SECTION
   06. TEAM SECTION
   07. TEAM MODAL
   08. CTA SECTION
   09. SWIPER / SLIDER
   10. FOOTER
   11. HAMBURGER MENU
   12. PRICING & MODALS
   13. JALALI DATE PICKER
   14. SUCCESS MODAL
   15. UTILITIES & ANIMATIONS
   ============================================================ */


/* ============================================================
   01. BASE & RESET
   ============================================================ */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: "Yekan Bakh FaNum", sans-serif;
}

button:focus {
    outline: none;
    box-shadow: none;
}

input:focus,
input.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: lightslategray !important;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


/* ============================================================
   02. TYPOGRAPHY & LINKS
   ============================================================ */

a {
    text-decoration: none;
    color: #0d6efd;
}


/* ============================================================
   03. APPBAR
   ============================================================ */

.appbarsection {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: env(safe-area-inset-top);
}

    .appbarsection.scrolled {
        background: rgba(211, 211, 211, 0.7);
        backdrop-filter: blur(6px);
    }

.appbardivlogo img {
    height: 25px;
}

.appbardivmenu img {
    height: 28px;
    cursor: pointer;
}

/* Desktop Nav */
.nav-link-custom {
    text-decoration: none;
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
}

    .nav-link-custom:hover {
        opacity: 0.7;
    }

.burger-btn img {
    width: 28px;
}


/* ============================================================
   04. HERO SECTION
   ============================================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100dvh - 60px);
    overflow: hidden;
    background-color: #0a0a0a;
}

/* Media Layer */
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-desktop {
    display: block;
}

.hero-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
    }
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.95) 100% );
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 24px 60px;
    gap: 32px;
    color: #ffffff;
}

.hero-text-wrapper {
    max-width: 900px;
    text-align: center;
}

/* Titles */
.hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line {
    display: block;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

/* Description */
.hero-description {
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.glass-effect {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    min-width: 160px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    }

.btn-shine {
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: fadeInOut 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

/* Responsive Hero */
@media (max-width: 767px) {
    .hero-content {
        padding: 32px 20px 50px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .glass-effect {
        width: 100%;
        padding: 18px 20px;
        font-size: 15px;
    }

    .scroll-indicator {
        display: none;
    }
}


/* ============================================================
   05. SERVICES SECTION
   ============================================================ */

.service-title {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
}

    .service-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #252525, #919191);
        border-radius: 2px;
    }

.services-wrapper-horizontal {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
    width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

    .services-wrapper-horizontal::-webkit-scrollbar {
        height: 6px;
    }

    .services-wrapper-horizontal::-webkit-scrollbar-track {
        border-radius: 10px;
    }

    .services-wrapper-horizontal::-webkit-scrollbar-thumb {
        border-radius: 10px;
        transition: background 0.3s ease;
    }

.service-section {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 20px;
    background: #f9f9f9;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    position: relative;
}

    .service-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 1;
    }

    .service-section:hover::before {
        opacity: 1;
    }

    .service-section .card-img-top {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-section:hover .card-img-top {
        transform: scale(1.1);
    }

    .service-section .card-body {
        padding: 1.5rem !important;
        position: relative;
    }

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgb(91 91 91 / 10%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgb(85 85 85 / 20%);
    color: #060606;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s ease;
    }

.service-section:hover .service-badge::before {
    left: 100%;
}

.service-section:hover .service-badge {
    transform: scale(1.05);
}

.service-typo {
    color: #282828;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-section .card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-cal-price {
    margin: 0;
}

    .service-cal-price a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #555555;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        padding-bottom: 2px;
    }

        .service-cal-price a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #B46300, #FFB951);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-cal-price a:hover::after {
            width: 100%;
        }

        .service-cal-price a::before {
            content: '←';
            display: inline-block;
            transition: transform 0.3s ease;
            font-size: 16px;
        }

        .service-cal-price a:hover::before {
            transform: translateX(-5px);
        }

        .service-cal-price a:hover {
            color: #8B4D00;
        }

/* Responsive Services */
@media (min-width: 768px) {
    .services-wrapper-horizontal {
        padding: 2rem;
        max-width: 680px;
        margin: 0 auto;
    }

    .service-section {
        width: 300px;
    }

        .service-section .card-img-top {
            height: 220px;
        }

    .service-title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .services-wrapper-horizontal {
        padding: 2rem;
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
    }

    .service-section {
        width: 260px;
    }

        .service-section .card-img-top {
            height: 200px;
        }

    .service-title {
        font-size: 36px;
        margin-bottom: 3rem;
    }

    .service-typo {
        font-size: 22px;
    }
}

@media (min-width: 1400px) {
    .services-wrapper-horizontal {
        max-width: 1400px;
        gap: 2rem;
    }

    .service-section {
        width: 280px;
    }
}


/* ============================================================
   06. TEAM SECTION
   ============================================================ */

.team-section {
    background: #F2F2F2;
    padding: 30px 20px !important;
}

.team-title {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

    .team-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #4da6ff, #0066cc);
        border-radius: 2px;
    }

.team-typo {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-cards-wrapper {
    margin-bottom: 2rem;
}

.team-card {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.team-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

/* Overlay راست */
.team-card.right .team-cover {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
    text-align: center;
    transition: width 0.4s ease, background 0.4s ease;
}

/* Overlay چپ */
.team-card.left .team-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
    text-align: center;
    transition: width 0.4s ease, background 0.4s ease;
}

.team-card:hover .team-cover {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    transition: transform 0.3s ease;
}

.team-card:hover .team-name {
    transform: scale(1.1);
}

.team-role {
    font-size: 14px;
    font-weight: 500;
    color: #4da6ff;
    margin: 0;
    transition: color 0.3s ease;
}

.team-card:hover .team-role {
    color: #66b3ff;
}

/* دکمه مشاهده تیم */
.team-section h5.small {
    color: #4da6ff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
}

    .team-section h5.small::after {
        content: '←';
        margin-right: 8px;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .team-section h5.small:hover {
        color: #0066cc;
        background: rgba(77, 166, 255, 0.1);
    }

        .team-section h5.small:hover::after {
            transform: translateX(-5px);
        }

/* Responsive Team */
@media (min-width: 768px) {
    .team-section {
        padding: 50px 40px !important;
    }

    .team-title {
        font-size: 28px;
    }

    .team-typo {
        font-size: 16px;
        margin-bottom: 3rem;
    }

    .team-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-card {
        margin-bottom: 0;
    }

    .team-name {
        font-size: 20px;
    }

    .team-role {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .team-section {
        padding: 80px 60px !important;
        max-width: 1400px;
        margin: 0 auto;
    }

    .team-title {
        font-size: 36px;
        margin-bottom: 1.5rem;
    }

    .team-typo {
        font-size: 18px;
        max-width: 800px;
    }

    .team-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .team-img {
        aspect-ratio: 3 / 2;
    }

    .team-name {
        font-size: 24px;
    }

    .team-role {
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    .team-cards-wrapper {
        gap: 50px;
    }
}


/* ============================================================
   07. TEAM MODAL
   ============================================================ */

.team-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    padding: 30px 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

    /* فقط برای مودال تیم — header */
    .team-modal-content .modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    /* فقط برای مودال تیم — body اسکرول‌پذیر */
    .team-modal-content .modal-body {
        overflow-y: auto;
        flex-grow: 1;
        padding-right: 10px;
        display: block; /* پیش‌فرض موبایل */
    }

.modal-title {
    font-size: 24px;
    font-weight: 700;
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .btn-close-white:hover {
        opacity: 1;
    }

/* Member Box */
.modal-member-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .modal-member-box:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(-5px);
        border-color: #4da6ff;
    }

.modal-img-wrapper {
    flex-shrink: 0;
}

.modal-member-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4da6ff;
    transition: transform 0.3s ease;
}

.modal-member-box:hover .modal-member-img {
    transform: scale(1.1);
}

.modal-member-info {
    flex-grow: 1;
}

.modal-member-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.modal-member-role {
    font-size: 14px;
    font-weight: 500;
    color: #4da6ff;
    margin: 0;
}

/* Scrollbar مودال تیم */
.team-modal-content .modal-body::-webkit-scrollbar {
    width: 6px;
}

.team-modal-content .modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.team-modal-content .modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4da6ff, #0066cc);
    border-radius: 10px;
}

    .team-modal-content .modal-body::-webkit-scrollbar-thumb:hover {
        background: #4da6ff;
    }

/* Responsive Team Modal */
@media (min-width: 768px) {
    .team-modal-content {
        padding: 40px;
    }

        .team-modal-content .modal-body {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

    .modal-member-box {
        margin-bottom: 0;
    }

    .modal-member-img {
        width: 80px;
        height: 80px;
    }

    .modal-member-name {
        font-size: 20px;
    }

    .modal-member-role {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .team-modal-content .modal-body {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .modal-member-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .modal-img-wrapper {
        margin-bottom: 15px;
    }

    .modal-member-img {
        width: 90px;
        height: 90px;
    }

    .modal-member-info {
        margin: 0 !important;
    }

    .modal-member-name {
        font-size: 19px;
    }
}

@media (min-width: 1400px) {
    .team-modal-content .modal-body {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1800px) {
    .team-modal-content .modal-body {
        grid-template-columns: repeat(5, 1fr);
    }
}


/* ============================================================
   08. CTA SECTION
   ============================================================ */

.cta-section {
    position: relative;
    width: 100%;
    padding: 0;
}

.cta-bg {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
}

    .cta-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 8s ease-out;
    }

    .cta-bg .cta-img-mobile {
        display: block;
        min-height: 380px;
        object-position: center;
    }

    .cta-bg .cta-img-desktop {
        display: none;
    }

    .cta-bg:hover img {
        transform: scale(1.05);
    }

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.85) 0%, rgba(50, 50, 50, 0.7) 50%, rgba(0, 0, 0, 0.9) 100% );
    backdrop-filter: blur(2px);
    color: #fff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .cta-overlay::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient( 45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px );
        pointer-events: none;
    }

.cta-title {
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(100, 100, 100, 0.3);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

    .cta-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #ffffff, transparent);
        border-radius: 2px;
        animation: glowLine 2s ease-in-out infinite;
    }

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-overlay > .d-flex {
    width: 100%;
    max-width: 500px;
    gap: 12px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    flex-direction: column;
}

    .cta-overlay > .d-flex > div {
        margin: 0 !important;
        flex: 1;
    }

/* CTA Buttons */
.btn-cal,
.btn-time {
    position: relative;
    border-radius: 12px;
    height: 52px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-cal {
    background: linear-gradient(135deg, #4f4f4f 0%, #b5b5b5 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgb(0 0 0 / 40%), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

    .btn-cal::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transition: left 0.6s ease;
    }

    .btn-cal:hover::before {
        left: 100%;
    }

    .btn-cal:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(139, 105, 20, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

.btn-time {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .btn-time::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-time:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    }

        .btn-time:hover::after {
            opacity: 1;
        }

    .btn-cal:active,
    .btn-time:active {
        transform: translateY(-1px);
        animation: ripple 0.6s ease-out;
    }

/* Responsive CTA */
@media (min-width: 768px) {
    .cta-section {
        margin: 50px 0;
    }

    .cta-bg {
        height: 400px;
        overflow: hidden;
    }

        .cta-bg .cta-img-mobile {
            display: none;
        }

        .cta-bg .cta-img-desktop {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .cta-overlay {
        padding: 40px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 1rem;
    }

        .cta-title::after {
            width: 90px;
            height: 4px;
        }

    .cta-text {
        font-size: 16px;
        margin-bottom: 1.8rem;
        max-width: 700px;
    }

    .cta-overlay > .d-flex {
        max-width: 600px;
        gap: 16px;
        flex-direction: row;
    }

    .btn-cal,
    .btn-time {
        height: 56px;
        font-size: 16px;
        padding: 0 28px;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        margin: 60px 0;
    }

    .cta-bg {
        height: 400px;
    }

    .cta-overlay {
        padding: 50px 60px;
    }

    .cta-title {
        font-size: 38px;
        margin-bottom: 1.2rem;
    }

        .cta-title::after {
            width: 100px;
        }

    .cta-text {
        font-size: 17px;
        margin-bottom: 2rem;
        max-width: 750px;
    }

    .cta-overlay > .d-flex {
        max-width: 650px;
        gap: 20px;
        flex-direction: row;
    }

    .btn-cal,
    .btn-time {
        height: 58px;
        font-size: 16px;
        border-radius: 12px;
    }
}

@media (min-width: 1400px) {
    .cta-bg {
        height: 400px;
    }

    .cta-title {
        font-size: 42px;
    }

    .cta-text {
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-bg img,
    .btn-cal,
    .btn-time,
    .cta-title,
    .cta-text {
        animation: none;
        transition: none;
    }
}


/* ============================================================
   09. SWIPER / SLIDER
   ============================================================ */

.swiper-container-wrapper {
    padding: 0 15px;
}

.swiper-slide {
    width: auto !important;
}

.myMetroSwiper .swiper-slide,
.myMetroSwiperReverse .swiper-slide {
    user-select: none;
}

@media (min-width: 768px) {
    .swiper-container-wrapper {
        display: flex;
        justify-content: center;
        padding: 0;
    }

        .swiper-container-wrapper .swiper {
            max-width: 90%;
            margin: 0 auto;
        }
}

@media (min-width: 1024px) {
    .swiper-container-wrapper .swiper {
        max-width: 85%;
    }
}


/* ============================================================
   10. FOOTER
   ============================================================ */

.footer-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

    .footer-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-insta-modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.insta-icon-wrapper {
    position: relative;
}

    .insta-icon-wrapper::after {
        content: '';
        position: absolute;
        inset: -4px;
        background: white;
        border-radius: 14px;
        z-index: -1;
    }

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, #dee2e6, transparent);
    align-self: center;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.phone-icon-wrapper {
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.phone-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

    .phone-link:hover {
        transform: translateY(-2px);
    }

.footer-number-modern {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.phone-link:hover .footer-number-modern {
    color: #4CAF50;
    text-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.map-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-image {
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.map-card:hover .map-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    }

.gradient-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 3rem 0;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Yekan Bakh FaNum";
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Yekan Bakh FaNum";
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-insta {
    background: white;
}

.footer-number {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.footer-title {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-family: "Yekan Bakh FaNum";
    font-size: 14px;
    font-weight: 400;
}

.footer-typo {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-family: "Yekan Bakh FaNum";
    font-size: 10px;
    font-weight: 400;
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-number {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-md-12:last-child .map-card {
        max-height: 300px;
    }
}

@media (min-width: 992px) {
    .stat-number {
        font-size: 1.5rem;
    }

    .footer-number-modern {
        font-size: 1.75rem;
    }
}


/* ============================================================
   11. HAMBURGER MENU
   ============================================================ */

.burger-typo {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.burger-des {
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    font-family: "Yekan Bakh FaNum";
    font-size: 14px;
    font-weight: 400;
}


/* ============================================================
   12. PRICING & RESERVE MODALS
   ============================================================ */

.price-layout {
    height: calc(100dvh - 60px);
}

.price-section {
    display: flex;
    width: 80px;
    min-width: 80px;
    flex: 0 0 auto;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid #000;
    background: #F2F2F2;
}

.price-title {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.price-des {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.car-cards-container {
    display: flex;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .car-cards-container::-webkit-scrollbar {
        display: none;
    }

.price-input {
    display: flex;
    height: 48px;
    padding: 8px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #999EA3;
}

.price-start-0 {
    left: 20px !important;
}

.price-modal-title {
    color: #000;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
}

.price-modal-des {
    color: rgba(0, 0, 0, 0.6);
    text-align: right;
    font-size: 14px;
    font-weight: 400;
}

.price-btn {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.highlighted {
    border: 2px solid #28a745 !important;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
    transition: all 0.3s ease-in-out;
}

/* Price Modal */
#priceModal .modal-dialog {
    height: calc(100dvh - 60px);
}

#priceModal .modal-footer {
    flex-wrap: nowrap;
}

/* Price Result */
.price-result-box {
    max-width: 420px;
    width: 100%;
    margin: auto;
}

.price-currency {
    font-size: 16px;
    font-weight: 500;
    margin-right: 4px;
}

.price-alert-box {
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 13px;
    color: #666;
    padding: 10px 14px;
    line-height: 1.7;
    border: 1px solid #e3e3e3;
    text-align: justify;
}

/* Price Summary Row */
.price-cal-modal-title {
    color: #000;
    text-align: center;
    font-family: "Yekan Bakh FaNum";
    font-size: 16px;
    font-weight: 700;
}

.price-cal-modal-row-col {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
}

.price-cal-modal-row-des {
    color: #000;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
}

.price-cal-modal-price {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.price-cal-modal-btncal {
    display: flex;
    height: 48px;
    max-width: 408px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 4px;
    background: #e9e9e9;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    border: 1px solid #d9d9d9;
}

.price-cal-modal-time {
    display: flex;
    width: 210px;
    height: 48px;
    max-width: 408px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 4px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

/* Car Card */
.car-card {
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .car-card.selected {
        border: 2px solid #000;
        background-color: #f7f7f7;
    }

.car-icon {
    width: 50px;
    transition: filter 0.2s ease;
}

.car-card.selected .car-icon {
    filter: grayscale(0) brightness(0);
}

/* Icon Styles */
.close-icon {
    border: 2px solid black;
    padding: 5px !important;
    border-radius: 29px;
    font-size: 8px;
    font-weight: bold;
    color: black !important;
}

/* ---- Reserve Modal ---- */
#reserveModal .modal-dialog {
    margin: 0;
    max-width: 480px;
    height: calc(100dvh - 60px);
}

#reserveModal .modal-content {
    border-radius: 0;
    min-height: calc(100dvh - 60px);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

#reserveModal .modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

#reserveModal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    font-size: 0.95rem;
    -webkit-overflow-scrolling: touch;
    /* بازنویسی Grid تیم */
    display: block !important;
    grid-template-columns: unset !important;
}

#reserveModal hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 1rem 0;
}

#reserveModal span {
    color: #666;
    font-size: 0.9rem;
}

#reserveModal strong {
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
}

#reserveModal .form-control {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 0.75rem;
    transition: border-color 0.2s ease;
}

    #reserveModal .form-control:focus {
        border-color: #000;
        box-shadow: none;
    }

#reserveModal .bi-calendar {
    color: #888;
    font-size: 1rem;
}

#reserveModal .modal-footer {
    border-top: 1px solid #ddd;
    background-color: #fff;
    padding: 1rem 1.25rem;
    position: sticky;
    bottom: 0;
    z-index: 1056;
    flex-wrap: nowrap;
}

#reserveModal #submitReservation {
    width: 100%;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem;
    border: none;
}

/* خطای داخل مودال رزرو */
#reserveError {
    display: none;
    background: #fff3f3;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    color: #c0392b;
    font-size: 0.9rem;
    padding: 10px 14px;
    margin-bottom: 1rem;
    text-align: right;
}

    #reserveError.show {
        display: block;
    }

/* Error Sheet (خارج مودال - fallback) */
#errorSheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 16px 16px 0 0;
    transition: bottom 0.4s ease;
    z-index: 9999;
}

    #errorSheet.show {
        bottom: 0;
    }

.sheet-content {
    padding: 24px;
    text-align: center;
    color: black;
    font-size: 16px;
}


/* ============================================================
   13. JALALI DATE PICKER (iOS Style)
   ============================================================ */

.ios-picker {
    position: fixed;
    inset: 0;
    z-index: 10500; /* بالاتر از مودال Bootstrap (1055) */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-family: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

    .ios-picker.show {
        pointer-events: all;
        opacity: 1;
    }

/* Overlay تاریک پشت تقویم */
.picker-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s;
}

.ios-picker.show .picker-overlay {
    opacity: 1;
}

/* باکس اصلی تقویم */
.picker-box {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
}

.ios-picker.show .picker-box {
    transform: translateY(0);
}

/* هدر تقویم */
.picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
    direction: rtl;
}

.btn-cancel {
    background: none;
    border: none;
    font-size: 14px;
    color: #ff3b30;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
}

.btn-ok {
    background: none;
    border: none;
    font-size: 14px;
    color: #007aff;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
}

.picker-title {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

/* ناحیه ستون‌ها */
.picker-columns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    height: 220px; /* 5 آیتم × 44px */
    overflow: hidden;
    direction: rtl;
    background: #fff;
    padding: 0;
}

/* هر ستون */
.picker-column {
    flex: 0 0 110px;
    height: 220px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .picker-column::-webkit-scrollbar {
        display: none;
    }

    /* هر آیتم */
    .picker-column div {
        height: 44px;
        line-height: 44px;
        scroll-snap-align: start;
        font-size: 15px;
        color: #999;
        cursor: pointer;
        transition: color 0.15s, font-weight 0.15s, transform 0.15s;
        white-space: nowrap;
        user-select: none;
    }

        /* آیتم فعال (وسط — ایندکس ۲) */
        .picker-column div.active {
            color: #000;
            font-weight: 700;
            font-size: 16px;
        }

        /* آیتم‌های مجاور فعال */
        .picker-column div.near-active {
            color: #555;
            font-size: 15px;
        }

/* خطوط انتخاب وسطی */
.picker-highlight {
    position: absolute;
    top: 50%;
    left: 16px;
    right: 16px;
    height: 44px;
    transform: translateY(-50%);
    border-top: 1.5px solid #d0d0d0;
    border-bottom: 1.5px solid #d0d0d0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 2;
}

/* برچسب ستون‌ها */
.picker-col-label {
    text-align: center;
    font-size: 11px;
    color: #aaa;
    padding: 4px 0 8px;
    direction: rtl;
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .picker-col-label span {
        flex: 0 0 110px;
        display: inline-block;
    }


/* ============================================================
   14. SUCCESS MODAL
   ============================================================ */

#successModal .modal-dialog {
  
}

#successModal .modal-content {
   
    overflow: hidden;
    text-align: center;
    padding: 2rem 1.5rem;
}

/* دایره تیک سبز */
.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.35);
    animation: popIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .success-icon-circle svg,
    .success-icon-circle i {
        color: #fff;
        font-size: 2rem;
    }

#successModal .modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

#successModal p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

#successModal #goHomeBtn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    transition: background 0.2s ease;
}

    #successModal #goHomeBtn:hover {
        background: #222;
    }


/* ============================================================
   15. UTILITIES & ANIMATIONS
   ============================================================ */

/* Animations */
@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(8px) rotate(45deg);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowLine {
    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

/* ── Bottom Sheet Modal ── */
#mapModal {
    align-items: flex-end !important;
    padding: 0 !important;
}

.map-bs-dialog {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    transform: translateY(100%) !important;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

#mapModal.show .map-bs-dialog {
    transform: translateY(0) !important;
}

.map-bs-content {
    border-radius: 28px 28px 0 0 !important;
    border: none !important;
    background: #0f0f0f !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.8) !important;
    overflow: hidden !important;
}

/* Handle */
.map-bs-handle-wrap {
    padding: 14px 0 4px;
    display: flex;
    justify-content: center;
    background: #0f0f0f;
}

.map-bs-handle {
    width: 44px;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

/* Header */
.map-bs-header {
    background: linear-gradient(135deg, #1a0533 0%, #0d1a3a 50%, #0a0a0a 100%);
    padding: 20px 24px 28px;
    text-align: center;
    position: relative;
}

    .map-bs-header::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 0%, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

.map-bs-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 1;
}

    .map-bs-close:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    }

.map-bs-pin-wrap {
    width: 64px;
    height: 64px;
    background: rgba(255, 71, 87, 0.12);
    border: 1px solid rgba(255, 71, 87, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    animation: mapPinPulse 2.5s ease-in-out infinite;
}

@keyframes mapPinPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 71, 87, 0);
    }
}

.map-bs-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.map-bs-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 1;
}

/* Body */
.map-bs-body {
    padding: 20px 20px 36px;
    background: #0f0f0f;
}

.map-bs-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

    .map-bs-btn:last-child {
        margin-bottom: 0;
    }

    .map-bs-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(167, 139, 250, 0.3);
        transform: translateX(-3px);
    }

.map-bs-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .map-bs-icon img {
        width: 36px;
        height: 36px;
        object-fit: contain;
    }

.map-bs-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.map-bs-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.map-bs-arrow {
    margin-right: auto;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.map-bs-btn:hover .map-bs-arrow {
    color: #a78bfa;
    transform: translateX(-4px);
}
