/* ============================================
   Compiaz Booking - Landing Page Design
   Inspired by modern SaaS landing pages
   ============================================ */

body {
    background: #000000 !important;
}

/* ---------- Hero Section ---------- */
.booking-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 40px;
    overflow: hidden;
    background: #000000;
}

.booking-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.booking-hero-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-hero-centered h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.booking-hero-centered .hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.appstore-badge-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.appstore-badge-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.appstore-badge {
    height: 48px;
    width: auto;
}

.booking-hero-visual-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.booking-hero-visual-centered .phone-mockup-wrapper {
    margin: 0 auto;
}

.booking-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0;
    justify-content: center;
}

.booking-hero-badges .badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.booking-hero-badges .badge-item i {
    color: var(--logo-gradient-start, #00a6fb);
}

.booking-hero-badges .badge-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 166, 251, 0.3);
}

.booking-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.trust-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.trust-text strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Hero Phone Mockup */
.booking-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-wrapper {
    position: relative;
    z-index: 2;
}

.phone-mockup-wrapper > img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* Floating Cards around Phone */
.floating-card {
    position: absolute;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(15, 25, 40, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: float-gentle 4s ease-in-out infinite;
}

/* Links: oben, mitte, unten */
.floating-card.card-1 {
    top: 8%;
    left: -18%;
    animation-delay: 0s;
}

.floating-card.card-3 {
    top: 42%;
    left: -20%;
    animation-delay: 2s;
}

.floating-card.card-5 {
    bottom: 12%;
    left: -16%;
    animation-delay: 4s;
}

/* Rechts: oben, mitte, unten */
.floating-card.card-2 {
    top: 8%;
    right: -18%;
    animation-delay: 1s;
}

.floating-card.card-4 {
    top: 42%;
    right: -20%;
    animation-delay: 3s;
}

.floating-card.card-6 {
    bottom: 12%;
    right: -16%;
    animation-delay: 5s;
}

/* Unten mittig */
.floating-card.card-7 {
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 6s;
}

/* Tablet: Cards etwas näher */
@media (max-width: 1200px) and (min-width: 992px) {
    .floating-card.card-1, .floating-card.card-3, .floating-card.card-5 {
        left: -12%;
    }
    .floating-card.card-2, .floating-card.card-4, .floating-card.card-6 {
        right: -12%;
    }
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.floating-card-icon.blue {
    background: rgba(0, 166, 251, 0.15);
    color: #00a6fb;
}

.floating-card-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.floating-card-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.floating-card-icon.orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.floating-card-icon.red {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.floating-card-icon.teal {
    background: rgba(20, 184, 166, 0.15);
    color: #2dd4bf;
}

.floating-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.1rem;
}

.floating-card-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero glow background */
.booking-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 166, 251, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Features Section ---------- */
.booking-features {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.booking-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.booking-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(0, 166, 251, 0.08);
    border: 1px solid rgba(0, 166, 251, 0.2);
    color: var(--logo-gradient-start, #00a6fb);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.booking-features [data-aos],
.booking-howitworks [data-aos]:first-child,
.booking-cta [data-aos]:first-child {
    text-align: center;
}

.booking-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-section-desc {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(0, 166, 251, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.feature-card.card-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 400px;
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 166, 251, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--logo-gradient-start, #00a6fb);
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-card .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.feature-card .feature-tags--spaced {
    margin-top: 0.75rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    background: rgba(0, 166, 251, 0.08);
    border: 1px solid rgba(0, 166, 251, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
}

.feature-card-image {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: transparent;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-image img {
    transform: scale(1.03);
}

/* ---------- How it Works Section ---------- */
.booking-howitworks {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.booking-howitworks .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.howitworks-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.step-card {
    text-align: left;
}

.step-number {
    margin-bottom: 1rem;
}

.step-number-inner {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(0, 166, 251, 0.2);
    background: rgba(0, 166, 251, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-inner i {
    color: var(--logo-gradient-start, #00a6fb);
    font-size: 1.2rem;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--logo-gradient-start, #00a6fb);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.howitworks-visual-full {
    text-align: center;
}

.howitworks-visual-full img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ---------- App Download Section ---------- */
.booking-app-download {
    padding: 80px 0;
    background: #000000;
}

.booking-app-download .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.app-download-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.app-download-box::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 166, 251, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.app-download-icon {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.app-download-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.app-download-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.appstore-badge-large {
    height: 56px;
    width: auto;
}

@media (max-width: 768px) {
    .app-download-box {
        padding: 3rem 1.5rem;
    }
    
    .app-download-icon {
        font-size: 2.5rem;
    }
    
    .app-download-title {
        font-size: 1.6rem;
    }
    
    .appstore-badge-large {
        height: 48px;
    }
}

/* ---------- CTA Section ---------- */
.booking-cta {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.booking-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 166, 251, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-checks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-check i {
    color: var(--logo-gradient-start, #00a6fb);
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--logo-gradient-start, #00a6fb), var(--logo-gradient-end, #0065c1));
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 251, 0.3);
    color: #fff;
}

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-stat {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-gradient-start, #00a6fb), var(--logo-gradient-end, #0065c1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.cta-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .booking-hero-centered h1 {
        font-size: 2.5rem;
    }

    .phone-mockup-wrapper > img {
        max-width: 380px;
    }

    /* Floating Cards: Mobile - links/rechts am Bild, Carousel */
    .phone-mockup-wrapper {
        overflow: visible;
        position: relative;
    }

    .floating-card {
        position: absolute;
        animation: none;
        transform: none;
        opacity: 0;
        transition: opacity 1s ease;
        padding: 0.5rem 0.65rem;
        font-size: 0.75rem;
        z-index: 3;
    }

    .floating-card-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .floating-card-title {
        font-size: 0.65rem;
    }

    .floating-card-sub {
        font-size: 0.55rem;
    }

    /* Linke Cards */
    .floating-card.card-1,
    .floating-card.card-3,
    .floating-card.card-5,
    .floating-card.card-7 {
        left: -8%;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Rechte Cards */
    .floating-card.card-2,
    .floating-card.card-4,
    .floating-card.card-6 {
        right: -8%;
        top: 50%;
        transform: translateY(-50%);
    }

    .floating-card.mobile-visible {
        opacity: 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .howitworks-steps-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .howitworks-visual-full img {
        max-width: 100%;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        text-align: center;
    }

    .cta-checks {
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .booking-section-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .booking-hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .booking-hero-centered h1 {
        font-size: 1.8rem;
    }

    .phone-mockup-wrapper > img {
        max-width: 280px;
    }

    .booking-section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-stat-value {
        font-size: 1.5rem;
    }
}
