:root {
    --primary-color: #b1363c;
    --secondary-color: #222222;
    --text-light: #717171;
    --bg-light: #F7F7F7;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --border-radius: 16px;
    --gradient-accent: linear-gradient(135deg, #FF385C, #E31C5F);
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.5;
    color: var(--secondary-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Verhindert horizontales Scrollen bei allen Sections */
section {
    overflow-x: hidden;
    max-width: 100%;
}

/* ============================================
   LOGO RESPONSIVE STYLES - OPTIMIERT
   ============================================ */
.logo {
    height: 65px;
    display: flex;
    align-items: center;
    transition: height 0.3s ease;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    max-width: 100%;
}


/* Navigation */
nav {
    background: linear-gradient(to bottom, var(--bg-white), rgba(255,255,255,0.95));
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 24px;
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, padding 0.3s ease;
    display: flex;
    justify-content: space-between;
    max-width: 100vw;
    overflow-x: hidden;
}

nav.scrolled {
    padding: 8px 24px;
}

nav.scrolled .logo {
    height: 50px;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 7rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 8px;
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.nav-menu li {
    list-style: none;
    flex-wrap: nowrap;
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: block;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 56, 92, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.nav-menu a:hover::before {
    width: 150%;
    height: 150%;
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(102, 126, 234, 0.05));
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.15);
}

.whatsapp-nav-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark)) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    flex-wrap: nowrap; 
}

.whatsapp-nav-btn::after {
    display: none !important;
}

.whatsapp-nav-btn:hover {
    background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp-green)) !important;
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5) !important;
}

.whatsapp-nav-btn svg {
    fill: white;
    flex-shrink: 0;
}

.whatsapp-number {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* HERO SECTION */
.hero-ultra {
    min-height: 100vh;
    background: linear-gradient(135deg, #4f5563d0 0%, #35414ee8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    max-width: 100vw;
}

.hero-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgages/Hotel-Garni.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(238, 71, 102, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(119, 90, 92, 0.15) 0%, transparent 50%);
    pointer-events: none;
    max-width: 100vw;
}

.hero-content-ultra {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: heroContentFadeIn 1s ease;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #25D366;
    margin-bottom: 32px;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.hero-title-ultra {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-line {
    display: block;
}

.hero-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #fd1d46bb, #b31a2ec0, #b8152bb2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.3), rgba(227, 28, 95, 0.3));
    border-radius: 8px;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-description-ultra {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #da2243, #b1363c);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(255, 56, 92, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 56, 92, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.15);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(6px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 16px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 56, 92, 0.5);
    transform: translateY(-4px);
}

.feature-icon-hero {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.hero-scroll-indicator svg {
    color: white;
}

.hero-scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

/* ROOMS SECTION */
.rooms-ultra {
    padding: 120px 24px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.rooms-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    max-width: 100vw;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 56, 92, 0.05) 0%, transparent 70%);
    animation: patternFloat 25s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 100px;
    left: -50px;
    animation-delay: 8s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    animation-delay: 16s;
}

@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
        opacity: 0.5;
    }
}

.rooms-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.1), rgba(102, 126, 234, 0.1));
    border: 2px solid rgba(255, 56, 92, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.badge-icon {
    font-size: 20px;
}

.section-title-ultra {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 6px;
    z-index: -1;
}

.section-description-ultra {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.room-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e9ecef;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(102, 126, 234, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
}

.filter-icon {
    font-size: 18px;
}

.rooms-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.room-card-ultra {
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s ease forwards;
}

.room-card-ultra:nth-child(1) { animation-delay: 0.1s; }
.room-card-ultra:nth-child(2) { animation-delay: 0.2s; }
.room-card-ultra:nth-child(3) { animation-delay: 0.3s; }
.room-card-ultra:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-card-inner {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.room-card-ultra:hover .room-card-inner {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 56, 92, 0.2);
}

.room-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 100%;
}

.room-card-ultra:hover .room-image-wrapper img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.room-card-ultra:hover .room-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
}

.room-card-ultra:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.room-badge-ultra {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

.room-badge-ultra.popular {
    background: linear-gradient(135deg, #FFB800, #FF8C00);
}

.room-badge-ultra.best {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.room-badge-ultra.deal {
    background: linear-gradient(135deg, var(--primary-color), #E31C5F);
}

.room-badge-ultra.family {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.room-badge-ultra svg {
    width: 14px;
    height: 14px;
}

.room-content-wrapper {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.room-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.room-title-ultra {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.room-rating-ultra {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-ultra {
    display: flex;
    gap: 2px;
}

.stars-ultra svg {
    color: #FFB800;
}

.rating-text {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.room-price-wrapper {
    text-align: right;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(102, 126, 234, 0.05));
    padding: 12px 16px;
    border-radius: 12px;
    flex-shrink: 0;
}

.price-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.room-description-ultra {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.room-features-ultra {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.1), rgba(102, 126, 234, 0.1));
    border-color: rgba(255, 56, 92, 0.3);
    transform: translateY(-2px);
}

.feature-tag svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

.room-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-book-ultra {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-book-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-book-ultra:hover::before {
    left: 100%;
}

.btn-book-ultra:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 56, 92, 0.4);
}

.btn-book-ultra svg {
    transition: transform 0.3s ease;
}

.btn-book-ultra:hover svg {
    transform: translateX(4px);
}

.btn-details-ultra {
    padding: 16px 24px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details-ultra:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(102, 126, 234, 0.05));
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 24px;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(255, 56, 92, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-author::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 20px;
    color: #FFB800;
}

/* Angebote Section */
.angebote-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.angebot-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.angebot-card:hover {
    transform: translateY(-6px);
}

.angebot-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.angebot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.angebot-card:hover .angebot-image img {
    transform: scale(1.1);
}

.angebot-details {
    padding: 16px;
}

.angebot-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.angebot-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* GALLERY SECTION */
.gallery-ultra {
    padding: 120px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.gallery-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e9ecef;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery-filter-btn:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(102, 126, 234, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.15);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
}

.gallery-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 280px;
    gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item-ultra.wide {
    grid-column: span 2;
}

.gallery-item-ultra.tall {
    grid-row: span 2;
}

.gallery-item-ultra {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: galleryFadeIn 0.6s ease forwards;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item-ultra:nth-child(1) { animation-delay: 0.1s; }
.gallery-item-ultra:nth-child(2) { animation-delay: 0.15s; }
.gallery-item-ultra:nth-child(3) { animation-delay: 0.2s; }
.gallery-item-ultra:nth-child(4) { animation-delay: 0.25s; }
.gallery-item-ultra:nth-child(5) { animation-delay: 0.3s; }
.gallery-item-ultra:nth-child(6) { animation-delay: 0.35s; }
.gallery-item-ultra:nth-child(7) { animation-delay: 0.4s; }
.gallery-item-ultra:nth-child(8) { animation-delay: 0.45s; }
.gallery-item-ultra:nth-child(9) { animation-delay: 0.5s; }
.gallery-item-ultra:nth-child(10) { animation-delay: 0.55s; }

@keyframes galleryFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 100%;
}

.gallery-item-ultra:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item-ultra:hover .gallery-image-wrapper img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item-ultra:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item-ultra:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.gallery-info p {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-view-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(0);
}

.gallery-item-ultra:hover .gallery-view-btn {
    transform: scale(1);
}

.gallery-view-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.gallery-view-btn:hover svg {
    color: white;
}

.gallery-view-btn svg {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.lightbox-ultra {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-ultra.active {
    display: flex;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: imageZoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes imageZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close svg {
    color: white;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav svg {
    color: white;
}

.lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    z-index: 10001;
}

/* FAQ SECTION */
.faq-ultra {
    padding: 120px 24px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e9ecef;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-category-btn:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(102, 126, 234, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.15);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
}

.category-icon {
    font-size: 18px;
}

.faq-grid-ultra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item-ultra {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: faqFadeIn 0.6s ease forwards;
}

.faq-item-ultra:nth-child(1) { animation-delay: 0.1s; }
.faq-item-ultra:nth-child(2) { animation-delay: 0.2s; }
.faq-item-ultra:nth-child(3) { animation-delay: 0.3s; }
.faq-item-ultra:nth-child(4) { animation-delay: 0.4s; }

@keyframes faqFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item-ultra:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.faq-item-ultra.active {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(255, 56, 92, 0.15);
}

.faq-question-ultra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question-ultra:hover {
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.03), rgba(102, 126, 234, 0.03));
}

.faq-question-ultra h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.4;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    padding-right: 16px;
}

/* FAQ Icon/Toggle */
.faq-icon-ultra {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-item-ultra.active .faq-icon-ultra {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: white;
    transform: rotate(45deg);
}

.faq-answer-ultra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    padding: 0 28px;
    opacity: 0;
}

.faq-item-ultra.active .faq-answer-ultra {
    max-height: 1000px;
    padding: 0 28px 24px 28px;
    opacity: 1;
}

.faq-answer-ultra p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

.faq-answer-ultra p:last-child {
    margin-bottom: 0;
}

.faq-answer-ultra strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.faq-answer-ultra ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer-ultra li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.faq-cta {
    max-width: 1000px;
    margin: 80px auto 0;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(255, 56, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-cta::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: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.faq-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.faq-cta-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.faq-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.faq-cta-actions {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.btn-faq-whatsapp,
.btn-faq-contact {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-faq-whatsapp {
    background: white;
    color: var(--whatsapp-green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-faq-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-faq-whatsapp svg {
    fill: var(--whatsapp-green);
}

.btn-faq-contact {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-faq-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.contact-info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(102, 126, 234, 0.05));
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item:hover {
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.1), rgba(102, 126, 234, 0.1));
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 56, 92, 0.3);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.contact-info-text span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-text a:hover {
    color: #667eea;
    transform: translateX(3px);
}

/* WhatsApp CTA ULTRA */
.whatsapp-cta-ultra {
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    max-width: 100vw;
}

/* Animated Gradient Background */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    max-width: 100vw;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.cta-ultra-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-ultra-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ultra-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #25D366;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

.ultra-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.heading-line {
    display: block;
}

.heading-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E, #25D366);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    position: relative;
    padding: 0 8px;
}

.heading-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(18, 140, 126, 0.3));
    border-radius: 6px;
    z-index: -1;
}

.ultra-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.feature-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.pill-icon {
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-whatsapp-ultra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 24px 32px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-whatsapp-ultra:hover::before {
    left: 100%;
}

.btn-whatsapp-ultra:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 80px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-whatsapp-ultra:hover .btn-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.btn-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.btn-main-text {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.btn-sub-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-whatsapp-ultra:hover .btn-arrow {
    transform: translateX(8px);
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.btn-call-icon {
    font-size: 32px;
}

.btn-call-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.btn-call-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-call-number {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.proof-avatars {
    display: flex;
    margin-left: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    border: 3px solid #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-left: -8px;
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.avatar:last-child {
    background: linear-gradient(135deg, #25D366, #128C7E);
    font-size: 11px;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-stars {
    color: #FFB800;
    font-size: 14px;
}

.proof-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.cta-ultra-visual {
    position: relative;
}

.phone-mockup {
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #1e293b;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #0f172a;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #128C7E, #075E54);
    border-radius: 42px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #075E54;
    padding: 50px 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.chat-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.chat-messages {
    flex: 1;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-image: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 20px 20px;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: messageSlideIn 0.4s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-received {
    align-items: flex-start;
}

.message-sent {
    align-items: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message-received .message-bubble {
    background: white;
    color: #333;
    border-top-left-radius: 4px;
}

.message-sent .message-bubble {
    background: #DCF8C6;
    color: #333;
    border-top-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 8px;
}

.typing {
    animation-delay: 0.8s;
}

.typing-indicator {
    display: flex;
    gap: 6px;
    padding: 8px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: statFloat 3s ease-in-out infinite;
}

.stat-1 {
    top: 80px;
    left: -100px;
    animation-delay: 0s;
}

.stat-2 {
    top: 280px;
    right: -80px;
    animation-delay: 1s;
}

.stat-3 {
    bottom: 120px;
    left: -120px;
    animation-delay: 2s;
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* Trust Section */
.trust-section {
    padding: 80px 24px;
    background: white;
    position: relative;
}

.trust-section .section-title {
    color: var(--secondary-color);
    font-size: 42px;
    margin-bottom: 48px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #667eea);
}

.trust-badge:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge strong {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.trust-badge span {
    color: var(--text-light);
    font-size: 15px;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: none;
    font-size: 15px;
    font-weight: 500;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #D4EDDA, #C3E6CB);
    color: #155724;
    border: 2px solid #C3E6CB;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

.alert-success::before {
    content: '✅ ';
    font-size: 18px;
}

.alert-error {
    background: linear-gradient(135deg, #F8D7DA, #F5C6CB);
    color: #721C24;
    border: 2px solid #F5C6CB;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.2);
}

.alert-error::before {
    content: '⚠️ ';
    font-size: 18px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    fill: white;
}

.whatsapp-float-text {
    position: absolute;
    right: 80px;
    background: #222222;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #667eea, var(--whatsapp-green));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-newsletter {
    padding: 80px 24px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 0 0 40px 40px;
    position: relative;
}

.footer-newsletter::before {
    content: '✉️';
    position: absolute;
    top: 30px;
    left: 5%;
    font-size: 60px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.footer-newsletter::after {
    content: '🌟';
    position: absolute;
    bottom: 30px;
    right: 5%;
    font-size: 50px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite 1.5s;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    color: var(--secondary-color);
    min-width: 0;
}

.newsletter-form button {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 56, 92, 0.4);
}

.footer-main {
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-about {
    padding-right: 24px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-rating .stars {
    color: #FFB800;
    font-size: 18px;
}

.footer-rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.footer-contact-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-info {
    flex: 1;
}

.footer-contact-info strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-contact-info span,
.footer-contact-info a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-whatsapp-cta {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-whatsapp-cta::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: ripple 4s ease-in-out infinite;
}

@keyframes ripple {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.footer-whatsapp-icon {
    font-size: 50px;
    margin-bottom: 12px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.footer-whatsapp-cta h4 {
    color: white !important;
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-whatsapp-cta h4::after {
    display: none;
}

.footer-whatsapp-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--whatsapp-green);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-whatsapp-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--whatsapp-green);
}

.footer-social {
    padding: 40px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.footer-social h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-accent);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.4);
}

.social-icon.whatsapp:hover {
    border-color: var(--whatsapp-green);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-icon.whatsapp:hover::before {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
}

.footer-bottom {
    padding: 32px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links a:hover::after {
    width: 100%;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-made-with .heart {
    color: var(--primary-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}


@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Legal Contact Form */
.legal-contact-form {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 48px;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.legal-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #667eea, var(--whatsapp-green));
}

.legal-contact-form h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 2.2em;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-contact-form .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1em;
}

.form-progress {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 10px;
    margin-bottom: 32px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #667eea);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

.legal-form-group {
    margin-bottom: 28px;
    position: relative;
}

.legal-form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-form-group label .field-icon {
    font-size: 18px;
    color: var(--primary-color);
}

.legal-form-group .required {
    color: var(--primary-color);
    font-size: 1.1em;
}

.legal-form-group input, 
.legal-form-group textarea, 
.legal-form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
}

.legal-form-group input:focus, 
.legal-form-group textarea:focus, 
.legal-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.15);
}

.legal-form-group input.valid,
.legal-form-group textarea.valid,
.legal-form-group select.valid {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.legal-form-group input.valid:focus,
.legal-form-group textarea.valid:focus,
.legal-form-group select.valid:focus {
    border-color: #27ae60;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.15);
}

.legal-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.legal-form-group .field-hint {
    font-size: 0.85em;
    color: var(--text-light);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.legal-form-group .field-hint::before {
    content: 'ℹ️';
    font-size: 14px;
}

.date-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.legal-checkbox-group {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(102, 126, 234, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(255, 56, 92, 0.1);
}

.legal-checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.legal-checkbox-item:hover {
    background: rgba(255, 255, 255, 0.6);
}

.legal-checkbox-item:last-child {
    margin-bottom: 0;
}

.legal-checkbox-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-right: 14px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.legal-checkbox-item label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.6;
    color: var(--secondary-color);
    cursor: pointer;
}

.legal-checkbox-item label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-checkbox-item label a:hover {
    border-bottom-color: var(--primary-color);
}

.legal-privacy-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 24px;
    border-radius: 16px;
    margin: 28px 0;
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.legal-privacy-info h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
}

.legal-privacy-info h3:hover {
    color: var(--primary-color);
}

.legal-privacy-info h3::after {
    content: '+';
    font-size: 28px;
    font-weight: 700;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.legal-privacy-info.active h3::after {
    transform: rotate(45deg);
}

.legal-privacy-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
}

.legal-privacy-info.active .legal-privacy-content {
    max-height: 600px;
    padding-top: 16px;
}

.legal-privacy-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-privacy-info ul {
    margin-left: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-privacy-info li {
    margin-bottom: 8px;
}

.legal-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 56, 92, 0.3);
}

.legal-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.legal-submit-btn:hover::before {
    left: 100%;
}

.legal-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 56, 92, 0.4);
}

.legal-submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.legal-submit-btn:disabled {
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.legal-submit-btn.loading {
    pointer-events: none;
}

.legal-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.legal-ssl-notice {
    text-align: center;
    margin-top: 20px;
    color: #27ae60;
    font-size: 0.95em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.legal-ssl-notice::before {
    content: "🔒";
    font-size: 18px;
}

.legal-error {
    color: var(--primary-color);
    font-size: 0.9em;
    margin-top: 8px;
    display: none;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.legal-form-group.error input,
.legal-form-group.error textarea,
.legal-form-group.error select {
    border-color: var(--primary-color);
    background: rgba(255, 56, 92, 0.05);
    animation: shake 0.4s ease;
}

.legal-form-group.error .legal-error {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legal-form-group.error .legal-error::before {
    content: '⚠️';
    font-size: 14px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.form-success.active {
    display: block;
}

.form-success .success-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-success h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-light);
    font-size: 16px;
}

/* ============================================
   DSGVO COOKIE BANNER STYLES
   ============================================ */

.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.cookie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.cookie-container {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-container::-webkit-scrollbar {
    width: 8px;
}

.cookie-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.cookie-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #b1363c, #667eea);
    border-radius: 8px;
}

.cookie-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #667eea, #b1363c);
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 32px 24px;
    border-bottom: 2px solid #F7F7F7;
    position: relative;
}

.cookie-icon {
    color: #b1363c;
    flex-shrink: 0;
}

.cookie-header h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #222222;
    margin: 0;
    flex: 1;
}

.cookie-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #717171;
}

.cookie-close:hover {
    background: #F7F7F7;
    color: #b1363c;
    transform: rotate(90deg);
}

.cookie-content {
    padding: 32px;
}

.cookie-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #717171;
    margin-bottom: 28px;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-category {
    background: #F7F7F7;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: #eeeeee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.category-info {
    flex: 1;
}

.category-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.category-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0;
}

.category-description {
    font-size: 14px;
    line-height: 1.5;
    color: #717171;
    margin: 0;
}

.cookie-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #F7F7F7;
    color: #717171;
}

.cookie-badge.required {
    background: linear-gradient(135deg, rgba(177, 54, 60, 0.1), rgba(102, 126, 234, 0.1));
    color: #b1363c;
    border: 1px solid rgba(177, 54, 60, 0.2);
}

.toggle-wrapper {
    position: relative;
    flex-shrink: 0;
}

.toggle-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    display: block;
    width: 56px;
    height: 32px;
    background: #d1d5db;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-wrapper input[type="checkbox"]:checked + .toggle-label {
    background: linear-gradient(135deg, #b1363c, #667eea);
}

.toggle-wrapper input[type="checkbox"]:checked + .toggle-label::after {
    left: 28px;
    box-shadow: 0 2px 8px rgba(177, 54, 60, 0.4);
}

.toggle-wrapper.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.toggle-wrapper.disabled .toggle-label {
    background: linear-gradient(135deg, #b1363c, #667eea);
    cursor: not-allowed;
}

.toggle-wrapper.disabled .toggle-label::after {
    left: 28px;
}

.cookie-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.cookie-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #717171;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cookie-links a svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.cookie-links a:hover {
    color: #b1363c;
}

.cookie-links a:hover svg {
    transform: scale(1.1);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    padding: 24px 32px 32px;
    border-top: 2px solid #F7F7F7;
}

.cookie-btn {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.cookie-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #b1363c, #667eea);
    color: white;
    box-shadow: 0 4px 12px rgba(177, 54, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(177, 54, 60, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: white;
    color: #222222;
    border: 2px solid #e5e7eb;
}

.btn-outline:hover {
    border-color: #b1363c;
    color: #b1363c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(177, 54, 60, 0.15);
}

.btn-outline:active {
    transform: translateY(0);
}

.cookie-settings-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #b1363c, #667eea);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(177, 54, 60, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    animation: fadeInButton 0.5s ease;
}

@keyframes fadeInButton {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-settings-btn svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cookie-settings-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 30px rgba(177, 54, 60, 0.5);
}

.cookie-settings-btn:active {
    transform: scale(1.05);
}

/* ============================================
   KINDERGEBURTSTAG SECTION
   ============================================ */

.kindergeburtstag-ultra {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, 
        #fdf4ff 0%, 
        #fef3f8 50%, 
        #fff8f0 100%);
    max-width: 100vw;
}

.gradient-bg-birthday {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    max-width: 100vw;
}

.gradient-bg-birthday .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.gradient-bg-birthday .orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    top: -5%;
    left: -5%;
}

.gradient-bg-birthday .orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #FFC371 0%, #FF5F6D 100%);
    top: 40%;
    right: -5%;
    animation-delay: 7s;
}

.gradient-bg-birthday .orb-3 {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #A8EDEA 0%, #FED6E3 100%);
    bottom: -10%;
    left: 25%;
    animation-delay: 14s;
}

.birthday-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.birthday-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #FF6B9D;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.12);
}

.birthday-header .badge-icon {
    font-size: 18px;
}

.birthday-header .section-title-ultra {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.15;
}

.birthday-header .title-highlight {
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.birthday-header .section-subtitle {
    font-size: 17px;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.birthday-quick-info {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.quick-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 157, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.quick-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.quick-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.quick-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-content strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.quick-content span {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.birthday-gallery-compact {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-width: 100%;
}

.gallery-main-image:hover img {
    transform: scale(1.05);
}

.gallery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #FF6B9D;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-thumbnails img {
    width: 100%;
    height: calc((400px - 32px) / 3);
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
}

.gallery-thumbnails img:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.birthday-features-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.feature-compact {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s ease;
}

.feature-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(255, 107, 157, 0.18);
    border-color: rgba(255, 107, 157, 0.3);
}

.feature-compact .feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-compact h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.feature-compact p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.birthday-activities {
    position: relative;
    z-index: 1;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 36px;
}

.birthday-activities h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
}

.activities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.activity-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.25);
    transition: all 0.3s ease;
}

.activity-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.35);
}

.birthday-important-info {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.info-block .info-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.info-block .info-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.info-block .info-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.notice-box {
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 195, 113, 0.2) 0%, rgba(255, 95, 109, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 195, 113, 0.35);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.notice-icon {
    font-size: 28px;
}

.notice-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.notice-box ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.notice-box li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.notice-box li:last-child {
    margin-bottom: 0;
}

.birthday-cta-center {
    position: relative;
    z-index: 1;
    text-align: center;
}

.btn-birthday-main {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 36px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.35);
}

.btn-birthday-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.45);
}

.btn-birthday-main .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.btn-birthday-main .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-birthday-main .btn-text strong {
    font-size: 18px;
    display: block;
}

.btn-birthday-main .btn-text small {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.btn-birthday-main .btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-birthday-main:hover .btn-arrow {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN - LOGO OPTIMIERT
   ============================================ */

@media (max-width: 1400px) {
    .nav-container {
        gap: 5rem;
    }
}

@media (max-width: 1200px) {
    .logo {
        height: 55px;
    }
    
    nav.scrolled .logo {
        height: 45px;
    }
    
    .nav-container {
        gap: 3rem;
    }
    
    .whatsapp-nav-btn {
        padding: 10px 18px !important;
        font-size: 14px !important;
    }
    
    .rooms-grid-ultra {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
    
    .gallery-grid-ultra {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-auto-rows: 260px;
    }
    
    .faq-grid-ultra {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whatsapp-cta-ultra {
        padding: 80px 20px;
    }
    
    .cta-ultra-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .cta-ultra-content {
        align-items: center;
    }

    .ultra-badge {
        margin: 0 auto;
    }

    .ultra-heading {
        align-items: center;
    }

    .feature-pills {
        justify-content: center;
    }

    .btn-text-wrapper {
        text-align: center;
    }

    .btn-call-text {
        align-items: center;
    }

    .social-proof {
        justify-content: center;
    }

    .cta-ultra-visual {
        display: flex;
        justify-content: center;
    }

    .phone-mockup {
        margin: 0 auto;
    }

    .floating-stat {
        display: none !important;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .logo {
        height: 48px;
    }
    
    nav.scrolled .logo {
        height: 40px;
    }
    
    nav {
        padding: 12px 20px;
    }
    
    .nav-container {
        gap: 2rem;
    }
    
    .whatsapp-nav-btn {
        padding: 9px 16px !important;
        font-size: 13px !important;
    }
    
    .whatsapp-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-number {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .kindergeburtstag-ultra {
        padding: 50px 0;
    }

    .birthday-header {
        margin-bottom: 30px;
    }

    .birthday-header .section-title-ultra {
        font-size: 38px;
    }

    .birthday-quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .birthday-gallery-compact {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .gallery-main-image {
        height: 350px;
    }

    .gallery-thumbnails {
        flex-direction: row;
    }

    .gallery-thumbnails img {
        height: 140px;
    }

    .birthday-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 30px;
    }

    .birthday-activities {
        margin-bottom: 30px;
    }

    .birthday-important-info {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .info-column {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    /* Kritische Fixes für horizontales Scrollen */
    .logo {
        height: 42px !important;
    }
    
    nav.scrolled .logo {
        height: 36px !important;
    }
    
    nav {
        padding: 10px 16px;
    }
    
    .nav-container {
        gap: 1rem;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        justify-content: flex-start;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .whatsapp-nav-btn {
        width: 100%;
        padding: 14px 24px !important;
        margin-top: 20px;
        border-radius: 12px !important;
        justify-content: center;
    }
    
    .nav-menu .whatsapp-number {
        display: inline !important;
    }
    
    /* Hero Section Mobile */
    .hero-ultra {
        min-height: 100vh;
        padding: 100px 20px 60px;
    }

    .hero-title-ultra {
        font-size: 42px;
    }

    .hero-description-ultra {
        font-size: 16px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        gap: 16px;
    }

    .hero-feature {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    /* Sections */
    .rooms-ultra,
    .gallery-ultra,
    .faq-ultra {
        padding: 80px 20px;
    }

    .rooms-header,
    .gallery-header,
    .faq-header {
        margin-bottom: 40px;
    }

    .section-title-ultra {
        font-size: 32px;
    }

    .section-description-ultra {
        font-size: 16px;
    }

    .room-filter,
    .gallery-filter,
    .faq-categories {
        gap: 8px;
        margin-bottom: 40px;
    }

    .filter-btn,
    .gallery-filter-btn,
    .faq-category-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .rooms-grid-ultra {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .room-image-wrapper {
        height: 240px;
    }

    .room-header-info {
        flex-direction: column;
    }

    .room-price-wrapper {
        align-self: flex-start;
    }

    .room-title-ultra {
        font-size: 20px;
    }

    .price-amount {
        font-size: 28px;
    }

    .room-actions {
        flex-direction: column;
    }

    .btn-book-ultra,
    .btn-details-ultra {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .gallery-grid-ultra {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 16px;
    }

    .gallery-item-ultra.wide,
    .gallery-item-ultra.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .lightbox-close,
    .lightbox-nav {
        width: 48px;
        height: 48px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 16px;
    }

    .lightbox-next {
        right: 16px;
    }
    
    .faq-item-ultra.active .faq-answer-ultra {
        padding: 0 20px 20px 20px;
    }

    .faq-question-ultra {
        padding: 20px;
        flex-wrap: wrap;
    }

    .faq-question-ultra h3 {
        font-size: 16px;
        width: 100%;
        margin-top: 8px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-cta {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .faq-cta-content h3 {
        font-size: 24px;
    }

    .faq-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-faq-whatsapp,
    .btn-faq-contact {
        width: 100%;
        justify-content: center;
    }
    
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-card {
        padding: 24px;
    }

    .contact-info-card h3 {
        font-size: 18px;
    }

    .contact-info-item {
        padding: 12px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .ultra-heading {
        font-size: 36px;
    }

    .ultra-description {
        font-size: 16px;
    }

    .btn-whatsapp-ultra {
        padding: 18px 24px;
        border-radius: 16px;
    }

    .btn-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .btn-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .btn-main-text {
        font-size: 17px;
    }

    .btn-sub-text {
        font-size: 12px;
    }

    .btn-arrow {
        display: none;
    }

    .btn-call {
        padding: 16px 20px;
        border-radius: 12px;
    }

    .btn-call-icon {
        font-size: 28px;
    }

    .btn-call-number {
        font-size: 16px;
    }

    .social-proof {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
        text-align: center;
    }

    .proof-avatars {
        margin-left: 0;
        justify-content: center;
    }

    .avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
        margin-left: -6px;
    }

    .proof-stars {
        font-size: 13px;
    }

    .proof-desc {
        font-size: 12px;
    }

    .phone-frame {
        width: 280px;
        height: 580px;
        padding: 10px;
        border-radius: 40px;
    }

    .phone-notch {
        width: 100px;
        height: 24px;
        top: 10px;
        border-radius: 0 0 16px 16px;
    }

    .phone-screen {
        border-radius: 32px;
    }

    .chat-header {
        padding: 45px 16px 14px;
    }

    .chat-avatar {
        width: 40px;
        height: 40px;
    }

    .chat-avatar svg {
        width: 24px;
        height: 24px;
    }

    .chat-name {
        font-size: 15px;
    }

    .chat-status {
        font-size: 11px;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }

    .chat-messages {
        padding: 16px 12px;
        gap: 10px;
    }

    .message-bubble {
        padding: 10px 14px;
        font-size: 13px;
        max-width: 85%;
    }

    .message-time {
        font-size: 10px;
    }

    .typing-indicator span {
        width: 6px;
        height: 6px;
    }

    /* Gradient Orbs Mobile Fix */
    .gradient-bg .orb-1,
    .gradient-bg .orb-2,
    .gradient-bg .orb-3 {
        filter: blur(60px);
    }

    .gradient-bg .orb-1 {
        width: 250px;
        height: 250px;
        top: 0;
        left: 0;
        transform: translate(-40%, -40%);
    }

    .gradient-bg .orb-2 {
        width: 200px;
        height: 200px;
        bottom: 0;
        right: 0;
        transform: translate(40%, 40%);
    }

    .gradient-bg .orb-3 {
        width: 220px;
        height: 220px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Pattern Circles ausblenden */
    .pattern-circle {
        display: none !important;
    }
    
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .trust-badge {
        padding: 24px 16px;
    }

    .trust-badge strong {
        font-size: 22px;
    }

    .trust-section .section-title {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card::before {
        font-size: 60px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float-text {
        display: none;
    }
    
    .footer-newsletter {
        padding: 60px 24px 40px;
    }

    .newsletter-content h3 {
        font-size: 28px;
    }

    .newsletter-content p {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        max-width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 12px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
    
    .legal-contact-form {
        padding: 32px 24px;
    }

    .legal-contact-form h2 {
        font-size: 1.8em;
    }

    .legal-contact-form .subtitle {
        font-size: 1em;
    }

    .legal-form-group input,
    .legal-form-group textarea,
    .legal-form-group select {
        padding: 14px 16px;
        font-size: 0.95em;
    }

    .date-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .legal-checkbox-group {
        padding: 16px;
        margin: 24px 0;
    }

    .legal-checkbox-item {
        padding: 10px;
        margin-bottom: 14px;
    }

    .legal-checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }

    .legal-checkbox-item label {
        font-size: 0.9em;
    }

    .legal-privacy-info {
        padding: 20px;
        margin: 24px 0;
    }

    .legal-privacy-info h3 {
        font-size: 1em;
    }

    .legal-privacy-info h3::after {
        font-size: 24px;
    }

    .legal-privacy-info p,
    .legal-privacy-info li {
        font-size: 0.9em;
    }

    .legal-submit-btn {
        padding: 16px 32px;
        font-size: 1em;
    }

    .legal-ssl-notice {
        font-size: 0.85em;
        margin-top: 16px;
    }

    .legal-ssl-notice::before {
        font-size: 16px;
    }

    .form-success .success-icon {
        font-size: 60px;
    }

    .form-success h3 {
        font-size: 22px;
    }

    .form-success p {
        font-size: 14px;
    }

    .legal-form-group label {
        font-size: 0.9em;
    }

    .legal-form-group .field-hint {
        font-size: 0.8em;
    }

    .legal-form-group .field-hint::before {
        font-size: 12px;
    }

    .legal-error {
        font-size: 0.85em;
    }

    /* Cookie Banner Mobile */
    .cookie-container {
        max-width: 100%;
        max-height: 95vh;
        margin: 0 10px;
        border-radius: 12px;
    }

    .cookie-header {
        padding: 24px 20px 20px;
    }

    .cookie-header h2 {
        font-size: 22px;
    }

    .cookie-icon {
        width: 36px;
        height: 36px;
    }

    .cookie-close {
        top: 20px;
        right: 20px;
    }

    .cookie-content {
        padding: 24px 20px;
    }

    .cookie-description {
        font-size: 15px;
    }

    .cookie-category {
        padding: 16px;
    }

    .category-header {
        flex-direction: column;
        gap: 12px;
    }

    .category-header h3 {
        font-size: 16px;
    }

    .category-description {
        font-size: 13px;
    }

    .toggle-wrapper {
        align-self: flex-start;
    }

    .cookie-actions {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        font-size: 15px;
        padding: 14px 20px;
    }

    .cookie-settings-btn {
        bottom: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
    }

    .cookie-links {
        flex-direction: column;
        gap: 12px;
    }

    /* Kindergeburtstag Mobile */
    .kindergeburtstag-ultra {
        padding: 40px 0;
    }

    .gradient-bg-birthday .orb-1,
    .gradient-bg-birthday .orb-2,
    .gradient-bg-birthday .orb-3 {
        width: 150px !important;
        height: 150px !important;
        filter: blur(60px) !important;
    }

    .gradient-bg-birthday .orb-1 {
        top: -50px !important;
        left: -50px !important;
    }

    .gradient-bg-birthday .orb-2 {
        top: 40% !important;
        right: -50px !important;
    }

    .gradient-bg-birthday .orb-3 {
        bottom: -50px !important;
        left: 20% !important;
    }

    .birthday-header {
        margin-bottom: 20px;
    }

    .birthday-header .section-badge {
        padding: 6px 14px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .birthday-header .badge-icon {
        font-size: 16px;
    }

    .birthday-header .section-title-ultra {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .birthday-header .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .birthday-quick-info {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .quick-info-card {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 14px;
    }

    .quick-icon {
        font-size: 30px;
    }

    .quick-content strong {
        font-size: 14px;
    }

    .quick-content span {
        font-size: 10px;
    }

    .birthday-gallery-compact {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .gallery-main-image {
        height: 240px;
        border-radius: 16px;
    }

    .gallery-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .gallery-thumbnails {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-thumbnails img {
        height: 160px;
        border-radius: 14px;
    }

    .birthday-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .feature-compact {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .feature-compact .feature-icon {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .feature-compact h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .feature-compact p {
        font-size: 13px;
        line-height: 1.5;
    }

    .birthday-activities {
        padding: 16px 18px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .birthday-activities h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .activities-grid {
        gap: 8px;
    }

    .activity-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .birthday-important-info {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .info-column {
        gap: 12px;
    }

    .info-block {
        padding: 16px;
        gap: 12px;
        border-radius: 16px;
    }

    .info-block .info-icon {
        font-size: 30px;
    }

    .info-block .info-text h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .info-block .info-text p {
        font-size: 13px;
        line-height: 1.5;
    }

    .notice-box {
        padding: 16px;
        border-radius: 16px;
    }

    .notice-header {
        gap: 8px;
        margin-bottom: 10px;
    }

    .notice-icon {
        font-size: 24px;
    }

    .notice-box h4 {
        font-size: 16px;
    }

    .notice-box ul {
        padding-left: 16px;
    }

    .notice-box li {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 6px;
    }

    .btn-birthday-main {
        width: 100%;
        padding: 16px 20px;
        gap: 12px;
        border-radius: 16px;
    }

    .btn-birthday-main .btn-icon {
        width: 40px;
        height: 40px;
    }

    .btn-birthday-main .btn-icon svg {
        width: 20px;
        height: 20px;
    }

    .btn-birthday-main .btn-text strong {
        font-size: 15px;
    }

    .btn-birthday-main .btn-text small {
        font-size: 11px;
    }

    .btn-birthday-main .btn-arrow {
        font-size: 18px;
    }

    /* Hover Effekte deaktivieren auf Touch */
    .quick-info-card:hover,
    .feature-compact:hover,
    .activity-tag:hover,
    .gallery-thumbnails img:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 36px !important;
    }
    
    nav.scrolled .logo {
        height: 32px !important;
    }
    
    nav {
        padding: 8px 12px;
    }
    
    .mobile-menu-toggle {
        width: 32px;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2.5px;
    }
    
    .nav-menu {
        width: 85%;
        padding: 70px 20px 20px;
    }
    
    .hero-title-ultra {
        font-size: 36px;
    }
    
    .section-title-ultra {
        font-size: 28px;
    }

    .room-content-wrapper {
        padding: 20px;
    }

    .feature-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .ultra-heading {
        font-size: 28px;
    }

    .ultra-description {
        font-size: 15px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .btn-whatsapp-ultra {
        padding: 16px 20px;
    }

    .btn-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .btn-main-text {
        font-size: 16px;
    }

    .btn-sub-text {
        font-size: 11px;
    }

    .btn-call {
        padding: 14px 16px;
        gap: 12px;
    }

    .btn-call-icon {
        font-size: 24px;
    }

    .btn-call-label {
        font-size: 11px;
    }

    .btn-call-number {
        font-size: 15px;
    }

    .feature-pills {
        gap: 6px;
    }

    .pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
        padding: 8px;
        border-radius: 35px;
    }

    .phone-notch {
        width: 85px;
        height: 22px;
        top: 8px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .chat-header {
        padding: 40px 12px 12px;
    }

    .chat-avatar {
        width: 36px;
        height: 36px;
    }

    .chat-name {
        font-size: 14px;
    }

    .chat-messages {
        padding: 12px 10px;
    }

    .message-bubble {
        padding: 8px 12px;
        font-size: 12px;
    }

    .social-proof {
        padding: 12px;
    }

    .avatar {
        width: 32px;
        height: 32px;
        font-size: 11px;
        border-width: 2px;
    }

    .proof-desc {
        font-size: 11px;
    }

    /* Kleinere Orbs für kleine Displays */
    .gradient-bg .orb-1 {
        width: 180px;
        height: 180px;
    }

    .gradient-bg .orb-2 {
        width: 150px;
        height: 150px;
    }

    .gradient-bg .orb-3 {
        width: 160px;
        height: 160px;
    }
    
    .legal-contact-form {
        padding: 24px 16px;
    }

    .legal-contact-form h2 {
        font-size: 1.5em;
    }

    .legal-contact-form .subtitle {
        font-size: 0.95em;
        margin-bottom: 32px;
    }

    .legal-form-group {
        margin-bottom: 20px;
    }

    .legal-form-group input,
    .legal-form-group textarea,
    .legal-form-group select {
        padding: 12px 14px;
        font-size: 0.9em;
    }

    .legal-checkbox-group {
        padding: 14px;
        margin: 20px 0;
    }

    .legal-checkbox-item {
        padding: 8px;
        margin-bottom: 12px;
    }

    .legal-checkbox-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

    .legal-checkbox-item label {
        font-size: 0.85em;
        line-height: 1.5;
    }

    .legal-privacy-info {
        padding: 16px;
        margin: 20px 0;
    }

    .legal-privacy-info h3 {
        font-size: 0.95em;
    }

    .legal-privacy-info h3::after {
        font-size: 22px;
    }

    .legal-privacy-info p,
    .legal-privacy-info li {
        font-size: 0.85em;
    }

    .legal-submit-btn {
        padding: 14px 28px;
        font-size: 0.95em;
    }

    .legal-ssl-notice {
        font-size: 0.8em;
        margin-top: 14px;
    }

    .form-success .success-icon {
        font-size: 50px;
    }

    .form-success h3 {
        font-size: 20px;
    }

    .form-success p {
        font-size: 13px;
    }

    /* Cookie Banner */
    .cookie-header h2 {
        font-size: 20px;
    }

    .cookie-description {
        font-size: 14px;
    }

    .category-header h3 {
        font-size: 15px;
    }

    .cookie-btn {
        font-size: 14px;
        padding: 12px 18px;
    }

    /* Kindergeburtstag */
    .kindergeburtstag-ultra {
        padding: 30px 0;
    }

    .birthday-header {
        margin-bottom: 16px;
    }

    .birthday-header .section-title-ultra {
        font-size: 24px;
    }

    .birthday-header .section-subtitle {
        font-size: 13px;
    }

    .birthday-quick-info {
        gap: 8px;
        margin-bottom: 16px;
    }

    .quick-info-card {
        padding: 10px 12px;
    }

    .birthday-gallery-compact {
        gap: 8px;
        margin-bottom: 16px;
    }

    .gallery-main-image {
        height: 200px;
    }

    .gallery-thumbnails {
        gap: 8px;
    }

    .gallery-thumbnails img {
        height: 140px;
    }

    .birthday-features-grid {
        gap: 10px;
        margin-bottom: 16px;
    }

    .feature-compact {
        padding: 16px 14px;
    }

    .feature-compact .feature-icon {
        font-size: 34px;
    }

    .feature-compact h3 {
        font-size: 16px;
    }

    .feature-compact p {
        font-size: 12px;
    }

    .birthday-activities {
        padding: 14px 16px;
        margin-bottom: 16px;
    }

    .birthday-activities h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .activity-tag {
        font-size: 11px;
        padding: 7px 12px;
    }

    .birthday-important-info {
        gap: 10px;
        margin-bottom: 16px;
    }

    .info-column {
        gap: 10px;
    }

    .info-block {
        padding: 14px;
    }

    .info-block .info-text h4 {
        font-size: 15px;
    }

    .info-block .info-text p {
        font-size: 12px;
    }

    .notice-box {
        padding: 14px;
    }

    .notice-box h4 {
        font-size: 15px;
    }

    .notice-box li {
        font-size: 12px;
    }

    .btn-birthday-main {
        padding: 14px 18px;
    }

    .btn-birthday-main .btn-text strong {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .logo {
        height: 32px !important;
    }
    
    nav.scrolled .logo {
        height: 28px !important;
    }
    
    nav {
        padding: 8px 10px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
    }
    
    .hero-title-ultra {
        font-size: 32px;
    }
    
    .ultra-heading {
        font-size: 24px;
    }
    
    .legal-contact-form {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .legal-contact-form h2 {
        font-size: 1.3em;
    }

    .legal-contact-form .subtitle {
        font-size: 0.9em;
    }

    .legal-form-group input,
    .legal-form-group textarea,
    .legal-form-group select {
        padding: 10px 12px;
        font-size: 0.85em;
        border-radius: 8px;
    }

    .legal-submit-btn {
        padding: 12px 24px;
        font-size: 0.9em;
        border-radius: 40px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .logo {
        height: 36px !important;
    }
    
    nav.scrolled .logo {
        height: 32px !important;
    }
    
    nav {
        padding: 6px 16px;
    }
    
    .whatsapp-cta-ultra {
        padding: 40px 16px;
    }
    
    .cta-ultra-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .cta-ultra-content {
        align-items: flex-start;
    }
    
    .ultra-badge {
        margin: 0;
    }
    
    .ultra-heading {
        font-size: 28px;
        align-items: flex-start;
    }
    
    .feature-pills {
        justify-content: flex-start;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .hero-ultra {
        padding: 80px 20px 50px;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.nav-menu .mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu .mobile-only {
        display: block;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

html {
    scroll-padding-top: 80px;
}

::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #667eea, var(--primary-color));
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline-offset: 2px;
}

@media print {
    nav,
    .whatsapp-float,
    .footer-newsletter,
    .hero-scroll-indicator {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    * {
        box-shadow: none !important;
    }
}

@media (prefers-color-scheme: dark) {
    .cookie-container {
        background: #1f2937;
        color: #f3f4f6;
    }

    .cookie-header {
        border-bottom-color: #374151;
    }

    .cookie-header h2 {
        color: #f3f4f6;
    }

    .cookie-description,
    .category-description {
        color: #d1d5db;
    }

    .cookie-category {
        background: #374151;
    }

    .cookie-category:hover {
        background: #4b5563;
    }

    .category-header h3 {
        color: #f3f4f6;
    }

    .cookie-actions {
        border-top-color: #374151;
    }

    .btn-outline {
        background: #374151;
        color: #f3f4f6;
        border-color: #4b5563;
    }

    .cookie-links a {
        color: #d1d5db;
    }

    .cookie-links {
        border-top-color: #4b5563;
    }
}
/* ============================================
   KINDERGEBURTSTAG TEASER (INDEX.PHP)
   ============================================ */
.kindergeburtstag-teaser {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.birthday-teaser-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.birthday-teaser-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 24px auto 32px;
    max-width: 700px;
}

.birthday-teaser-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 32px auto;
    max-width: 900px;
}

.fact-item {
    background: white;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.birthday-teaser-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px auto;
    flex-wrap: wrap;
    max-width: 600px;
}

.btn-primary-ultra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #d32f2f);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(177, 54, 60, 0.4);
    min-width: 200px;
}

.btn-primary-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(177, 54, 60, 0.5);
}

.btn-whatsapp-teaser {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    min-width: 200px;
}

.btn-whatsapp-teaser:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.birthday-teaser-image {
    max-width: 800px;
    margin: 48px auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}

.birthday-teaser-image img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
}

.teaser-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .kindergeburtstag-teaser {
        padding: 60px 20px;
    }
    
    .birthday-teaser-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kindergeburtstag-teaser {
        padding: 50px 16px;
    }
    
    .birthday-teaser-content {
        padding: 0;
    }
    
    .birthday-teaser-text {
        font-size: 16px;
        line-height: 1.6;
        margin: 20px auto 24px;
    }
    
    .birthday-teaser-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 24px auto;
    }
    
    .fact-item {
        font-size: 13px;
        padding: 12px 16px;
        white-space: normal;
        text-align: center;
    }
    
    .birthday-teaser-buttons {
        flex-direction: column;
        gap: 12px;
        margin: 32px auto;
    }
    
    .btn-primary-ultra,
    .btn-whatsapp-teaser {
        width: 100%;
        max-width: 400px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .birthday-teaser-image {
        margin: 32px auto 0;
        border-radius: 16px;
        max-height: 300px;
    }
    
    .teaser-badge {
        top: 12px;
        right: 12px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .kindergeburtstag-teaser {
        padding: 40px 12px;
    }
    
    .birthday-teaser-text {
        font-size: 15px;
    }
    
    .birthday-teaser-facts {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .fact-item {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .btn-primary-ultra,
    .btn-whatsapp-teaser {
        padding: 13px 20px;
        font-size: 14px;
    }
    
    .birthday-teaser-image {
        border-radius: 12px;
    }
    
    .teaser-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ============================================
   KINDERGEBURTSTAG SEITE (KINDERGEBURTSTAG.PHP)
   ============================================ */
.hero-birthday-page {
    min-height: 70vh;
    background: linear-gradient(135deg, #4f5563d0 0%, #35414ee8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero-birthday-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgages/Kindergeburtstag(4).jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-birthday-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(238, 71, 102, 0.15) 0%, transparent 50%);
}

.hero-birthday-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-birthday-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-secondary-ultra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    min-width: 200px;
}

.btn-secondary-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.birthday-quick-section {
    padding: 60px 24px;
    background: white;
}

.birthday-gallery-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.birthday-features-section {
    padding: 80px 24px;
    background: white;
}

.birthday-activities-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.birthday-schedule {
    max-width: 800px;
    margin: 60px auto 0;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.birthday-schedule h3 {
    font-size: 24px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--secondary-color);
}

.schedule-timeline {
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), #667eea);
}

.schedule-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-time {
    min-width: 80px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.schedule-time::after {
    content: '';
    position: absolute;
    left: 75px;
    top: 5px;
    width: 13px;
    height: 13px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.schedule-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.schedule-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.birthday-pricing-section {
    padding: 80px 24px;
    background: white;
}

.birthday-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 48px auto 0;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .price {
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: white;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(177, 54, 60, 0.4);
}

.birthday-info-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.birthday-faq-section {
    padding: 80px 24px;
    background: white;
}

.faq-grid-birthday {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.birthday-cta-final {
    padding: 100px 24px;
    background: linear-gradient(135deg, #4f5563 0%, #35414e 100%);
    color: white;
    text-align: center;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-content h2 {
    color: white;
    margin-bottom: 24px;
}

.cta-final-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* ============================================
   TABLET RESPONSIVE (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .birthday-quick-section,
    .birthday-gallery-section,
    .birthday-features-section,
    .birthday-activities-section,
    .birthday-pricing-section,
    .birthday-info-section,
    .birthday-faq-section {
        padding: 60px 20px;
    }
    
    .birthday-cta-final {
        padding: 80px 20px;
    }
    
    .birthday-pricing-cards {
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .faq-grid-birthday {
        grid-template-columns: 1fr;
    }
    
    .birthday-schedule {
        padding: 32px;
    }
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .hero-birthday-page {
        min-height: 60vh;
        padding: 120px 16px 60px;
    }
    
    .hero-birthday-content .hero-title-ultra {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-birthday-content .hero-description-ultra {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .hero-birthday-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }
    
    .btn-primary-ultra,
    .btn-secondary-ultra {
        width: 100%;
        max-width: 400px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .birthday-quick-section,
    .birthday-gallery-section,
    .birthday-features-section,
    .birthday-activities-section,
    .birthday-pricing-section,
    .birthday-info-section,
    .birthday-faq-section {
        padding: 50px 16px;
    }
    
    .birthday-cta-final {
        padding: 70px 16px;
    }
    
    .section-title-ultra {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .title-highlight {
        display: inline;
    }
    
    /* Quick Info Cards */
    .birthday-quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .quick-info-card {
        padding: 16px 12px;
    }
    
    .quick-icon {
        font-size: 28px;
    }
    
    .quick-content strong {
        font-size: 14px;
    }
    
    .quick-content span {
        font-size: 12px;
    }
    
    /* Gallery */
    .birthday-gallery-compact {
        gap: 12px;
    }
    
    .gallery-main-image {
        height: 250px;
        border-radius: 16px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .gallery-thumbnails img {
        height: 120px;
        border-radius: 12px;
    }
    
    /* Features */
    .birthday-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-compact {
        padding: 24px 20px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .feature-compact h3 {
        font-size: 18px;
    }
    
    /* Activities */
    .birthday-activities h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .activities-grid {
        gap: 8px;
    }
    
    .activity-tag {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    /* Schedule */
    .birthday-schedule {
        padding: 24px 16px;
        border-radius: 16px;
        margin: 40px auto 0;
    }
    
    .birthday-schedule h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .schedule-timeline::before {
        left: 70px;
    }
    
    .schedule-item {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .schedule-time {
        min-width: 70px;
        font-size: 14px;
    }
    
    .schedule-time::after {
        left: 65px;
        width: 11px;
        height: 11px;
    }
    
    .schedule-content h4 {
        font-size: 16px;
    }
    
    .schedule-content p {
        font-size: 14px;
    }
    
    /* Pricing */
    .birthday-pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-header h3 {
        font-size: 22px;
    }
    
    .pricing-price .price {
        font-size: 32px;
    }
    
    .pricing-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    /* Info Section */
    .birthday-important-info {
        gap: 20px;
    }
    
    .info-block {
        padding: 20px;
    }
    
    .info-icon {
        font-size: 32px;
    }
    
    .info-block h4 {
        font-size: 16px;
    }
    
    .info-block p {
        font-size: 14px;
    }
    
    .notice-box {
        padding: 20px;
    }
    
    .notice-box h4 {
        font-size: 16px;
    }
    
    .notice-box li {
        font-size: 14px;
    }
    
    /* FAQ */
    .faq-grid-birthday {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-question-ultra h3 {
        font-size: 16px;
    }
    
    .faq-answer-ultra p {
        font-size: 14px;
    }
    
    /* Final CTA */
    .cta-final-content h2 {
        font-size: 32px;
    }
    
    .cta-final-content p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .cta-final-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
        max-width: 400px;
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ============================================
   SMALL MOBILE RESPONSIVE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-birthday-page {
        min-height: 50vh;
        padding: 100px 12px 50px;
    }
    
    .hero-birthday-content .hero-title-ultra {
        font-size: 28px;
    }
    
    .hero-birthday-content .hero-description-ultra {
        font-size: 15px;
    }
    
    .section-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .birthday-quick-section,
    .birthday-gallery-section,
    .birthday-features-section,
    .birthday-activities-section,
    .birthday-pricing-section,
    .birthday-info-section,
    .birthday-faq-section {
        padding: 40px 12px;
    }
    
    .birthday-cta-final {
        padding: 60px 12px;
    }
    
    .section-title-ultra {
        font-size: 26px;
    }
    
    /* Quick Info Cards */
    .birthday-quick-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .quick-info-card {
        padding: 14px;
    }
    
    /* Gallery */
    .gallery-main-image {
        height: 200px;
        border-radius: 12px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .gallery-thumbnails img {
        height: 180px;
    }
    
    /* Features */
    .feature-compact {
        padding: 20px 16px;
    }
    
    .feature-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .feature-compact h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .feature-compact p {
        font-size: 14px;
    }
    
    /* Activities */
    .birthday-activities {
        padding: 20px 16px;
    }
    
    .birthday-activities h3 {
        font-size: 18px;
    }
    
    .activity-tag {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    /* Schedule */
    .birthday-schedule {
        padding: 20px 12px;
    }
    
    .birthday-schedule h3 {
        font-size: 18px;
    }
    
    .schedule-timeline::before {
        display: none;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .schedule-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .schedule-time {
        min-width: auto;
        font-size: 15px;
    }
    
    .schedule-time::after {
        display: none;
    }
    
    .schedule-content h4 {
        font-size: 15px;
    }
    
    .schedule-content p {
        font-size: 13px;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pricing-header h3 {
        font-size: 20px;
    }
    
    .pricing-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .pricing-price .price {
        font-size: 28px;
    }
    
    .pricing-features {
        margin-bottom: 24px;
    }
    
    .pricing-features li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .btn-pricing {
        padding: 14px;
        font-size: 15px;
    }
    
    /* Info Section */
    .info-block,
    .notice-box {
        padding: 16px;
        border-radius: 12px;
    }
    
    .info-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .info-block h4,
    .notice-box h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .info-block p,
    .notice-box li {
        font-size: 13px;
    }
    
    /* FAQ */
    .faq-item-ultra {
        border-radius: 16px;
        margin-bottom: 12px;
    }
    
    .faq-question-ultra {
        padding: 18px 20px;
        gap: 12px;
    }
    
    .faq-question-ultra h3 {
        font-size: 16px;
        line-height: 1.3;
        padding-right: 8px;
    }
    
    .faq-icon-ultra {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 20px;
    }
    
    .faq-item-ultra.active .faq-answer-ultra {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-ultra p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Final CTA */
    .cta-final-content h2 {
        font-size: 26px;
    }
    
    .cta-final-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-large svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   LANDSCAPE MODE FÜR MOBILE
   ============================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-birthday-page {
        min-height: 100vh;
        padding: 100px 16px 40px;
    }
    
    .hero-birthday-content .hero-title-ultra {
        font-size: 32px;
    }
    
    .hero-birthday-buttons {
        flex-direction: row;
    }
}