:root {
    /* New Palette based on user inspiration */
    --primary-color: #008d62;
    /* Emerald Green */
    --primary-dark: #006c4b;
    --primary-light: #e6f7f2;
    /* Mint background */
    --text-dark: #1f2937;
    --text-body: #4b5563;
    --white: #ffffff;
    --border-color: #d1fae5;

    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
.logo,
.btn {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-btn {
    display: inline-block;
    padding: 10px 24px !important;
    font-size: 0.95rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Common Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 141, 98, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--primary-light);
}

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.visual-circle {
    width: 400px;
    height: 400px;
    background-color: #d1fae5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-img-placeholder {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

/* Utils */
.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-body);
}

/* Cards Grid / Philosophy */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--primary-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s;
}

.info-card:hover {
    /* Slight lift on hover */
    transform: translateY(-5px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

/* About Founder */
.about-founder {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    text-transform: uppercase;
    color: var(--text-body);
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.role-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.check-list {
    margin-top: 25px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-body);
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-weight: 800;
}

.about-image-wrapper {
    position: relative;
}

.image-bg-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: 20px;
    z-index: 0;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
}

/* Treatments / Services */
.treatments {
    background-color: var(--white);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.treatment-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    background: white;
    transition: all 0.3s;
    text-align: center;
    /* Center align content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.treatment-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 141, 98, 0.08);
}

.treatment-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.card-dot {
    display: none;
    /* Hide the dot as we have images now */
}

.treatment-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.treatment-card p {
    font-size: 0.95rem;
    color: var(--text-body);
}


/* Contact */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-box {
    background: var(--primary-light);
    padding: 30px;
    border-radius: 12px;
    min-width: 250px;
    text-align: center;
}

.contact-box .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.contact-box a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.map-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid white;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-container {
        order: -1;
        /* Image on top on mobile */
        margin-bottom: 40px;
    }

    .nav {
        display: none;
        /* Mobile menu needed */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn .bar {
        width: 25px;
        height: 3px;
        background-color: var(--text-dark);
        margin: 5px 0;
        display: block;
    }

    .nav-btn {
        display: none;
        /* Hide header button on mobile, use hero button */
    }
}

/* =========================================
   Animations & Transitions 
   ========================================= */

/* Base styles for animations - helper class if needed, but GSAP handles most */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

/* 
   Hero Specifics: 
   GSAP will handle the entrance.
*/
/* Hero elements handled by GSAP */

/* Enhanced Hover Interactions */
.btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 141, 98, 0.3);
}

.info-card {
    /* Transition handled by GSAP to avoid conflict */
    /* keeping box-shadow transition in CSS is okay if we don't animate it with GSAP, 
       but for consistency let's stick to GSAP for movement. 
       We will leave specific non-transform transitions if needed, or just remove 'all'. */
    transition: box-shadow 0.4s ease;
}

.info-card:hover {
    /* Transform removed, handled by JS */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.treatment-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    background: white;
    /* transition: all 0.4s... REMOVED to avoid GSAP conflict */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
    /* Center align content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.treatment-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(0, 141, 98, 0.12);
    /* Transform removed, handled by JS */
}


/* =========================================
   Articles Section 
   ========================================= */

.hero-small {
    background-color: var(--primary-light);
    padding: 120px 0 60px;
    text-align: center;
}

.articles-section {
    padding: 60px 0;
    min-height: 50vh;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.3;
}

.article-excerpt {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.read-more:hover {
    text-decoration: underline;
}

.loading-state {
    grid-column: 1 / -1;
    padding: 40px;
    color: #666;
}

/* Admin Styles Helper */
.hidden {
    display: none !important;
}