/* ===== ROOT VARIABLES ===== */
:root {
    --space-blue: #1a1a2e;
    --neon-purple: #9d4edd;
    --starry-yellow: #ffd60a;
    --mint-green: #06d6a0;
    --rocket-orange: #ff6b35;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-text: #2b2d42;
    --success: #06d6a0;
    --error: #ef476f;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--space-blue) 0%, #16213e 100%);
    color: var(--dark-text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== WELCOME SCREEN ===== */
.welcome-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.welcome-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: auto;
    z-index: 10;
}

.cover-image-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cover-image {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26,26,46,0.8), transparent);
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    z-index: 5;
}

.game-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.3rem;
    color: var(--starry-yellow);
    margin-bottom: 2rem;
}

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

.info-card {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
}

.info-card h3 {
    color: var(--neon-purple);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.info-card p {
    color: var(--dark-text);
    font-size: 0.9rem;
}

.start-button {
    background: linear-gradient(135deg, var(--rocket-orange) 0%, #ff8c42 100%);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 24px rgba(255,107,53,0.4);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.start-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255,107,53,0.5);
}

.button-emoji {
    font-size: 1.5rem;
}

.instructions-hint {
    color: rgba(255,255,255,0.8);
}

/* ===== GAME HEADER ===== */
.game-header {
    background: rgba(255,255,255,0.98);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    width: 60px;
    height: auto;
}

.progress-container {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
}

.rocket-progress {
    position: relative;
    height: 50px;
    margin-bottom: 0.5rem;
}

.rocket {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 2.5rem;
    transition: left 0.5s ease;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.progress-track {
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    top: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--mint-green) 0%, var(--starry-yellow) 100%);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.stage-indicators {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stage-dot {
    flex: 1;
    background: #e0e0e0;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    transition: all 0.3s ease;
}

.stage-dot.active {
    background: var(--neon-purple);
    color: var(--white);
    transform: scale(1.1);
}

.stage-dot small {
    display: block;
    font-size: 0.65rem;
    margin-top: 0.2rem;
}

.score-board {
    background: linear-gradient(135deg, var(--starry-yellow) 0%, #ffc300 100%);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255,214,10,0.3);
}

.score-label {
    margin-right: 0.5rem;
}

.score-value {
    font-size: 1.3rem;
    color: var(--space-blue);
}

/* ===== MAIN GAME AREA ===== */
.game-main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 120px);
}

.stage {
    display: none;
    animation: fadeIn 0.5s ease;
}

.stage.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stage-header {
    text-align: center;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stage-header h2 {
    color: var(--neon-purple);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instruction {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
}

.french-hint {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
}

/* ===== STAGE 1: WORD MATCH ===== */
.game-area {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.word-bank {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.word-item {
    background: linear-gradient(135deg, var(--mint-green) 0%, #05b88b 100%);
    color: var(--white);
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    cursor: move;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 8px rgba(6,214,160,0.3);
    transition: all 0.3s ease;
    user-select: none;
}

.word-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(6,214,160,0.4);
}

.word-item.dragging {
    opacity: 0.5;
}

.word-item.matched {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.city-map {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.building-slot {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border: 3px dashed #aaa;
    border-radius: 12px;
    padding: 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.building-slot:hover {
    border-color: var(--neon-purple);
    background: linear-gradient(135deg, #f8f0ff 0%, #f0e0ff 100%);
}

.building-slot.drag-over {
    border-color: var(--mint-green);
    background: linear-gradient(135deg, #e0fff8 0%, #d0fff0 100%);
    transform: scale(1.05);
}

.building-slot.correct {
    border-color: var(--success);
    background: linear-gradient(135deg, #d4ffd4 0%, #c0ffc0 100%);
    border-style: solid;
}

.building-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.building-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.building-slot.filled .building-label {
    color: var(--space-blue);
    font-weight: 600;
}

/* ===== STAGE 2: DIRECTION DECODER ===== */
.mini-map-container {
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.mini-map-container h3 {
    margin-bottom: 0.5rem;
    color: var(--space-blue);
}

/* NEW: Mini map grid styles */
.map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    padding: 15px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    position: relative;
    min-height: 250px;
}

.map-building {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.map-building:hover {
    transform: scale(1.05);
}

.map-icon {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.map-label {
    font-size: 0.75rem;
    text-align: center;
}

.map-street {
    position: absolute;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
}

.map-legend {
    margin-top: 10px;
    text-align: center;
    color: #888;
}

.question-container {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.question-box {
    background: linear-gradient(135deg, var(--neon-purple) 0%, #7b2cbf 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.question-icon {
    font-size: 2.5rem;
}

.question-box h3 {
    font-size: 1.5rem;
}

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

.answer-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px solid transparent;
    padding: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.answer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    border-color: var(--neon-purple);
}

.answer-btn.correct {
    background: linear-gradient(135deg, var(--success) 0%, #05b88b 100%);
    color: var(--white);
    border-color: var(--success);
}

.answer-btn.wrong {
    background: linear-gradient(135deg, var(--error) 0%, #d90429 100%);
    color: var(--white);
    border-color: var(--error);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.question-counter {
    text-align: center;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ===== STAGE 3: LEAFLET MAP ===== */
.mission-briefing {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.character-avatar {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--starry-yellow) 0%, #ffc300 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255,214,10,0.4);
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

#map {
    height: 400px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 1;
}

.dialogue-container {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dialogue-option {
    background: linear-gradient(135deg, var(--space-blue) 0%, #16213e 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dialogue-option:hover {
    transform: translateX(10px);
    border-color: var(--starry-yellow);
    box-shadow: 0 4px 12px rgba(157,78,221,0.3);
}

.dialogue-option.correct {
    background: linear-gradient(135deg, var(--success) 0%, #05b88b 100%);
}

/* ===== FEEDBACK ===== */
.feedback {
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: 600;
    text-align: center;
    display: none;
}

.feedback.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.feedback.success {
    background: linear-gradient(135deg, #d4ffd4 0%, #c0ffc0 100%);
    color: #0a7c5f;
    border: 2px solid var(--success);
}

.feedback.error {
    background: linear-gradient(135deg, #ffd4d4 0%, #ffc0c0 100%);
    color: #9f0429;
    border: 2px solid var(--error);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.next-button, .restart-button {
    background: linear-gradient(135deg, var(--rocket-orange) 0%, #ff8c42 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 16px rgba(255,107,53,0.4);
    transition: all 0.3s ease;
    margin: 1rem auto;
}

.next-button:hover, .restart-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255,107,53,0.5);
}

.emoji {
    font-size: 1.3rem;
}

/* ===== VICTORY SCREEN ===== */
.victory-container {
    background: rgba(255,255,255,0.98);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
    max-width: 700px;
    margin: 2rem auto;
}

.trophy {
    font-size: 6rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

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

.victory-container h1 {
    color: var(--neon-purple);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.victory-container h2 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--rocket-orange);
    font-weight: 700;
}

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

.stat-box {
    background: linear-gradient(135deg, var(--space-blue) 0%, #16213e 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--starry-yellow);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.badge-display {
    margin: 2rem 0;
}

.badge {
    background: linear-gradient(135deg, var(--starry-yellow) 0%, #ffc300 100%);
    color: var(--space-blue);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(255,214,10,0.4);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.victory-message {
    font-size: 1.2rem;
    color: #666;
    margin: 1.5rem 0;
    font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .game-title {
        font-size: 2rem;
    }
    
    .game-area {
        grid-template-columns: 1fr;
    }
    
    .game-header {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .progress-container {
        order: 3;
        width: 100%;
        margin: 1rem 0 0 0;
    }
    
    .header-logo {
        width: 50px;
    }
    
    .mission-info {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .answers-grid {
        grid-template-columns: 1fr;
    }
    
    #map {
        height: 300px;
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease;
}
/* ===== STAGE 2: DIALOGUE LAYOUT (MAP RIGHT) ===== */
.dialogue-layout {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.dialogue-left {
    flex: 1;
    min-width: 250px;
}
.dialogue-right {
    flex: 1;
    min-width: 250px;
}
.dialogue-card {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.dialogue-question {
    background: linear-gradient(135deg, var(--neon-purple) 0%, #7b2cbf 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.dialogue-question .question-icon {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}
.english-hint {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}
.mini-map-container {
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}
.mini-map-container h3 {
    margin-bottom: 0.5rem;
    color: var(--space-blue);
}
.map-legend {
    margin-top: 10px;
    color: #888;
    font-size: 0.8rem;
}

/* ===== STAGE 3: ROUTE ===== */
#map {
    height: 450px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 1;
}
/* ===== STAGE 2: DIALOGUE LAYOUT (MAP RIGHT) ===== */
.dialogue-layout {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.dialogue-left {
    flex: 1;
    min-width: 280px;
}
.dialogue-right {
    flex: 1;
    min-width: 280px;
}
.dialogue-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}
.dialogue-header {
    background: linear-gradient(135deg, var(--neon-purple) 0%, #7b2cbf 100%);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.dialogue-title {
    font-size: 1.2rem;
}
.dialogue-nav {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}
.nav-arrow {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    transition: 0.2s;
}
.nav-arrow:hover:not(:disabled) {
    background: rgba(255,255,255,0.5);
    transform: scale(1.05);
}
.nav-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.dialogue-lines {
    padding: 1.5rem;
}
.dialogue-line {
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}
.french-line {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--space-blue);
    margin-bottom: 0.3rem;
}
.english-line {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}
.mini-map-container {
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}
.mini-map-container h3 {
    margin-bottom: 0.5rem;
    color: var(--space-blue);
}
.map-image-wrapper {
    cursor: pointer;
    transition: transform 0.2s;
}
.map-image-wrapper:hover {
    transform: scale(1.02);
}
.clickable-map {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.map-legend {
    margin-top: 10px;
    color: #888;
    font-size: 0.8rem;
}

/* ===== MODAL FOR ENLARGED MAP ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.close-modal:hover {
    color: #ccc;
}

/* ===== STAGE 3: USEFUL PHRASES ===== */
.useful-phrases {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.phrases-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.phrase {
    background: linear-gradient(135deg, var(--mint-green) 0%, #05b88b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#map {
    height: 450px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 1;
}