/* Professional Iceland Travel Guide Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e40af;  /* Darker blue for better contrast */
    --secondary: #0284c7;  /* Adjusted secondary for better contrast */
    --accent: #d97706;  /* Darker orange for better contrast */
    --dark: #0f172a;  /* Darker text for better contrast */
    --darker: #020617;  /* Even darker for emphasis */
    --light: #ffffff;
    --gray: #475569;  /* Darker gray for better contrast */
    --light-gray: #f8fafc;  /* Slightly lighter background */
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Improved contrast colors */
    --text-high-contrast: #020617;
    --text-medium-contrast: #334155;
    --text-light-contrast: #64748b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: var(--text-high-contrast);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography Hierarchy for Consistency */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--text-high-contrast);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    color: var(--text-medium-contrast);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Improved link contrast */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

aa:focus {
    color: var(--secondary);
    text-decoration: underline;
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Enhanced focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
.guide-card:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip navigation link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Map Container and Legend Styles */
.map-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.map-legend {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-legend h4 {
    color: var(--text-high-contrast);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium-contrast);
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.legend-marker.glacier {
    background: #0f172a;
}

.legend-marker.airport {
    background: #22c55e;
}

.legend-marker.nature {
    background: #f59e0b;
}

.map-note {
    font-size: 0.85rem;
    color: var(--text-light-contrast);
    font-style: italic;
    margin: 0;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-medium-contrast);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .map-container {
        flex-direction: row;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .map-legend {
        min-width: 300px;
        flex-shrink: 0;
    }
    
    #glacier-map {
        flex: 1;
    }
}

/* Accordion Styles */
.accordion-container {
    margin: 2rem 0;
}

.accordion-item {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Removed hover effects for consistent user experience across all devices */

.accordion-header {
    background: rgba(248, 250, 252, 0.8);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Removed hover effects for consistent user experience across all devices */

.accordion-header.active {
    background: rgba(59, 130, 246, 0.1);
    border-bottom-color: rgba(226, 232, 240, 0.8);
}

.accordion-header h3 {
    margin: 0;
    color: var(--text-high-contrast);
    font-size: 1.25rem;
    font-weight: 600;
}

.accordion-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.accordion-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.accordion-header.active .accordion-toggle {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.accordion-content.active {
    max-height: 2000px;
    padding: 1.5rem;
}

/* Safety Warning Box */
.safety-warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(251, 146, 60, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    margin: 2rem 0;
    overflow: hidden;
}

.warning-header {
    background: rgba(239, 68, 68, 0.15);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.warning-icon {
    font-size: 1.5rem;
}

.warning-header h3 {
    margin: 0;
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 700;
}

.warning-content {
    padding: 1.5rem;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.warning-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium-contrast);
}

.warning-item strong {
    color: var(--text-high-contrast);
}

.warning-item a {
    color: #dc2626;
    font-weight: 600;
}

/* Status and Distance Tags */
.status,
.distance {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status.monitoring {
    background: rgba(251, 146, 60, 0.15);
    color: #ea580c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.distance {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Safety Notes */
.safety-note {
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #dc2626;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}

.safety-note strong {
    color: #dc2626;
    display: block;
    margin-bottom: 0.5rem;
}

.safety-note ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-medium-contrast);
}

/* Responsive Accordion */
@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .accordion-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }
    
    .accordion-toggle {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .accordion-content.active {
        padding: 1rem;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
    }
}

/* Professional Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    overflow: hidden;
    margin-top: 70px; /* Account for simple header */
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.3) 85%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 450px 20px 60px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin: 1.5rem 0 2rem;
}

/* Quick Trip Planner */
.quick-planner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
    box-shadow: var(--shadow);
}

.planner-item {
    flex: 1;
    min-width: 150px;
}

.planner-item label {
    display: block;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.planner-item select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: var(--dark);
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s;
}


.planner-btn {
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}


/* Top Experiences Section */
.top-experiences {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}


.experience-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.experience-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.experience-card.featured .experience-image {
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.experience-content {
    padding: 1.5rem;
}

.experience-label {
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.experience-content h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.experience-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.experience-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.experience-details span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Itineraries Section */
.itineraries {
    padding: 80px 0;
    background: white;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.itinerary-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
}


.itinerary-card.popular {
    border-color: var(--accent);
    position: relative;
}

.itinerary-header {
    margin-bottom: 1.5rem;
}

.duration-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.popular-badge {
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 0.5rem;
}

.itinerary-header h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.itinerary-map {
    width: 100%;
    height: 150px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.itinerary-days {
    margin-bottom: 1.5rem;
}

.day {
    padding: 0.5rem 0;
    color: var(--gray);
    border-bottom: 1px solid #e2e8f0;
}

.day:last-child {
    border-bottom: none;
}

.day strong {
    color: var(--dark);
}

.itinerary-btn {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}


.custom-itinerary {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.custom-itinerary h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.custom-itinerary p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Cost Calculator Section */
.cost-calculator {
    padding: 80px 0;
    background: var(--light-gray);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-inputs {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.calc-group {
    margin-bottom: 1.5rem;
}

.calc-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.calc-group input,
.calc-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.calc-group input:focus,
.calc-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.calc-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}


.calculator-results {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.calculator-results h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cost-breakdown {
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--gray);
}

.cost-item span:last-child {
    color: var(--dark);
    font-weight: 600;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.cost-total span:last-child {
    color: var(--primary);
}

.cost-tips {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.cost-tips h4 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.cost-tips ul {
    list-style: none;
    padding: 0;
}

.cost-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.cost-tips li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Budget Comparison */
.budget-comparison {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.budget-comparison h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.budget-column, .tourist-column {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.tourist-column {
    border-left-color: #ef4444;
}

.budget-column h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.tourist-column h5 {
    color: #ef4444;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.budget-column ul, .tourist-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.budget-column li, .tourist-column li {
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Button Styles */
.cta-button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 300px; /* Compressed height for mobile as per audit */
    }
    
    .hero-image-placeholder {
        align-items: flex-end; /* Move "Wonders" text to bottom */
        padding-bottom: 20px;
        font-size: 1.5rem; /* Smaller on mobile */
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-intro {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 220px 20px 40px; /* Position "Discover Iceland" in blue section on mobile */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .quick-planner {
        flex-direction: column;
    }
    
    .planner-item {
        width: 100%;
    }
    
    .experience-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .experience-card.featured .experience-image {
        height: 200px;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .itinerary-grid {
        grid-template-columns: 1fr;
    }
}

/* Simple Header */
.simple-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Main Header with Navigation */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:visited {
    color: #333;
}

.search-note {
    opacity: 0.6;
    cursor: help;
    font-size: 1rem;
    margin-left: 1rem;
}

.form-note {
    margin-top: 1rem;
    opacity: 0.7;
    font-style: italic;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        color: #333;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
/* Removed hover effects for consistent user experience across all devices */
    
    .search-note {
        margin: 1rem 0;
        padding: 1rem 0;
        border-top: 1px solid #eee;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Backdrop overlay */
    .main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: -280px;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Large touch targets for mobile as per audit */
@media (max-width: 768px) {
    .guide-card, .nav-card, .sample-card, .location-card {
        min-height: 48px; /* Minimum touch target size */
        padding: 1rem;
    }
    
    button, .btn, .nav-link, .card-arrow {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }
    
    /* Expandable sections with large touch targets */
    .collapsible-header, [data-toggle], .expandable-trigger {
        min-height: 48px;
        padding: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .collapsible-header::after, [data-toggle]::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: bold;
        color: #666;
        transition: transform 0.2s ease;
    }
    
    .collapsible-header.active::after, [data-toggle].active::after {
        transform: rotate(45deg);
    }
}

/* Progressive loading and lazy-loading for images as per audit */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[data-src].loaded {
    opacity: 1;
}

.image-placeholder {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 8px;
    color: #6b7280;
    font-size: 0.9rem;
}

.image-loading {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile contact form and footer optimization as per audit */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        display: block;
        position: sticky;
        top: 0;
        background: white;
        padding: 0.25rem 0;
        z-index: 1;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 12px 16px;
        border-radius: 8px;
        border: 2px solid #e5e7eb;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-button {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        min-height: 44px;
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    .newsletter-form button {
        min-height: 44px;
        padding: 12px 24px;
        border-radius: 8px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Background Image */
.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Hero Description Section */
.hero-description-section {
    padding: 40px 0;
    background: var(--light);
    text-align: center;
}

.hero-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-medium-contrast);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile adjustments for hero section */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-intro {
        font-size: 1rem !important;
    }
}

/* Guide Cards Section */
.guide-cards {
    padding: 80px 0;
    background: var(--light-gray);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.guide-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.card-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.volcano-theme { background: linear-gradient(135deg, #dc2626, #ea580c); }
.glacier-theme { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.spring-theme { background: linear-gradient(135deg, #059669, #0d9488); }
.road-theme { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.planner-theme { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.cost-theme { background: linear-gradient(135deg, #f59e0b, #f97316); }
.aurora-theme { background: linear-gradient(135deg, #10b981, #059669, #1e40af); }
.packing-theme { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.driving-theme { background: linear-gradient(135deg, #ef4444, #f97316); }
.budget-theme { background: linear-gradient(135deg, #10b981, #22c55e); }
.free-theme { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--gray);
}

.card-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Why SkyRoad Section */
/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.mission-text a {
    color: var(--primary);
    text-decoration: none;
}


.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.mission-stat .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.mission-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .mission-stat {
        flex: 1;
        margin: 0 0.5rem;
        padding: 1rem;
    }
}

/* Why Choose SkyRoad */
.why-skyroad {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
}


.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.contact-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}


.contact-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}


@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Trip Planner Styles */
.trip-planning {
    padding: 60px 0;
    background: var(--light-gray);
}

.planner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.planner-inputs {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

.itinerary-results {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.day-plan {
    background: var(--light-gray);
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.highlight {
    background: #e0f2fe;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.contact-note {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .planner-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Guide Page Styles - 2025 Enhanced */
.guide-page {
    padding-top: 80px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.guide-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(255,255,255,0.8) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.guide-header {
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guide-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.guide-title {
    position: relative;
    z-index: 2;
}

.guide-title h1 {
    font-size: 3.5rem;
    margin: 1rem 0;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-title p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.guide-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.quick-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.quick-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}


.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.info-card h3 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.info-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.guide-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-content {
    background: white;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    line-height: 1.7;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.main-content h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 2.5rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.main-content h2:first-of-type {
    margin-top: 0;
}

.main-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    from {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
        width: 60px;
    }
    to {
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
        width: 80px;
    }
}

.main-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2.5rem 0 1.5rem;
    position: relative;
}

.main-content h3::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    transform: translateY(-50%);
}

.location-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    animation: borderShimmer 3s ease-in-out infinite;
}

.location-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(59, 130, 246, 0.1), 
        transparent, 
        rgba(139, 92, 246, 0.1), 
        transparent
    );
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}



@keyframes borderShimmer {
    0%, 100% { 
        background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    }
    50% { 
        background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
    }
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-card h3::before {
    display: none;
}

.main-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 75ch;
    color: var(--gray);
}

.location-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}


.status.active { 
    background: linear-gradient(135deg, #fef2f2, #fee2e2); 
    color: #dc2626; 
    border: 1px solid rgba(220, 38, 38, 0.2);
}
.status.dormant { 
    background: linear-gradient(135deg, #f0f9ff, #dbeafe); 
    color: #0284c7; 
    border: 1px solid rgba(2, 132, 199, 0.2);
}
.status.monitoring { 
    background: linear-gradient(135deg, #fffbeb, #fef3c7); 
    color: #d97706; 
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.distance {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.distance::before {
    content: "📍";
    font-size: 0.8rem;
}

.safety-note {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-left: 6px solid #dc2626;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.safety-note::before {
    content: '⚠️';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
}

.planning-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.planning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.planning-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.safety-card, .quick-links {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.safety-card::before, .quick-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #f59e0b, #10b981);
}


.safety-card h3, .quick-links h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    padding-left: 1.5rem;
}

.quick-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}


.safety-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.safety-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}



.menu-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* Logo Links */
.logo a, .side-logo a {
    color: inherit;
    text-decoration: none;
}

/* Dynamic Scroll Effects & Modern Enhancements */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Enhanced List Styling */
.main-content ul {
    list-style: none;
    padding-left: 0;
}

.main-content li {
    position: relative;
    padding: 0.85rem 0 0.85rem 2.2rem;
    margin: 0.7rem 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
}

.main-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3);
}



/* Interactive Elements */
.interactive-element {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Modern Quote/Highlight Blocks */
.highlight-block {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #3b82f6, #8b5cf6) 1;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    position: relative;
    overflow: hidden;
}

.highlight-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}


/* Gaming-Inspired Button Enhancements */
.modern-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}



.modern-button:active {
    transform: translateY(0) scale(0.98);
}

/* Floating Elements */
@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
        transform: scale(1.02);
    }
}

.floating-element {
    animation: float-gentle 4s ease-in-out infinite;
}

.pulse-element {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        padding: 2.5rem;
    }
    
    .sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .guide-title h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .guide-icon {
        font-size: 4rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-content {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
    
    .main-content h2 {
        font-size: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .main-content h3 {
        font-size: 1.4rem;
        margin: 2rem 0 1.2rem;
    }
    
    .location-card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
        margin: 2rem 0;
    }
    
    .content-grid {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .main-content p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .guide-title h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .main-content h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 1rem;
    }
    
    .location-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .location-card {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .main-content li {
        padding: 0.7rem 0 0.7rem 2rem;
        margin: 0.5rem 0;
    }
    
    .planning-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}
/* ============================================
   MOBILE-FRIENDLY CARD FIXES 
   ============================================ */

/* Fix overlapping cards on mobile */
.glacier-grid, .systems-grid, .springs-grid, .nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

/* Ensure cards are properly styled */
.glacier-card, .system-card, .spring-card, .nav-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Fix image placeholder visibility */
.glacier-image .image-placeholder,
.system-image .image-placeholder,
.spring-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #1a202c;
    opacity: 1;
    font-weight: 800;
}

/* Make text always visible (no hover required) */
.glacier-content h3,
.system-content h3,
.spring-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #1a202c !important;
    font-weight: 800 !important;
    text-shadow: none;
}

.glacier-tag, .system-tag, .spring-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #0ea5e9;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile Specific Overrides */
@media (max-width: 768px) {
    /* Fix grid layout for mobile */
    .glacier-grid, 
    .systems-grid, 
    .springs-grid,
    .nav-cards,
    .featured-systems .systems-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 16px;
        margin: 20px 0;
    }
    
    /* Fix card spacing */
    .glacier-card,
    .system-card,
    .spring-card,
    .nav-card {
        margin-bottom: 0;
        width: 100%;
        min-height: auto;
    }
    
    /* Make images smaller on mobile */
    .glacier-image,
    .system-image,
    .spring-image {
        height: 100px;
        position: relative;
    }
    
    /* Ensure content is readable */
    .glacier-content,
    .system-content,
    .spring-content {
        padding: 16px;
    }
    
    /* Make titles larger and more readable */
    .glacier-content h3,
    .system-content h3,
    .spring-content h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 8px;
        color: #1e40af !important;
        font-weight: 800 !important;
        text-shadow: none;
    }
    
    /* Fix stats display */
    .glacier-stats,
    .system-stats,
    .spring-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 12px 0;
        font-size: 0.875rem;
    }
    
    .glacier-stats span,
    .system-stats span,
    .spring-stats span {
        display: block;
    }
    
    /* Make links touch-friendly */
    .glacier-link,
    .system-link,
    .spring-link {
        display: inline-block;
        color: #0ea5e9;
        text-decoration: none;
        font-weight: 600;
        margin-top: 12px;
        padding: 12px 20px;
        border: 2px solid #0ea5e9;
        border-radius: 8px;
        text-align: center;
        min-height: 44px;
        line-height: 1.2;
    }
    
    /* Add touch feedback */
    .glacier-link:active,
    .system-link:active,
    .spring-link:active,
    .nav-card:active {
        background: #0ea5e9;
        color: white;
        transform: scale(0.98);
    }
    
    /* Remove hover effects on mobile */
    
    /* Ensure navigation cards work on mobile */
    .nav-card {
        padding: 20px;
        text-decoration: none;
        color: inherit;
        display: block;
        min-height: auto;
    }
    
    .nav-card .card-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .nav-card h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
        color: #1a202c !important;
        font-weight: 800 !important;
        text-shadow: none;
    }
    
    .nav-card p {
        font-size: 0.875rem;
        color: #6b7280;
        margin-bottom: 12px;
    }
    
    /* Fix volcano map overlays on mobile */
    #volcano-map,
    #glacier-map,
    #hotsprings-map {
        height: 300px !important;
        margin: 20px 0;
    }
    
    /* Fix hero sections on mobile */
    .volcano-hero,
    .glacier-hero,
    .spring-hero {
        padding: 60px 16px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats .stat {
        padding: 12px;
        text-align: center;
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (pointer: coarse) {
    /* Make all interactive elements larger */
    a, button, .glacier-link, .system-link, .spring-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove all hover-only effects */
    
    /* Add visible focus states */
    a:focus, button:focus {
        outline: 3px solid #0ea5e9;
        outline-offset: 2px;
    }
}

/* Comprehensive Footer Styles */
.main-footer {
    background: var(--darker);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}


.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}


.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}


@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Volcano Table Styles */
.volcanoes-table-container {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.volcanoes-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.volcanoes-table thead {
    background: linear-gradient(135deg, var(--dark) 0%, #334155 100%);
    color: white;
}

.volcanoes-table th,
.volcanoes-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.volcanoes-table th {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.volcanoes-table .active-volcano {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
}

.risk-high {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.risk-medium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.risk-low {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Safety Callout Styles */
.safety-callouts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.safety-callout {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
}

.safety-callout.safe {
    border-left: 4px solid #10b981;
}

.safety-callout.warning {
    border-left: 4px solid #ef4444;
}

.safety-callout.info {
    border-left: 4px solid var(--primary);
}

.callout-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e2e8f0;
}

.callout-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.callout-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.callout-content {
    padding: 1.5rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.safety-point {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.tour-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tour-detail {
    padding: 0.75rem;
    background: #eff6ff;
    border-radius: 6px;
    border-left: 3px solid var(--primary);
}

/* Monitoring Callout Styles */
.monitoring-callout,
.alert-levels-callout,
.emergency-callout {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
    border-left: 4px solid var(--primary);
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.monitoring-method {
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
}

.source-attribution {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    color: var(--gray);
    font-size: 0.875rem;
}

/* Alert Levels */
.alert-levels {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alert-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f8fafc;
}

.alert-level.green {
    border-left: 4px solid #10b981;
}

.alert-level.yellow {
    border-left: 4px solid #f59e0b;
}

.alert-level.orange {
    border-left: 4px solid #f97316;
}

.alert-level.red {
    border-left: 4px solid #ef4444;
}

.level-color {
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    min-width: 80px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alert-level.green .level-color {
    background: #10b981;
}

.alert-level.yellow .level-color {
    background: #f59e0b;
}

.alert-level.orange .level-color {
    background: #f97316;
}

.alert-level.red .level-color {
    background: #ef4444;
}

.level-description {
    flex: 1;
    color: var(--dark);
}

/* Emergency Contacts */
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.emergency-contact {
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 3px solid #ef4444;
    color: var(--dark);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .volcanoes-table {
        font-size: 0.875rem;
    }
    
    .volcanoes-table th,
    .volcanoes-table td {
        padding: 0.75rem;
    }
    
    .safety-grid,
    .monitoring-grid,
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-info {
        grid-template-columns: 1fr;
    }
    
    .alert-levels {
        gap: 0.75rem;
    }
    
    .alert-level {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Interactive Volcano Map Styles */
.volcano-map-section {
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-intro {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.map-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.legend-dot.red {
    background: #ef4444;
}

.legend-dot.orange {
    background: #f97316;
}

.legend-dot.blue {
    background: #2563eb;
}

.legend-dot.gray {
    background: #6b7280;
}

.interactive-map-container {
    padding: 0;
    position: relative;
}

.map-footer {
    padding: 2rem;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.live-data-link {
    text-align: center;
}

.live-data-link h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.live-data-link p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.live-status-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}


/* Custom Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.volcano-popup h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.popup-status {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.active {
    background: #ef4444;
    color: white;
}

.status-badge.watched {
    background: #f97316;
    color: white;
}

.status-badge.monitored {
    background: #2563eb;
    color: white;
}

.status-badge.dormant {
    background: #6b7280;
    color: white;
}

.risk-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.risk-badge.risk-high {
    background: #dc2626;
    color: white;
}

.risk-badge.risk-medium {
    background: #d97706;
    color: white;
}

.risk-badge.risk-low {
    background: #059669;
    color: white;
}

.volcano-popup p {
    margin-bottom: 0.75rem;
    color: var(--dark);
    line-height: 1.5;
}

.volcano-popup strong {
    color: var(--dark);
}

.popup-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.popup-link a {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s ease;
}


/* Mobile Responsiveness for Map */
@media (max-width: 768px) {
    .map-legend {
        gap: 1rem;
        justify-content: center;
    }
    
    .legend-item {
        font-size: 0.875rem;
    }
    
    .map-intro,
    .map-footer {
        padding: 1.5rem;
    }
    
    .live-status-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .volcano-popup {
        font-size: 0.875rem;
    }
    
    .popup-status {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Visual Media Gallery Styles */
.media-gallery-section {
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.media-intro {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.media-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.media-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.media-item.featured {
    grid-column: span 2;
}

.media-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.media-item.featured .media-placeholder {
    height: 300px;
}

.eruption-video {
    background: linear-gradient(45deg, #dc2626 0%, #f97316 50%, #fbbf24 100%);
    background-size: 400% 400%;
    animation: lavaGlow 3s ease-in-out infinite alternate;
}

.lava-lake {
    background: linear-gradient(135deg, #991b1b, #dc2626, #ef4444);
}

.aerial-view {
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
}

.historical-photo {
    background: linear-gradient(135deg, #374151, #6b7280, #9ca3af);
}

.tourist-photo {
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
}

.helicopter-view {
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
}

@keyframes lavaGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.media-content {
    text-align: center;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}


.media-caption {
    padding: 1.5rem;
}

.media-caption h4 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.media-caption p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.media-attribution {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

.media-attribution small {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.media-attribution small:last-child {
    margin-bottom: 0;
}

.media-attribution strong {
    color: var(--dark);
}

/* Copyright Notice */
.copyright-notice {
    background: #f8fafc;
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
}

.copyright-notice h4 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
}

.copyright-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.copyright-point {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.copyright-point strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.5rem;
}

.copyright-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #856404;
    font-style: italic;
}

/* Mobile Responsiveness for Media Gallery */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .media-item.featured {
        grid-column: span 1;
    }
    
    .media-placeholder {
        height: 200px;
    }
    
    .media-item.featured .media-placeholder {
        height: 250px;
    }
    
    .media-caption {
        padding: 1rem;
    }
    
    .play-button {
        font-size: 2.5rem;
    }
    
    .copyright-grid {
        grid-template-columns: 1fr;
    }
    
    .media-intro,
    .copyright-notice {
        padding: 1.5rem;
    }
}

/* Hot Springs Table & Comparison Styles */
.hotsprings-comparison-section {
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.comparison-intro {
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.comparison-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.hotsprings-table-container {
    overflow-x: auto;
    padding: 0;
}

.hotsprings-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.hotsprings-table thead {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

.hotsprings-table th,
.hotsprings-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.hotsprings-table th {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.hotsprings-table .luxury-spa {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.1) 0%, rgba(219, 39, 119, 0.1) 100%);
}

.hotsprings-table .natural-spring {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.1) 0%, rgba(21, 128, 61, 0.1) 100%);
}

/* Cost level indicators */
.cost-high {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cost-medium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cost-low {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cost-free {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Crowd level indicators */
.crowd-high {
    color: #dc2626;
    font-weight: 600;
}

.crowd-medium {
    color: #d97706;
    font-weight: 600;
}

.crowd-low {
    color: #059669;
    font-weight: 600;
}

/* Tips Callout Styles */
.tips-callout-section {
    margin: 2rem 0;
}

.tips-callout {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-left: 4px solid #f59e0b;
}

.tips-callout .callout-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-bottom: 1px solid #f3f4f6;
}

.tips-callout .callout-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.tips-callout .callout-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.tips-callout .callout-content {
    padding: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.tip-item {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #f59e0b;
    line-height: 1.5;
    color: var(--dark);
}

.tip-item strong {
    color: #92400e;
    display: block;
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness for Hot Springs Table */
@media (max-width: 768px) {
    .hotsprings-table {
        font-size: 0.875rem;
    }
    
    .hotsprings-table th,
    .hotsprings-table td {
        padding: 0.75rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-intro {
        padding: 1.5rem;
    }
    
    .tips-callout .callout-content {
        padding: 1rem;
    }
    
    .hotsprings-table th:nth-child(n+4) {
        display: none;
    }
    
    .hotsprings-table td:nth-child(n+4) {
        display: none;
    }
}

/* Hot Springs Map Styles */
.hotsprings-map-section {
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hotsprings-map-section .map-intro {
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.map-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: var(--gray);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}


.filter-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.hotspring-popup h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.popup-category {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-badge {
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cost-badge {
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.family-friendly {
    background: #22c55e;
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
}

@media (max-width: 768px) {
    .map-filters {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: 150px;
    }
    
    .hotsprings-map-section .map-intro {
        padding: 1.5rem;
    }
}

/* Etiquette and Environmental Callout Styles */
.etiquette-callout-section,
.environmental-callout-section {
    margin: 2rem 0;
}

.etiquette-callout {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-left: 4px solid #3b82f6;
}

.environmental-callout {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-left: 4px solid #10b981;
}

.etiquette-callout .callout-header,
.environmental-callout .callout-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-bottom: 1px solid #e2e8f0;
}

.environmental-callout .callout-header {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.etiquette-callout .callout-icon,
.environmental-callout .callout-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.etiquette-callout .callout-header h3,
.environmental-callout .callout-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.etiquette-callout .callout-content,
.environmental-callout .callout-content {
    padding: 1.5rem;
}

.etiquette-grid,
.environmental-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.etiquette-rule,
.environmental-tip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    line-height: 1.5;
    color: var(--dark);
}

.etiquette-rule.priority {
    background: #fef2f2;
    border-color: #fecaca;
    border-left: 4px solid #ef4444;
    font-weight: 500;
}

.etiquette-rule strong,
.environmental-tip strong {
    color: var(--dark);
    display: inline-block;
    margin-bottom: 0.25rem;
}

.environmental-warning {
    background: #fff3cd;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.environmental-warning p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

.environmental-tip a {
    color: var(--primary);
    text-decoration: underline;
}


@media (max-width: 768px) {
    .etiquette-grid,
    .environmental-grid {
        gap: 0.75rem;
    }
    
    .etiquette-callout .callout-content,
    .environmental-callout .callout-content {
        padding: 1rem;
    }
    
    .etiquette-rule,
    .environmental-tip {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Hot Springs Media Gallery Styles */
.hotsprings-media-section {
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hotsprings-media-section .media-intro {
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.blue-lagoon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7, #0369a1);
    background-size: 400% 400%;
    animation: blueWaves 4s ease-in-out infinite alternate;
}

.hot-river {
    background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
}

.municipal-pool {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
}

.secret-pool {
    background: linear-gradient(135deg, #6b7280, #4b5563, #374151);
}

.winter-bathing {
    background: linear-gradient(135deg, #6366f1, #4f46e5, #4338ca);
}

.sustainability {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
}

@keyframes blueWaves {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Glacier Page - Sustainable Tourism & Ice Cave Safety Styles */
.sustainable-tourism-section {
    background: linear-gradient(135deg, #065f46, #047857, #059669);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    color: white;
}

.sustainable-tourism-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.sustainability-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sustainability-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.guideline-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.guideline-card h4 {
    color: #6ee7b7;
    margin-bottom: 1rem;
}

.guideline-card ul {
    list-style: none;
    padding: 0;
}

.guideline-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guideline-card li:last-child {
    border-bottom: none;
}

.guideline-card a {
    color: #6ee7b7;
    text-decoration: underline;
}


/* Ice Cave Safety Section */
.ice-cave-safety-section {
    margin: 3rem 0;
}

.ice-cave-safety-section h3 {
    color: #dc2626;
    text-align: center;
    margin-bottom: 1.5rem;
}

.safety-warning-box {
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    border: 3px solid #ef4444;
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.warning-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ice-cave-practical-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.practical-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.practical-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.practical-card ul {
    list-style: none;
    padding: 0;
}

.practical-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.practical-card li:last-child {
    border-bottom: none;
}

.cave-collapse-warning {
    background: linear-gradient(135deg, #fed7aa, #fdba74, #fb923c);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f97316;
}

.cave-collapse-warning h4 {
    color: #9a3412;
    margin-bottom: 1rem;
}

.cave-collapse-warning p {
    color: #9a3412;
    margin-bottom: 1rem;
}

.cave-collapse-warning ul {
    list-style: none;
    padding: 0;
}

.cave-collapse-warning li {
    padding: 0.5rem 0;
    color: #9a3412;
}

.collapse-emphasis {
    background: rgba(154, 52, 18, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #9a3412;
    font-weight: 600;
}

/* Glacier table styles */
.glaciers-comparison-section {
    margin: 2rem 0;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.glaciers-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.glaciers-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.glaciers-table th {
    background: linear-gradient(135deg, #1e40af, #1d4ed8, #2563eb);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.glaciers-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}


.largest-glacier {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.volcanic-glacier {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
}

.access-easy {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.access-medium {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.access-difficult {
    background: #fecaca;
    color: #991b1b;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tours-available {
    color: #059669;
    font-weight: 600;
}

.tours-seasonal {
    color: #d97706;
    font-weight: 600;
}

.tours-none {
    color: #dc2626;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hotsprings-media-section .media-intro {
        padding: 1.5rem;
    }

    .sustainability-guidelines {
        grid-template-columns: 1fr;
    }

    .ice-cave-practical-info {
        grid-template-columns: 1fr;
    }

    .glaciers-table-container {
        font-size: 0.875rem;
    }

    .glaciers-table th,
    .glaciers-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Aurora Page - Forecast Widget, Dark-Sky Locations & References Styles */
.aurora-forecast-widget {
    background: linear-gradient(135deg, #1e1b4b, #312e81, #3730a3);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    color: white;
}

.aurora-forecast-widget h3 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.forecast-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.forecast-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}


.forecast-card h4 {
    color: #a5b4fc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.current-value {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #fbbf24;
}

.forecast-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}


/* Dark-Sky Locations Table */
.dark-sky-map-section {
    margin: 3rem 0;
}

.map-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.viewing-locations-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.viewing-locations-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9rem;
}

.viewing-locations-table th {
    background: linear-gradient(135deg, #1e1b4b, #312e81, #3730a3);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.viewing-locations-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}


.premier-location {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.remote-location {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.highlands-location {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.pollution-excellent {
    background: #065f46;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pollution-low {
    background: #059669;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.difficulty-easy {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.difficulty-moderate {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.difficulty-difficult {
    background: #fecaca;
    color: #991b1b;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Location Tips Section */
.location-tips-section {
    margin: 2rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.tip-card h5 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tip-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Scientific References Section */
.scientific-references-section {
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    color: white;
}

.references-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reference-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.reference-card h4 {
    color: #a5b4fc;
    margin-bottom: 1rem;
}

.reference-card ul {
    list-style: none;
    padding: 0;
}

.reference-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reference-card li:last-child {
    border-bottom: none;
}

.reference-card a {
    color: #60a5fa;
    text-decoration: underline;
}


.scientific-note {
    background: rgba(59, 130, 246, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.scientific-note h4 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.scientific-note p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hotsprings-media-section .media-intro {
        padding: 1.5rem;
    }

    .sustainability-guidelines {
        grid-template-columns: 1fr;
    }

    .ice-cave-practical-info {
        grid-template-columns: 1fr;
    }

    .glaciers-table-container {
        font-size: 0.875rem;
    }

    .glaciers-table th,
    .glaciers-table td {
        padding: 0.75rem 0.5rem;
    }

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

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

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

    .viewing-locations-table-container {
        font-size: 0.8rem;
    }

    .viewing-locations-table th,
    .viewing-locations-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Trip Planner Page Styles */
.planner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.planner-inputs {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label,
.form-group legend {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}


.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.form-help {
    display: block;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-style: italic;
}

.generate-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.itinerary-results {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    max-height: 70vh;
    overflow-y: auto;
}

.validation-message {
    text-align: center;
    color: #64748b;
}

.sample-itineraries {
    margin-top: 2rem;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sample-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}


.sample-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.sample-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.highlight-tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.sample-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}


.day-plan {
    background: #f8fafc;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    line-height: 1.6;
}

.itinerary-intro {
    background: #dbeafe;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-style: italic;
    border-left: 4px solid #3b82f6;
}

.itinerary-notes {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid #f59e0b;
}

.itinerary-notes h4 {
    color: #92400e;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    border-left: 4px solid #059669;
    font-weight: 500;
}

/* About Page Styles */
.about-theme {
    background: linear-gradient(135deg, #064e3b, #047857, #059669);
}

.founder-section {
    margin: 2rem 0;
}

.founder-story p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-card {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #bbf7d0;
    text-align: center;
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.expertise-card h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

.trust-section {
    margin: 2rem 0;
}

.trust-point {
    background: #f8fafc;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.trust-point h4 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

.contact-section {
    margin: 3rem 0;
}

.contact-form-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.form-feedback {
    margin-top: 1rem;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #059669;
}

.credentials-card {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.credentials-card h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

.credentials-card ul {
    list-style: none;
    padding: 0;
}

.credentials-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #bbf7d0;
    color: #047857;
    font-weight: 500;
}

.credentials-card li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .hotsprings-media-section .media-intro {
        padding: 1.5rem;
    }

    .sustainability-guidelines {
        grid-template-columns: 1fr;
    }

    .ice-cave-practical-info {
        grid-template-columns: 1fr;
    }

    .glaciers-table-container {
        font-size: 0.875rem;
    }

    .glaciers-table th,
    .glaciers-table td {
        padding: 0.75rem 0.5rem;
    }

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

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

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

    .viewing-locations-table-container {
        font-size: 0.8rem;
    }

    .viewing-locations-table th,
    .viewing-locations-table td {
        padding: 0.75rem 0.5rem;
    }

    .planner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

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

    .itinerary-results {
        max-height: 60vh;
    }
}
