:root {
    --primary-pink: #FFD9F2;
    --secondary-pink: #F8BBD9;
    --accent-rose: #E879F9;
    --text-dark: #4C1D95;
    --text-gray: #6B46C1;
    --bg-light: #FEFCFF;
    --white: #ffffff;
    --border-light: #E9D5FF;
    --success-pink: #F472B6;
    --gradient-primary: linear-gradient(135deg, #FFD9F2, #F8BBD9);
    --gradient-secondary: linear-gradient(135deg, #E879F9, #C084FC);
    --gradient-soft: linear-gradient(135deg, #FEFCFF, #F3E8FF);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-soft);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(232, 121, 249, 0.2);
    border-bottom: 1px solid var(--border-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    text-shadow: 0 1px 3px rgba(76, 29, 149, 0.1);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--accent-rose);
}

.header-phone-btn {
    background: var(--accent-rose);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-phone-btn:hover {
    background: var(--secondary-pink);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 217, 242, 0.3), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(248, 187, 217, 0.3), transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-visual {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.medical-icon {
    display: inline-block;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(244, 114, 182, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--secondary-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(244, 114, 182, 0.5);
}

/* Trust Badges */
.trust-badges {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--gradient-soft);
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(232, 121, 249, 0.1);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-secondary);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(232, 121, 249, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(232, 121, 249, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.service-card.featured {
    border: 3px solid var(--accent-rose);
    background: linear-gradient(145deg, #fff, #fef7ff);
    transform: scale(1.02);
}

.service-card.featured h3 {
    color: var(--accent-rose);
    font-size: 1.5rem;
}

.service-card.featured .service-icon {
    color: var(--accent-rose);
    font-size: 2rem;
}

/* Features Section */
.features {
    background: var(--gradient-soft);
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(232, 121, 249, 0.1);
    border: 1px solid var(--border-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Process Section */
.process {
    background: var(--white);
    padding: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    background: var(--gradient-soft);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(232, 121, 249, 0.3);
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Important Notices Section */
.important-notices {
    background: var(--gradient-soft);
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
}

.notices-box {
    background: var(--white);
    border: 2px solid var(--secondary-pink);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(232, 121, 249, 0.1);
    border-left: 6px solid var(--accent-rose);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-pink);
}

.notice-icon {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.notice-header h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.notices-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
}

.notices-content p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.notices-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

.footer-section p,
.footer-section a {
    color: #C4B5FD;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    border-top: 1px solid #6B46C1;
    padding-top: 1rem;
    text-align: center;
    color: #C4B5FD;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 29, 149, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(232, 121, 249, 0.3);
    border: 1px solid var(--border-light);
    max-height: 85vh;
    overflow-y: auto;
}

.close {
    color: var(--text-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-rose);
    box-shadow: 0 0 0 3px rgba(232, 121, 249, 0.1);
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.service-option:hover {
    border-color: var(--accent-rose);
    background: #fef7ff;
}

.service-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-rose);
}

.service-option.selected {
    border-color: var(--accent-rose);
    background: #fef7ff;
}

.service-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

.services-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef7ff, #f3e8ff);
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.services-info h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.services-list {
    display: grid;
    gap: 0.8rem;
}

.service-info-item {
    padding: 0.8rem 1rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 8px rgba(232, 121, 249, 0.1);
    transition: all 0.3s ease;
}

.service-info-item:hover {
    background: #fef7ff;
    border-color: var(--accent-rose);
    transform: translateY(-1px);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .header-nav {
        gap: 0.8rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-phone-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        order: -1;
        margin-bottom: 0.5rem;
    }
@media (max-width: 768px) {
    .header-nav {
        gap: 0.8rem;
        font-size: 0.85rem;
    }
    
    .header-phone-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 90vh;
    }
    
    .hero-visual {
        margin-bottom: 1.5rem;
    }
    
    .medical-icon svg {
        width: 80px;
        height: 80px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        margin: 1.5rem 0;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-contact {
        display: none;
    }

    .logo {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
    }
    
    .services-info {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .service-info-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .services-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .service-card,
    .modal-content {
        padding: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .notices-box {
        padding: 1.5rem;
    }

    .notice-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .notice-header h3 {
        font-size: 1.2rem;
    }

    .notices-content p {
        font-size: 0.9rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    flex-shrink: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        left: auto;
    }
    
    .whatsapp-float a {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 25px;
        gap: 6px;
        min-width: auto;
        white-space: nowrap;
    }
    
    .whatsapp-float svg {
        width: 18px;
        height: 18px;
    }
}
