/* 
   Doctora Flori Landing Page Styles
   Theme: Professional, Warm, Emotional
   Colors: Lilac (#C8A2C8), Cyan (#A0E7E5), Lime (#D0F288), Pink (#FFB5C2), Yellow (#FFF3B0)
*/

:root {
    --color-lilac: #C8A2C8;
    --color-cyan: #A0E7E5;
    --color-lime: #D0F288;
    --color-pink: #FFB5C2;
    --color-yellow: #FFF3B0;
    --color-text-main: #333333;
    --color-text-light: #666666;
    --color-bg-light: #F9F9F9;
    --input-grey: #F2F2F2;

    --font-main: 'Nunito', sans-serif;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius-card: 20px;
    --radius-btn: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    color: #4A4A4A;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Specific hover effects for content images */
.service-card:hover img,
.hero-image:hover img,
.about-image:hover img,
.empathy-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--color-lime);
    /* Vibrant Lime Pop */
    color: #333;
    border-bottom: 4px solid #b8da6b;
    /* Slight depth */
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #dcfba0;
}

.btn-secondary {
    background-color: #FFFFFF;
    border: 2px solid var(--color-lilac);
    color: var(--color-lilac);
}

.btn-secondary:hover {
    background-color: var(--color-lilac);
    color: #FFF;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* --- Header --- */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjust based on logo needs */
    width: auto;
}

.nav-list {
    display: none;
    /* Mobile first hidden */
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-lilac);
    margin: 5px 0;
    border-radius: 3px;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    z-index: 2000;
    padding: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin: 1.5rem 0;
}

.mobile-nav-list a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
}

/* --- Hero Section --- */
.hero {
    padding: 5rem 0;
    /* More breathing room */
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-image {
    position: relative;
    /* max-width: 400px; */
}

.blob-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.blob-1 {
    width: 300px;
    height: 300px;
    background-color: var(--color-cyan);
    opacity: 0.3;
    top: 10px;
    left: -20px;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 2.2rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* --- Empathy Section --- */
.empathy {
    background-color: #FDFAFF;
    /* Very faint lilac tint */
    padding: 6rem 0;
    position: relative;
    text-align: center;
}

.empathy-impact {
    margin-top: 2.5rem;
    font-size: 1.8rem;
    color: var(--color-lilac);
    font-weight: 800;
    line-height: 1.3;
}

.empathy-text-content {
    text-align: left;
    max-width: 600px;
}

.empathy-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.question-bubble {
    background: #fff;
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 5px solid #FFB5C2;
    /* Pink accent */
    transition: transform 0.3s ease;
}

.question-bubble:hover {
    transform: translateX(10px);
}

.question-bubble .icon {
    font-size: 1.5rem;
}

.question-bubble p {
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.empathy-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.empathy-img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.img-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-cyan);
    top: 20px;
    right: -20px;
    border-radius: var(--radius-card);
    z-index: 1;
    opacity: 0.3;
}

.cloud-shape {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50px;
    background: radial-gradient(ellipse at center, white 0%, transparent 70%);
    opacity: 0.8;
}

/* --- Value Prop Section --- */
.value-prop {
    padding: 6rem 0;
}

.value-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    /* More internal padding */
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    text-align: left;
    border-top: 5px solid var(--color-cyan);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card .icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.value-highlight {
    margin-top: 4rem;
    text-align: center;
    background-color: var(--color-yellow);
    padding: 2rem;
    border-radius: var(--radius-card);
    font-weight: 700;
    color: #6d6012;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.highlight-icon {
    font-size: 2rem;
}

.text-marker {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
    padding: 0 5px;
    border-bottom: 3px solid var(--color-lilac);
}

/* --- Services Section --- */
.services {
    padding: 6rem 0;
    background-color: #fcfcfc;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-main);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: var(--color-cyan);
    margin: 0.5rem auto 0;
    border-radius: 5px;
}

.modality-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.service-mode-badge {
    background-color: #fff;
    border: 2px solid var(--color-cyan);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-pregnancy {
    border: 2px solid var(--color-pink);
}

.service-pediatrics {
    border: 2px solid var(--color-lime);
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '•';
    color: var(--color-lilac);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* --- Process Section --- */
.process {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, #f0fbfc 100%);
}

.process-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    /* Connected by line */
}

.step {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    background-color: var(--color-lilac);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(200, 162, 200, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.step-content p {
    color: var(--color-text-light);
    margin: 0;
}

.step-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-lilac) 0%, var(--color-cyan) 100%);
    margin: -5px 0;
    /* Overlap slightly */
    z-index: 1;
    opacity: 0.5;
}

/* --- Testimonials --- */
.testimonials {
    padding: 4rem 0;
}

.testimonial-card {
    background-color: var(--color-yellow);
    padding: 3rem;
    border-radius: var(--radius-card);
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0;
    /* Let grid handle centering */
    opacity: 0.9;
    flex: 1;
    /* For flex layout */
}

.quote-icon {
    font-size: 4rem;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-cta {
    text-align: center;
    margin-top: 2rem;
    display: none;
    /* Hidden as we have Google card now */
}

/* Google Reviews Card Styles */
.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .testimonials-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: stretch;
        max-width: 1000px;
        margin: 0 auto;
    }
}

.google-review-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    text-align: left;
    max-width: 500px;
    width: 100%;
    border-top: 5px solid #4285F4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.google-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.google-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.google-info {
    display: flex;
    flex-direction: column;
}

.store-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.score {
    font-weight: 700;
    color: #E7711B;
}

.google-text {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.05rem;
}

.btn-google {
    background-color: #fff;
    color: #4285F4;
    border: 2px solid #4285F4;
    align-self: flex-start;
    transition: all 0.3s;
}

.btn-google:hover {
    background-color: #4285F4;
    color: #fff;
}

/* --- About Section --- */
.about {
    padding: 6rem 0;
    background-color: #fff;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-image img {
    width: 250px;
    /* Larger image */
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    /* Circle */
    border: 5px solid var(--color-cyan);
    box-shadow: var(--shadow-soft);
}

.about-content {
    text-align: center;
}

.about-tagline {
    font-weight: 700;
    color: var(--color-lilac);
    margin: 1rem 0;
}

.about-quote {
    font-style: italic;
    color: var(--color-text-light);
    border-left: 4px solid var(--color-lime);
    padding-left: 1rem;
    margin-left: 1rem;
    text-align: left;
}

/* --- Location Section --- */
.location {
    padding: 4rem 0;
    background-color: #F8F8F8;
}

.location-container {
    text-align: center;
}

.location-info h2 {
    margin-bottom: 1.5rem;
}

.location-info address {
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.location-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* --- Final CTA --- */
.final-cta {
    padding: 5rem 0;
    background: var(--color-lilac);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.brand-anchor {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* --- Footer --- */
.footer {
    background-color: #333;
    color: #ccc;
    padding: 3rem 0;
    text-align: center;
}

.footer-info h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social a {
    margin: 0 10px;
    color: #fff;
    font-weight: bold;
}

/* --- Desktop Responsive --- */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
        gap: 2rem;
        align-items: center;
        list-style: none;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-container {
        flex-direction: row-reverse;
        text-align: left;
        justify-content: space-between;
    }

    .hero-content {
        text-align: left;
        flex: 1;
        padding-right: 2rem;
    }

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

    .hero-buttons {
        flex-direction: row;
    }

    .hero-image {
        flex: 1;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .about-content {
        text-align: left;
    }

    .location-actions {
        flex-direction: row;
        justify-content: center;
    }

    /* Empathy Section Desktop Adjustment */
    .empathy-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
    }

    .empathy-text-content {
        max-width: none;
    }

    /* Order change: Text Left, Image Right is default in grid but ensure it is robust */
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}