/* Newborn Page Specific CSS */

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef9f3 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: var(--background-gray);
}

.packages-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--accent-color);
    position: relative;
}

.package-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Premium Package */
.premium-package {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
}

.premium-package h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.premium-package .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.premium-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--accent-color);
}

.premium-card .package-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.premium-card .package-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.package-duration {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
}

/* Safety Section */
.safety-section {
    padding: 80px 0;
    background: var(--background-light-gray);
}

.safety-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.safety-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.safety-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.safety-icon i {
    font-size: 1.8rem;
    color: white;
}

.safety-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.safety-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section Specific Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background: white;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question:hover {
    background: var(--hover-color);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
}

.faq-answer.active {
    padding: 20px;
    max-height: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    font-size: 18px;
    padding: 18px 45px;
}

.cta .btn-primary:hover {
    background-color: var(--background-light-gray);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .package-card.featured {
        transform: none;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        height: 350px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card.featured {
        transform: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 30px 20px;
    }

    .premium-card {
        padding: 30px 20px;
    }

    .premium-card .package-price {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}