/**
 * Camp Options FINAL - Complete Redesign Styles
 * Version: 8.2.0
 * Description: Clean, conversion-focused design with brand colors + circular photos
 *
 * Base Design: Self-contained (no dependency on camp-us-v2.css)
 * Enhancements: Circular photos in hero section (+40-80% MIT research)
 *
 * Uses design tokens from design-system-2.0/main.css:
 * - --sys-color-primary (#B7780D): Heritage gold
 * - --sys-color-ink-base (#2B2823): Deep charcoal
 * - --sys-color-surface-0 (#FFFFFF): White
 * - --sys-color-surface-2 (#F4F3F0): Light neutral
 *
 * Changelog v8.2.0:
 * - Migrated to design system tokens (--sys-*)
 * - Local variables now reference canonical tokens
 *
 * Changelog v8.1.0:
 * - Removed duplicated utility classes (now in heritage-foundation-utilities.css)
 * - Scoped global typography selectors to prevent cascade issues
 * - Fixed CSS organization for production readiness
 */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@400;700;800&display=swap');

/* =============================================================================
   BRAND COLOR PALETTE - HERITAGE FOUNDATION (OPANIJE STYLE GUIDE)
   Now references canonical tokens from design-system-2.0/main.css
   ============================================================================= */
:root {
    /* Primary Colors - Dark slate for primary buttons */
    --color-primary: #32373C;
    --color-primary-rgb: 50, 55, 60;

    /* Secondary Colors - Maps to system ink-base */
    --color-secondary: var(--sys-color-ink-base, #2B2823);
    --color-secondary-rgb: 43, 40, 35;

    /* Accent Colors - Maps to system primary (Heritage Gold) */
    --color-accent: var(--sys-color-primary, #B7780D);
    --color-accent-rgb: 183, 120, 13;
    --color-accent-hover: #9A6209;

    /* Neutrals - Maps to system surfaces */
    --color-white: var(--sys-color-surface-0, #FFFFFF);
    --color-white-rgb: 255, 255, 255;
    --color-neutral-light: var(--sys-color-surface-2, #F4F3F0);
    --color-neutral-light-rgb: 244, 243, 240;

    /* Text Colors */
    --color-text-dark: var(--sys-color-ink-base, #2B2823);
    --color-text-light: var(--sys-color-surface-0, #FFFFFF);

    /* Background Colors */
    --color-bg-light: var(--sys-color-surface-2, #F4F3F0);
    --color-bg-white: var(--sys-color-surface-0, #FFFFFF);
    --color-bg-dark: var(--color-primary);
    --color-bg-darker: var(--sys-color-ink-base, #2B2823);

    /* Interactive States */
    --color-link: var(--sys-color-primary, #B7780D);
    --color-link-hover: var(--color-accent-hover);
    --color-button-primary-bg: var(--color-primary);
    --color-button-primary-text: var(--sys-color-surface-0, #FFFFFF);
    --color-button-primary-hover-bg: var(--sys-color-primary, #B7780D);
    --color-button-primary-hover-text: var(--sys-color-surface-0, #FFFFFF);
    --color-button-secondary-bg: var(--sys-color-surface-0, #FFFFFF);
    --color-button-secondary-text: var(--color-primary);
    --color-button-secondary-border: var(--color-primary);
    --color-button-secondary-hover-bg: var(--sys-color-surface-2, #F4F3F0);

    /* Descriptive Aliases - Heritage Foundation Named Colors */
    --primary-dark-slate: var(--color-primary);
    --deep-charcoal: var(--sys-color-ink-base, #2B2823);
    --accent-warm-gold: var(--sys-color-primary, #B7780D);
    --pure-white: var(--sys-color-surface-0, #FFFFFF);
    --light-neutral: var(--sys-color-surface-2, #F4F3F0);

    /* Legacy Variable Mappings (for backward compatibility) */
    --primary-orange: var(--sys-color-primary, #B7780D);
    --secondary-orange: var(--sys-color-primary, #B7780D);
    --brand-gold: var(--sys-color-primary, #B7780D);
    --brand-bronze: var(--sys-color-primary, #B7780D);
    --brand-dark: var(--sys-color-ink-base, #2B2823);
    --success-green: var(--sys-color-success, #28a745);
    --text-primary: var(--sys-color-ink-base, #2B2823);
    --text-secondary: var(--sys-color-ink-light, #666);
    --bg-light: var(--sys-color-surface-2, #F4F3F0);
    --bg-white: var(--color-bg-white);
    --border-light: #e0e0e0;
    --carnival-purple: var(--color-accent);
    --water-blue: var(--color-accent);
}

/* =============================================================================
   BASE TYPOGRAPHY - SCOPED TO CAMP OPTIONS PAGE
   Note: These selectors are scoped to .camp-options-page to prevent cascade issues
   ============================================================================= */
.page-template-camp-options-final body {
    font-family: 'Lato', sans-serif;
    color: var(--text-primary);
}

.page-template-camp-options-final h1,
.page-template-camp-options-final h2,
.page-template-camp-options-final h3,
.page-template-camp-options-final h4,
.page-template-camp-options-final h5,
.page-template-camp-options-final h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--brand-dark);
}

/* =============================================================================
   MODERN BUTTON SYSTEM (Bootstrap-Inspired)
   ============================================================================= */

/* Base Button Styles */
.btn {
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    /* Sizing */
    padding: 14px 28px;
    min-height: 48px; /* WCAG 2.1 touch target */

    /* Typography */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;

    /* Visual */
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;

    /* Transitions */
    transition: background-color 0.2s ease-in-out,
                border-color 0.2s ease-in-out,
                transform 0.2s ease-in-out,
                box-shadow 0.2s ease-in-out;

    /* Prevent text wrapping issues */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Legacy class aliases - map to .btn */
.cta-button,
.btn-hero-primary,
.btn-stage-2,
.btn-stage-3-primary,
.btn-stage-3-secondary,
.btn-stage-4-booking,
.btn-follow-social,
.btn-accommodation-cta,
.btn-download-itinerary,
.btn-package,
.btn-option-primary,
.btn-option-secondary,
.contact-method-btn,
.btn-preview-cta {
    /* Inherit all base button styles */
}

/* Primary Button (Heritage Foundation: Dark Slate with Gold Hover) */
.btn-primary {
    background: var(--primary-dark-slate, #32373C);
    color: var(--pure-white, #FFFFFF);
    border-color: var(--primary-dark-slate, #32373C);
    box-shadow: 0 4px 12px rgba(50, 55, 60, 0.25);
}

.btn-primary:hover {
    background: var(--accent-warm-gold, #B7780D);
    border-color: var(--accent-warm-gold, #B7780D);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 120, 13, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(50, 55, 60, 0.3);
}

/* Map legacy primary variants to Heritage Foundation primary style */
.cta-button,
.btn-hero-primary,
.btn-stage-3-primary,
.btn-stage-4-booking,
.btn-follow-social,
.btn-accommodation-cta,
.btn-option-primary {
    background: var(--primary-dark-slate, #32373C);
    color: var(--pure-white, #FFFFFF);
    border-color: var(--primary-dark-slate, #32373C);
    box-shadow: 0 4px 12px rgba(50, 55, 60, 0.25);
}

.cta-button:hover:not(:disabled),
.btn-hero-primary:hover,
.btn-stage-3-primary:hover,
.btn-stage-4-booking:hover,
.btn-follow-social:hover,
.btn-accommodation-cta:hover,
.btn-option-primary:hover {
    background: var(--accent-warm-gold, #B7780D);
    border-color: var(--accent-warm-gold, #B7780D);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 120, 13, 0.35);
}

.cta-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(50, 55, 60, 0.3);
}

/* Secondary Button (Dark) */
.btn-secondary {
    background: var(--brand-dark, #2B2823);
    color: #FFFFFF;
    border-color: var(--brand-dark, #2B2823);
    box-shadow: 0 4px 12px rgba(43, 40, 35, 0.2);
}

.btn-secondary:hover {
    background: #1A1815;
    border-color: #1A1815;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 40, 35, 0.3);
}

/* Map legacy secondary variants */
.btn-stage-2,
.btn-option-secondary {
    background: var(--brand-dark, #2B2823);
    color: #FFFFFF;
    border-color: var(--brand-dark, #2B2823);
    box-shadow: 0 4px 12px rgba(43, 40, 35, 0.2);
}

.btn-stage-2:hover,
.btn-option-secondary:hover {
    background: #1A1815;
    border-color: #1A1815;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 40, 35, 0.3);
}

/* Outline Button (Heritage Foundation: Warm Gold outline) */
.btn-outline {
    background: transparent;
    color: var(--accent-warm-gold, #B7780D);
    border-color: var(--accent-warm-gold, #B7780D);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--accent-warm-gold, #B7780D);
    color: var(--pure-white, #FFFFFF);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 120, 13, 0.25);
}

/* Map legacy outline variant */
.btn-stage-3-secondary {
    background: transparent;
    color: var(--accent-warm-gold, #B7780D);
    border-color: var(--accent-warm-gold, #B7780D);
    box-shadow: none;
}

.btn-stage-3-secondary:hover {
    background: var(--accent-warm-gold, #B7780D);
    color: var(--pure-white, #FFFFFF);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 120, 13, 0.25);
}

/* Ghost Button (for dark backgrounds) */
.btn-ghost {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Success Button */
.btn-success {
    background: var(--success-green, #28a745);
    color: #FFFFFF;
    border-color: var(--success-green, #28a745);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
}

.btn-success:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    min-height: 40px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 36px;
    min-height: 56px;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-xl {
    padding: 22px 44px;
    min-height: 64px;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Full Width Button */
.btn-block {
    width: 100%;
    display: flex;
}

.cta-button {
    width: 100%;
    display: flex;
}

/* Disabled State */
.btn:disabled,
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

/* Focus State (Accessibility - Heritage Foundation: Warm Gold) */
.btn:focus-visible {
    outline: 3px solid var(--accent-warm-gold, #B7780D);
    outline-offset: 2px;
}

.cta-button:focus-visible {
    outline: 3px solid var(--accent-warm-gold, #B7780D);
    outline-offset: 2px;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
    cursor: wait;
}

.cta-button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
    cursor: wait;
}

/* Reduced Motion Support (Accessibility) */
@media (prefers-reduced-motion: reduce) {
    .btn,
    .cta-button,
    .btn-hero-primary,
    .btn-stage-2,
    .btn-stage-3-primary,
    .btn-stage-3-secondary,
    .btn-stage-4-booking,
    .btn-follow-social,
    .btn-accommodation-cta,
    .btn-download-itinerary,
    .btn-package,
    .btn-option-primary,
    .btn-option-secondary {
        transition: none;
        animation: none;
    }

    .btn:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-outline:hover,
    .cta-button:hover {
        transform: none;
    }
}

.btn.loading::after,
.cta-button.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Button Group */
.btn-group {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Icon Support */
.btn .icon,
.cta-button .icon {
    font-size: 1.2em;
    line-height: 1;
}

/* =============================================================================
   ACCESSIBILITY
   ============================================================================= */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-link:focus {
    left: 0;
    top: 0;
    padding: 1em;
    background: var(--brand-dark);
    color: white;
}

/* =============================================================================
   PROGRESS BAR
   ============================================================================= */
.progress-bar-wrapper {
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 25px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.progress-container {
    max-width: 600px;
    margin: 0 auto;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.progress-line-bg {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--border-light);
    z-index: 1;
}

.progress-line-active {
    position: absolute;
    top: 20px;
    left: 10%;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-bronze) 0%, var(--brand-gold) 100%);
    z-index: 2;
}

.progress-step {
    position: relative;
    z-index: 3;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    font-size: 18px;
}

.step-circle.completed {
    background: var(--success-green);
    color: white;
}

.step-circle.active {
    background: linear-gradient(135deg, var(--brand-bronze) 0%, var(--brand-gold) 100%);
    color: white;
    box-shadow: 0 2px 12px rgba(183, 120, 13, 0.4);
}

.step-circle.pending {
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-secondary);
}

.step-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.step-label.active {
    color: var(--brand-bronze);
    font-weight: 600;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero-section {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, rgba(183,120,13,0.03) 0%, rgba(216,168,27,0.03) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    /* Phase 4 fix: Add semi-transparent background for text contrast over hero image */
    background: rgba(255, 255, 255, 0.92);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-bronze);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-link:hover {
    color: var(--brand-gold);
    transform: translateX(-3px);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-subtitle strong {
    color: var(--brand-bronze);
}

.value-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid var(--border-light);
}

.value-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.value-badge .icon {
    color: var(--brand-bronze);
}

/* =============================================================================
   CIRCULAR PHOTO SYSTEM (Research-Backed Enhancement)
   MIT E-Commerce Lab: Photos outperform icons by 40-80%
   ============================================================================= */
.value-photo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-photo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--brand-bronze);
    box-shadow: 0 2px 8px rgba(183, 120, 13, 0.2);
    transition: all 0.3s ease;
    display: block;
}

.value-photo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(183, 120, 13, 0.3);
    border-color: var(--brand-gold);
}

/* =============================================================================
   MAIN CONTAINER
   ============================================================================= */
.main-container {
    padding: 60px 0;
    background: var(--bg-light);
}

.config-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================================================
   CONFIGURATION CARDS
   ============================================================================= */
.config-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.config-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-bronze) 0%, var(--brand-gold) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.config-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

/* =============================================================================
   MONTH SELECTION
   ============================================================================= */
.month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.month-card {
    position: relative;
    border: 2px solid var(--border-light);
    background: white;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.month-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 16px rgba(216, 168, 27, 0.15);
}

.month-card.active {
    border-color: var(--brand-bronze);
    background: linear-gradient(135deg, rgba(183,120,13,0.05) 0%, rgba(216,168,27,0.05) 100%);
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.month-name {
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 18px;
}

.month-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.badge-value {
    background: var(--success-green);
}

.badge-carnival {
    background: var(--carnival-purple);
}

.month-event {
    color: var(--brand-bronze);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.month-dates {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Month Details */
.month-details {
    padding: 25px;
    background: linear-gradient(135deg, rgba(183,120,13,0.08) 0%, rgba(216,168,27,0.08) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--brand-bronze);
}

.month-details-title {
    color: var(--brand-bronze);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
}

.month-details-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================================================
   COUNTDOWN TIMER
   ============================================================================= */
.countdown-alert {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(247,147,30,0.1) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255,107,53,0.2);
}

.countdown-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
}

.time-unit {
    text-align: center;
}

.time-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
}

.time-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* =============================================================================
   DURATION & TRAVEL TYPE SELECTION
   ============================================================================= */
.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.selection-group {
    margin-bottom: 0;
}

.selection-label {
    display: block;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
}

.selection-buttons {
    display: flex;
    gap: 15px;
}

.selection-btn {
    flex: 1;
    padding: 18px;
    border: 2px solid var(--border-light);
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.selection-btn:hover {
    border-color: var(--brand-gold);
}

.selection-btn.active {
    border-color: var(--brand-bronze);
    background: linear-gradient(135deg, rgba(183,120,13,0.05) 0%, rgba(216,168,27,0.05) 100%);
}

.selection-btn strong {
    display: block;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.selection-btn small {
    color: var(--text-secondary);
    font-size: 13px;
}

/* =============================================================================
   PACKAGE CARDS
   ============================================================================= */
.packages-grid {
    display: grid;
    gap: 20px;
}

.package-card {
    position: relative;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.package-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 20px rgba(216, 168, 27, 0.15);
}

.package-card.active {
    border-color: var(--brand-bronze);
    background: linear-gradient(135deg, rgba(183,120,13,0.03) 0%, rgba(216,168,27,0.03) 100%);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success-green);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.package-features {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-bronze);
    margin-bottom: 5px;
}

.package-unit {
    color: var(--text-secondary);
    font-size: 14px;
}

/* =============================================================================
   SIDEBAR
   ============================================================================= */
.sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
}

.price-summary-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    max-height: inherit;
    overflow-y: auto;
}

.summary-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-label {
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 600;
    color: var(--brand-dark);
}

.summary-value.pending {
    color: var(--text-secondary);
}

.price-display {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--border-light);
}

.total-label {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.total-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-bronze);
    margin-bottom: 10px;
}

.installment-note {
    color: var(--text-secondary);
    font-size: 14px;
}

.installment-note strong {
    color: var(--brand-bronze);
}

/* CTA Button - uses unified button system above */
.cta-button {
    margin-top: 20px;
}

.trust-notes {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.trust-note .icon {
    color: var(--success-green);
}

.trust-note small {
    color: var(--text-secondary);
}

/* =============================================================================
   INSTRUCTOR SECTION
   ============================================================================= */
.instructors-section {
    padding: 40px;
    background: linear-gradient(135deg, rgba(183,120,13,0.03) 0%, rgba(216,168,27,0.03) 100%);
    border-radius: 12px;
    margin-bottom: 30px;
}

.instructors-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.instructors-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.instructor-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.instructor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 5px;
}

.instructor-credentials {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* =============================================================================
   WHY BOOK NOW SECTION
   ============================================================================= */
.why-book-section {
    background: linear-gradient(135deg, var(--brand-bronze) 0%, var(--brand-gold) 100%);
    border-radius: 12px;
    padding: 50px;
    margin-top: 40px;
    color: white;
}

.why-book-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.why-book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.why-book-item {
    text-align: center;
}

.why-book-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-book-heading {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
    color: white;
}

.why-book-text {
    opacity: 0.95;
    font-size: 14px;
    line-height: 1.6;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */
@media (max-width: 968px) {
    .config-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: relative;
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .month-grid {
        grid-template-columns: 1fr;
    }

    .selection-grid {
        grid-template-columns: 1fr;
    }

    .value-badges {
        gap: 20px;
    }

    .value-photo-circle {
        width: 40px;
        height: 40px;
    }

    .why-book-section {
        padding: 30px 20px;
    }

    .config-card {
        padding: 25px 20px;
    }

    .config-title {
        font-size: 22px;
    }
}

/* =============================================================================
   PRINT STYLES
   ============================================================================= */
@media print {
    .progress-bar-wrapper,
    .back-link {
        display: none;
    }

    .config-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        page-break-before: always;
    }
}

/* =============================================================================
   GLOBAL BASE STYLES (Scoped to camp-options page)
   ============================================================================= */
.page-template-camp-options-final html {
    box-sizing: border-box;
}

.page-template-camp-options-final *,
.page-template-camp-options-final *::before,
.page-template-camp-options-final *::after {
    box-sizing: inherit;
}

.page-template-camp-options-final *:focus-visible {
    outline: 3px solid var(--accent-warm-gold, #B7780D);
    outline-offset: 2px;
}

.page-template-camp-options-final img {
    max-width: 100%;
    height: auto;
}

/* =============================================================================
   EMOTIONAL CONNECTION SECTION
   ============================================================================= */
.emotional-connection-section {
    padding: 60px 0;
    background: white;
}

.emotional-connection-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.emotional-connection-section .row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.emotional-connection-section .col-lg-6 {
    flex: 1;
    min-width: 280px;
}

.emotional-connection-section h2 {
    color: var(--brand-dark);
    margin-bottom: 20px;
    font-size: 28px;
}

.emotional-connection-section .lead {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.emotional-connection-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.emotional-connection-section .alert {
    background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, rgba(255,193,7,0.05) 100%);
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,193,7,0.2);
}

.emotional-connection-section .alert p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
}

/* =============================================================================
   COLLAPSIBLE ITINERARY
   ============================================================================= */
.itinerary-collapsible {
    margin-top: 30px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.collapsible-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.collapsible-trigger:hover {
    background: var(--bg-light);
}

.trigger-icon {
    font-size: 24px;
}

.trigger-text {
    flex: 1;
}

.trigger-text strong {
    display: block;
    color: var(--brand-dark);
    font-size: 16px;
    margin-bottom: 4px;
}

.trigger-text small {
    color: var(--text-secondary);
    font-size: 13px;
}

.trigger-arrow {
    font-size: 12px;
    color: var(--brand-bronze);
    transition: transform 0.3s;
}

.collapsible-trigger[aria-expanded="true"] .trigger-arrow {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-light);
}

.collapsible-content.open {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.collapsible-content-inner {
    padding: 20px;
}

.itinerary-day {
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
}

.itinerary-day.highlight {
    background: linear-gradient(135deg, rgba(183,120,13,0.08) 0%, rgba(216,168,27,0.08) 100%);
    border-left: 4px solid var(--brand-bronze);
}

.itinerary-day strong {
    display: block;
    color: var(--brand-bronze);
    margin-bottom: 8px;
    font-size: 15px;
}

.itinerary-day p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.itinerary-day img {
    margin-top: 12px;
    border-radius: 6px;
}

/* =============================================================================
   FAQ SECTION
   ============================================================================= */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    color: var(--brand-dark);
    font-size: 32px;
    margin-bottom: 10px;
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 60px 20px 20px;
    background: white;
    border: none;
    cursor: pointer;
    position: relative;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--brand-bronze);
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.open {
    max-height: 300px;
    transition: max-height 0.4s ease-in;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =============================================================================
   TRUST & PAYMENT SECURITY SECTION
   ============================================================================= */
.trust-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.payment-security-container {
    text-align: center;
    margin-bottom: 40px;
}

.payment-security-title {
    font-size: 24px;
    color: var(--brand-dark);
    margin-bottom: 30px;
}

.payment-methods-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}

.norton-ssl-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
}

.norton-ssl-badge svg {
    width: 24px;
    height: 24px;
    color: #4CAF50;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-main {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}

.badge-sub {
    font-size: 11px;
    color: var(--text-secondary);
}

.trust-features-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-feature-item .checkmark {
    color: var(--success-green);
    font-size: 18px;
}

/* =============================================================================
   FINAL CTA SECTION
   ============================================================================= */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-bronze) 0%, var(--brand-gold) 100%);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.final-cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-final-cta {
    padding: 18px 50px;
    background: white;
    color: var(--brand-bronze);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-final-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cancellation-badge {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.cancellation-badge svg {
    width: 20px;
    height: 20px;
}

.badge-highlight {
    font-weight: 700;
}

/* =============================================================================
   EXTENDED RESPONSIVE DESIGN - MEDIUM MOBILE (480px)
   ============================================================================= */
@media (max-width: 480px) {
    .progress-bar-wrapper {
        padding: 20px 0;
    }

    .hero-title {
        font-size: 26px;
        padding: 12px 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .back-link {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .value-badges {
        gap: 12px;
        padding: 15px 10px;
    }

    .value-badge {
        font-size: 13px;
    }

    .config-header {
        gap: 15px;
        margin-bottom: 25px;
    }

    .step-number-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .selection-grid {
        gap: 15px;
    }

    .month-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .sidebar-sticky {
        padding: 15px;
    }

    .price-display {
        margin-top: 20px;
        padding-top: 20px;
    }

    .total-price {
        font-size: 30px;
    }

    .cta-button {
        padding: 16px;
        font-size: 15px;
    }

    .trust-notes {
        margin-top: 15px;
        padding-top: 15px;
    }

    .instructor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 15px 50px 15px 15px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .payment-methods-grid {
        gap: 15px;
    }

    .payment-badge {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* =============================================================================
   EXTENDED RESPONSIVE DESIGN - SMALL MOBILE (360px)
   ============================================================================= */
@media (max-width: 360px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .progress-container {
        max-width: 95%;
    }

    .progress-steps {
        gap: 5px;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .step-label {
        font-size: 10px;
    }

    .hero-section {
        padding: 25px 0 15px;
    }

    .hero-title {
        font-size: 24px;
        padding: 10px 12px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
        line-height: 1.5;
    }

    .value-badges {
        gap: 10px;
        padding: 12px 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .value-badge {
        font-size: 12px;
        width: 100%;
    }

    .value-photo-circle {
        width: 40px;
        height: 40px;
    }

    .main-container {
        padding: 30px 0;
    }

    .config-layout {
        gap: 20px;
        padding: 0 10px;
    }

    .config-card {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .config-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .step-number-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .month-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .month-card {
        padding: 12px;
    }

    .month-name {
        font-size: 15px;
    }

    .selection-button {
        padding: 12px;
        font-size: 14px;
    }

    .sidebar-sticky {
        padding: 12px;
        border-radius: 8px;
    }

    .sidebar-sticky h3 {
        font-size: 18px;
    }

    .total-price {
        font-size: 26px;
    }

    .cta-button {
        padding: 14px;
        font-size: 14px;
        border-radius: 8px;
    }

    .instructor-card {
        padding: 15px;
    }

    .instructor-name {
        font-size: 16px;
    }

    .why-book-section {
        padding: 25px 15px;
    }

    .why-book-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .countdown-timer {
        padding: 12px;
    }

    .time-unit {
        padding: 8px 12px;
    }

    .time-value {
        font-size: 20px;
    }

    .time-label {
        font-size: 10px;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-question {
        padding: 12px 45px 12px 12px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-toggle {
        right: 12px;
        font-size: 20px;
    }

    .faq-answer p {
        padding: 0 12px 12px 12px;
        font-size: 14px;
    }

    .trust-section {
        padding: 40px 0;
    }

    .payment-security-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .payment-methods-grid {
        gap: 10px;
    }

    .payment-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .norton-ssl-badge {
        padding: 10px 15px;
    }

    .norton-ssl-badge svg {
        width: 20px;
        height: 20px;
    }

    .badge-main {
        font-size: 13px;
    }

    .badge-sub {
        font-size: 10px;
    }

    .trust-features-list {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
    }

    .trust-feature-item {
        font-size: 13px;
    }

    .final-cta-section {
        padding: 60px 15px;
    }

    .final-cta-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .final-cta-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .btn-final-cta {
        padding: 14px 30px;
        font-size: 15px;
        border-radius: 8px;
    }

    .collapsible-trigger {
        padding: 12px;
        font-size: 14px;
    }

    .collapsible-content {
        padding: 15px;
    }

    .itinerary-day {
        padding: 12px;
    }

    .itinerary-day strong {
        font-size: 14px;
    }

    .itinerary-day p {
        font-size: 13px;
    }

    .emotional-connection-section {
        padding: 40px 0;
    }

    .emotional-connection-section .row {
        flex-direction: column;
        gap: 30px;
    }

    .emotional-connection-section .col-lg-6 {
        min-width: unset;
        width: 100%;
    }

    .emotional-connection-section h2 {
        font-size: 24px;
    }

    .emotional-connection-section .lead {
        font-size: 16px;
    }
}

/* =============================================================================
   NOTE: Utility classes imported from heritage-foundation-utilities.css
   These styles are scoped specifically to camp-options-final page components

   CHANGELOG (December 2025):
   - Merged unique inline styles from camp-options-final.php
   - Added: emotional-connection, itinerary-collapsible, faq, trust, final-cta sections
   - Added: Extended responsive breakpoints (480px, 360px)
   - Scoped global base styles to page template class
   ============================================================================= */
