/* Prenatal Care - Modern Design System */

:root {
    --primary-color: #ec4899;
    --secondary-color: #db2777;
    --accent-color: #fbcfe8;
    --dark-bg: #1f1f2e;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    color: var(--light-text);
    margin: 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button.primary {
    background: var(--light-text);
    color: var(--primary-color);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.stat-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #fbcfe8;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Overview Section */
.overview-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0f0f1a 0%, #1f1f2e 100%);
}

.overview-section .section-title {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 60px;
    font-size: 42px;
    font-weight: 800;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-text {
    color: var(--gray-text);
    line-height: 1.8;
}

.overview-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.overview-highlights {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-text);
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
    transition: transform 0.3s ease;
}

.overview-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(219, 39, 119, 0.05) 100%);
    border: 1px solid rgba(236, 72, 153, 0.2);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.1) 100%);
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-10deg);
}

.service-card h3 {
    color: var(--light-text);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-text);
    font-size: 13px;
}

.feature i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Technology Section */
.technology-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1f1f2e 0%, #0f0f1a 100%);
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(219, 39, 119, 0.03) 100%);
    border: 1px solid rgba(236, 72, 153, 0.15);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-card:hover {
    border-color: rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(219, 39, 119, 0.08) 100%);
    transform: translateY(-12px);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-card:hover .tech-icon {
    transform: scale(1.15) rotate(5deg);
}

.tech-card h3 {
    color: var(--light-text);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tech-card p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(219, 39, 119, 0.05) 100%);
    border: 1px solid rgba(236, 72, 153, 0.2);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.1) 100%);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.2);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(10deg);
}

.why-card h3 {
    color: var(--light-text);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1f1f2e 0%, #0f0f1a 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(219, 39, 119, 0.03) 100%);
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(236, 72, 153, 0.1);
}

.faq-header h3 {
    color: var(--light-text);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.faq-header i {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding: 0 25px 25px 25px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(219, 39, 119, 0.05) 100%);
    border: 1px solid rgba(236, 72, 153, 0.2);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.1) 100%);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.2);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-card p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 72, 153, 0.2);
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--light-text);
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.author-info span {
    color: var(--primary-color);
    font-size: 12px;
}

/* Emergency Contact Section */
.emergency-contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.emergency-text h2 {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.emergency-features {
    display: grid;
    gap: 18px;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 500;
}

.emergency-feature i {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.contact-card h3 {
    color: #1f1f2e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-detail {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 18px;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

@media (max-width: 768px) {
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .emergency-contact-info {
        grid-template-columns: 1fr;
    }
}

/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 60px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 52px;
    }
    
    .overview-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid,
    .technology-grid,
    .why-choose-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-card,
    .tech-card,
    .why-card,
    .testimonial-card {
        padding: 25px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}
