/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f7c;
    --primary-light: #3a7fa3;
    --primary-dark: #1e4255;
    --accent-color: #e8a87c;
    --accent-light: #f5c9a8;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #5cb85c;
    --info-color: #5bc0de;
    --warning-color: #f0ad4e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 0;
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(44, 95, 124, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-section h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: #ffffff;
}

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

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

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    display: block;
    white-space: nowrap;
    position: relative;
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-list a:hover::before {
    opacity: 1;
}

.nav-list a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-list a.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

.nav-list a.active::before {
    opacity: 0;
}

/* Main Content */
main {
    padding: 40px 0;
    min-height: calc(100vh - 300px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    margin-bottom: 60px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 168, 124, 0.15) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #ffffff;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Sections */
section {
    margin-bottom: 60px;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 95, 124, 0.08);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 124, 0.3);
}

/* Interactive Section */
.interactive-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 60px 0;
}

.section-lead {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.interactive-map {
    margin-top: 40px;
}

.map-container-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 30px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #a8d5e2 0%, #7fb3d3 25%, #5a9fc7 50%, #4a8bb8 75%, #3a7fa3 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(44, 95, 124, 0.25), inset 0 0 100px rgba(255, 255, 255, 0.1);
    border: 3px solid var(--primary-light);
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 200, 150, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(150, 200, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(200, 255, 200, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 220, 180, 0.25) 0%, transparent 35%);
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 25px 25px, 25px 25px;
    animation: gridMove 20s linear infinite, gridPulse 4s ease-in-out infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.map-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 150, 0.4) 0%, rgba(150, 200, 255, 0.3) 30%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.map-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 255, 200, 0.3) 0%, transparent 70%);
    animation: pulse 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.map-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 220, 180, 0.4) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.map-markers {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    animation: markerAppear 0.6s ease-out backwards;
}

.map-marker:nth-child(1) { animation-delay: 0.1s; }
.map-marker:nth-child(2) { animation-delay: 0.2s; }
.map-marker:nth-child(3) { animation-delay: 0.3s; }
.map-marker:nth-child(4) { animation-delay: 0.4s; }
.map-marker:nth-child(5) { animation-delay: 0.5s; }
.map-marker:nth-child(6) { animation-delay: 0.6s; }
.map-marker:nth-child(7) { animation-delay: 0.7s; }

@keyframes markerAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -100%) scale(0);
    }
    50% {
        transform: translate(-50%, -100%) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -100%) scale(1);
    }
}

.marker-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

.marker-ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
    animation-delay: 0.5s;
}

.marker-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
    animation-delay: 1s;
}

.park-marker .marker-ripple {
    border-color: var(--primary-color);
}

.park-marker .marker-ripple::before,
.park-marker .marker-ripple::after {
    border-color: rgba(44, 95, 124, 0.6);
}

.city-marker .marker-ripple {
    border-color: var(--accent-color);
}

.city-marker .marker-ripple::before,
.city-marker .marker-ripple::after {
    border-color: rgba(232, 168, 124, 0.6);
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.marker-pin {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(44, 95, 124, 0.5), 0 0 20px rgba(44, 95, 124, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: markerBounce 2s ease-in-out infinite, markerGlow 3s ease-in-out infinite;
}

.marker-pin::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0;
    z-index: -1;
    animation: markerRing 2s ease-out infinite;
}

.park-marker .marker-pin {
    background: linear-gradient(135deg, #2c5f7c 0%, #3a7fa3 50%, #4a8bb8 100%);
}

.city-marker .marker-pin {
    background: linear-gradient(135deg, #e8a87c 0%, #f5c9a8 50%, #e8a87c 100%);
}

.city-marker .marker-pin::before {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

@keyframes markerBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes markerGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(44, 95, 124, 0.5), 0 0 20px rgba(44, 95, 124, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(44, 95, 124, 0.7), 0 0 30px rgba(44, 95, 124, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
}

@keyframes markerRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.park-icon,
.city-icon {
    width: 24px;
    height: 24px;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Park Icons */
.coaster-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: coasterMove 2s ease-in-out infinite;
}

@keyframes coasterMove {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(-15deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(15deg);
    }
}

.carousel-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: carouselRotate 3s linear infinite;
}

.carousel-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: carouselRotate 3s linear infinite;
}

@keyframes carouselRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.block-icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffffff;
    top: 30%;
    left: 30%;
    box-shadow: 4px 0 0 #ffffff, 0 4px 0 #ffffff, 4px 4px 0 #ffffff;
    animation: blockBounce 1.5s ease-in-out infinite;
}

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

.wheel-icon::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: wheelSpin 4s linear infinite;
}

.wheel-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 18px;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: wheelSpin 4s linear infinite;
}

@keyframes wheelSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* City Icons */
.building-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 10px solid #ffffff;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.building-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 6px;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.tower-icon::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    background: #ffffff;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.tower-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #ffffff;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.castle-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 8px solid #ffffff;
    top: 30%;
    left: 40%;
}

.castle-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 8px solid #ffffff;
    top: 30%;
    right: 40%;
}

.map-marker.city-marker .marker-pin {
    background: var(--accent-color);
}

.map-marker:hover .marker-pin {
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(44, 95, 124, 0.6);
    animation: markerBounce 0.5s ease-in-out infinite;
}

.map-marker:hover .marker-ripple {
    animation: ripple 1s ease-out infinite;
}

.map-marker:hover .park-icon,
.map-marker:hover .city-icon {
    animation: iconPulse 0.5s ease-in-out infinite;
}

.marker-popup {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.map-marker.city-marker .marker-popup {
    border-left-color: var(--accent-color);
}

.marker-popup::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
}

.marker-popup h4 {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.marker-popup p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.map-marker:hover .marker-popup,
.map-marker.active .marker-popup,
.map-marker.highlight .marker-popup {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
    pointer-events: auto;
}

.map-marker.active .marker-pin,
.map-marker.highlight .marker-pin {
    transform: scale(1.3);
    box-shadow: 0 8px 30px rgba(44, 95, 124, 0.7), 0 0 40px rgba(44, 95, 124, 0.5);
    animation: markerBounce 0.5s ease-in-out infinite, markerGlow 1s ease-in-out infinite;
}

.location-card.active {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-left-color: var(--accent-color);
    transform: translateX(-8px);
    box-shadow: 0 8px 24px rgba(44, 95, 124, 0.3);
}

.location-card.active .location-info h4,
.location-card.active .location-info p {
    color: #ffffff;
}

.location-card.active .location-type {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.legend-icon {
    width: 20px;
    height: 20px;
    border-radius: 50% 50% 50% 0;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: rotate(-45deg);
}

.legend-icon.park-icon {
    background: var(--primary-color);
}

.legend-icon.city-icon {
    background: var(--accent-color);
}

/* Attraction Animations */
.attraction-animations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.attraction-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    font-size: 24px;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite, attractionPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

@keyframes attractionPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 1;
    }
}

.attraction-icon.roller-coaster::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid #ff6b6b;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.5));
    animation: rollerCoasterMove 2s ease-in-out infinite;
}

@keyframes rollerCoasterMove {
    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }
    25% {
        transform: rotate(-15deg) translateX(5px);
    }
    75% {
        transform: rotate(15deg) translateX(-5px);
    }
}

.attraction-icon.ferris-wheel::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border: 3px solid #4ecdc4;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.6);
    animation: ferrisWheelSpin 4s linear infinite;
}

.attraction-icon.ferris-wheel::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 24px;
    background: linear-gradient(180deg, #4ecdc4 0%, transparent 100%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.5);
    animation: ferrisWheelSpin 4s linear infinite;
}

@keyframes ferrisWheelSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.attraction-icon.carousel::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 3px solid #ffe66d;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 12px rgba(255, 230, 109, 0.7), inset 0 0 8px rgba(255, 230, 109, 0.3);
    animation: carouselSpin 3s linear infinite;
}

@keyframes carouselSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.attraction-icon.drop-tower::before {
    content: '';
    display: block;
    width: 5px;
    height: 20px;
    background: linear-gradient(180deg, #a8e6cf 0%, #88d8a3 50%, #6bc992 100%);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(107, 201, 146, 0.6);
    animation: dropTower 2s ease-in-out infinite;
}

.attraction-icon.drop-tower::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #6bc992;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 2px 4px rgba(107, 201, 146, 0.5));
    animation: dropTower 2s ease-in-out infinite;
}

@keyframes dropTower {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-12px) scale(1.25);
        opacity: 1;
    }
}

/* Sparkles Animation */
.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.6);
    animation: sparkleFloat 3s ease-in-out infinite, sparkleGlow 2s ease-in-out infinite;
}

.sparkle::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: sparklePulse 1.5s ease-in-out infinite;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(5px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(3px);
        opacity: 1;
    }
}

@keyframes sparkleGlow {
    0%, 100% {
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 12px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 200, 150, 0.6);
    }
}

@keyframes sparklePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

/* Thank You Section */
.thank-you-section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.thank-you-icon {
    margin-bottom: 30px;
    animation: iconBounce 1s ease-out;
}

@keyframes iconBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.thank-you-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-message {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.thank-you-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.thank-you-actions .btn {
    min-width: 200px;
}

/* Map Sidebar */
.map-sidebar {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(44, 95, 124, 0.15);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    max-height: 500px;
    overflow: hidden;
}

.sidebar-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-light);
}

.sidebar-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
}

.sidebar-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
}

.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.location-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-light);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: cardSlideIn 0.5s ease-out backwards;
}

.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.3s; }
.location-card:nth-child(4) { animation-delay: 0.4s; }
.location-card:nth-child(5) { animation-delay: 0.5s; }
.location-card:nth-child(6) { animation-delay: 0.6s; }
.location-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.location-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.2);
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.location-card[data-location*="Berlin"],
.location-card[data-location*="München"],
.location-card[data-location*="Heidelberg"] {
    border-left-color: var(--accent-color);
}

.location-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
    animation: iconPulse 2s ease-in-out infinite;
}

.park-icon-small {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.city-icon-small {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c9a8 100%);
}

.location-info {
    flex: 1;
    min-width: 0;
}

.location-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 4px 0;
}

.location-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 6px 0;
}

.location-type {
    display: inline-block;
    font-size: 0.75rem;
    padding: 3px 8px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 12px;
    font-weight: 500;
}

.location-card[data-location*="Berlin"] .location-type,
.location-card[data-location*="München"] .location-type,
.location-card[data-location*="Heidelberg"] .location-type {
    background: rgba(232, 168, 124, 0.2);
    color: var(--accent-color);
}

.sidebar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--accent-light);
}

.stat-box {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
    transition: all 0.3s ease;
    animation: statAppear 0.6s ease-out backwards;
}

.stat-box:nth-child(1) { animation-delay: 0.3s; }
.stat-box:nth-child(2) { animation-delay: 0.4s; }
.stat-box:nth-child(3) { animation-delay: 0.5s; }

@keyframes statAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-box:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.3);
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 50px 0 20px;
    border-top: 4px solid var(--accent-color);
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(44, 95, 124, 0.15);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-section a:hover {
    color: var(--accent-light);
    transform: translateX(3px);
    text-decoration: none;
}

.footer-section p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section address {
    font-style: normal;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section address a {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0 5px;
}

.footer-legal a:hover {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

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

    section h2 {
        font-size: 1.5rem;
    }

    .card-body h3 {
        font-size: 1.3rem;
    }
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    margin-bottom: 50px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.page-header h2 {
    margin-bottom: 15px;
}

/* Park and City Details */
.park-detail,
.city-detail {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.park-detail:last-child,
.city-detail:last-child {
    border-bottom: none;
}

.park-header,
.city-header {
    margin-bottom: 25px;
}

.park-header h3,
.city-header h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.location {
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
}

.park-content,
.city-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 25px;
}

.park-image,
.city-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.park-image img,
.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.park-info h4,
.city-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 25px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-light);
}

.park-info h4:first-child,
.city-info h4:first-child {
    margin-top: 0;
}

.park-info p,
.city-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.park-info ul,
.city-info ul {
    color: #666;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 15px;
}

.park-info li,
.city-info li {
    margin-bottom: 8px;
}

.park-map {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(44, 95, 124, 0.1);
}

.park-map h4 {
    margin-top: 0;
}

.park-map p {
    margin-bottom: 0;
}

/* Category Cards */
.category-section,
.info-section {
    margin-bottom: 50px;
}

.category-section h3,
.info-section h3 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #222;
    margin-bottom: 30px;
    text-align: left;
}

.category-card,
.info-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-light);
}

.category-card:hover,
.info-card:hover {
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.12);
    transform: translateX(5px);
    border-left-color: var(--accent-color);
}

.category-card h4,
.info-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.category-card p,
.info-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.category-card ul,
.info-card ul {
    color: #666;
    line-height: 1.8;
    margin-left: 20px;
}

.category-card li,
.info-card li {
    margin-bottom: 8px;
}

.category-card strong,
.info-card strong {
    color: #333;
}

.category-card em,
.info-card em {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info h3,
.contact-form-section h3 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #222;
    margin-bottom: 25px;
}

.contact-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-details strong {
    color: #333;
}

.contact-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #555;
    text-decoration: underline;
}

.contact-item address {
    font-style: normal;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

.map-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(44, 95, 124, 0.15);
    border: 2px solid var(--border-color);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

.map-note {
    text-align: center;
    color: #666;
    line-height: 1.8;
    margin-top: 15px;
}

.map-note strong {
    color: #333;
}

.map-note a {
    color: #333;
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.map-note a:hover {
    color: #555;
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    margin-bottom: 60px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(44, 95, 124, 0.08);
}

.legal-text h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-color);
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text h4 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    color: #666;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-text li {
    margin-bottom: 10px;
}

.legal-text address {
    font-style: normal;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-text a {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #555;
}

.legal-text strong {
    color: #333;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.features-section h2 {
    margin-bottom: 50px;
}

/* Planning Section */
.planning-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.timeline-item {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
    border-left-color: var(--accent-color);
}

.timeline-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-light);
}

.timeline-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 50px 0;
    margin-top: 40px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-light);
}

.about-content h3:first-of-type {
    margin-top: 0;
}

.about-content ul {
    color: #666;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

/* Accordion Styles */
.accordion {
    margin: 30px 0;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 22px 25px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    border-left-color: var(--accent-color);
    padding-left: 28px;
}

.accordion-header.active {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #ffffff;
    border-left-color: var(--accent-color);
}

.accordion-header.active h4 {
    color: #ffffff;
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: normal;
    color: #222;
}

.accordion-icon {
    font-size: 1.2rem;
    color: #666;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 20px;
}

.accordion-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.accordion-content ul {
    color: #666;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 15px;
}

.accordion-content li {
    margin-bottom: 8px;
}

/* Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
    border: 1px solid var(--border-color);
}

.data-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.data-table th {
    color: #ffffff;
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: normal;
    color: #222;
    border-bottom: 2px solid #e0e0e0;
    font-size: 1rem;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #e8e8e8;
    color: #666;
    line-height: 1.6;
}

.data-table tbody tr:hover {
    background-color: #fafafa;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table .highlight {
    background: linear-gradient(135deg, var(--accent-light) 0%, #ffffff 100%);
    font-weight: 600;
    color: var(--primary-dark);
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 30px 0;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.comparison-table table {
    min-width: 600px;
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff;
    font-weight: 600;
    position: sticky;
    left: 0;
    z-index: 10;
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

/* Info Boxes */
.info-box {
    background-color: #f8f8f8;
    border-left: 4px solid #333;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.info-box.success {
    border-left-color: var(--success-color);
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 100%);
}

.info-box.warning {
    border-left-color: var(--warning-color);
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.info-box.info {
    border-left-color: var(--info-color);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #222;
    font-size: 1.1rem;
}

.info-box p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: normal;
    font-size: 1.2rem;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    border: 1px solid #e0e0e0;
}

.tag.highlight {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #e0e0e0;
}

.timeline-item h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #222;
    font-size: 1.1rem;
}

.timeline-item p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .logo-section h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .logo-section {
        order: 1;
        flex: 1;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 80px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .main-nav.active {
        max-height: 100vh;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        gap: 12px;
        padding: 0 20px;
        align-items: stretch;
        animation: menuSlideIn 0.4s ease-out backwards;
    }

    .nav-list li:nth-child(1) { animation-delay: 0.1s; }
    .nav-list li:nth-child(2) { animation-delay: 0.15s; }
    .nav-list li:nth-child(3) { animation-delay: 0.2s; }
    .nav-list li:nth-child(4) { animation-delay: 0.25s; }
    .nav-list li:nth-child(5) { animation-delay: 0.3s; }

    @keyframes menuSlideIn {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        border-radius: 12px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .nav-list a:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateX(5px) scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-list a.active {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3));
        border-color: var(--accent-color);
        box-shadow: 0 6px 24px rgba(232, 168, 124, 0.4);
        transform: translateX(8px);
    }

    /* Close overlay when menu is active */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Headings */
    section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    section h2::after {
        width: 50px;
    }

    .page-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 15px;
    }

    .park-header h3,
    .city-header h3 {
        font-size: 1.6rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }

    .park-info h4,
    .city-info h4 {
        font-size: 1.2rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .category-section h3,
    .info-section h3 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }

    .category-card h4,
    .info-card h4 {
        font-size: 1.3rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-info h3,
    .contact-form-section h3 {
        font-size: 1.4rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .map-section h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }

    .hero {
        padding: 60px 0;
        min-height: 450px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 15px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 1.6;
    }

    .park-content,
    .city-content {
        grid-template-columns: 1fr;
    }

    .park-image,
    .city-image {
        height: 250px;
    }

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

    .map-container iframe {
        height: 350px;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tables - Full width with horizontal scroll */
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin: 20px -15px;
        padding: 0 15px;
        display: block;
    }

    .comparison-table table {
        min-width: 600px;
        width: 100%;
        font-size: 0.9rem;
        display: table;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .data-table {
        font-size: 0.85rem;
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px 0;
    }

    .data-table thead,
    .data-table tbody,
    .data-table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .data-table th,
    .data-table td {
        padding: 12px 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .data-table th {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .accordion-header h4 {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-right: 40px;
    }

    .map-container-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-wrapper {
        height: 400px;
    }

    .map-sidebar {
        max-height: none;
    }

    .map-legend {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 15px 0;
    }

    .logo-section h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .mobile-menu-toggle {
        padding: 8px;
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .main-nav {
        padding-top: 70px;
    }

    .nav-list {
        max-width: 100%;
        padding: 0 15px;
        gap: 10px;
    }

    .nav-list a {
        padding: 14px 20px;
        font-size: 1rem;
    }

    header {
        padding: 0;
    }

    main {
        padding: 30px 0;
    }

    .hero {
        padding: 50px 0;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .park-header h3,
    .city-header h3 {
        font-size: 1.5rem;
    }

    .category-card,
    .info-card {
        padding: 20px;
    }

    .map-container iframe {
        height: 300px;
    }

    .legal-text {
        padding: 25px;
    }

    .legal-text h3 {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal span {
        display: none;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .comparison-table {
        margin: 15px -12px;
        padding: 0 12px;
        display: block;
    }

    .comparison-table table {
        min-width: 500px;
        font-size: 0.8rem;
        display: table;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .comparison-table th {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .data-table {
        font-size: 0.75rem;
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 15px 0;
    }

    .data-table thead,
    .data-table tbody,
    .data-table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .data-table th,
    .data-table td {
        padding: 10px 6px;
        font-size: 0.75rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .data-table th {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .accordion-header {
        padding: 15px;
    }

    .accordion-header h4 {
        font-size: 0.95rem;
    }

    .info-box {
        padding: 15px;
    }
}

