/* ==========================================================================
   Guangyang Cultural Tourism Dark Scroll-Snap Design System (广阳文旅深色下滑式画报)
   Theme: Dramatic Crimson & Warm Gold (朱红与雅金)
   Layout: Full-screen Scroll Snap Sections
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --primary: #A62B2B;          /* 朱红 */
    --accent: #C5A880;           /* 雅金 */
    --accent-dark: #A58B65;
    
    --bg-dark: #0A0B0B;          /* 极深碳黑 */
    --bg-light-dark: #121414;    /* 稍微亮一点的深色，用于输入框 */
    --border-light: rgba(250, 250, 248, 0.08);
    --border-active: rgba(197, 168, 128, 0.35);
    
    --text-white: #FFFFFF;
    --text-gold: #C5A880;
    --text-muted: #8E9390;       /* 灰泥色 */
    
    --font-heading: 'Noto Serif SC', serif;
    --font-english: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base & Scroll Snap Setup --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

/* Scroll snap container on body or html */
body.editorial-theme {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Premium Custom Cursor */
}

/* Apply scroll snap on desktop only for premium portfolio experience */
@media (min-width: 992px) {
    body.editorial-theme {
        scroll-snap-type: y mandatory;
    }
}

a, button {
    cursor: none;
}

/* Hide scrollbar */
::-webkit-scrollbar {
    display: none;
}

/* --- Custom Cursor --- */
.custom-cursor {
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.custom-cursor.hover {
    width: 64px;
    height: 64px;
    background-color: rgba(197, 168, 128, 0.12);
    border-color: var(--text-white);
}

.custom-cursor-dot.hover {
    transform: translate(-50%, -50%) scale(0);
}

/* --- Sticky Brand Header --- */
.editorial-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1.75rem 4rem;
    background: rgba(10, 11, 11, 0.45);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(250, 250, 248, 0.05);
    transition: var(--transition-quick);
}

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

.editorial-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.editorial-logo .logo-cn {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.15em;
}

.editorial-logo .logo-en {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-gold);
    margin-top: 2px;
}

/* Top Sticky Navigation */
.editorial-nav {
    display: block;
}

.editorial-nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-tab {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-quick);
}

.nav-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-tab:hover {
    color: var(--text-white);
}

.nav-tab.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-tab.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-editorial-reserve {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-white);
    padding: 0.55rem 1.6rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: var(--transition-quick);
}

.btn-editorial-reserve:hover {
    border-color: var(--text-gold);
    color: var(--text-gold);
    background-color: rgba(250, 250, 248, 0.02);
}

/* Mobile Menu Burger Toggle */
.editorial-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 22px;
    height: 22px;
    z-index: 1001;
    transition: var(--transition-quick);
}

.editorial-menu-toggle .bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-white);
}

@media (max-width: 991px) {
    .editorial-nav {
        display: none;
    }
    .editorial-menu-toggle {
        display: flex;
    }
    .editorial-header {
        padding: 1.25rem 2rem;
    }
}

/* --- Mobile Menu Overlay --- */
.editorial-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 11, 11, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 6rem 3rem;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-menu-overlay.open {
    right: 0;
}

.menu-overlay-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.editorial-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.menu-link-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-quick);
}

.menu-link-item:hover,
.menu-link-item.active {
    color: var(--text-white);
    padding-left: 1rem;
}

.menu-link-item.active {
    border-left: 2px solid var(--text-gold);
}

.menu-overlay-footer {
    color: rgba(250, 250, 248, 0.3);
    font-size: 0.8rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.menu-overlay-footer .phone {
    color: var(--text-gold);
    margin-top: 0.25rem;
}

/* --- Right Vertical Index Indicator (Dots) --- */
.editorial-left-indicators {
    position: fixed;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 991px) {
    .editorial-left-indicators {
        display: none;
    }
}

.indicator-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(250, 250, 248, 0.25);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.dots-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(250, 250, 248, 0.2);
    transition: var(--transition-quick);
    text-decoration: none;
}

.indicator-dot:hover {
    background-color: rgba(250, 250, 248, 0.6);
}

.indicator-dot.active {
    background-color: var(--text-gold);
    transform: scale(1.4);
}

/* --- Scroll Snapping Section (Slides) --- */
.editorial-section {
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 5rem 3.5rem;
    overflow: hidden;
}

@media (min-width: 992px) {
    .editorial-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

@media (max-width: 991px) {
    .editorial-section {
        height: auto;
        min-height: 100vh;
        padding: 6rem 2rem 3rem;
        gap: 3rem;
    }
}

/* Absolute Background elements */
.section-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.section-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    opacity: 0.85;
    transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease-in-out;
}

/* Apply subtle zoom in snap sections when active */
.editorial-section.active .section-bg-img {
    transform: scale(1.05);
}

.editorial-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark radial and gradient vignette overlay */
    background: radial-gradient(
        circle at 50% 50%,
        rgba(10, 11, 11, 0.2) 0%,
        rgba(10, 11, 11, 0.72) 75%,
        rgba(10, 11, 11, 0.95) 100%
    ),
    linear-gradient(
        to bottom,
        rgba(10, 11, 11, 0.65) 0%,
        rgba(10, 11, 11, 0.2) 30%,
        rgba(10, 11, 11, 0.25) 70%,
        rgba(10, 11, 11, 0.9) 100%
    );
}

/* Section Top Decoration text */
.section-top-deco {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.deco-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: rgba(250, 250, 248, 0.3);
}

/* --- Center Stage Block --- */
.editorial-center-stage {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.center-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--text-gold);
    margin-bottom: 1.25rem;
}

.center-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.center-subtitle-list {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Hollow rectangular button */
.btn-hollow-rectangle {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-quick);
}

.btn-hollow-rectangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--text-gold);
    z-index: -1;
    transition: var(--transition-quick);
}

.btn-hollow-rectangle:hover {
    color: var(--bg-dark);
    border-color: var(--text-gold);
}

.btn-hollow-rectangle:hover::before {
    left: 0;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.btn-hollow-rectangle:hover .arrow-icon {
    transform: translateX(4px);
}

/* --- Bottom Timeline list --- */
.editorial-bottom-timeline {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 1px solid var(--border-light);
    padding-top: 1.75rem;
}

@media (max-width: 991px) {
    .editorial-bottom-timeline {
        border-top: none;
        padding-top: 0;
    }
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.timeline-list-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-gold);
}

.timeline-scroll-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .timeline-scroll-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 575px) {
    .timeline-scroll-wrapper {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.timeline-column-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-right: 1.25rem;
    border-right: 1px solid var(--border-light);
}

.timeline-column-item:last-child {
    border-right: none;
}

@media (max-width: 991px) {
    .timeline-column-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 575px) {
    .timeline-column-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 0.75rem;
    }
}

.item-number {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    line-height: 0.9;
    color: var(--text-white);
    transition: var(--transition-quick);
}

.timeline-column-item:hover .item-number {
    color: var(--text-gold);
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.item-time {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-gold);
}

.item-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
}

.item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Slide scroll down arrow indicator */
.section-next-arrow {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media (max-width: 991px) {
    .section-next-arrow {
        display: none;
    }
}

.btn-arrow-down {
    display: flex;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: rgba(250, 250, 248, 0.4);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-quick);
    animation: bounceArrow 2s infinite;
}

.btn-arrow-down:hover {
    border-color: var(--text-gold);
    color: var(--text-gold);
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* --- Section Entry Animations (Observer effect) --- */
.animate-el {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sequential delay for children animations */
.editorial-center-stage .animate-el { transition-delay: 0.15s; }
.editorial-bottom-timeline .animate-el { transition-delay: 0.35s; }

.editorial-section.active .animate-el {
    opacity: 1;
    transform: translateY(0);
}


/* --- SECTION 6: Full-Screen Booking Form & Planner Layout --- */
.planner-fullscreen-section {
    background-color: var(--bg-dark);
}

@media (min-width: 992px) {
    .planner-fullscreen-section {
        padding: 9rem 5rem 6rem;
    }
}

.planner-dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0A0B0B 0%, #151617 100%);
}

.planner-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 991px) {
    .planner-layout-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.planner-info-col {
    display: flex;
    flex-direction: column;
}

.planner-main-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.planner-main-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 500px;
}

/* Vertical timeline preview card */
.planner-route-preview {
    background-color: rgba(250, 250, 248, 0.02);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

@media (max-width: 575px) {
    .planner-route-preview {
        padding: 1.5rem;
    }
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.25rem;
    margin-bottom: 2rem;
}

.preview-header h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.duration-badge {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-gold);
    border: 1px solid var(--text-gold);
    padding: 0.25rem 0.65rem;
}

.timeline-vertical-preview {
    position: relative;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-vertical-preview::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 10px;
    bottom: 4px;
    width: 1px;
    border-left: 1px dashed var(--border-light);
}

.v-step {
    position: relative;
    animation: fadeTimeline 0.4s ease-out;
}

.v-num {
    position: absolute;
    left: -2rem;
    top: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 1px solid var(--accent);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.v-details h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.v-details p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Right column form layout */
.planner-main-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group-item {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-label-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-white);
}

.planner-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: rgba(250, 250, 248, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-radius: 0;
    outline: none;
    transition: var(--transition-quick);
}

.planner-input:focus {
    border-color: var(--accent);
    background-color: rgba(250, 250, 248, 0.05);
}

.form-row-flex {
    display: flex;
    gap: 1.5rem;
}

.col-flex-half {
    width: 50%;
}

/* Theme selector cards in form */
.form-theme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

@media (max-width: 575px) {
    .form-theme-grid {
        grid-template-columns: 1fr;
    }
}

.theme-card-option {
    border: 1px solid var(--border-light);
    background-color: rgba(250, 250, 248, 0.02);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    transition: var(--transition-quick);
}

.theme-card-option:hover {
    border-color: var(--border-active);
    background-color: rgba(250, 250, 248, 0.04);
}

.theme-card-option.active {
    border-color: var(--text-gold);
    background-color: rgba(197, 168, 128, 0.06);
}

.theme-card-option span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
}

.theme-card-option .icon {
    font-size: 1.1rem;
}

.btn-planner-submit {
    width: 100%;
    background-color: var(--text-gold);
    color: var(--bg-dark);
    border: 1px solid var(--text-gold);
    padding: 1.1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-quick);
}

.btn-planner-submit:hover {
    background-color: transparent;
    color: var(--text-gold);
}

/* --- Long Page Snapping Footer --- */
.editorial-footer {
    width: 100%;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    margin-top: 4rem;
}

@media (max-width: 991px) {
    .editorial-footer {
        margin-top: 3rem;
    }
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(250, 250, 248, 0.25);
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .footer-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}


/* --- Booking Modal Window (Reserve button fallbacks) --- */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 11, 11, 0.75);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-card {
    background-color: rgba(15, 16, 16, 0.98);
    border: 1px solid var(--border-active);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    max-width: 580px;
    width: 90%;
    padding: 4rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.5s ease-out;
}

.booking-modal-overlay.open .booking-modal-card {
    transform: translateY(0);
}

.btn-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.25rem;
    line-height: 0.5;
    transition: var(--transition-quick);
}

.btn-close-modal:hover {
    color: var(--text-white);
}

.modal-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Success Confirmation popup */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 11, 11, 0.8);
    backdrop-filter: blur(12px);
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.success-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--text-gold);
    padding: 4rem;
    max-width: 560px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(30px);
    transition: transform 0.5s ease-out;
}

.success-modal-overlay.open .success-card {
    transform: translateY(0);
}

.success-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid var(--text-gold);
    color: var(--text-gold);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.75rem;
}

.success-message .hl {
    color: var(--text-gold);
    font-weight: 600;
}

.btn-confirm-close {
    padding: 1rem 3rem;
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: var(--transition-quick);
}

.btn-confirm-close:hover {
    border-color: var(--text-gold);
    color: var(--text-gold);
}
