.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 16, 133, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--brand-surface);
    color: var(--brand-primary);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(63, 16, 133, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.8;
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual-premium {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.6;
}

.glow-shape.shape-1 {
    width: 250px;
    height: 250px;
    background: var(--brand-primary);
    top: 10%;
    right: 15%;
}

.glow-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--brand-secondary);
    bottom: 10%;
    left: 10%;
    opacity: 0.3;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 24px 48px rgba(31, 10, 60, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.main-booking {
    width: 100%;
    max-width: 340px;
    position: relative;
    z-index: 2;
    transform: translateY(-10px);
    animation: float 6s ease-in-out infinite;
}

.booking-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-strong);
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-surface), #e2d5f8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.booking-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0;
}

.booking-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.booking-status {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.floating-rating {
    position: absolute;
    bottom: 25px;
    right: -20px;
    z-index: 3;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    animation: float 5s ease-in-out infinite reverse;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
}

.floating-rating p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
}

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

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-surface);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--bg-surface);
    border-color: rgba(63, 16, 133, 0.1);
}

.icon-box {
    width: 56px;
    height: 56px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    color: var(--brand-primary);
    border: 1px solid var(--border-light);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero::before {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .floating-rating {
        right: 10%;
        bottom: 0;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        text-align: justify;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual-premium {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-top: 1rem;
    }

    .main-booking {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0;
    }

    .floating-rating {
        position: relative;
        right: auto;
        bottom: auto;
        transform: none;
        margin-top: -20px;
        width: 85%;
        max-width: 280px;
        z-index: 10;
        animation: float-rating-relative 5s ease-in-out infinite reverse;
    }

    @keyframes float-rating-relative {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
        100% { transform: translateY(0px); }
    }

    .features {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .feature-card {
        padding: 2rem 1.5rem;
    }
}
