/* ===================================
   PREMIUM DESIGN ENHANCEMENTS
   Praxis Fuchs - Ultra Edition
   =================================== */

/* ===================================
   LUXURIOUS TYPOGRAPHY
   =================================== */

:root {
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
}

h1, h2, h3 {
    letter-spacing: -0.02em;
    font-weight: 400;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(44, 36, 32, 0.85);
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(44, 36, 32, 0.9);
}

/* ===================================
   ENHANCED HERO SECTION
   =================================== */

.hero-modern {
    min-height: 95vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-modern {
    max-width: 900px;
    animation: hero-entrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hero-entrance {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-modern h2 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

/* ===================================
   STAGGERED CARD ANIMATIONS
   =================================== */

.service-card-modern {
    animation: card-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-card-modern:nth-child(1) { animation-delay: 0.1s; }
.service-card-modern:nth-child(2) { animation-delay: 0.2s; }
.service-card-modern:nth-child(3) { animation-delay: 0.3s; }
.service-card-modern:nth-child(4) { animation-delay: 0.4s; }

@keyframes card-reveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===================================
   GLOW EFFECTS
   =================================== */

.btn-modern:hover {
    box-shadow: 
        0 8px 32px rgba(138, 109, 93, 0.3),
        0 0 0 1px rgba(138, 109, 93, 0.1),
        0 0 60px rgba(138, 109, 93, 0.15);
}

.service-card-modern:hover {
    box-shadow: 
        0 20px 60px rgba(138, 109, 93, 0.25),
        0 0 0 1px rgba(138, 109, 93, 0.05);
}

/* ===================================
   FLOATING CTA BAR
   =================================== */

.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.25rem 2rem;
    box-shadow: 0 -4px 20px rgba(138, 109, 93, 0.15);
    z-index: 999;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(138, 109, 93, 0.1);
}

/* Mobile: Floating CTA verstecken */
@media (max-width: 768px) {
    .floating-cta {
        display: none !important;
    }
}

.floating-cta.visible {
    bottom: 0;
}

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

.floating-cta-text h3 {
    font-size: 1.25rem;
    margin: 0 0 0.25rem 0;
    color: var(--primary-brown);
}

.floating-cta-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(44, 36, 32, 0.7);
}

.floating-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ===================================
   TRUST BADGES
   =================================== */

.trust-section {
    padding: 4rem 2rem;
    background: var(--light-beige);
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-badge-icon {
    font-size: 2.5rem;
}

.trust-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-brown);
    text-align: center;
    line-height: 1.4;
}

.trust-badge-subtext {
    font-size: 0.8rem;
    color: rgba(44, 36, 32, 0.6);
    margin-top: 0.25rem;
}

/* ===================================
   ENHANCED WHATSAPP BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    text-decoration: none !important;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: whatsapp-ripple 2s infinite;
}

.whatsapp-float::after {
    content: '💬';
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 
        0 6px 30px rgba(37, 211, 102, 0.5),
        0 0 0 0 rgba(37, 211, 102, 0.4);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes whatsapp-ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===================================
   GRADIENT OVERLAYS
   =================================== */

.gradient-overlay {
    position: relative;
}

.gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(138, 109, 93, 0.05) 0%,
        transparent 50%,
        rgba(201, 168, 130, 0.05) 100%
    );
    pointer-events: none;
    border-radius: inherit;
}

/* ===================================
   SECTION DIVIDERS
   =================================== */

.section-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(138, 109, 93, 0.2) 50%,
        transparent 100%
    );
    margin: 4rem 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    margin-top: 3rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 80px;
    color: var(--accent-gold);
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(44, 36, 32, 0.85);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-brown);
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-brown);
}

.testimonial-info p {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: rgba(44, 36, 32, 0.6);
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(44, 36, 32, 0.7);
    font-weight: 500;
}

/* ===================================
   LUXURY SPACING
   =================================== */

.section-luxury {
    padding: 8rem 2rem;
}

.container-luxury {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===================================
   RESPONSIVE PREMIUM
   =================================== */

@media (max-width: 768px) {
    .floating-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .floating-cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .floating-cta-buttons .btn-modern {
        width: 100%;
    }
    
    .trust-badges {
        gap: 1.5rem;
    }
    
    .trust-badge {
        padding: 1rem;
        min-width: 140px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .section-luxury {
        padding: 5rem 1.5rem;
    }
}
