/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #c0cfd0;
    box-shadow: 0 2px 20px rgba(160, 191, 185, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo h3 {
    color: #80b48c;
    font-weight: 600;
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #80b48c;
    background-color: rgba(160, 191, 185, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #80b48c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                url('https://images.unsplash.com/photo-1515488042361-ee00e0ddd4e4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    padding-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.01em;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #80b48c 0%, #a0bfb9 100%);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(128, 180, 140, 0.3);
    text-shadow: none;
    border: none;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 180, 140, 0.4);
    background: linear-gradient(135deg, #a0bfb9 0%, #80b48c 100%);
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
    margin-bottom: 0;
    border-left: 1px solid rgba(192, 207, 208, 0.3);
    border-right: 1px solid rgba(192, 207, 208, 0.3);
    box-shadow: 0 0 20px rgba(192, 207, 208, 0.1);
}

.section-alt {
    background: linear-gradient(135deg, #f0f0f0 0%, #f8f8f8 100%);
    position: relative;
    border-left: 1px solid rgba(160, 191, 185, 0.4);
    border-right: 1px solid rgba(160, 191, 185, 0.4);
    box-shadow: 0 0 25px rgba(160, 191, 185, 0.15);
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #80b48c 0%, #a0bfb9 100%);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(128, 180, 140, 0.2);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.about-image .image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 2rem auto 0;
    background: linear-gradient(135deg, #a0bfb9 0%, #c0cfd0 100%);
    border: 2px solid #80b48c;
    box-shadow: 0 10px 40px rgba(160, 191, 185, 0.15);
    border-radius: 20px;
}

.about-photo {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #80b48c;
    box-shadow: 0 10px 40px rgba(160, 191, 185, 0.15);
    display: block;
    margin: 2rem auto 0;
}

/* Doula Section */
.doula-content {
    max-width: 1000px;
    margin: 0 auto;
}

.doula-text {
    text-align: center;
    margin-bottom: 3rem;
}

.doula-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.benefits h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(160, 191, 185, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #c0cfd0;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #80b48c 0%, #a0bfb9 100%);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(160, 191, 185, 0.2);
    border-color: #80b48c;
}

.benefit-item i {
    font-size: 2.2rem;
    color: #80b48c;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-item p {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.service-icon i {
    font-size: 2.5rem;
    color: #80b48c;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-content p {
    color: #2c3e50;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Pricing Section */
.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pricing-info {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(160, 191, 185, 0.1);
    border: 1px solid #c0cfd0;
    position: relative;
    overflow: hidden;
}

.pricing-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #80b48c 0%, #a0bfb9 100%);
}

.pricing-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.shift-info {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.pricing-table-container {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(160, 191, 185, 0.1);
}

.pricing-table thead {
    background: linear-gradient(135deg, #80b48c 0%, #a0bfb9 100%);
    color: white;
}

.pricing-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #2c3e50;
    font-size: 0.95rem;
}

.pricing-table tr:hover {
    background-color: rgba(128, 180, 140, 0.05);
}

.pricing-table .price {
    font-weight: 700;
    color: #80b48c;
    font-size: 1.1rem;
}

.package-includes {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(160, 191, 185, 0.1);
    border: 1px solid #c0cfd0;
    position: relative;
    overflow: hidden;
}

.package-includes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #80b48c 0%, #a0bfb9 100%);
}

.package-includes h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    padding: 0.8rem 0;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #80b48c;
    font-weight: bold;
    font-size: 1.1rem;
}

.alternative-services {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(160, 191, 185, 0.1);
    border: 1px solid #c0cfd0;
    position: relative;
    overflow: hidden;
}

.alternative-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #80b48c 0%, #a0bfb9 100%);
}

.alternative-services h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-option {
    text-align: center;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(160, 191, 185, 0.15);
    border-color: #80b48c;
}

.service-option h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-option p {
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.service-description {
    font-style: italic;
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.custom-info {
    background: linear-gradient(135deg, #80b48c 0%, #a0bfb9 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(128, 180, 140, 0.3);
    border: 1px solid #c0cfd0;
}

.custom-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.custom-info p {
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(160, 191, 185, 0.1);
    border: 1px solid #c0cfd0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #80b48c 0%, #a0bfb9 100%);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #c0cfd0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f5f5f5;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #80b48c;
    box-shadow: 0 0 0 3px rgba(128, 180, 140, 0.2);
    background: #ffffff;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    background: linear-gradient(135deg, #80b48c 0%, #a0bfb9 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 20px rgba(128, 180, 140, 0.3);
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 180, 140, 0.4);
    background: linear-gradient(135deg, #a0bfb9 0%, #80b48c 100%);
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #80b48c 0%, #a0bfb9 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #c0cfd0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(160, 191, 185, 0.1);
        padding: 1.5rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        height: 75vh;
        min-height: 500px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image .image-placeholder {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .about-photo {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.2rem;
    }
    
    .benefit-item i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 0;
        gap: 1.2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 2.2rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }

    .pricing-table-container {
        overflow-x: scroll;
    }
    
    .pricing-table {
        min-width: 500px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .service-option {
        padding: 1rem;
    }
    
    .service-option h4 {
        font-size: 1rem;
    }
    
    .service-option p {
        font-size: 0.85rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }


    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
}

/* Smooth scrolling for navigation */
html {
    scroll-behavior: smooth;
}

/* Active navigation link styling */
.nav-link.active {
    color: #80b48c;
    background-color: rgba(160, 191, 185, 0.1);
}

.nav-link.active::after {
    width: 80%;
}
