/* ============================================
   LensFlare-JMHof PREMIUM Design System
   ============================================ */

/* --- Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--light);
    cursor: none;
}
html, body { overflow-x: clip; }

/* --- Custom Drone Cursor (4 Rotorblätter) --- */
.cursor-drone {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    width: 40px; height: 40px;
    transform: translate(-50%, -50%);
}
.cursor-drone svg { width: 100%; height: 100%; }
.cursor-drone .rotor-group {
    transform-origin: center;
    animation: rotorSpin .4s linear infinite;
}
.cursor-drone.hover .rotor-group {
    animation-duration: .15s;
}
.cursor-drone.hover { filter: drop-shadow(0 0 8px rgba(233,69,96,.6)); }
@keyframes rotorSpin { to { transform: rotate(360deg); } }

.cursor-ring {
    width: 50px; height: 50px;
    border: 1.5px solid rgba(233,69,96,.25);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: all .2s ease-out;
    transform: translate(-50%, -50%);
}
.cursor-ring.hover {
    width: 70px; height: 70px;
    background: rgba(233,69,96,.06);
    border-color: rgba(233,69,96,.4);
}
@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-drone, .cursor-ring { display: none !important; }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff6b9d, var(--accent));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 100000;
    transition: width .1s;
    box-shadow: 0 0 10px rgba(233,69,96,.5);
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* --- Dark Mode --- */
body.dark-mode {
    --light: #0f0f23;
    --text: #e0e0e0;
}
body.dark-mode .bg-white { background: #1a1a2e !important; }
body.dark-mode .product-card,
body.dark-mode .drone-card,
body.dark-mode .booking-form,
body.dark-mode .contact-card,
body.dark-mode .card-hover,
body.dark-mode .legal-content { background: #1a1a2e; color: #e0e0e0; }
body.dark-mode .text-muted { color: #999 !important; }
body.dark-mode .form-control, body.dark-mode .form-select {
    background: #16213e; color: #e0e0e0; border-color: #333;
}
.dark-toggle {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    border: 2px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all .3s;
    font-size: 1.1rem;
}
.dark-toggle:hover { transform: scale(1.1); background: var(--accent); border-color: var(--accent); }
body.dark-mode .dark-toggle { background: #fff; color: #333; border-color: #fff; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-weight: 700; }
.section-title {
    font-size: 2.8rem;
    margin-bottom: .5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle { color: #6c757d; font-size: 1.1rem; margin-bottom: 2.5rem; }
.text-gradient {
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Navbar --- */
#mainNav {
    background: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: .8rem 0;
    transition: all .4s ease;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
#mainNav.scrolled {
    padding: .4rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
    background: rgba(15, 15, 35, 0.95);
}
#mainNav .nav-link {
    color: rgba(255,255,255,.8);
    font-weight: 500;
    padding: .5rem 1rem;
    transition: all .3s;
    position: relative;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--accent); }
#mainNav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1rem; right: 1rem;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    animation: slideIn .3s ease;
}
@keyframes slideIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.brand-text { font-size: 1.4rem; letter-spacing: .5px; }

/* --- Magnetic Button --- */
.btn-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: transform .3s cubic-bezier(.25,.46,.45,.94);
}

/* --- Buttons --- */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    color: #fff;
    border: none;
    padding: .7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6b9d, var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity .4s;
}
.btn-accent:hover::before { opacity: 1; }
.btn-accent:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233,69,96,.4);
}
.btn-accent:active { transform: translateY(0) scale(.97); }
.btn-outline-light {
    border-radius: 50px;
    padding: .7rem 1.8rem;
    font-weight: 600;
    transition: all .4s;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.05);
}
.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,.15);
}

/* --- Glassmorphism --- */
.glass {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 40%, var(--dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(233,69,96,.08) 0%, transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -20%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(22,33,62,.5) 0%, transparent 70%);
    animation: heroPulse2 12s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: .5; }
    50% { transform: scale(1.15) rotate(5deg); opacity: .8; }
}
@keyframes heroPulse2 {
    0%, 100% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.1) translate(3%,3%); }
}
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-title .typed-cursor {
    color: var(--accent);
    font-weight: 300;
}
.hero-subtitle {
    font-size: 1.3rem;
    opacity: .8;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(233,69,96,.1);
    backdrop-filter: blur(10px);
    color: var(--accent);
    padding: .5rem 1.2rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(233,69,96,.2);
    animation: badgePulse 2s ease-in-out infinite;
}

/* Hero Video */
.hero-video-wrapper {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
    transition: transform .4s;
}
.hero-video-wrapper:hover { transform: scale(1.02); }
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233,69,96,.3); }
    50% { box-shadow: 0 0 0 8px rgba(233,69,96,0); }
}

/* Hero 3D Globe */
.hero-globe {
    width: 350px; height: 350px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(233,69,96,.15), rgba(22,33,62,.3) 50%, rgba(15,15,35,.5));
    box-shadow: 0 0 80px rgba(233,69,96,.1), inset 0 0 60px rgba(233,69,96,.05);
    position: relative;
    animation: globeRotate 20s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-globe::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(233,69,96,.15);
    animation: globeRing 8s linear infinite;
}
.hero-globe::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.05);
    animation: globeRing 15s linear infinite reverse;
}
@keyframes globeRotate { to { transform: rotate(360deg); } }
@keyframes globeRing { to { transform: rotate(360deg); } }
.hero-globe i { font-size: 6rem; color: rgba(255,255,255,.12); }

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.particle {
    position: absolute;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    animation: float linear infinite;
}
.particle.glow {
    box-shadow: 0 0 6px rgba(233,69,96,.3);
    background: rgba(233,69,96,.2);
}
@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(80vh) rotate(72deg) scale(1); }
    90% { opacity: .8; }
    100% { transform: translateY(-10vh) rotate(720deg) scale(0); opacity: 0; }
}

/* --- Counter / Stats --- */
.stats-section {
    background: var(--dark);
    position: relative;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(233,69,96,.05) 0%, transparent 50%, rgba(233,69,96,.05) 100%);
}
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-suffix {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}
.stat-label {
    color: rgba(255,255,255,.5);
    font-size: .85rem;
    margin-top: .5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Cards (general) --- */
.card-hover {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all .5s cubic-bezier(.25,.46,.45,.94);
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}
.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}
.card-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(233,69,96,.1), rgba(233,69,96,.05));
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all .4s;
}
.card-hover:hover .card-icon,
.product-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    color: #fff;
    box-shadow: 0 8px 25px rgba(233,69,96,.3);
}

/* --- Product Cards --- */
.product-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    padding: 2rem;
    height: 100%;
    transition: all .5s cubic-bezier(.25,.46,.45,.94);
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #ff6b9d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(233,69,96,.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .5s;
}
.product-card:hover::after { opacity: 1; }
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}
.product-price {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.product-price small {
    font-size: .9rem;
    font-weight: 400;
    -webkit-text-fill-color: #6c757d;
}

/* --- Drone Cards (3D Tilt) --- */
.drone-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    transition: all .5s cubic-bezier(.25,.46,.45,.94);
    border: none;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.drone-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
}
.drone-img-wrapper {
    height: 240px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.drone-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(0,0,0,.3));
}
.drone-img-wrapper i {
    font-size: 5rem;
    color: rgba(255,255,255,.15);
    transition: all .5s;
}
.drone-card:hover .drone-img-wrapper i {
    transform: scale(1.2) translateY(-5px);
    color: rgba(255,255,255,.25);
}
.drone-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.drone-card:hover .drone-img-wrapper img { transform: scale(1.08); }
.drone-spec {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 0;
    font-size: .9rem;
    color: #6c757d;
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.drone-spec:last-child { border-bottom: none; }
.drone-spec i { color: var(--accent); width: 22px; font-size: 1rem; }

/* --- How It Works Timeline --- */
.timeline-step {
    position: relative;
    padding-left: 80px;
    padding-bottom: 3rem;
}
.timeline-step::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(233,69,96,.1));
}
.timeline-step:last-child::before { display: none; }
.timeline-number {
    position: absolute;
    left: 0; top: 0;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(233,69,96,.3);
    z-index: 1;
}
.timeline-content {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
    transition: all .4s;
}
.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
body.dark-mode .timeline-content { background: #1a1a2e; }

/* --- Testimonials --- */
.testimonial-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all .4s;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px; left: 25px;
    font-size: 5rem;
    color: rgba(233,69,96,.15);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233,69,96,.3);
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.testimonial-stars { color: #ffc107; letter-spacing: 2px; }
.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- Marquee / Infinite Scroll --- */
.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255,255,255,.4);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}
.marquee-item i { color: var(--accent); font-size: 1.5rem; }

/* --- Gallery --- */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,.8));
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- Calculator --- */
.calculator-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.calculator-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 200%;
    background: radial-gradient(circle, rgba(233,69,96,.08), transparent 60%);
}
.calculator-result {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all .3s;
}
.range-slider {
    -webkit-appearance: none;
    width: 100%; height: 8px;
    background: rgba(255,255,255,.15);
    border-radius: 4px;
    outline: none;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    cursor: pointer;
    box-shadow: 0 2px 15px rgba(233,69,96,.5);
    transition: transform .2s;
}
.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* --- Booking Form --- */
.booking-form {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 .25rem rgba(233,69,96,.1);
}

/* --- Newsletter --- */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e94560' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    position: relative;
}
.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: .5rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--accent), #ff6b9d);
    border-radius: 1px;
}
.footer-content a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: all .3s;
}
.footer-content a:hover { color: var(--accent); padding-left: 5px; }

/* --- Back to Top --- */
#backToTop {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    background: linear-gradient(135deg, var(--accent), #ff6b9d) !important;
    border: none;
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 25px rgba(233,69,96,.4); }

/* --- Page Header --- */
.page-header {
    padding: 9rem 0 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}
.page-header h1 { font-size: 3rem; font-weight: 900; margin-bottom: .5rem; }
.page-header p { opacity: .75; font-size: 1.15rem; }
.breadcrumb-custom a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--accent); }
.breadcrumb-custom span { color: var(--accent); }

/* --- Contact Cards --- */
.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s;
    height: 100%;
    border: 1px solid rgba(0,0,0,.04);
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    border-color: rgba(233,69,96,.2);
}
.contact-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233,69,96,.1), rgba(233,69,96,.05));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
    transition: all .4s;
}
.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(233,69,96,.3);
}

/* --- Filter Tabs --- */
.filter-btn {
    padding: .5rem 1.2rem;
    border-radius: 50px;
    border: 2px solid #dee2e6;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    color: #fff;
    box-shadow: 0 4px 15px rgba(233,69,96,.3);
}

/* --- Impressum --- */
.legal-content { line-height: 1.8; }
.legal-content h3 { margin-top: 2rem; color: var(--primary); }

/* --- GSAP Reveal --- */
.reveal { opacity: 0; transform: translateY(50px); }
.reveal.active { opacity: 1; transform: translateY(0); transition: all .8s cubic-bezier(.25,.46,.45,.94); }

/* --- Loading Overlay --- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity .6s, visibility .6s;
}
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; position: fixed; }
.loader-drone {
    font-size: 3rem;
    color: var(--accent);
    animation: loaderFloat 1.5s ease-in-out infinite;
}
@keyframes loaderFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}
.loader-bar {
    width: 120px; height: 3px;
    background: rgba(255,255,255,.1);
    border-radius: 3px;
    overflow: hidden;
}
.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff6b9d);
    border-radius: 3px;
    animation: loaderFill 1.5s ease-in-out infinite;
}
@keyframes loaderFill {
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .stat-number { font-size: 2.5rem; }
    .calculator-section { padding: 1.5rem; }
    .booking-form { padding: 1.5rem; }
    .hero-globe { width: 200px; height: 200px; }
    .timeline-step { padding-left: 60px; }
    .timeline-number { width: 42px; height: 42px; font-size: 1rem; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .calculator-result { font-size: 2rem; }
}
