/* Base Styles */
:root {
    --color-bg: #ffffff;
    --color-surface: #fbfbfd;
    --color-sand: #E5DCCB;
    /* Warmer sand tone */
    --color-text: #1d1d1f;
    --color-text-muted: #86868b;
    --color-accent: #2c5f78;
    --color-accent-hover: #1d4052;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 20px;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 700px;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.section-light {
    background-color: var(--color-surface);
}

.section-sand {
    position: relative;
    background: rgba(229, 220, 203, 0.92);
    overflow: hidden;
}

.section-sand::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../bilder/background-shapes.jpg') repeat;
    background-size: 600px;
    background-attachment: fixed;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

.section-sand>.container {
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 2rem 0 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

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

.breadcrumbs .separator {
    margin: 0 0.75rem;
    font-size: 0.7rem;
    vertical-align: middle;
    opacity: 0.5;
}

.breadcrumbs.light,
.breadcrumbs.light a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs.light .separator {
    color: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    margin-bottom: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

/* Apple Style Burger Morph */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 120, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: var(--color-text);
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero p {
    font-size: 1.5rem;
    margin: 0 auto 3rem;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* Cards & Elements */
.card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.icon-box {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.icon-box i {
    width: 24px !important;
    height: 24px !important;
}

/* Map */
.map-container {
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Table */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    margin-top: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th,
td {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 1.05rem;
}

th {
    background: rgba(249, 248, 246, 0.5);
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
    letter-spacing: -0.01em;
}

td {
    color: var(--color-text-muted);
}

tr:last-child td {
    border-bottom: none;
}

/* Transposed table row header style */
td:first-child {
    background: rgba(249, 248, 246, 0.3);
    font-weight: 600;
    color: var(--color-text);
    width: 250px;
}

tr:hover td {
    background-color: var(--color-surface);
}

/* Mouse Scroll Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 0.7;
    bottom: 25px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    margin-left: -2px;
    border-radius: 50%;
    animation: scroll-mouse 2s infinite;
}

@keyframes scroll-mouse {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Forms - Premium Apple Design */
.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.form-control {
    width: 100%;
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
}

.form-control::placeholder {
    color: #a1a1a6;
    opacity: 0.8;
}

.form-control:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.2);
}

.form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(44, 95, 120, 0.12);
    transform: translateY(-1px);
}

textarea.form-control {
    min-height: 160px;
    line-height: 1.6;
    resize: none;
    /* Premium look usually avoids resize handle */
}

/* Specific styling for Date inputs */
input[type="date"].form-control {
    color: #1d1d1f;
    font-weight: 400;
}

/* Custom Checkbox Styling */
input[type="checkbox"] {
    cursor: pointer;
    accent-color: var(--color-accent);
}

/* Footer */
footer {
    background-color: var(--color-sand);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-col ul a {
    color: var(--color-text-muted);
}

.footer-col ul a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Fakten Sektion Background */
.section-facts {
    position: relative;
    background: rgba(229, 220, 203, 0.92);
    /* Sand-Ton mit leichter Transparenz */
    overflow: hidden;
}

.section-facts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../bilder/background-shapes.jpg') repeat;
    background-size: 600px;
    background-attachment: fixed;
    /* Parallax Effekt */
    opacity: 0.65;
    /* Leicht reduziert für bessere Lesbarkeit auf Sand */
    pointer-events: none;
    z-index: 0;
}

.section-facts>.container {
    position: relative;
    z-index: 1;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Image rounded */
.img-rounded {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
}

/* Bullet List custom */
.bullet-list {
    list-style: none;
}

.bullet-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Legend */
.legend {
    display: inline-flex;
    gap: 2rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    /* Circle looks more modern for legend */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.legend-color.green {
    background-color: #34c759;
    /* Apple Green */
}

.legend-color.yellow {
    background-color: #ffcc00;
    /* Apple Yellow */
}

.legend-color.red {
    background-color: #ff3b30;
    /* Apple Red */
}

/* Fullscreen Hero (Apple Style) */
.hero-fullscreen {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* for parallax scroll room */
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: transform;
}

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

@keyframes kenburns {
    0% {
        transform: scale(1.1) translateY(0);
    }

    100% {
        transform: scale(1.2) translateY(-2%);
    }
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    /* Base state */
    will-change: transform;
}

.hero-slide.active .hero-slide-bg {
    animation: kenburns 12s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-fullscreen h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-fullscreen .subheadline {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-badges span {
    display: flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.trust-badges span:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Apple-style Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: visible; /* Allow items to bleed out if needed */
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 5rem 3rem 5rem; /* Large side padding for peek effect */
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.carousel-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 85%; /* Focus on one item, see others at the sides */
    scroll-snap-align: center;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 10;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: #f4f4f4;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 60%;
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 45%;
    }
}

.carousel-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-text);
}

.carousel-btn:hover {
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 2rem;
}

.carousel-btn.next {
    right: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-btn.prev {
    left: 2rem;
}

.lightbox-btn.next {
    right: 2rem;
}

/* Parallax Utility */
.parallax-section {
    position: relative;
    overflow: hidden;
}

/* Facts Section */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .facts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

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

.fact-item i {
    color: var(--color-accent);
    flex-shrink: 0;
}

.fact-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered entrance for menu items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .hero-content {
        margin-top: 80px;
    }

    .trust-badges {
        margin-top: 2rem;
        gap: 0.75rem;
    }

    .trust-badges span {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Mobile Table Compact Styles */
    .mobile-only .table-wrapper {
        padding: 0.5rem;
        border-radius: 16px;
    }

    .mobile-only table th,
    .mobile-only table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .mobile-only table td:first-child {
        width: auto;
        font-size: 0.8rem;
    }

    .hero-fullscreen {
        height: 85vh;
    }

    /* Calendar Card & iFrame */
    .calendar-card {
        background: #ffffff;
        padding: 3rem;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.03);
        max-width: 1000px;
        margin: 0 auto;
    }

    .iframe-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        justify-content: center;
    }

    .iframe-container iframe {
        border-radius: 12px;
        max-width: 100%;
    }

    .grid-3,
    .footer-grid,
    .gallery-grid,
    .gallery-grid.columns-3,
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .map-container {
        height: 400px;
    }
}