/*
Theme Name: Mobila Intensiv
Theme URI: https://www.mobila-intensiv.de
Author: Alif Borgmeier
Author URI: https://alifborgmeier.de
Description: Professionelle Intensivpflege Landing Page Theme
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: mobila-intensiv
Tags: landing-page, healthcare, responsive, one-page
*/

/* Custom CSS from HTML */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Custom Colors */
:root {
    --mobila-blue: #0B4F96;
    --mobila-orange: #FF8533;
    --mobila-light: #F0F4F8;
}

.gradient-bg {
    background: linear-gradient(135deg, #0B4F96 0%, #0A3D6F 100%);
}

.hero-pattern {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--mobila-blue);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
}

.preloader-logo .m-letter {
    color: #FF8533;
}

.preloader-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    overflow: hidden;
}

/* CTA Button */
.cta-button {
    background: #FF8533;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #FF6B1A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 133, 51, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Card Hover Effects */
.service-card {
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.service-card:hover {
    border-left-color: #FF8533;
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 79, 150, 0.15);
}

/* Section Title Underline */
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF8533;
    margin: 1rem auto 0;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.nav-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Phone Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.phone-pulse:hover {
    animation: pulse 1s infinite;
}