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

/* CSS Custom Properties - 2025 Modernization */
:root {
    /* Türkis Familie */
    --turquoise-50: #e8f5f6;
    --turquoise-100: #b8e3e6;
    --turquoise-200: #88d1d6;
    --turquoise-300: #5abfc6;
    --turquoise-400: #3B868B;  /* Original Brand Color */
    --turquoise-500: #2d6a6e;
    --turquoise-600: #235558;
    --turquoise-700: #1a4042;

    /* Glassmorphism Colors */
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-white-hover: rgba(255, 255, 255, 0.2);
    --glass-turquoise: rgba(59, 134, 139, 0.15);
    --glass-turquoise-strong: rgba(59, 134, 139, 0.25);

    /* Blur Values */
    --blur-sm: blur(8px);
    --blur-md: blur(12px);
    --blur-lg: blur(16px);
    --blur-xl: blur(24px);

    /* Gradients */
    --gradient-turquoise: linear-gradient(135deg, #3B868B 0%, #5abfc6 100%);
    --gradient-turquoise-radial: radial-gradient(circle at top right, #5abfc6, #3B868B);

    /* Accent Colors */
    --accent-coral: #FF6B6B;
    --accent-gold: #FFD93D;
    --accent-lavender: #A78BFA;

    /* Neutrals */
    --neutral-white: #FFFFFF;
    --neutral-light: #F8F9FA;
    --neutral-gray: #E9ECEF;
    --neutral-dark: #1a1a1a;
    --neutral-black: #000000;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Heading Typography - Playfair Display for elegance */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

/* Header Styling - Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.logo {
    width: 120px;
    height: auto;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation Styling */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-dark);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-turquoise);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--turquoise-400);
    background: rgba(59, 134, 139, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Button Styling */
.header-button {
    margin-left: 20px;
}

.btn-book {
    background: var(--gradient-turquoise);
    color: #fff;
    text-decoration: none;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(59, 134, 139, 0.3);
}

.btn-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5abfc6 0%, #3B868B 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 134, 139, 0.4);
}

.btn-book:hover::before {
    opacity: 1;
}

/* Legal Navigation */
.legal-navigation {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 12px 0;
}

.legal-nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.legal-nav-link {
    font-family: 'Times New Roman', serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.legal-nav-link:hover {
    color: var(--turquoise-400);
}

/* Hero Section Styling - Glassmorphism */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(59, 134, 139, 0.3) 0%,
        rgba(88, 209, 214, 0.2) 50%,
        rgba(59, 134, 139, 0.3) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: saturate(1.2) brightness(1.1);
    -webkit-backdrop-filter: saturate(1.2) brightness(1.1);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--neutral-dark);
    max-width: 1000px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section - Modern Background */
.services {
    background: linear-gradient(180deg,
        var(--turquoise-50) 0%,
        rgba(255, 255, 255, 0.8) 100%);
    position: relative;
    padding: 80px 0 60px;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 134, 139, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(88, 209, 214, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    margin-bottom: 60px;
    padding-left: 40px;
}

.services-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0;
    color: #000;
}

.services-subtitle {
    font-size: 18px;
    margin-top: 30px;
    color: #000;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 134, 139, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(59, 134, 139, 0) 0%,
        rgba(59, 134, 139, 0.1) 50%,
        rgba(59, 134, 139, 0.3) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    background: linear-gradient(180deg,
        rgba(59, 134, 139, 0.05) 0%,
        rgba(59, 134, 139, 0.2) 50%,
        rgba(59, 134, 139, 0.4) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 0 20px;
    color: var(--neutral-dark);
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px 20px;
    color: var(--neutral-dark);
}

/* About Section - Gradient Background */
.about {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.8) 0%,
        var(--turquoise-50) 100%);
    padding: 40px 0 80px;
    position: relative;
}

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

.about-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #000;
}

/* Footer - Glassmorphism */
.footer {
    background: linear-gradient(135deg,
        rgba(59, 134, 139, 0.95) 0%,
        rgba(45, 106, 110, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    text-align: left;
    position: relative;
    z-index: 1;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.3s ease;
}

.footer-text a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-text a:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.footer-links {
    margin-top: 15px;
    font-size: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

.footer-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Preise Page Styling - Modernized */
.price-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.price-section:first-of-type {
    padding-top: 200px;
}

.price-section-colored {
    background: linear-gradient(135deg,
        rgba(232, 245, 246, 0.8) 0%,
        rgba(184, 227, 230, 0.6) 50%,
        rgba(232, 245, 246, 0.8) 100%);
    position: relative;
}

.price-section-colored::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 134, 139, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(88, 209, 214, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.price-section-white {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.9) 100%);
}

.price-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.price-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(59, 134, 139, 0.15);
    background: rgba(255, 255, 255, 0.3);
}

.price-image {
    flex: 0 0 320px;
    width: 320px;
    position: relative;
}

.price-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.price-content:hover .price-image img {
    transform: scale(1.03);
    box-shadow: 0 25px 70px rgba(59, 134, 139, 0.25);
}

.price-details {
    flex: 1;
}

.price-category {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 35px;
    color: var(--turquoise-600);
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.price-category::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-turquoise);
    border-radius: 2px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.price-list li {
    font-size: 17px;
    line-height: 2;
    color: var(--neutral-dark);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.price-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 2px;
    background: var(--gradient-turquoise);
    border-radius: 2px;
}

.price-list li:hover {
    transform: translateX(5px);
    color: var(--turquoise-500);
}

.price-info {
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    position: relative;
}

.price-info p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin-bottom: 10px;
}

.price-info p:last-child {
    margin-bottom: 0;
}

.price-info p strong {
    color: var(--turquoise-600);
    font-weight: 600;
}

.price-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.price-column-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-turquoise);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(59, 134, 139, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5abfc6 0%, #3B868B 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-phone svg {
    width: 20px;
    height: 20px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-phone span {
    position: relative;
    z-index: 1;
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 134, 139, 0.4);
}

.btn-phone:hover::before {
    opacity: 1;
}

.btn-phone:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

/* Opening Hours Page Styling */
.opening-hours-section {
    background: linear-gradient(135deg,
        #e8f5f6 0%,
        #b8e3e6 25%,
        #88d1d6 50%,
        #5abfc6 75%,
        #3B868B 100%);
    min-height: 100vh;
    padding: 200px 0 80px;
    position: relative;
}

.opening-hours-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(59, 134, 139, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(88, 209, 214, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.opening-hours-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.opening-hours-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 60px;
    color: #000;
    text-align: center;
}

.opening-hours-table-wrapper {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.opening-hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    color: #fff;
}

.opening-hours-table thead th {
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--turquoise-100);
}

.opening-hours-table tbody tr {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.opening-hours-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.opening-hours-table tbody tr:last-child {
    border-bottom: none;
}

.opening-hours-table tbody tr.closed {
    opacity: 0.4;
}

.opening-hours-table tbody tr td:first-child {
    border-radius: 12px 0 0 12px;
}

.opening-hours-table tbody tr td:last-child {
    border-radius: 0 12px 12px 0;
}

.opening-hours-table td {
    padding: 20px;
    font-size: 20px;
}

.opening-hours-table td.day {
    font-weight: 600;
    text-align: left;
    color: var(--turquoise-100);
}

.opening-hours-table td.time {
    text-align: left;
    font-weight: 400;
}

.opening-hours-note {
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.opening-hours-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.opening-hours-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(59, 134, 139, 0.15);
}

.opening-hours-note p {
    font-size: 18px;
    color: var(--neutral-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.opening-hours-contact {
    margin-top: 30px;
}

.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Contact Page Styling */
.contact-section {
    background: linear-gradient(135deg,
        #e8f5f6 0%,
        #b8e3e6 25%,
        #88d1d6 50%,
        #5abfc6 75%,
        #3B868B 100%);
    min-height: 100vh;
    padding: 200px 0 80px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 134, 139, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(88, 209, 214, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 1.2;
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 50px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 70px rgba(59, 134, 139, 0.15);
}

.contact-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.btn-phone-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 80px;
    background-color: transparent;
    border: 3px solid var(--neutral-dark);
    color: var(--neutral-dark);
    text-decoration: none;
    font-size: 36px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-phone-large svg {
    width: 42px;
    height: 42px;
    color: var(--neutral-dark);
    transition: all 0.3s ease;
}

.btn-phone-large:hover {
    background-color: var(--neutral-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-phone-large:hover svg {
    color: #fff;
    transform: scale(1.1);
}

.contact-form {
    width: 100%;
}

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

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 10px;
}

.form-sublabel {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-dark);
    margin-bottom: 8px;
}

.required {
    font-weight: 400;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-col {
    flex: 1;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid rgba(59, 134, 139, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--neutral-dark);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--turquoise-400);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(59, 134, 139, 0.15),
                0 0 0 4px rgba(59, 134, 139, 0.1);
    transform: translateY(-2px);
}

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

.form-submit {
    margin-top: 40px;
    text-align: center;
}

.btn-submit {
    padding: 18px 80px;
    background: var(--gradient-turquoise);
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(59, 134, 139, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5abfc6 0%, #3B868B 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 134, 139, 0.4);
}

.btn-submit:hover::before {
    opacity: 1;
}

.contact-divider {
    margin: 50px 0;
    text-align: center;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 134, 139, 0.3), transparent);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-divider span {
    display: inline-block;
    padding: 0 20px;
    font-size: 16px;
    color: var(--neutral-dark);
    font-weight: 500;
    background: transparent;
}

.contact-direct {
    text-align: center;
}

.contact-direct p {
    font-size: 18px;
    color: var(--neutral-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Messages / Alerts */
.messages {
    margin-bottom: 30px;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(76, 175, 80, 0.15);
    border-left-color: #4CAF50;
    color: #2e7d32;
}

.alert-error {
    background: rgba(244, 67, 54, 0.15);
    border-left-color: #f44336;
    color: #c62828;
}

.alert-info {
    background: rgba(33, 150, 243, 0.15);
    border-left-color: #2196F3;
    color: #1565c0;
}

.alert-warning {
    background: rgba(255, 152, 0, 0.15);
    border-left-color: #ff9800;
    color: #e65100;
}

/* SumUp Booking Page Styling */
.booking-hero-section {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(232, 245, 246, 0.8) 100%);
    padding: 200px 0 80px;
    position: relative;
}

.booking-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 134, 139, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(88, 209, 214, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.booking-hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--neutral-dark);
    position: relative;
    z-index: 1;
}

.booking-hero-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.booking-hero-card:hover {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 70px rgba(59, 134, 139, 0.15);
}

.booking-card-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--neutral-dark);
    text-align: center;
}

.booking-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin-bottom: 20px;
    text-align: center;
}

.booking-hero-button {
    margin-top: 40px;
    text-align: center;
}

.btn-booking-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-turquoise);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(59, 134, 139, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-booking-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5abfc6 0%, #3B868B 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-booking-primary svg {
    width: 22px;
    height: 22px;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-booking-primary span {
    position: relative;
    z-index: 1;
}

.btn-booking-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 134, 139, 0.4);
}

.btn-booking-primary:hover::before {
    opacity: 1;
}

.btn-booking-primary:hover svg {
    transform: scale(1.1);
}

.booking-steps-section {
    background: linear-gradient(135deg,
        #e8f5f6 0%,
        #b8e3e6 25%,
        #88d1d6 50%,
        #5abfc6 75%,
        #3B868B 100%);
    padding: 80px 0;
    position: relative;
}

.booking-steps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(59, 134, 139, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(88, 209, 214, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.booking-main-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    position: relative;
    z-index: 1;
}

.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.booking-step-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.booking-step-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(59, 134, 139, 0.15);
}

.booking-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-turquoise);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(59, 134, 139, 0.3);
}

.booking-step-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.booking-step-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin-bottom: 15px;
}

.booking-step-card-text:last-child {
    margin-bottom: 0;
}

.booking-contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    text-align: center;
}

.booking-contact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 70px rgba(59, 134, 139, 0.15);
}

.booking-contact-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 30px;
}

.booking-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-phone-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--turquoise-500);
    border: 2px solid var(--turquoise-400);
}

.btn-phone-secondary:hover {
    background: var(--gradient-turquoise);
    color: #fff;
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }

    .navigation {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .nav-list {
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-title {
        font-size: 42px;
    }

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

@media (max-width: 768px) {
    .nav-list {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-book {
        padding: 10px 25px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .price-section {
        padding: 60px 0;
    }

    .price-section:first-of-type {
        padding-top: 160px;
    }

    .price-content {
        flex-direction: column;
        gap: 35px;
        padding: 35px 25px;
    }

    .price-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

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

    .price-category {
        font-size: 36px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }

    .price-list li {
        font-size: 16px;
    }

    .price-info {
        padding: 15px;
    }

    .price-info p {
        font-size: 13px;
    }

    .btn-phone {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-phone svg {
        width: 18px;
        height: 18px;
    }

    .opening-hours-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .opening-hours-table-wrapper {
        padding: 25px;
    }

    .opening-hours-table thead th {
        font-size: 18px;
        padding: 15px 10px;
    }

    .opening-hours-table td {
        font-size: 16px;
        padding: 15px 10px;
    }

    .contact-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-hero-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .booking-hero-card {
        padding: 35px 25px;
    }

    .booking-card-title {
        font-size: 24px;
    }

    .booking-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-main-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .booking-step-card {
        padding: 30px 25px;
    }

    .booking-contact-card {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 80px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .services-header {
        padding-left: 20px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-grid {
        padding: 0 20px;
    }

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

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

    .footer-bottom {
        margin-top: 40px;
        padding-top: 25px;
        font-size: 12px;
    }

    .price-category {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .opening-hours-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .opening-hours-table-wrapper {
        padding: 20px;
    }

    .opening-hours-table thead th {
        font-size: 14px;
        padding: 12px 8px;
    }

    .opening-hours-table td {
        font-size: 14px;
        padding: 12px 8px;
    }

    .btn-contact {
        padding: 12px 30px;
        font-size: 16px;
    }

    .contact-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .btn-submit {
        width: 100%;
        padding: 15px 40px;
        font-size: 16px;
    }

    .booking-hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .booking-hero-card {
        padding: 30px 20px;
    }

    .booking-card-title {
        font-size: 20px;
    }

    .booking-card-text {
        font-size: 15px;
    }

    .booking-main-title {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .booking-step-card {
        padding: 25px 20px;
    }

    .booking-step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .booking-step-card-title {
        font-size: 18px;
    }

    .booking-step-card-text {
        font-size: 14px;
    }

    .booking-contact-card {
        padding: 25px 20px;
    }

    .booking-contact-card-title {
        font-size: 18px;
    }

    .booking-contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-phone,
    .btn-phone-secondary {
        width: 100%;
    }
}

/* ========================================
   Scroll Animations
   ======================================== */

.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Performance Optimizations
   ======================================== */

/* GPU Acceleration */
.service-card,
.btn-book,
.header,
.hero-content,
.form-input,
.form-textarea {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* ========================================
   Mobile Optimizations
   ======================================== */

@media (max-width: 768px) {
    /* Reduce blur on mobile for better performance */
    :root {
        --blur-sm: blur(4px);
        --blur-md: blur(6px);
        --blur-lg: blur(8px);
        --blur-xl: blur(10px);
    }

    .header {
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .service-card,
    .hero-content {
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    /* Disable parallax on mobile */
    .hero {
        background-attachment: scroll;
    }

    /* Remove hover transforms on touch devices */
    @media (hover: none) {
        .service-card:hover {
            transform: none;
        }

        .btn-book:hover {
            transform: none;
        }

        .nav-link:hover {
            transform: none;
        }
    }
}

/* ========================================
   Accessibility - Reduced Motion
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero {
        background-attachment: scroll;
    }

    .animate-ready {
        opacity: 1;
        transform: none;
    }
}

/* ========================================
   Browser Compatibility - Fallbacks
   ======================================== */

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(10px)) {
    .header,
    .service-card,
    .hero-content,
    .opening-hours-table-wrapper,
    .footer {
        background: rgba(255, 255, 255, 0.9);
    }

    .header {
        background: rgba(255, 255, 255, 0.95);
    }

    .opening-hours-table-wrapper {
        background: rgba(0, 0, 0, 0.85);
    }

    .footer {
        background: rgba(59, 134, 139, 0.98);
    }
}

/* ========================================
   Booking Code Modal
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: var(--blur-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--neutral-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--turquoise-400);
    margin-bottom: 16px;
    text-align: center;
}

.modal-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-dark);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.modal-form {
    margin-bottom: 24px;
}

.modal-input {
    width: 100%;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    border: 2px solid var(--neutral-gray);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-input:focus {
    border-color: var(--turquoise-400);
}

.modal-input.error {
    border-color: var(--accent-coral);
}

.modal-error {
    color: var(--accent-coral);
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-modal-primary,
.btn-modal-secondary {
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-primary {
    background: var(--gradient-turquoise);
    color: var(--neutral-white);
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 134, 139, 0.3);
}

.btn-modal-secondary {
    background: var(--neutral-gray);
    color: var(--neutral-dark);
}

.btn-modal-secondary:hover {
    background: #d3d6da;
}

/* Button als Button stylen (nicht Link) */
.btn-booking-primary {
    border: none;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-description {
        font-size: 14px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .btn-modal-primary,
    .btn-modal-secondary {
        width: 100%;
    }
}

/* ========================================
   Legal Pages (AGB, Datenschutz, Impressum)
   ======================================== */

.legal-section {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: calc(100vh - 400px);
    background: linear-gradient(135deg, rgba(59, 134, 139, 0.03) 0%, rgba(90, 191, 198, 0.03) 100%);
    margin-top: 0;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--turquoise-400);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.legal-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-dark);
    text-align: left;
}

.legal-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--turquoise-400);
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    padding-bottom: 12px;
}

.legal-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-turquoise);
    border-radius: 2px;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--turquoise-500);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.legal-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-dark);
}

.legal-text ul {
    margin-left: 0;
    margin-bottom: 30px;
    margin-top: 15px;
    list-style-type: none;
    padding-left: 0;
}

.legal-text li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    color: var(--neutral-dark);
}

.legal-text li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--turquoise-400);
    font-size: 18px;
}

.legal-text a {
    color: var(--turquoise-400);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-text a:hover {
    color: var(--turquoise-300);
    border-bottom: 1px solid var(--turquoise-300);
}

.legal-download {
    text-align: center;
    margin-bottom: 40px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-turquoise);
    color: var(--neutral-white);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 134, 139, 0.2);
}

.btn-download svg {
    width: 20px;
    height: 20px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 134, 139, 0.3);
}

@media (max-width: 768px) {
    .legal-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .legal-content {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .legal-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .legal-text {
        font-size: 15px;
    }

    .legal-text h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .legal-text h3 {
        font-size: 16px;
        margin-top: 25px;
    }

    .legal-text p {
        font-size: 15px;
    }

    .legal-text li {
        font-size: 15px;
        padding-left: 25px;
    }
}
