:root {
    --primary-brown: #8d7968;
    --accent-coral: #ff9787;
    --text-dark: #504338;
    --bg-light-green: #f6fbeb;
    --bg-lime-light: #f4fae6;
    --bg-peach: #f7efeb;
    --border-green: #d6e2ba;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* Typography Utilities */
.text-brown { color: var(--primary-brown); }
.text-coral { color: var(--accent-coral); }
.subtitle {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}
.center { text-align: center; }

.center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #92b57c; /* Used from Figma button */
    color: white;
    border-color: #92b57c;
}

.btn-primary:hover {
    background-color: #7a9c65;
    border-color: #7a9c65;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 181, 124, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-brown);
    color: var(--primary-brown);
}

.btn-outline:hover {
    background-color: var(--primary-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 121, 104, 0.2);
}

.btn-full {
    width: 100%;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.mt-40 { margin-top: 2.5rem; }

/* Header & Nav */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.top-bar {
    background-color: var(--primary-brown);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem max(5rem, calc((100vw - 1440px) / 2));
    font-size: 0.875rem;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    font-weight: 300;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem max(5rem, calc((100vw - 1440px) / 2));
}

.logo-placeholder {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-coral);
    transition: width var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Sections General */
section {
    padding: 6rem max(5rem, calc((100vw - 1440px) / 2));
}

.bg-light-green { background-color: var(--bg-light-green); }
.bg-very-light-green { background-color: #fbfdf7; } /* slightly lighter for contrast */
.bg-lime-light { background-color: var(--bg-lime-light); }

/* Hero Section */
.hero {
    margin-top: 130px; /* Offset for fixed header */
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(214, 226, 186, 0.5) 0%, rgba(214, 226, 186, 0) 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--border-green);
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.icon-wrapper {
    background-color: var(--border-green);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brown);
}

.icon-wrapper.bg-peach {
    background-color: var(--bg-peach);
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image-placeholder {
    position: relative;
    width: 500px;
    height: 600px;
    border-radius: 250px 250px 0 0;
    z-index: 1;
    overflow: hidden;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    margin-left: 2rem;
}

/* Info Cards Section */
.info-cards-section {
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-cards-section .section-header h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.info-cards-container {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.info-card {
    flex: 1;
    background: white;
    border: 1px solid var(--border-green);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 1.75rem;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.25rem;
}

.directions-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.icon-wrapper-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary-brown);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section */
.about-section {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-images {
    flex: 1;
    display: flex;
    gap: 2rem;
    align-items: flex-end;
}

.about-img-placeholder {
    background-color: #eab3b3;
    border-radius: 160px;
    flex: 1;
    background-size: cover;
    background-position: center;
}

.about-img-placeholder.shape-1 {
    aspect-ratio: 2/3;
    height: 400px;
    background-image: url('assets/about1.png');
}

.about-img-placeholder.shape-2 {
    aspect-ratio: 2/3;
    height: 550px;
    background-image: url('assets/about2.png');
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Services Section */
.services-section .section-header h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border-green);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

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

/* Process Section */
.process-section .section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.process-section .section-header p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.process-container {
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: var(--border-green);
    color: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-line {
    height: 2px;
    background-color: var(--border-green);
    flex: 1;
}

.process-step h3 {
    font-size: 1.25rem;
}

/* Team Section */
.team-section .section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-section .section-header p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.team-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.member-img-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 160px;
    background-color: #eab3b3;
    margin-bottom: 1rem;
    transition: transform var(--transition-smooth);
    background-size: cover;
    background-position: center;
}

.member-1 { background-image: url('assets/doctor1.png'); }
.member-2 { background-image: url('assets/doctor2.png'); }
.member-3 { background-image: url('assets/doctor3.png'); }

.team-member:hover .member-img-placeholder {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--primary-brown);
    color: white;
    padding: 4rem max(5rem, calc((100vw - 1440px) / 2)) 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col.wide {
    max-width: 400px;
}

.footer-logo {
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.footer-logo .logo-img {
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent-coral);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a:hover {
    color: var(--accent-coral);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-coral);
}

/* Responsive (Basic) */
@media (max-width: 1044px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-placeholder {
        margin-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 1024px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 2rem;
    }
    
    .main-nav {
        padding: 1rem 2rem;
    }
    
    section {
        padding: 4rem 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-placeholder {
        right: 2rem;
        width: 400px;
        height: 500px;
    }
    
    .info-cards-container {
        flex-direction: column;
    }
    
    .about-section {
        flex-direction: column;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-container {
        flex-direction: column;
    }
    
    .step-line {
        display: none;
    }
    
    .team-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
    }

    .faq-inner {
        flex-direction: column;
    }

    .news-container {
        flex-direction: column;
    }

    .reviews-container {
        flex-direction: column;
    }

    .friendly-gallery {
        flex-direction: column;
    }
}

/* ===== FRIENDLY ENVIRONMENT SECTION ===== */
.friendly-section {
    padding: 5rem max(2rem, calc((100vw - 1440px) / 2 + 5rem));
    background-color: var(--bg-light-green);
}

.friendly-section-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.friendly-gallery {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.friendly-img {
    flex: 1;
    height: 359px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 5rem max(2rem, calc((100vw - 1440px) / 2 + 5rem));
    background-color: #fff;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--bg-light-green);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(141, 121, 104, 0.12);
}

.review-avatar {
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    font-family: var(--font-heading);
}

.avatar-1 { background-color: var(--accent-coral); }
.avatar-2 { background-color: var(--primary-brown); }
.avatar-3 { background-color: #92b57c; }

.review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    flex: 1;
}

.review-author {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-brown);
    margin-top: auto;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem max(2rem, calc((100vw - 1440px) / 2 + 5rem));
    background-color: var(--bg-lime-light);
}

.faq-inner {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.faq-sidebar {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-sidebar h2 {
    font-size: 2rem;
}

.mt-20 { margin-top: 1.25rem; }

.faq-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-green);
    transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(141, 121, 104, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 1rem;
}

.faq-icon {
    color: var(--primary-brown);
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ===== NEWS SECTION ===== */
.news-section {
    padding: 5rem max(2rem, calc((100vw - 1440px) / 2 + 5rem));
    background-color: var(--bg-light-green);
}

.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(141, 121, 104, 0.15);
}

.news-img-wrapper {
    position: relative;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-coral);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.news-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.news-date {
    font-size: 0.8rem;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.news-body h3 {
    font-size: 1.1rem;
    line-height: 1.3;
}

.news-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: auto;
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.news-link:hover {
    color: var(--accent-coral);
    gap: 0.7rem;
}

/* ===== FOOTER MAP ===== */
.footer-map {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.footer-map iframe {
    display: block;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-info i {
    width: 16px;
    color: var(--accent-coral);
    flex-shrink: 0;
}

