:root {
    --primary-amber: #FF6B35;
    --primary-coral: #F7931E;
    --primary-gold: #FFD23F;
    --secondary-terracotta: #C85250;
    --secondary-rust: #B84527;
    --accent-sage: #87A96B;
    --accent-olive: #6B8E5A;
    --neutral-cream: #FFF8F0;
    --neutral-sand: #F5E6D3;
    --neutral-charcoal: #2C2C2C;
    --neutral-stone: #5A5A5A;
    --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    --gradient-earth: linear-gradient(135deg, #C85250 0%, #B84527 100%);
    --gradient-nature: linear-gradient(135deg, #87A96B 0%, #6B8E5A 100%);
    
    --font-display: 'Montserrat', 'Inter', sans-serif;
    --font-body: 'Inter', 'Roboto', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.08);
    --shadow-md: 0 8px 24px rgba(44, 44, 44, 0.12);
    --shadow-lg: 0 16px 48px rgba(44, 44, 44, 0.16);
    --shadow-xl: 0 24px 64px rgba(44, 44, 44, 0.20);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-charcoal);
    line-height: 1.7;
    background: var(--neutral-cream);
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border-bottom: 1px solid rgba(200, 82, 80, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.99);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition-base);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--neutral-charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-fast);
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-sunset);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-amber);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--neutral-charcoal);
    transition: var(--transition-base);
    border-radius: 3px;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--neutral-sand) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.volcanic-shape {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    filter: blur(80px);
    animation: morphShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-sunset);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 700px;
    height: 700px;
    background: var(--gradient-earth);
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: var(--gradient-nature);
    top: 50%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        border-radius: 30% 70% 70% 30% / 70% 40% 60% 30%;
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--neutral-stone);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
    display: inline-block;
    padding: 18px 48px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary::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: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: white;
    color: var(--primary-amber);
    border: 2px solid var(--primary-amber);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--primary-amber);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-tertiary {
    background: var(--gradient-earth);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-tertiary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--neutral-stone);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 120px;
    height: 5px;
    background: var(--gradient-sunset);
    border-radius: 3px;
    margin: 1.5rem auto 3rem;
}

.regions-section,
.balloon-preview-section,
.valleys-preview-section,
.stats-section,
.testimonials-section,
.features-section,
.gallery-section {
    padding: 120px 0;
    position: relative;
}

.regions-section {
    background: white;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 4rem;
}

.region-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    border: 1px solid rgba(200, 82, 80, 0.1);
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-sunset);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
}

.region-card:hover::before {
    opacity: 0.05;
}

.region-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.region-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.region-card:hover .region-image img {
    transform: scale(1.15) rotate(2deg);
}

.region-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(44, 44, 44, 0.4) 100%);
    z-index: 2;
}

.region-content {
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.region-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--neutral-charcoal);
    font-weight: 700;
}

.region-content p {
    color: var(--neutral-stone);
    line-height: 1.7;
    font-size: 1rem;
}

.stats-section {
    background: var(--gradient-earth);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

.balloon-preview-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neutral-cream) 0%, white 50%, var(--neutral-sand) 100%);
}

.balloon-feature-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(200, 82, 80, 0.1);
    z-index: 2;
}

.volcanic-formation {
    position: absolute;
    border-radius: 50% 30% 60% 40% / 50% 40% 60% 30%;
    background: var(--gradient-sunset);
    opacity: 0.15;
    filter: blur(40px);
    animation: volcanicFloat 8s infinite ease-in-out;
    z-index: 1;
}

.formation-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.formation-2 {
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -120px;
    animation-delay: 2s;
}

.formation-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -100px;
    animation-delay: 4s;
}

@keyframes volcanicFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 50% 30% 60% 40% / 50% 40% 60% 30%;
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg);
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    }
    66% {
        transform: translate(-25px, 30px) rotate(240deg);
        border-radius: 30% 70% 70% 30% / 70% 40% 60% 30%;
    }
}

.balloon-text-content {
    position: relative;
    z-index: 3;
}

.balloon-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
}

.balloon-description {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.balloon-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.balloon-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--neutral-cream);
    border-radius: 50px;
    font-weight: 600;
    color: var(--neutral-charcoal);
    transition: var(--transition-base);
}

.balloon-feature-item:hover {
    background: var(--gradient-sunset);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon-small {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clock-icon {
    width: 24px;
    height: 24px;
    border: 3px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.clock-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: currentColor;
}

.clock-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: bottom center;
    width: 2px;
    height: 5px;
    background: currentColor;
}

.sunrise-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.sunrise-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, currentColor 40%, transparent 40%);
    border-radius: 50%;
}

.sunrise-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 4px;
    background: currentColor;
    border-radius: 2px 2px 0 0;
}

.check-icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.check-icon::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 6px;
    width: 5px;
    height: 10px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
}

.floating-balloons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.balloon {
    position: absolute;
    opacity: 0.25;
    animation: floatBalloon 6s infinite ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    width: 60px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.balloon-shape {
    width: 50px;
    height: 65px;
    background: var(--gradient-sunset);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.1);
}

.balloon-shape::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid var(--primary-coral);
}

.balloon-basket {
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, var(--neutral-charcoal), var(--neutral-stone));
    border-radius: 3px;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.balloon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.balloon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.balloon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.balloon-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes floatBalloon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(var(--float-distance, 20px), -var(--float-distance, 20px)) rotate(5deg);
    }
    50% {
        transform: translate(-var(--float-distance, 15px), -var(--float-distance, 30px)) rotate(-5deg);
    }
    75% {
        transform: translate(var(--float-distance, 25px), -var(--float-distance, 15px)) rotate(3deg);
    }
}

.region-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-sunset);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 4;
    box-shadow: var(--shadow-md);
    font-family: var(--font-display);
}


.features-section {
    background: var(--neutral-sand);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(200, 82, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-sunset);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-sunset);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-charcoal);
    font-weight: 700;
}

.feature-card p {
    color: var(--neutral-stone);
    line-height: 1.7;
    font-size: 0.95rem;
}


.testimonials-section {
    background: var(--gradient-nature);
    color: white;
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.footer {
    background: var(--neutral-charcoal);
    color: white;
    padding: 80px 0 32px;
    margin-top: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-section {
        height: 85vh;
        min-height: 600px;
    }
    
    .regions-grid,
    .valleys-grid,
    .features-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--neutral-sand) 100%);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-align: center;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--neutral-stone);
    font-weight: 400;
}

.content-section {
    padding: 120px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.content-image:hover img {
    transform: scale(1.02);
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
    line-height: 1.2;
}

.content-text p {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.seasons-section,
.safety-section,
.preparation-section,
.hiking-tips-section,
.thermal-section,
.about-section,
.mission-section,
.values-section,
.calendar-section,
.seasons-detail-section,
.contact-section,
.valley-detail-section,
.accommodation-section {
    padding: 120px 0;
}

.seasons-grid,
.preparation-grid,
.tips-grid,
.thermal-grid,
.mission-grid,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 4rem;
}

.season-card,
.prep-item,
.tip-card,
.thermal-item,
.mission-card,
.calendar-month {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(200, 82, 80, 0.1);
}

.season-card:hover,
.prep-item:hover,
.tip-card:hover,
.thermal-item:hover,
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.season-card h3,
.prep-item h3,
.tip-card h3,
.thermal-item h3,
.mission-card h3,
.calendar-month h4 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--neutral-charcoal);
    font-weight: 700;
}

.season-card p,
.prep-item p,
.tip-card p,
.thermal-item p,
.mission-card p,
.calendar-month p {
    color: var(--neutral-stone);
    line-height: 1.8;
    font-size: 1rem;
}

.safety-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    margin-top: 4rem;
}

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.safety-item {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(200, 82, 80, 0.1);
    transition: var(--transition-base);
}

.safety-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.safety-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-amber);
    font-weight: 700;
}

.safety-item p {
    color: var(--neutral-stone);
    line-height: 1.8;
    font-size: 1rem;
}

.safety-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.valley-detail-section {
    background: var(--neutral-cream);
}

.valley-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(200, 82, 80, 0.1);
}

.valley-detail-card.reverse {
    direction: rtl;
}

.valley-detail-card.reverse > * {
    direction: ltr;
}

.valley-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.valley-placeholder,
.accommodation-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--gradient-sunset);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.valley-illustration,
.accommodation-illustration,
.thermal-illustration {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mountain-shape {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(255, 107, 53, 0.3);
    position: absolute;
    bottom: 20%;
}

.mountain-shape.mountain-2 {
    left: 30%;
    border-bottom-color: rgba(247, 147, 30, 0.25);
    transform: scale(0.8);
    z-index: 2;
}

.mountain-shape.mountain-3 {
    right: 30%;
    border-bottom-color: rgba(200, 82, 80, 0.3);
    transform: scale(0.9);
    z-index: 1;
}

.sunset-shape {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), rgba(247, 147, 30, 0.2));
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.valley-line {
    width: 120px;
    height: 3px;
    background: var(--gradient-sunset);
    border-radius: 3px;
    position: absolute;
    bottom: 30%;
    opacity: 0.4;
}

.valley-line.line-2 {
    bottom: 20%;
    width: 100px;
    opacity: 0.3;
}

.rock-formation {
    position: absolute;
    background: var(--gradient-earth);
    border-radius: 30% 70% 70% 30% / 50% 50% 50% 50%;
    opacity: 0.4;
}

.rock-formation.rock-1 {
    width: 60px;
    height: 80px;
    left: 20%;
    bottom: 20%;
}

.rock-formation.rock-2 {
    width: 50px;
    height: 70px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25%;
    border-radius: 70% 30% 30% 70% / 50% 50% 50% 50%;
}

.rock-formation.rock-3 {
    width: 55px;
    height: 75px;
    right: 20%;
    bottom: 20%;
}

.hotel-building {
    width: 100px;
    height: 80px;
    background: var(--gradient-sunset);
    border-radius: 8px 8px 0 0;
    position: relative;
    opacity: 0.6;
}

.hotel-building::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px 8px 0 0;
}

.hotel-window {
    position: absolute;
    width: 15px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    border: 1px solid rgba(44, 44, 44, 0.2);
}

.hotel-window.window-1 {
    top: 25px;
    left: 20px;
}

.hotel-window.window-2 {
    top: 25px;
    right: 20px;
}

.hotel-window.window-3 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.water-wave {
    position: absolute;
    width: 100px;
    height: 60px;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(to bottom, rgba(135, 169, 107, 0.3), rgba(107, 142, 90, 0.2));
    opacity: 0.5;
}

.water-wave.wave-1 {
    bottom: 20%;
    left: 10%;
    width: 80px;
}

.water-wave.wave-2 {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.water-wave.wave-3 {
    bottom: 25%;
    right: 10%;
    width: 70px;
}

.steam {
    position: absolute;
    width: 20px;
    height: 40px;
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.4;
    animation: steamRise 3s infinite ease-in-out;
}

.steam.steam-1 {
    bottom: 45%;
    left: 30%;
    animation-delay: 0s;
}

.steam.steam-2 {
    bottom: 50%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) scaleY(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-40px) scaleY(1.5);
        opacity: 0;
    }
}

.valley-detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
}

.valley-info {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.info-badge {
    background: var(--gradient-sunset);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-display);
}

.valley-detail-content p {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.valley-features {
    list-style: none;
    margin-top: 1.5rem;
}

.valley-features li {
    color: var(--neutral-stone);
    line-height: 2;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.valley-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-amber);
    font-weight: bold;
    font-size: 1.2rem;
}

.accommodation-section {
    background: white;
}

.accommodation-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 5rem;
    background: var(--neutral-cream);
    padding: 4rem;
    border-radius: 24px;
}

.accommodation-type.reverse {
    direction: rtl;
}

.accommodation-type.reverse > * {
    direction: ltr;
}

.accommodation-content h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
}

.accommodation-content p {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.accommodation-features {
    list-style: none;
    margin-top: 1.5rem;
}

.accommodation-features li {
    color: var(--neutral-stone);
    line-height: 2;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.accommodation-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-amber);
    font-weight: bold;
    font-size: 1.2rem;
}

.accommodation-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.season-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(200, 82, 80, 0.1);
    transition: var(--transition-base);
}

.season-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.season-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.season-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--neutral-charcoal);
    font-weight: 800;
}

.season-badge {
    background: var(--gradient-sunset);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.season-badge.recommended {
    background: var(--gradient-earth);
}

.season-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.weather-info {
    color: var(--neutral-stone);
    font-size: 1rem;
    font-weight: 500;
}

.season-activities {
    list-style: none;
    margin-top: 1.5rem;
}

.season-activities li {
    color: var(--neutral-stone);
    line-height: 2;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.season-activities li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-amber);
    font-weight: bold;
    font-size: 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
}

.about-text p {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.values-list {
    list-style: none;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(200, 82, 80, 0.1);
}

.values-list li {
    color: var(--neutral-stone);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    margin-top: 4rem;
}

.contact-info-extended {
    max-width: 1400px;
    margin: 4rem auto;
}

.contact-info-extended h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
    text-align: center;
}

.contact-intro {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(200, 82, 80, 0.1);
    text-align: center;
    transition: var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-sunset);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-email {
    width: 40px;
    height: 30px;
    border: 3px solid white;
    border-radius: 5px;
    position: relative;
}

.contact-icon-email::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
}

.contact-icon-phone {
    width: 30px;
    height: 50px;
    border: 3px solid white;
    border-radius: 8px;
    position: relative;
}

.contact-icon-phone::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 8px;
    background: white;
    border-radius: 3px;
}

.contact-icon-location {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid white;
    position: relative;
}

.contact-icon-location::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.contact-icon-hours {
    width: 35px;
    height: 35px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.contact-icon-hours::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: white;
}

.contact-icon-hours::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: bottom center;
    width: 2px;
    height: 8px;
    background: white;
}

.contact-icon-social {
    width: 40px;
    height: 40px;
    position: relative;
}

.contact-icon-social::before,
.contact-icon-social::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.contact-icon-social::before {
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
}

.contact-icon-social::after {
    width: 20px;
    height: 20px;
    bottom: 0;
    right: 0;
}

.contact-icon-form {
    width: 35px;
    height: 40px;
    border: 3px solid white;
    border-radius: 3px;
    position: relative;
}

.contact-icon-form::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 20px;
    height: 2px;
    background: white;
}

.contact-icon-form::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 6px;
    width: 12px;
    height: 2px;
    background: white;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-charcoal);
    font-weight: 700;
}

.contact-card > p {
    color: var(--neutral-stone);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-amber);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-coral);
    text-decoration: underline;
}

.contact-time {
    color: var(--neutral-stone);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.contact-address {
    color: var(--neutral-stone);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-hours {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-hours p {
    margin: 0;
    color: var(--neutral-stone);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--primary-amber);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 0.5rem;
}

.social-link:hover {
    color: var(--primary-coral);
    padding-left: 1rem;
}

.contact-additional-info {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--neutral-cream);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-additional-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
    text-align: center;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.help-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.help-item h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-amber);
    font-weight: 700;
}

.help-item p {
    color: var(--neutral-stone);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.privacy-section {
    padding: 120px 0;
    background: white;
}

.privacy-text-full {
    background: var(--neutral-cream);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 4rem auto;
}

.privacy-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    margin-top: 4rem;
}

.privacy-text {
    background: var(--neutral-cream);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.privacy-text-full h2,
.privacy-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
}

.privacy-text-full h3,
.privacy-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-amber);
    font-weight: 700;
}

.privacy-text-full p,
.privacy-text p {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-text-full .privacy-list,
.privacy-text .privacy-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.privacy-text-full .privacy-list li,
.privacy-text .privacy-list li {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.privacy-text-full .privacy-list li::before,
.privacy-text .privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-amber);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-form-wrapper-bottom {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 82, 80, 0.1);
    max-width: 700px;
    margin: 4rem auto 0;
}

.privacy-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 82, 80, 0.1);
    position: sticky;
    top: 120px;
    max-height: fit-content;
    height: fit-content;
}

.privacy-form-wrapper-bottom h2,
.privacy-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
    text-align: center;
}

.privacy-form-wrapper-bottom > p,
.privacy-form-wrapper > p {
    color: var(--neutral-stone);
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: center;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--neutral-charcoal);
    font-weight: 800;
}

.contact-info p {
    color: var(--neutral-stone);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200, 82, 80, 0.1);
}

.contact-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-amber);
    font-weight: 700;
}

.contact-item p {
    color: var(--neutral-stone);
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 82, 80, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-weight: 600;
    color: var(--neutral-charcoal);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(44, 44, 44, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--neutral-cream);
    color: var(--neutral-charcoal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-amber);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: white;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.privacy-link {
    color: var(--primary-amber);
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

@media (max-width: 1024px) {
    .content-grid,
    .safety-content,
    .valley-detail-card,
    .accommodation-type,
    .about-content,
    .contact-content,
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .page-hero {
        height: 50vh;
        min-height: 400px;
    }

    .privacy-form-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .accommodation-type,
    .valley-detail-card,
    .about-content,
    .privacy-text-full {
        padding: 2rem;
    }
    
    .contact-form-wrapper,
    .privacy-form-wrapper-bottom {
        padding: 2rem;
    }

    .contact-grid-extended {
        grid-template-columns: 1fr;
    }

    .contact-info-extended {
        margin: 2rem auto;
    }

    .privacy-form-wrapper-bottom {
        margin: 2rem auto 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 16px;
    }

    .privacy-text-full,
    .privacy-form-wrapper-bottom {
        padding: 1.5rem;
        margin: 2rem auto 0;
    }

    .privacy-text-full h2 {
        font-size: 1.75rem;
    }

    .privacy-text-full h3 {
        font-size: 1.25rem;
    }

    .privacy-form-wrapper-bottom h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .checkbox-group label {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .help-item {
        padding: 1.5rem;
    }

    .help-item h4 {
        font-size: 1.1rem;
    }
}