/* ============================================
   ALLIE WOMEN'S HEALTH - MODERN PREMIUM STYLESHEET
   Design: Clean, Modern, Professional with Smooth Animations
   Colors: Primary Pink (#D4949F), Warm Grey, White
   Typography: Playfair Display (headings), Inter (body)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4949F;
    --primary-dark: #C97E8A;
    --primary-light: #E8B5C1;
    --light-pink: #F5E6E8;
    --warm-grey: #E8E6E4;
    --dark-text: #2D2D2D;
    --light-text: #666666;
    --white: #FFFFFF;
    --accent-green: #25D366;
    --accent-green-dark: #20BA5A;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 40px rgba(212, 148, 159, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 148, 159, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(212, 148, 159, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 148, 159, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 148, 159, 0.5);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: none;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.logo-subtext {
    font-size: 0.65rem;
    color: var(--light-text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo:hover {
    transform: scale(1.05);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 0.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 148, 159, 0.4);
}

.btn-secondary {
    background: var(--light-pink);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 230, 232, 0.3) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663203355775/G7deT3nqQ53qiRVdznzSFc/hero-medical-care-oNrG7ew7TDsQDSEYdqqpJ7.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 148, 159, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 6rem 2rem;
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--warm-grey), transparent);
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 148, 159, 0.25);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.about-content p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-text);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 230, 232, 0.1) 100%);
    position: relative;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--warm-grey);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-dark);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ============================================
   WHAT TO EXPECT SECTION
   ============================================ */
.what-to-expect {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.expect-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.expect-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expect-card {
    background: linear-gradient(135deg, rgba(245, 230, 232, 0.6) 0%, rgba(245, 230, 232, 0.3) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.expect-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 148, 159, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.expect-card:hover {
    background: linear-gradient(135deg, rgba(245, 230, 232, 0.8) 0%, rgba(245, 230, 232, 0.5) 100%);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(212, 148, 159, 0.15);
}

.expect-card-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.expect-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.expect-card p {
    color: var(--light-text);
    line-height: 1.8;
}

.expect-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.expect-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 148, 159, 0.25);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 230, 232, 0.1) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--light-pink);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--warm-grey);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    background: linear-gradient(135deg, var(--light-pink) 0%, rgba(232, 181, 193, 0.5) 100%);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(-5deg);
    color: var(--primary-dark);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.feature p {
    color: var(--light-text);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 6rem 2rem;
    background: var(--white);
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(245, 230, 232, 0.6) 0%, rgba(245, 230, 232, 0.3) 100%);
    padding: 3rem;
    border-radius: 1.2rem;
    border: 1px solid var(--warm-grey);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.contact-box > p:nth-of-type(1) {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15);
    color: var(--primary-dark);
}

.contact-item .label {
    font-size: 0.85rem;
    color: var(--light-text);
    margin: 0;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 2rem;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* ============================================
   ANIMATED CONTACT DOCK
   ============================================ */
.contact-dock {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.dock-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: slideInRight 0.5s ease-out;
}

.dock-item a,
.dock-item button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dock-phone {
    background: linear-gradient(135deg, #007AFF, #0051D5);
    animation-delay: 0s;
}

.dock-phone:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
}

.dock-whatsapp {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    animation: pulse 2s infinite;
    animation-delay: 0.1s;
}

.dock-whatsapp:hover {
    transform: scale(1.15);
    animation: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.dock-consultation {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    animation-delay: 0.2s;
}

.dock-consultation:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(212, 148, 159, 0.4);
}

/* ============================================
   WHATSAPP POPUP
   ============================================ */
.whatsapp-popup {
    position: fixed;
    bottom: 2rem;
    right: 8rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    max-width: 300px;
    z-index: 998;
    animation: slideInUp 0.5s ease-out;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.whatsapp-popup.show {
    display: flex;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.popup-close:hover {
    color: var(--dark-text);
}

.popup-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.whatsapp-popup h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.whatsapp-popup p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CONSULTATION MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 1.2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease-out;
    position: relative;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--dark-text);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.modal-header p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--warm-grey);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 148, 159, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 148, 159, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 148, 159, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact p:hover {
    transform: translateX(5px);
}

.footer-contact a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-list li {
    transition: var(--transition);
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-list li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {


    .hero {
        min-height: auto;
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-grid,
    .expect-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2,
    .expect-content h2 {
        font-size: 2rem;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-box {
        padding: 2rem;
    }

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

    .card,
    .expect-card,
    .feature {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-dock {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .dock-item {
        width: 55px;
        height: 55px;
    }

    .dock-item a,
    .dock-item button {
        font-size: 1.3rem;
    }

    .whatsapp-popup {
        bottom: auto;
        right: auto;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    .modal-content {
        padding: 1.5rem;
        max-width: 100%;
    }

    .modal {
        padding: 1rem;
    }

    .hero::after {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -20%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

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

    .about-content h2,
    .expect-content h2 {
        font-size: 1.6rem;
    }

    .card h3,
    .expect-card h3,
    .feature h3 {
        font-size: 1.1rem;
    }

    .card p,
    .expect-card p,
    .feature p {
        font-size: 0.95rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .footer-section h3 {
        font-size: 1.4rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .contact-dock {
        bottom: 1rem;
        right: 1rem;
    }

    .dock-item {
        width: 50px;
        height: 50px;
    }

    .dock-item a,
    .dock-item button {
        font-size: 1.2rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .hero-cta {
        gap: 1rem;
    }

    .cta-buttons {
        gap: 1rem;
    }
}

/* ============================================
   ACCESSIBILITY & PRINT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .navbar,
    .contact-dock,
    .whatsapp-popup,
    .modal,
    .hero-cta,
    .cta-buttons {
        display: none;
    }
}


/* ============================================
   ALLIE WOMEN'S HEALTH - FLOATING SUPPORT ELEMENTS
   Complete CSS for Scroll-Triggered Animations
   
   Colors: Consistent with primary design (#D4949F)
   Typography: Playfair Display (headings), Inter (body)
   Animations: TV-style overlays with smooth scroll triggers
   ============================================ */

/* ============================================
   FLOATING SUPPORT CONTAINER
   ============================================ */

.floating-support-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 50;
}

/* ============================================
   INDIVIDUAL SUPPORT ITEMS
   ============================================ */

.support-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 148, 159, 0.25);
    border-radius: 1.2rem;
    padding: 1.5rem 2rem;
    max-width: 420px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(0);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 14rem;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

/* Pseudo-element for TV overlay glow effect */
.support-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(212, 148, 159, 0.3), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.support-item.visible::before {
    opacity: 0.6;
}

/* Left-aligned floating items */
.float-left {
    transform: translateX(-120px);
    margin-right: auto;
}

/* Right-aligned floating items */
.float-right {
    transform: translateX(120px);
    margin-left: auto;
    flex-direction: row-reverse;
    text-align: right;
}

/* Animation trigger - when item becomes visible */
.support-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   SUPPORT ICON STYLING
   ============================================ */

.support-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #D4949F 0%, #C97E8A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(212, 148, 159, 0.35);
    animation: floating-icon 3.5s ease-in-out infinite;
    transition: all 0.4s ease;
    position: relative;
}

/* Icon glow effect on hover */
.support-item:hover .support-icon {
    box-shadow: 0 15px 35px rgba(212, 148, 159, 0.5);
    transform: scale(1.08);
}

/* Floating animation for icons */
@keyframes floating-icon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   SUPPORT TEXT STYLING
   ============================================ */

.support-text {
    flex: 1;
}

.support-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2D2D2D;
    margin-bottom: 0.4rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.support-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   HOVER EFFECTS
   ============================================ */

.support-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(212, 148, 159, 0.4);
    box-shadow: 0 15px 40px rgba(212, 148, 159, 0.2);
    transform: translateY(-5px);
}

.support-item:hover .support-text h4 {
    color: #D4949F;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .support-item {
        max-width: 380px;
        margin-bottom: 12rem;
        padding: 1.3rem 1.8rem;
    }

    .support-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.4rem;
    }

    .support-text h4 {
        font-size: 1.15rem;
    }

    .support-text p {
        font-size: 0.9rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .floating-support-container {
        padding: 0 1rem;
    }

    .support-item {
        max-width: 100%;
        margin-bottom: 10rem;
        padding: 1.2rem 1.5rem;
        gap: 1.2rem;
    }

    .float-left,
    .float-right {
        margin: 0 auto 10rem auto;
        transform: translateY(60px);
        flex-direction: row;
        text-align: left;
    }

    .float-right {
        flex-direction: row;
    }

    .support-item.visible {
        transform: translateY(0);
    }

    .support-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }

    .support-text h4 {
        font-size: 1.1rem;
    }

    .support-text p {
        font-size: 0.88rem;
        line-height: 1.4;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    .floating-support-container {
        padding: 0 0.8rem;
    }

    .support-item {
        max-width: 100%;
        margin-bottom: 8rem;
        padding: 1rem 1.2rem;
        gap: 1rem;
    }

    .support-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.2rem;
    }

    .support-text h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .support-text p {
        font-size: 0.85rem;
        line-height: 1.35;
    }
}

/* ============================================
   ACCESSIBILITY - REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .support-item {
        transition: none;
    }

    .support-icon {
        animation: none;
    }

    .support-item:hover {
        transform: none;
    }
}

