/* --- 1. GLOBAL STYLES & FULL PAGE SCROLL ANIMATION --- */
:root {
    --primary-purple: #6825DB;
    --primary-lime: #Cdfb3f;
    --accent-orange: #FCA440;
    --dark-bg: #12072b;
    --glass-card: rgba(30, 15, 65, 0.65);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-muted: #c7bce0;
    --transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: auto;
    overflow-x: hidden;
    background-color: var(--dark-bg);
    background-image: radial-gradient(circle at 50% 5%, #2a1161 0%, var(--dark-bg) 70%);
    color: #ffffff;
    position: static;
}

#fullpage-wrapper {
    width: 100vw;
    height: auto;
    transform: none !important;
    transition: none;
    will-change: auto;
}

.fp-section {
    height: auto;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 5%;
    overflow: visible;
}

.section-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- 2. HEADER DESIGN (DİNAMİK) --- */
.thegem-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 25px 5%;
    transition: var(--transition-slow);
    background: transparent;
    border-bottom: none;
}

.thegem-header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thegem-header.scrolled {
    background: #ffffff !important;
    padding: 15px 5%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-bottom: none;
}

.thegem-header.scrolled-dark {
    background: var(--dark-bg) !important;
    padding: 15px 5%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    border-bottom: none;
}

.custom-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.custom-logo-text { font-size: 1.9rem; font-weight: 900; color: #ffffff; transition: var(--transition-fast); }
.custom-logo-text span { color: var(--primary-lime); }

.pill-nav-container { display: flex; gap: 12px; }
.pill-nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.pill-nav-link:hover, .pill-nav-link.active { background: rgba(255, 255, 255, 0.15); }

.pill-outline-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}
.pill-outline-btn:hover { background: #ffffff; color: var(--dark-bg); }

.thegem-header.scrolled .custom-logo-text { color: #111; }
.thegem-header.scrolled .custom-logo-text span { color: var(--primary-purple); }
.thegem-header.scrolled .pill-nav-link { color: #444; }
.thegem-header.scrolled .pill-nav-link:hover { background: #f5f5f5; color: var(--primary-purple); }
.thegem-header.scrolled .pill-outline-btn { border-color: var(--primary-purple); color: var(--primary-purple); }
.thegem-header.scrolled .pill-outline-btn:hover { background: var(--primary-purple); color: #fff; }

/* --- 3. ANİMASYONLAR (REVEAL) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- 4. CONSULTATION SEÇ: ÜLKE SEÇİM IZGARASI --- */
.consult-select-section {
    padding: 160px 5% 90px;
    justify-content: flex-start;
}

.cs-title {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.cs-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cs-country-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.cs-country-btn {
    flex: 0 1 calc(25% - 17px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 26px;
    background: var(--glass-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: var(--transition-fast);
    font-family: inherit;
}

.cs-country-btn:hover {
    transform: translateY(-6px);
    border-color: var(--primary-lime);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    background: rgba(45, 22, 90, 0.72);
}

.cs-flag {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.cs-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cs-country-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

/* --- 5. BÜLTEN & FOOTER BİRLEŞİK (BEYAZ) --- */
.footer-integrated-section { background: #ffffff; justify-content: space-between; padding-top: 60px;}

.newsletter-card-modern {
    background: #ffffff;
    border-radius: 35px;
    padding: 48px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.nl-left h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 0;
}
.nl-right {
    flex: 0 0 55%;
}
.nl-right p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}
.nl-form {
    display: flex;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.nl-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 25px;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
}
.nl-form button {
    background: #FCA440;
    color: #12072b;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: none;
}
.nl-form button:hover {
    box-shadow: 0 10px 20px rgba(252, 164, 64, 0.32);
    transform: translateY(-2px);
    background: #f39222;
    color: #12072b;
}

.way2go-footer { background: #ffffff; color: #111; text-align: center; padding: 30px 5% 20px; width: 100%; margin-top: auto;}
.footer-logo { font-size: 2.5rem; font-weight: 900; text-decoration: none; color: #111; margin-bottom: 20px; display: inline-block;}
.footer-logo span { color: var(--primary-purple); }
.footer-links-area { display: flex; justify-content: center; gap: 80px; margin: 20px 0; }
.footer-links-area ul { list-style: none; text-align: left; }
.footer-links-area a { color: #555; text-decoration: none; line-height: 2.2; font-weight: 500; font-size: 1.1rem; transition: 0.3s;}
.footer-links-area a:hover { color: var(--primary-purple); }
.footer-copy { color: #999; font-size: 0.95rem; margin-top: 20px; }

/* =========================================
   RESPONSIVE (MOBİL UYUM)
   ========================================= */
@media (max-width: 1024px) {
    .pill-nav-container, .header-actions { display: none !important; }
    .newsletter-card-modern { flex-direction: column; text-align: center; justify-content: center; }
    .cs-country-btn { flex: 0 1 calc(50% - 11px); }
    .nl-form { flex-direction: column; }
    .nl-left h2 { font-size: 2rem; }
}

@media (max-width: 640px) {
    .consult-select-section { padding: 140px 5% 70px; }
    .cs-country-btn { flex: 0 1 100%; }
}

/* --- ABD PAGE STYLE ADAPTATION FOR ABOUT PAGE --- */
.about-abd-page .custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.about-abd-page .custom-logo-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.about-abd-page .custom-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}

.about-abd-page .custom-logo-text span {
    color: #FCA440 !important;
}

.about-abd-page .thegem-header {
    height: 90px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.about-abd-page .thegem-header:not(.scrolled):not(.scrolled-dark) {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.about-abd-page .thegem-header.scrolled,
.about-abd-page .thegem-header.scrolled-dark {
    height: 80px !important;
    background: rgba(18, 7, 43, 0.85) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.about-abd-page .thegem-header-container {
    width: 100%;
    max-width: 1400px !important;
    padding: 0 40px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-abd-page .pill-nav-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.about-abd-page .pill-nav-link {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.95rem;
    line-height: 1;
    box-shadow: none !important;
    transform: none !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.about-abd-page .pill-nav-link:hover,
.about-abd-page .pill-nav-link.active {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    transform: none !important;
}

.about-abd-page .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-abd-page .portal-pill-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff !important;
    background: transparent !important;
}

.about-abd-page .portal-pill-icon {
    font-size: 1.35rem;
    color: inherit;
}

.about-abd-page .lang-toggle-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5) !important;
    background: transparent !important;
}

.about-abd-page .lang-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

.about-abd-page .pill-outline-btn {
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.5) !important;
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.95rem;
    line-height: 1;
}

.about-abd-page .portal-pill-btn:hover,
.about-abd-page .pill-outline-btn:hover {
    background: #ffffff !important;
    color: #111111 !important;
    transform: translateY(-2px);
}

.about-abd-page .thegem-mobile-menu-btn {
    display: none !important;
}

.about-abd-page .thegem-dropdown-menu {
    background: rgba(25, 10, 45, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.about-abd-page .dropdown-header {
    color: #FCA440;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.about-abd-page .dropdown-link {
    color: rgba(255, 255, 255, 0.78);
}

.about-abd-page .dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.about-abd-page .footer-integrated-section {
    justify-content: flex-start;
    align-items: stretch;
    padding: 72px 0 0;
    background: transparent;
}

.about-abd-page .footer-integrated-section > .section-container {
    width: min(1300px, calc(100% - 10%));
    max-width: 1300px;
    margin: 0 auto;
}

.about-abd-page .newsletter-card-modern {
    background: var(--glass-card);
    border: 1px solid var(--border-glass);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.about-abd-page .nl-left h2 {
    color: #ffffff;
}

.about-abd-page .nl-right p {
    color: var(--text-muted);
}

.about-abd-page .nl-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.about-abd-page .nl-form input {
    color: #ffffff;
}

.about-abd-page .nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.about-abd-page .nl-form button {
    background: #FCA440 !important;
    color: #12072b !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.about-abd-page .nl-form button:hover {
    background: #f39222 !important;
    color: #12072b !important;
    box-shadow: 0 10px 20px rgba(252, 164, 64, 0.32) !important;
    transform: translateY(-2px);
}

.about-abd-page .way2go-footer {
    background-color: #0f0b1d;
    padding: 96px 5% 40px;
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    overflow: hidden;
    width: 100%;
    margin-top: -24px;
}

.about-abd-page .way2go-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: -10vw;
    width: 60vw;
    height: 70vh;
    background: radial-gradient(circle, rgba(104, 37, 219, 0.24) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.about-abd-page .way2go-footer::after {
    content: "";
    position: absolute;
    bottom: -10vw;
    left: -10vw;
    width: 60vw;
    height: 70vh;
    background: radial-gradient(circle, rgba(255, 65, 129, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.about-abd-page .footer-social-top,
.about-abd-page .footer-main-content {
    position: relative;
    z-index: 1;
}

.about-abd-page .footer-social-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 70px;
}

.about-abd-page .footer-social-top a {
    background-color: rgba(255, 255, 255, 0.08);
    color: #f8f5ff;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.about-abd-page .footer-social-top a:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.about-abd-page .social-fb:hover { background-color: #1877F2; }
.about-abd-page .social-x:hover { background-color: #000000; }
.about-abd-page .social-yt:hover { background-color: #FF0000; }
.about-abd-page .social-in:hover { background-color: #0A66C2; }
.about-abd-page .social-ig:hover { background-color: #E1306C; }
.about-abd-page .social-wa:hover { background-color: #25D366; }

.about-abd-page .footer-main-content {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-abd-page .footer-logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-abd-page .footer-custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.about-abd-page .footer-custom-logo-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.about-abd-page .footer-app-name {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    margin-bottom: 30px;
}

.about-abd-page .footer-links-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-abd-page .footer-links-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.about-abd-page .footer-links-area ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-abd-page .footer-links-area ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff4181;
    border-radius: 50%;
}

.about-abd-page .footer-links-area ul li a {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.3s;
}

.about-abd-page .footer-links-area ul li a:hover {
    color: #FCA440;
}

.about-abd-page .footer-right-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-abd-page .footer-test-link {
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.about-abd-page .footer-test-link:hover {
    color: #FCA440;
}

.about-abd-page .footer-right-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.6;
    margin-bottom: 15px;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .about-abd-page .thegem-mobile-menu-btn {
        display: block !important;
        justify-self: end;
        font-size: 1.55rem;
        color: #ffffff;
        cursor: pointer;
    }

    .about-abd-page .thegem-header.scrolled .thegem-mobile-menu-btn {
        color: #ffffff;
    }

    .about-abd-page .thegem-header-container {
        padding: 0 20px !important;
    }

    .about-abd-page .footer-main-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-abd-page .footer-logo-area,
    .about-abd-page .footer-right-area {
        align-items: center;
        text-align: center;
    }

    .about-abd-page .footer-links-area {
        grid-template-columns: 1fr;
    }

    .about-abd-page .footer-links-area ul {
        text-align: center;
    }

    .about-abd-page .footer-links-area ul li {
        justify-content: center;
    }
}

/* --- 6. ÜLKE RANDEVU POPUP (TAKVİM + SAAT SEÇİMİ) --- */
.modal.booking-popup-modal,
.modal.booking-success-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    background: rgba(18, 10, 35, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal.booking-popup-modal.active,
.modal.booking-success-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-popup-card {
    position: relative;
    width: 78vw;
    max-width: 1300px;
    max-height: 88vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 48px 44px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(72, 42, 130, 0.97) 0%, rgba(54, 28, 104, 0.98) 100%);
    border: 1px solid var(--border-glass);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.booking-popup-close,
.booking-success-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}
.booking-popup-close:hover,
.booking-success-close:hover { background: rgba(255, 255, 255, 0.18); }

.bp-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.bp-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 6px;
}

.bp-country { display: flex; align-items: center; gap: 12px; }
.bp-country-flag {
    width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08);
}
.bp-country-flag img { width: 100%; height: 100%; object-fit: cover; }
#bpCountryName { font-weight: 800; font-size: 1.2rem; color: #ffffff; }

.bp-advisor-name { font-weight: 700; font-size: 1.02rem; color: rgba(255, 255, 255, 0.85); }

.bp-duration { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.65); font-weight: 600; font-size: 0.95rem; }
.bp-duration i { color: var(--accent-orange); }

.bp-right {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    min-width: 0;
}

.bp-calendar-col, .bp-times-col { min-width: 0; }

.bp-calendar { min-width: 0; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 18px; }
.bp-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-weight: 800; color: #ffffff; }
.bp-cal-nav { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.06); color: #ffffff; cursor: pointer; flex-shrink: 0; }
.bp-cal-nav:hover:not(:disabled) { background: rgba(255, 255, 255, 0.14); }
.bp-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.bp-cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.bp-cal-dayname { min-width: 0; text-align: center; font-size: 0.72rem; font-weight: 700; color: rgba(255, 255, 255, 0.45); padding-bottom: 6px; overflow: hidden; text-overflow: ellipsis; }
.bp-cal-day { min-width: 0; aspect-ratio: 1; border-radius: 10px; border: none; background: rgba(255, 255, 255, 0.05); color: #ffffff; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: 0.2s ease; padding: 0; }
.bp-cal-day:hover:not(:disabled) { background: rgba(255, 255, 255, 0.16); }
.bp-cal-day:disabled { opacity: 0.2; cursor: not-allowed; }
.bp-cal-day.active { background: var(--accent-orange); color: #12072b; }

.bp-times-col h4 { font-size: 1.05rem; font-weight: 800; color: #ffffff; margin-bottom: 16px; }
.bp-timeslots { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; padding-right: 6px; }
.bp-time-btn { padding: 13px 16px; border-radius: 12px; border: 1.5px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.05); color: #ffffff; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: 0.2s ease; font-family: inherit; }
.bp-time-btn:hover { background: rgba(255, 255, 255, 0.12); }
.bp-time-btn.active { background: var(--accent-orange); border-color: var(--accent-orange); color: #12072b; }

.bp-actions { margin-top: 34px; display: flex; justify-content: center; }
.bp-confirm-btn {
    display: inline-flex; align-items: center; gap: 10px; background: var(--accent-orange); color: #12072b;
    border: none; padding: 17px 60px; border-radius: 50px; font-weight: 800; font-size: 1.05rem;
    cursor: pointer; transition: 0.25s ease; font-family: inherit;
}
.bp-confirm-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(252, 164, 64, 0.3); }
.bp-confirm-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.booking-success-card {
    position: relative;
    width: min(90vw, 460px);
    padding: 46px 36px;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(72, 42, 130, 0.97) 0%, rgba(54, 28, 104, 0.98) 100%);
    border: 1px solid var(--border-glass);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.bp-success-icon {
    width: 76px; height: 76px; border-radius: 50%; background: rgba(203, 216, 59, 0.18); color: var(--primary-lime);
    font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.booking-success-card h3 { font-size: 1.5rem; font-weight: 800; color: #ffffff; margin-bottom: 10px; }
.booking-success-card p { color: rgba(255, 255, 255, 0.65); font-size: 1rem; line-height: 1.6; }

@media (max-width: 860px) {
    .booking-popup-card { width: 92vw; padding: 30px 22px 30px; }
    .bp-layout { grid-template-columns: 1fr; gap: 26px; }
    .bp-side { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 18px; padding-top: 0; }
    .bp-right { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .bp-side { flex-direction: column; align-items: flex-start; }
    .booking-popup-card { padding: 26px 16px 26px; }
    .bp-calendar { padding: 12px; }
    .bp-cal-grid { gap: 4px; }
    .bp-cal-day { font-size: 0.78rem; }
    .bp-cal-dayname { font-size: 0.64rem; }
}
