:root {
    --header-height: 85px;
    --primary-color: #ff8882;
    --primary-dark: #ec635a;
    --primary-light: #fda5a5;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --background-light: #FFFFFF;
    --background-off: #F8F8F8;
    --gradient-primary: linear-gradient(135deg, #ff8882 0%, #ff8f8f 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
    padding-top: var(--header-height);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    position: relative;
    top: 5px;
}

.header-title h1 {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    line-height: 1;
}

.header-title small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-secondary);
}

nav {
    display: flex;
    gap: var(--spacing-md);
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: var(--spacing-xs) 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 85vh;
    background: url('./baby.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.overline {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    display: block;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

.hero h1 {
    font-family: "Poppins", serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFB3C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.cta-button:hover::before {
    transform: translateX(0);
}

/* Services Section */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header .overline {
    color: var(--primary-color);
    opacity: 0.9;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Poppins", serif;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.services-container {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.services {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-family: "Poppins", serif;
    font-weight: 400;
    font-size: 1rem;
}

.service-card {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.card-icon {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: "Poppins", serif;
    font-weight: 400;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    hyphens: auto;
}

.additional-services {
    dl {
        max-width: 800px;
        margin: 0 auto;
    }

    dt {
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-primary);
        margin-bottom: var(--spacing-xs);
        text-wrap: balance;
        border-bottom: 1px solid rgb(253 165 165 / 56%);
        padding-bottom: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }

    dd {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        padding-bottom: var(--spacing-md);
    }

}

.about-content {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 35%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    transform: scale(1.05);
}

.about-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-text {
    flex: 1;

    ul {
        list-style: none;
    }

    li {
        text-align: left;
    }
}

.about-text ul {
    list-style: none;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    background: var(--background-light);
    border: 1px solid rgba(0, 0, 0, 0.05);

    h3 {
        font-size: 1.2rem;
        letter-spacing: -0.01em;
        cursor: pointer;
    }

    .faq-item-content {
        padding-top: var(--spacing-sm);
    }

    p {
        margin-bottom: var(--spacing-sm);
    }
}

/* Contact Section */
.contact {
    background: var(--background-off);
    position: relative;
    overflow: hidden;

    .section-header {
        margin-bottom: var(--spacing-md);
    }
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    opacity: 0.5;
}

.contact::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    opacity: 0.3;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-header h2 {
    font-size: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.contact-item {
    padding: var(--spacing-sm);
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    color: var(--text-primary);
}

.contact-item i {
    font-size: 1rem;
}

.contact-item p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.contact-item-address {
    width: 100%;
    text-align: center;
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: var(--spacing-md) 0;
    background-color: var(--background-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer .container {
    padding: var(--spacing-sm) var(--spacing-md);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-container {
        flex-direction: column;
    }

    .services-photo {
        flex: 0 0 100%;
        transform: none;
    }

    .services-photo:hover {
        transform: none;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-md: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    nav {
        display: none;
    }

    .contact-item {
        padding: var(--spacing-sm);
    }

    .contact-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .service-card {
        padding: var(--spacing-md);
    }
}
