/* ==========================================================================
   MediNow - Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title.active {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 6rem; } }

.gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.card-enter {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-enter.active {
    opacity: 1;
    transform: scale(1);
}

.parallax {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.smooth-hover {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.smooth-hover:hover {
    transform: translateY(-8px);
}

.fluid-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fluid-btn::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;
}

.fluid-btn:hover::before {
    width: 300px;
    height: 300px;
}

.fluid-btn:active {
    transform: scale(0.95);
}

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

.float-animate {
    animation: float 4s ease-in-out infinite;
}

.glass {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
}

#chatModal.flex,
#contactModal.flex {
    display: flex;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #14b8a6; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #0891b2; }
