/* Custom Luxury Styles */

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Scaling */
.hero-container {
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px); /* accounts for mobile browser chrome */
    max-height: 840px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-pill {
    border-radius: 500px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-height: 140px;
    max-height: 420px;
}

/* Short screens: tighten pill on small viewports */
@media (max-height: 700px) {
    .hero-pill {
        min-height: 110px;
        max-height: 260px;
    }
    .hero-heading {
        font-size: clamp(1.5rem, 5vh, 3.75rem);
    }
}

/* Animations */
.floating-badge {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .floating-badge {
        animation: none;
    }
    .pricing-card {
        transition: none;
    }
    * {
        transition-duration: 0.01ms !important;
    }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #25d366;
    outline-offset: 4px;
}

/* Utility */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}