﻿/* CSS Custom Properties for Women's Health Theme */
:root {
    /* Primary Colors - Elegant and Professional */
    --primary-soft: #fce7f3;
    --primary-main: #ec4899;
    --primary-deep: #be185d;
    
    /* Secondary Colors - Warm and Trustworthy */
    --secondary-soft: #e0e7ff;
    --secondary-main: #6366f1;
    --secondary-deep: #4338ca;
    
    /* Accent Colors - Sophisticated and Calming */
    --accent-rose: #fda4af;
    --accent-lavender: #c4b5fd;
    --accent-mint: #86efac;
    --accent-peach: #fed7aa;
    
    /* Neutral Colors */
    --white: #ffffff;
    --cream: #fefdf8;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    
    /* Shadows and Effects */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-normal);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-main), var(--primary-deep));
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-main), var(--secondary-deep));
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-outline {
    background: transparent;
    color: var(--primary-main);
    border-color: var(--primary-main);
}

.btn-outline:hover {
    background: var(--primary-main);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-soft {
    background: var(--primary-soft);
    color: var(--primary-deep);
    border: none;
}

.btn-soft:hover {
    background: var(--primary-main);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-lavender));
    border-radius: var(--radius-full);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
    position: sticky;
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-medium);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-main));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--primary-main);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-normal);
}

.nav-list a:hover {
    color: var(--primary-main);
}

.nav-list a.active {
    color: var(--primary-main);
    font-weight: 600;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-main);
    border-radius: var(--radius-full);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-normal);
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.hamburger:hover {
    color: var(--primary-main);
    background: var(--light-gray);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    padding: 2rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu ul li a {
    font-weight: 500;
    display: block;
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    color: var(--text-primary);
}

.mobile-menu ul li a:hover {
    background: var(--light-gray);
    color: var(--primary-main);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Floating Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: var(--radius-full);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--accent-rose);
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: var(--accent-mint);
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--accent-lavender);
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    bottom: 15%;
    right: 10%;
    width: 50px;
    height: 50px;
    background: var(--accent-peach);
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 8rem 0 4rem;
}

.hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-large);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    animation: slideInUp 1s ease-out;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    transform: rotate(-5deg);
}

.about-image-wrapper img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-large);
    transform: rotate(5deg);
}

.about-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--primary-soft);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.about-list li:hover {
    background: var(--primary-main);
    color: var(--white);
}

.about-list i {
    color: var(--primary-main);
    font-size: 1.25rem;
}

.about-list li:hover i {
    color: var(--white);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    border: 1px solid rgba(236, 72, 153, 0.1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-main);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-main));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-soft);
    min-width: 300px;
    position: relative;
    transition: var(--transition-normal);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
    content: '🌸';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    opacity: 0.7;
}

.rating {
    color: var(--secondary-main);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.author {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: var(--primary-main);
    border-radius: var(--radius-full);
}

/* Contact Section */
.contact {
    background: var(--light-gray);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.info-item:hover {
    transform: translateX(0.5rem);
    box-shadow: var(--shadow-medium);
}

.info-item i {
    color: var(--primary-main);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 1.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-main));
    color: var(--white);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.social-links a:hover {
    transform: translateY(-0.25rem) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-main);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Google Map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-large);
    transition: var(--transition-normal);
    z-index: 100;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
}

.whatsapp-button:hover {
    transform: translateY(-0.25rem) scale(1.1);
    box-shadow: 0 20px 30px rgba(37, 211, 102, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), var(--text-primary));
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v-40c11.046 0 20 8.954 20 20z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--white);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 2px;
    background: var(--primary-main);
    border-radius: var(--radius-full);
}

.footer-col p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-main);
    transform: translateY(-0.25rem);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-main);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 8rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-deep));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-large);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 99;
    border: none;
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-0.25rem) scale(1.1);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding: 2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .floating-element {
        display: none;
    }
    
    .map-container {
        height: 300px;
    }
    
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        bottom: 7rem;
        right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        min-width: 120px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .back-to-top,
    .whatsapp-button,
    .hero-decorations {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-element {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-main: #cc0066;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
}
/* Add to your existing CSS file */

/* Enhanced WhatsApp Button */
.whatsapp-enhanced {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    bottom: 3rem;
    right: 3rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-enhanced::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
    pointer-events: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    background: #075e54;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.whatsapp-enhanced:hover .whatsapp-tooltip {
    opacity: 1;
    right: 100px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Health Tips Cards */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.tip-image {
    height: 200px;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tip-card:hover .tip-image img {
    transform: scale(1.05);
}

.tip-content {
    padding: 1.5rem;
}

.tip-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-main);
}

.tip-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Testimonial section background */
.bg-light {
    background-color: var(--light-gray);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .whatsapp-enhanced {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
        bottom: 2rem;
        right: 2rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}