/* ==========================================================================
   YOUR WHIM TRAVEL - CUSTOM PAGES REDESIGN SYSTEM
   ========================================================================== */

:root {
    --accent-color: #d66847;          /* Canyon Sunset Terracotta */
    --accent-glow: rgba(214, 104, 71, 0.25);
    --accent-light: #f4a261;          /* Sierra Gold */
    --accent-dark: #b34e2f;
    --card-gradient: linear-gradient(135deg, rgba(24, 21, 19, 0.8) 0%, rgba(14, 12, 11, 0.96) 100%);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
    --border-accent: 1px solid rgba(214, 104, 71, 0.35);
    --hero-visual-border: rgba(214, 104, 71, 0.35);
    --font-title: 'Lora', Georgia, serif;
    --font-text: 'Montserrat', -apple-system, sans-serif;
}

/* Base Main Section resets for custom layouts */
.custom-main {
    background: #080706; /* Basalt coal deep black */
    overflow-x: hidden;
    position: relative;
    padding-bottom: 80px;
    font-family: 'Montserrat', -apple-system, sans-serif;
}

.custom-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.5;
}

/* SVG Icon Styles */
.svg-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle;
}

/* Asymmetric Section Header */
.custom-header-block {
    margin-bottom: 60px;
    text-align: center;
}

.custom-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 12px;
    background: rgba(214, 104, 71, 0.15);
    border: 1px solid rgba(214, 104, 71, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
}

.custom-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.custom-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    color: #a69f9a;
    line-height: 1.6;
}

.custom-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Custom Buttons */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.custom-btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.custom-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.custom-btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px var(--accent-glow);
}

/* ==========================================================================
   1. HOME PAGE SPECIAL STYLES
   ========================================================================== */
.home-hero {
    padding: 100px 0 80px;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .home-hero__grid {
        grid-template-columns: 1.25fr 0.75fr;
        gap: 60px;
    }
}

.home-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-hero__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.8rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .home-hero__title {
        font-size: 3.8rem;
    }
}

.home-hero__description {
    font-size: 16px;
    color: #a69f9a;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.home-hero__visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.home-hero__frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    border: var(--border-accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.home-hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.home-hero__frame:hover img {
    transform: scale(1.06);
}

.home-hero__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(16, 14, 13, 0.85);
    backdrop-filter: blur(12px);
    border: var(--border-subtle);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

/* Philosophy Section values */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.philosophy-card {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.philosophy-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent-glow);
}

.philosophy-icon {
    width: 50px;
    height: 50px;
    background: rgba(214, 104, 71, 0.12);
    border: 1px solid rgba(214, 104, 71, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.philosophy-card h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 13.5px;
    color: #a69f9a;
    line-height: 1.6;
}

/* Home About Split */
.about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-split {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 60px;
    }
}

.about-split__image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px;
    border: var(--border-subtle);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    background-size: cover;
    background-position: center;
}

.about-split__info {
    display: flex;
    flex-direction: column;
}

/* Home Slider Showcases */
.showcase-slider-wrap {
    margin-top: 40px;
}

.showcase-card {
    flex: 0 0 100%;
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    text-align: left;
}

@media (min-width: 768px) {
    .showcase-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (min-width: 1024px) {
    .showcase-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.showcase-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.showcase-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-img-box img {
    transform: scale(1.05);
}

.showcase-info-box {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.showcase-info-box h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.showcase-info-box p {
    font-size: 13px;
    color: #a69f9a;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Seasonal Cards Redesign */
.seasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .seasons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.season-card {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
}

.season-card.season--spring::before { background: #6a9b83; }
.season-card.season--summer::before { background: #f4a261; }
.season-card.season--autumn::before { background: #d66847; }
.season-card.season--winter::before { background: #4ba3c3; }

.season-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.season-card.season--spring:hover { border-color: rgba(106, 155, 131, 0.4); }
.season-card.season--summer:hover { border-color: rgba(244, 162, 97, 0.4); }
.season-card.season--autumn:hover { border-color: rgba(214, 104, 71, 0.4); }
.season-card.season--winter:hover { border-color: rgba(75, 163, 195, 0.4); }

.season-icon {
    margin-bottom: 16px;
    display: inline-block;
    color: var(--accent-light);
}

.season-card h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.season-card p {
    font-size: 13px;
    color: #a69f9a;
    line-height: 1.5;
}

/* ==========================================================================
   2. ABOUT US PAGE STYLES
   ========================================================================== */
.about-quote-sec {
    padding: 80px 0;
}

.quote-card {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-left: 4px solid var(--accent-color);
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    max-width: 840px;
    margin: 0 auto;
    position: relative;
}

.quote-card h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.3rem;
    color: var(--accent-light);
    margin-bottom: 14px;
}

.quote-card p {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 18px;
}

.quote-card span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a69f9a;
    font-weight: 600;
}

.advisors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.advisor-card {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.advisor-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.advisor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-light);
}

.advisor-details {
    display: flex;
    flex-direction: column;
}

.advisor-details h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.advisor-title {
    font-size: 10.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.advisor-details p {
    font-size: 13px;
    color: #a69f9a;
    line-height: 1.5;
}

/* ==========================================================================
   3. REVIEWS PAGE GRID SYSTEM (Testimonial Masonry)
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-item-card {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-item-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.review-user-info h4 {
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.review-user-info span {
    font-size: 11px;
    color: #8c8580;
}

.review-rating-stars {
    font-size: 14px;
    color: #f4a261;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card-text {
    font-size: 13.5px;
    color: #a69f9a;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.review-card-date {
    font-size: 11px;
    color: #8c8580;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   4. FAQ ACCORDION BOARDS
   ========================================================================== */
.faq-box-item {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-box-item:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.faq-box-item.open {
    border-color: var(--accent-light);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.faq-trigger-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.faq-trigger-title {
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon-holder {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon-holder::before,
.faq-icon-holder::after {
    content: '';
    position: absolute;
    background: var(--accent-light);
    transition: transform 0.3s ease;
}

/* Plus Horizontal line */
.faq-icon-holder::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

/* Plus Vertical line */
.faq-icon-holder::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

.faq-box-item.open .faq-icon-holder::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-box-item.open .faq-icon-holder::before {
    transform: rotate(180deg);
    background: #ffffff;
}

.faq-content-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-pane p {
    padding: 0 26px 22px;
    font-size: 13.5px;
    color: #a69f9a;
    line-height: 1.6;
}

/* ==========================================================================
   5. CONTACT PAGE FORM & CONSOLE (Splitted Layout)
   ========================================================================== */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-split-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
}

.contact-card-box {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .contact-card-box {
        padding: 40px;
    }
}

.contact-card-box h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.7rem;
    color: #ffffff;
    margin-bottom: 24px;
}

.contact-form-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-layout div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.contact-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: inherit;
    font-size: 13.5px;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: #595350;
}

.contact-input:focus {
    outline: none;
    border-color: var(--accent-light);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 10px var(--accent-glow);
}

.contact-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-status-msg {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    background: rgba(82, 183, 136, 0.1);
    border: 1px solid rgba(82, 183, 136, 0.25);
    color: #52b788;
}

.info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card-slab {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card-slab:hover {
    border-color: rgba(255,255,255,0.08);
    transform: translateX(4px);
}

.info-slab-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-glow);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.info-slab-content h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-light);
    margin-bottom: 6px;
}

.info-slab-content p {
    font-size: 13.5px;
    color: #a69f9a;
    line-height: 1.5;
}

.info-slab-content a {
    color: #ffffff;
    text-decoration: underline;
}

.info-slab-content a:hover {
    color: var(--accent-light);
}

.contact-map-frame {
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
    position: relative;
    border: var(--border-subtle);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 14, 13, 0.7);
    z-index: 1;
}

.contact-map-badge {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ==========================================================================
   6. RESPONSIBLE TRAVEL & LEGAL POLICY LAYOUT
   ========================================================================== */
.responsible-intro-card {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
}

.legal-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .legal-split-layout {
        grid-template-columns: 0.3fr 0.7fr;
        gap: 60px;
    }
}

.legal-index-sidebar {
    display: none;
}

@media (min-width: 992px) {
    .legal-index-sidebar {
        display: block;
        position: sticky;
        top: 120px;
        height: fit-content;
        background: var(--card-gradient);
        border: var(--border-subtle);
        border-radius: 16px;
        padding: 24px;
    }
}

.legal-index-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-index-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-index-link {
    font-size: 12.5px;
    color: #a69f9a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-index-link:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.legal-content-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-card-slab {
    background: var(--card-gradient);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.legal-card-slab:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.legal-card-slab h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 10px;
}

.legal-card-slab p {
    font-size: 13.5px;
    color: #a69f9a;
    line-height: 1.6;
}

.legal-card-slab p strong {
    color: #ffffff;
}

/* ==========================================================================
   7. INTERACTIVE EXPEDITION CHECKLIST BOARD
   ========================================================================== */
.dest-checklist-section {
    padding: 100px 0;
}

.checklist-card {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 30px 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .checklist-card {
        padding: 45px 50px;
    }
}

.checklist-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
    margin-bottom: 35px;
}

@media (min-width: 992px) {
    .checklist-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.checklist-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.checklist-subtitle {
    font-size: 14px;
    color: #a69f9a;
    max-width: 550px;
    line-height: 1.5;
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

@media (min-width: 992px) {
    .progress-container {
        width: 320px;
    }
}

.progress-text {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    display: flex;
    justify-content: space-between;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.checklist-interactive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .checklist-interactive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.checklist-item-interactive {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.checklist-item-interactive:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.checklist-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox-visual {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    margin-top: 2px;
}

.checklist-item-interactive:hover .custom-checkbox-visual {
    border-color: var(--accent-light);
}

.checklist-checkbox:checked + .custom-checkbox-visual {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.checklist-checkbox:checked + .custom-checkbox-visual::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checklist-item-content {
    display: flex;
    flex-direction: column;
}

.checklist-item-content h4 {
    font-family: var(--font-text);
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.checklist-item-content p {
    font-size: 13px;
    color: #a69f9a;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* Checked styling toggle */
.checklist-item-interactive.is-checked {
    background: rgba(255, 255, 255, 0.005);
    border-color: rgba(255, 255, 255, 0.02);
}

.checklist-item-interactive.is-checked .checklist-item-content h4 {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.checklist-item-interactive.is-checked .checklist-item-content p {
    color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   8. DESTINATION HERO SHARABLE STYLE SYSTEM
   ========================================================================== */
.dest-hero {
    padding: 80px 0;
    position: relative;
}

.dest-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .dest-hero__grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }
}

.dest-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dest-hero__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 12px;
    margin-bottom: 24px;
}

.dest-hero__title {
    font-family: var(--font-title);
    font-size: 3rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .dest-hero__title {
        font-size: 4rem;
    }
}

.dest-hero__description {
    font-size: 16px;
    color: #a69f9a;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 640px;
}

.dest-hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 45px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c8580;
}

.dest-hero__scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dest-hero__scroll-btn svg {
    transition: transform 0.3s ease;
}

.dest-hero__scroll-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px var(--accent-glow);
    transform: translateY(-2px);
}

.dest-hero__scroll-btn:hover svg {
    transform: translateY(3px);
}

/* Hero Right Side Visual Frame */
.dest-hero__visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--hero-visual-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    background: #181513;
}

.visual-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 7, 6, 0.75) 0%, transparent 60%);
    z-index: 1;
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-frame:hover .visual-image {
    transform: scale(1.08);
}

.visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(16, 14, 13, 0.75);
    backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.visual-frame:hover .visual-badge {
    transform: translateY(-5px);
}

.visual-badge svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

.visual-badge span {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
}
