/* ==========================================================================
   DESTINATIONS PAGE CUSTOM DESIGN SYSTEM (Canada & USA)
   ========================================================================== */

/* Variables & Themes */
.canada-theme {
    --accent-color: #2e7d5c;          /* Deep Forest Green */
    --accent-glow: rgba(46, 125, 92, 0.25);
    --accent-light: #52b788;          /* Glacial Mint Green */
    --accent-crimson: #c94c4c;        /* Maple Leaf Red */
    --accent-crimson-glow: rgba(201, 76, 76, 0.2);
    --card-gradient: linear-gradient(135deg, rgba(16, 22, 19, 0.8) 0%, rgba(10, 14, 12, 0.96) 100%);
    --hero-visual-border: rgba(46, 125, 92, 0.35);
    --tag-bg: rgba(46, 125, 92, 0.15);
    --tag-border: rgba(46, 125, 92, 0.3);
    --bulletin-pulse: rgba(82, 117, 100, 0.6);
}

.usa-theme {
    --accent-color: #d66847;          /* Canyon Sunset Terracotta */
    --accent-glow: rgba(214, 104, 71, 0.25);
    --accent-light: #f4a261;          /* Sierra Gold */
    --accent-crimson: #d66847;
    --accent-crimson-glow: rgba(214, 104, 71, 0.2);
    --card-gradient: linear-gradient(135deg, rgba(24, 21, 19, 0.8) 0%, rgba(14, 12, 11, 0.96) 100%);
    --hero-visual-border: rgba(214, 104, 71, 0.35);
    --tag-bg: rgba(214, 104, 71, 0.15);
    --tag-border: rgba(214, 104, 71, 0.3);
    --bulletin-pulse: rgba(214, 104, 71, 0.6);
}

/* Base Destination Styles overrides */
.dest-main {
    background: #080706; /* Immersive dark basalt black background */
    overflow-x: hidden;
    position: relative;
    padding-bottom: 60px;
}

/* Background Gradients & Art */
.dest-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    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.6;
}

/* 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;
}

/* Typography Accent */
.accent-text {
    color: var(--accent-light);
    background: linear-gradient(120deg, #ffffff 30%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Section Header Typography */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 12px;
    background: var(--tag-bg);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--tag-border);
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

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

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

/* ==========================================================================
   1. HERO SECTION (Asymmetrical Layout)
   ========================================================================== */
.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;
}

/* ==========================================================================
   2. LANDMARKS GRID CANVAS
   ========================================================================== */
.dest-landmarks {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.landmarks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

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

.landmark-card {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.landmark-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 25px var(--accent-glow);
}

.landmark-card__image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.landmark-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.landmark-card:hover .landmark-card__image {
    transform: scale(1.06);
}

.landmark-card__coords {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 9, 8, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    transition: background 0.3s ease;
}

.landmark-card:hover .landmark-card__coords {
    background: rgba(10, 9, 8, 0.95);
    border-color: var(--accent-glow);
}

.landmark-card__content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.landmark-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.landmark-card__tag {
    background: var(--tag-bg);
    border: 1px solid var(--tag-border);
    color: var(--accent-light);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.landmark-card__status {
    font-size: 11px;
    font-weight: 600;
    color: #a69f9a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.landmark-card__status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #52b788;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(82, 183, 136, 0.8);
}

.landmark-card__status.status--scheduled::before {
    background-color: #f4a261;
    box-shadow: 0 0 8px rgba(244, 162, 97, 0.8);
}

.landmark-card__title {
    font-family: var(--font-title);
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.landmark-card__text {
    font-size: 13.5px;
    color: #a69f9a;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.landmark-card__specs {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
}

.spec-row {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.spec-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c8580;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

/* ==========================================================================
   3. WILDLIFE SAFETY DASHBOARD (Splitted Layout)
   ========================================================================== */
.dest-safety {
    padding: 100px 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

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

.safety-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .safety-intro {
        position: sticky;
        top: 120px;
        height: fit-content;
    }
}

.warning-badge {
    border-color: var(--accent-crimson-glow);
    background: rgba(201, 76, 76, 0.1);
    color: var(--accent-crimson);
}

.safety-indicator-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 50px;
}

.pulse-ring {
    width: 8px;
    height: 8px;
    background: var(--accent-crimson);
    border-radius: 50%;
    position: relative;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-crimson);
    border-radius: 50%;
    left: -8px;
    top: -8px;
    opacity: 0;
    animation: alert-pulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes alert-pulse {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.safety-indicator-box span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c94c4c;
    font-weight: 700;
}

.safety-cards-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.safety-card {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--accent-crimson);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.safety-card:hover {
    border-left-color: var(--accent-light);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px var(--accent-glow);
}

.safety-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.safety-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
}

.safety-card__title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: #ffffff;
}

.safety-card__text {
    font-size: 13.5px;
    color: #a69f9a;
    line-height: 1.6;
}

/* ==========================================================================
   4. 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: var(--font-title);
    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);
}
