:root {
    --primary: #4a90e2;        /* Professionelles Hellblau */
    --dark: #0c2340;           /* Edles Dunkelblau aus deinen Vorlagen */
    --white: #ffffff;
    --whatsapp: #25d366;
    --radius: 20px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #f4f7fa; color: var(--dark); line-height: 1.6; }
.container { width: min(1200px, 92vw); margin: 0 auto; }

/* Header im neuen Dunkelblau-Look */
.glass-header { position: sticky; top: 0; z-index: 1000; background: rgba(12, 35, 64, 0.96); backdrop-filter: blur(10px); padding: 15px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.bar-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.4rem; font-family: 'Poppins'; color: var(--white); }
.logo span { background: var(--primary); color: var(--dark); padding: 2px 10px; border-radius: 50px; margin-left: 5px; font-size: 1.1rem; }
.desktop-nav a { margin-right: 20px; text-decoration: none; font-weight: 600; color: var(--white); transition: var(--transition); }
.desktop-nav a:hover { color: var(--primary); }
.nav-call-btn { background: var(--primary); color: var(--dark); padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: var(--transition); }
.nav-call-btn:hover { background: var(--white); }

/* Hero Section */
.hero-section { height: 75vh; background-size: cover; background-position: center; display: flex; align-items: center; color: white; }
.badge { background: var(--primary); color: var(--dark); padding: 5px 15px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-content h1 { font-family: 'Poppins'; font-size: clamp(2.3rem, 6vw, 3.8rem); margin: 15px 0; font-weight: 800; text-shadow: 0 4px 10px rgba(0,0,0,0.4); }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin-bottom: 25px; text-shadow: 0 2px 5px rgba(0,0,0,0.4); }
.btn-whatsapp { background: var(--whatsapp); color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }
.btn-ghost { border: 2px solid white; color: white; padding: 13px 30px; border-radius: 50px; text-decoration: none; margin-left: 15px; font-weight: 600; transition: var(--transition); }
.btn-ghost:hover { background: var(--white); color: var(--dark); }

/* Service Cards */
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: 'Poppins'; font-size: 2.2rem; margin-bottom: 10px; color: var(--dark); }
.section-alt { background: var(--white); padding: 80px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.service-card { background: var(--white); padding: 35px; border-radius: var(--radius); text-align: center; box-shadow: 0 10px 30px rgba(12,35,64,0.04); border: 1px solid rgba(12,35,64,0.04); transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(12,35,64,0.08); }
.icon-box { width: 60px; height: 60px; background: rgba(74, 144, 226, 0.12); color: var(--primary); border-radius: 15px; display: grid; place-items: center; margin: 0 auto 20px; font-size: 1.6rem; }

/* Galerie Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 15px 30px rgba(12,35,64,0.08); transition: var(--transition); }
.gallery-item img:hover { transform: scale(1.03); box-shadow: 0 20px 40px rgba(12,35,64,0.15); }

/* Kontakt Bereich */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; background: var(--white); padding: 45px; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(12,35,64,0.04); }
.info-list p { margin-top: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.info-list i { color: var(--primary); font-size: 1.3rem; }
.btn-full-wa { background: var(--whatsapp); color: white; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 1.2rem; width: 100%; transition: var(--transition); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2); }
.btn-full-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }

/* Footer */
.footer { background: var(--dark); color: #8da4c4; padding: 40px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer p { margin-bottom: 10px; }
.footer-links a { color: white; text-decoration: none; font-weight: 600; margin: 0 10px; }
.footer-links a:hover { color: var(--primary); }

/* Einblende-Animationen */
.reveal { opacity: 1; transform: translateY(0); } /* Standardmäßig sichtbar für maximale Stabilität */

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hero-actions { display: flex; flex-direction: column; gap: 15px; width: 100%; }
    .btn-ghost { margin-left: 0; text-align: center; }
    .btn-whatsapp { justify-content: center; }
}