/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a2540;
    --secondary: #2563eb;
    --accent: #06b6d4;
    --ice-light: #e0f2fe;
    --ice-medium: #7dd3fc;
    --dark: #1e293b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #0a2540 0%, #2563eb 100%);
    --gradient-ice: linear-gradient(135deg, #06b6d4 0%, #7dd3fc 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(37, 99, 235, 0.85) 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.04);
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.header {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1.25rem 0;
}

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

.logo h1 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}

.logo .subtitle {
    color: var(--ice-light);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--ice-light);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section with Slideshow */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: -0.01em;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.02em;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-ice);
    color: var(--primary);
    padding: 1.125rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    letter-spacing: 0.01em;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.4);
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section:nth-child(even) {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.underline {
    width: 80px;
    height: 5px;
    background: var(--gradient-ice);
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section */
.intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-text .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.fact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.fact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.fact-item h3 {
    color: var(--secondary);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.fact-item p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-ice);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: 52%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 52%;
    text-align: left;
}

.timeline-date {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
    font-size: 0.9375rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

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

/* Surroundings Section */
.surroundings-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.attraction-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.attraction-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.attraction-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.attraction-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.attraction-list {
    list-style: none;
}

.attraction-list li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.attraction-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Region Section */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.region-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.region-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.region-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #2563eb;
}

.region-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.region-header h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.region-content {
    padding: 3rem 2.5rem 2.5rem;
}

.region-section {
    margin-bottom: 2.5rem;
}

.region-section:last-child {
    margin-bottom: 0;
}

.region-section h4 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.region-section h4::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gradient-ice);
    border-radius: 2px;
}

.region-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.region-list {
    list-style: none;
    padding-left: 0;
}

.region-list li {
    padding: 0.625rem 0 0.625rem 2rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.7;
}

.region-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
}

.region-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.region-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    transition: all 0.3s;
}

.region-highlight-item:hover {
    background: var(--ice-light);
    transform: translateX(4px);
}

.region-highlight-item span:first-child {
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.region-highlight-item span:last-child {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
}

.region-info-box {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    border: 2px solid var(--ice-medium);
    box-shadow: var(--shadow-md);
}

.region-info-box h3 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.9), transparent);
    color: var(--white);
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-weight: 500;
    font-size: 1rem;
}

.photo-credit {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-style: italic;
}

/* Visit Section */
.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.visit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.visit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.visit-card h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.opening-hours {
    text-align: center;
}

.season {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--ice-light);
}

.season h4 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.season-dates {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.closed-day {
    color: #dc2626;
    font-weight: 500;
}

.schedule {
    margin: 2rem 0;
}

.schedule-period {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.schedule-period strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.tour-times {
    color: var(--text-muted);
    line-height: 1.6;
}

.closed-info {
    background: #fee2e2;
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.closed-info strong {
    color: #dc2626;
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list strong {
    color: var(--secondary);
    font-size: 1.125rem;
    font-weight: 600;
}

.note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--ice-light);
    border-radius: 12px;
    font-size: 0.9375rem;
    text-align: center;
    color: var(--primary);
    font-weight: 500;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-muted);
}

.info-list li::before {
    content: '❄';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.25rem;
}

.location-info p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.location-info strong {
    color: var(--primary);
}

/* Contact Section */
.contact-grid {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

.contact-item a {
    color: var(--secondary);
    font-weight: 500;
}

.small {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: var(--ice-light);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul a {
    color: #94a3b8;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--ice-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: var(--ice-light);
}

.credits {
    font-size: 0.9375rem;
}

/* Services / Partners Section */
.services-category {
    margin-bottom: 5rem;
}

.services-category:last-of-type {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 700;
}

.category-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

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

.partner-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.partner-card.placeholder {
    border: 2px dashed var(--ice-medium);
    background: linear-gradient(135deg, var(--white) 0%, var(--ice-light) 100%);
}

.partner-logo-area {
    padding: 2rem;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    position: relative;
}

.partner-logo-placeholder {
    width: 100%;
    height: 140px;
    border: 3px dashed var(--ice-medium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: all 0.3s;
}

.partner-card:hover .partner-logo-placeholder {
    border-color: var(--accent);
    background: var(--ice-light);
}

.partner-logo-placeholder span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

.partner-content {
    padding: 2rem;
    flex-grow: 1;
}

.partner-content h4 {
    color: var(--primary);
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.partner-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--ice-light);
    color: var(--secondary);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid var(--ice-medium);
}

.partner-footer {
    padding: 0 2rem 2rem;
}

.partner-button {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.partner-button:hover {
    background: var(--gradient-ice);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Partnership Info Box */
.partnership-info {
    margin-top: 4rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.partnership-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.partnership-content {
    position: relative;
    z-index: 1;
}

.partnership-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.partnership-content p {
    color: var(--ice-light);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.partnership-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.partnership-button:hover {
    background: var(--ice-light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-10%, -10%) scale(1.1);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 74px;
        flex-direction: column;
        background: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

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

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

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

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

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

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

    .region-header h3 {
        font-size: 1.5rem;
    }

    .region-content {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .region-highlights {
        grid-template-columns: 1fr;
    }

    .region-info-box {
        padding: 2rem 1.5rem;
    }

    .region-info-box h3 {
        font-size: 1.375rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .category-title {
        font-size: 1.5rem;
    }

    .category-icon {
        font-size: 2rem;
    }

    .partnership-info {
        padding: 2rem 1.5rem;
    }

    .partnership-content h3 {
        font-size: 1.5rem;
    }

    .partnership-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.25rem;
    }

    .logo .subtitle {
        font-size: 0.75rem;
    }

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

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

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 16px;
    }
}
