/*
Theme Name: Flo Krop Coaching
Theme URI: https://flokrop-coaching.de
Author: Flo Krop
Description: Premium Coaching Landing Page Theme mit individuellen Coaching-Paketen
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flo-krop
Tags: coaching, fitness, landing-page, one-page, responsive
*/

:root {
    --primary: #000000;
    --accent: #5cb85c;
    --accent-hover: #4a9d4a;
    --accent-light: #6ec46e;
    --gold: #f4b942;
    --text: #1a1a1a;
    --text-light: #666666;
    --bg: #ffffff;
    --bg-light: #fafafa;
    
    /* Logo URL für Hintergrund */
    --logo-url: url('https://performance-coach-flo.de/wp-content/uploads/2025/10/cropped-cropped-cropped-PHOTO-2025-10-09-21-22-21-1.jpeg');
    
    /* Mobile Viewport Height Variable */
    --vh: 1vh;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-color: #000000;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* WordPress Admin Bar Fix */
body.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}

header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    color: white;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* WordPress Custom Logo Fix */
.custom-logo-link img,
.custom-logo {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    object-fit: contain !important;
}

.logo:hover {
    transform: scale(1.03);
}

.logo span {
    color: var(--accent);
}

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

nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

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

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    box-shadow: 0 10px 40px rgba(92, 184, 92, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(92, 184, 92, 0.6);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 25px 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: transform 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.cookie-text {
    font-size: 15px;
    max-width: 800px;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
}

.whatsapp-btn svg {
    width: 38px;
    height: 38px;
    fill: white;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
    }
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    min-height: -webkit-fill-available;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    padding: 140px 60px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(92,184,92,0.15) 0%, transparent 50%);
    animation: gradientShift 10s ease infinite;
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    background-image: var(--logo-url);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    animation: floatLogo 20s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(5deg); }
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.2s;
}

.hero h1 .highlight {
    color: var(--accent);
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 55px;
    max-width: 750px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.4s;
}

.cta-primary {
    display: inline-block;
    padding: 24px 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(92, 184, 92, 0.4);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(92, 184, 92, 0.6);
}

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

/* ========== TRUST BAR ========== */
.trust-bar {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 70px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.trust-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.trust-item {
    transition: all 0.6s ease;
}

.trust-item.animate {
    animation: fadeInUp 0.8s ease;
}

.trust-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    transition: all 0.3s;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(1.3);
}

.trust-item:hover h3 {
    transform: scale(1.05);
}

.trust-item p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 500;
}

/* ========== SECTIONS ========== */
section {
    padding: 140px 60px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 100px;
    transition: all 0.8s ease;
}

.section-header.animate {
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    position: relative;
    display: inline-block;
}

#pakete .section-header h2,
#erfolge .section-header h2 {
    color: #ffffff !important;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 30px auto 0;
}

/* ========== ABOUT ME SECTION ========== */
.about-me-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .about-me-section {
        background: #000;
    }
}

.about-me-section::before {
    display: none;
}

.about-me-section .section-header h2,
.about-me-section .section-header p {
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.transformation-images {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.transform-image-wrapper {
    position: relative;
    flex: 1;
    max-width: 280px;
}

.image-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

.transform-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.transform-image-wrapper:hover .transform-image {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 25px 80px rgba(92,184,92,0.4);
}

.transform-arrow {
    color: var(--accent);
    font-size: 3rem;
    flex-shrink: 0;
}

.transform-arrow svg {
    width: 50px;
    height: 50px;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(10px); opacity: 1; }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 769px) {
    .about-story {
        padding: 35px 40px;
        border: 3px solid var(--accent);
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.8);
        animation: borderPulse 2s ease-in-out infinite;
        box-shadow: 0 0 30px rgba(92, 184, 92, 0.3);
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        animation: none;
        box-shadow: none;
    }
    
    .transform-before-after {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    
    .ba-image {
        max-width: 100%;
    }
    
    .ba-arrow {
        transform: rotate(90deg);
    }
}

@keyframes borderPulse {
    0%, 100% {
        border-color: var(--accent);
        box-shadow: 0 0 30px rgba(92, 184, 92, 0.3);
    }
    50% {
        border-color: var(--accent-hover);
        box-shadow: 0 0 50px rgba(92, 184, 92, 0.6);
    }
}

.about-story p {
    margin-bottom: 20px;
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.problem-box {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    border: 2px solid transparent;
}

.problem-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    border-color: rgba(92,184,92,0.3);
}

.problem-box h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--accent);
}

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

.problem-list li {
    padding: 18px 0 18px 40px;
    position: relative;
    font-size: 1.15rem;
    border-bottom: 1px solid #f0f0f0;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.5rem;
}

.solution-list li:before {
    content: "✓";
    color: #00CC66;
}

/* ========== CREDENTIALS ========== */
.credentials {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.credentials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92,184,92,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.credentials::after {
    content: '';
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background-image: var(--logo-url);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.credentials .section-header h2,
.credentials .section-header p {
    color: white;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cred-card {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cred-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(92,184,92,0.2);
}

.cred-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: all 0.5s;
}

.cred-card:hover .cred-icon {
    transform: rotateY(360deg);
}

.cred-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: white;
}

.cred-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
}

/* ========== FEATURES ========== */
.features-section {
    background: #ffffff;
    position: relative;
    padding: 140px 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 50px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: rgba(92,184,92,0.2);
}

.feature-card h3 {
    font-size: 1.7rem;
    margin: 30px 0 20px;
    transition: all 0.3s;
}

.feature-card:hover h3 {
    color: var(--accent);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ========== PROCESS ========== */
.process-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    transition: all 0.5s;
    box-shadow: 0 10px 30px rgba(92,184,92,0.3);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(92,184,92,0.5);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== TRANSFORMATIONS SECTION ========== */
.transformations-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.transformations-section .section-header h2,
.transformations-section .section-header p {
    color: white;
}

.transformations-section::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background-image: var(--logo-url);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.transform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    position: relative;
    z-index: 1;
}

.transform-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.transform-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.transform-image {
    height: 380px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    overflow: hidden;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.transform-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.transform-card:hover .transform-image::before {
    transform: translateX(100%);
}

.transform-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: #f8f8f8;
}

.ba-image {
    position: relative;
    flex: 1;
    max-width: 200px;
}

.ba-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.ba-image:hover img {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(92, 184, 92, 0.3);
}

.ba-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    padding: 5px 18px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.ba-arrow {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.transform-info {
    padding: 35px;
}

.transform-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.transform-stats {
    display: flex;
    gap: 25px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent);
}

.transform-info p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

/* ========== TESTIMONIALS ========== */
.testimonial-section {
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--accent);
}

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

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== PACKAGES ========== */
.packages-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.packages-section .section-header h2,
.packages-section .section-header p {
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.package-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.package-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(92,184,92,0.3);
    padding-top: 60px;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

.package-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 10;
}

.package-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.package-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    margin: 30px 0;
}

.package-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 15px;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.3rem;
}

.package-cta {
    display: block;
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92,184,92,0.5);
}

/* ========== FAQ ========== */
.faq-section {
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 40px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.9;
}

/* ========== FINAL CTA ========== */
.final-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    text-align: center;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: gradientShift 10s ease infinite;
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-white {
    display: inline-block;
    padding: 22px 55px;
    background: white;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    z-index: 1;
}

.cta-white:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ========== FOOTER ========== */
footer {
    background: #000000;
    color: white;
    padding: 80px 60px 40px;
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* ========== 404 ERROR PAGE ========== */
.error-404-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.error-404-content {
    text-align: center;
    max-width: 800px;
    padding: 60px;
}

.error-404-number {
    font-size: 12rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 30px;
}

.error-404-title {
    font-size: 3rem;
    margin-bottom: 25px;
}

.error-404-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 50px;
}

.error-404-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.error-404-search {
    margin-top: 50px;
}

.search-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1400px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .transform-grid,
    .cred-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 968px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 120px 40px;
        transition: right 0.4s;
        gap: 25px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }
    
    nav ul.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .trust-content,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-col,
    .testimonial-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    section {
        padding: 80px 30px;
    }
    
    nav {
        padding: 20px 30px;
    }
}

/* ========== TABLET ANSICHT (769px - 1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section - Fitness-Hintergrundbild wie Desktop/Mobile */
    .hero {
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%),
                    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover;
        background-attachment: scroll;
    }
    
    /* About Me Section - Story Box PERFEKT! Bleibt so! */
    .about-story {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .transformation-images {
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    /* Features & Credentials: 1 Spalte, zentriert, keine Leerräume */
    .features-grid,
    .cred-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Echte Menschen: Horizontal Scroll - PASST INS LAYOUT */
    .transform-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .transform-card {
        min-width: 85%;
        max-width: 400px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    .transform-image {
        height: 250px;
    }
    
    .transform-before-after {
        min-height: 250px;
        padding: 20px;
    }
    
    .ba-image img {
        height: 250px;
    }
    
    .transform-info {
        padding: 25px 20px;
    }
    
    .transform-info h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .transform-stats {
        gap: 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    
    .transform-quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Pakete: Horizontal Scroll - BELIEBTESTE WAHL STARTET ZENTRIERT */
    .packages-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 380px;
        gap: 20px;
        padding: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: start;
    }
    
    /* Mittlere Karte beim Start zentrieren durch Padding */
    .packages-grid::before {
        content: '';
        width: calc((100vw - 380px) / 2 - 20px);
        flex-shrink: 0;
    }
    
    .packages-grid::after {
        content: '';
        width: calc((100vw - 380px) / 2 - 20px);
        flex-shrink: 0;
    }
    
    .package-card {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    .package-header h3 {
        font-size: 1.6rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .package-features {
        margin-bottom: 20px;
    }
    
    .package-features li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 35px;
    }
    
    .package-features li:before {
        left: 5px;
        top: 10px;
    }
    
    /* Problem Boxes: 1 Spalte, zentriert */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Sections: Weniger Padding */
    section {
        padding: 80px 40px;
    }
    
    .container {
        max-width: 900px;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    /* Transform Before/After Images - Tablet */
    .transform-before-after {
        flex-direction: row;
        padding: 20px;
    }
    
    .ba-image {
        max-width: 180px;
    }
    
    .ba-arrow {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 16px;
        gap: 8px;
    }
    
    /* About Me Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .transformation-images {
        flex-direction: column;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .transform-image-wrapper {
        max-width: 100%;
    }
    
    .transform-image {
        height: 350px;
        object-fit: contain;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .transform-arrow {
        transform: rotate(90deg);
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-story {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .logo-image,
    .custom-logo-link img,
    .custom-logo {
        width: 35px !important;
        height: 35px !important;
        max-width: 35px !important;
        max-height: 35px !important;
    }
    
    /* Hero Section Mobile Fix */
    .hero {
        background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%),
                    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover;
        background-attachment: scroll;
        padding: 120px 30px 80px;
    }
    
    .hero::after {
        width: 200px;
        height: 200px;
        right: -50px;
        bottom: -50px;
        opacity: 0.08;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .transform-grid,
    .cred-grid,
    .features-grid,
    .trust-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item h3 {
        font-size: 2.5rem;
    }
    
    .trust-item p {
        font-size: 0.9rem;
    }
    
    .packages-grid {
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px;
        scroll-padding: 0 20px;
    }
    
    .package-card {
        min-width: 280px;
        scroll-snap-align: center;
        padding: 30px 20px;
    }
    
    .package-card.featured {
        padding-top: 45px;
        min-width: 290px;
    }
    
    .package-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
        top: -12px;
    }
    
    .package-card h3 {
        font-size: 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .cookie-text {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .back-to-top,
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 100px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
    }
    
    footer {
        padding: 60px 30px 30px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 14px;
        gap: 6px;
        letter-spacing: 0.5px;
    }
    
    /* About Me Section Small Mobile */
    .transformation-images {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .transform-image {
        height: 300px;
        object-fit: contain;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .image-label {
        font-size: 0.75rem;
        padding: 5px 15px;
        top: -12px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-story {
        font-size: 0.95rem;
    }
    
    .logo-text {
        display: inline;
    }
    
    .logo-image,
    .custom-logo-link img,
    .custom-logo {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
    }
    
    nav {
        padding: 15px 20px;
    }
    
    /* Hero Section Very Small Mobile */
    .hero {
        padding: 100px 20px 70px;
        background-position: center center;
    }
    
    .hero::after {
        width: 150px;
        height: 150px;
        right: -40px;
        bottom: -40px;
        opacity: 0.05;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .hero,
    section {
        padding: 50px 20px;
    }
    
    .final-cta {
        padding: 60px 20px;
    }
    
    .final-cta h2 {
        font-size: 1.75rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .urgency-text {
        font-size: 0.9rem;
    }
    
    .cta-primary,
    .cta-white {
        padding: 16px 30px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .trust-item h3 {
        font-size: 2rem;
    }
    
    .trust-item p {
        font-size: 0.85rem;
    }
    
    .trust-bar {
        padding: 40px 20px;
    }
    
    .package-card {
        min-width: 260px;
        padding: 25px 15px;
    }
    
    .package-card h3 {
        font-size: 1.3rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
        padding: 12px 0;
        padding-left: 25px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    .feature-card,
    .cred-card,
    .transform-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .feature-card h3,
    .cred-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p,
    .cred-card p {
        font-size: 0.9rem;
    }
    
    .error-404-number {
        font-size: 6rem;
    }
    
    .error-404-title {
        font-size: 2rem;
    }
    
    .error-404-text {
        font-size: 1rem;
    }
    
    footer {
        padding: 50px 20px 25px;
    }
    
    .footer-grid {
        gap: 40px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
}
