/* Fonts matches the design closely with modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --bg-color: #ffffff;
    --primary-main: #570a0e;
    --accent-main: #9ac233;
    --top-bar: #570a0e;
    --text-dark: #4d574e;
    --text-muted: #757c76;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Top Bar --- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--top-bar);
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.top-bar-btn {
    background: var(--white);
    color: var(--top-bar);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: none;
    cursor: pointer;
}

/* --- Old Navbar CSS Removed (now in header.php) --- */

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-box {
    background-color: var(--primary-light);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    width: 100px;
    font-weight: 600;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.user-btn {
    background-color: var(--primary-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

/* --- Premium Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5rem 8%;
    min-height: calc(100vh - 130px);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(15, 30, 15, 0.9) 0%, rgba(15, 30, 15, 0.4) 60%, rgba(15, 30, 15, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    color: #f4f7f4;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.btn-explore {
    background-color: var(--primary-light);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.leaf-5 {
    bottom: 25%;
    right: -2%;
    transform: rotate(10deg);
    width: 80px;
    animation: float1 7s infinite alternate;
}

@keyframes float1 {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(30px) rotate(20deg);
    }
}

/* --- Therapy Cards --- */
.therapy-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.therapy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.therapy-card:hover::before {
    transform: scaleX(1);
}

.therapy-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--bg-color);
    color: var(--primary-light);
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    /* Centered icon */
    transition: all 0.3s;
}

.therapy-card:hover .therapy-icon {
    background-color: var(--primary-light);
    color: #fff;
}

.therapy-card h3 {
    color: var(--primary-main);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
}

.therapy-card p {
    color: #757c76;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-graphic {
        margin-top: 3rem;
        width: 100%;
        height: 350px;
    }

    .circle-1,
    .circle-2 {
        width: 250px;
        height: 250px;
        border-width: 15px;
    }

    .bowl-img {
        width: 200px;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-section, .treatment-grid, .cta-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-section > div {
        min-width: 100%;
    }
}

/* --- Footer --- */
footer {
    background-color: var(--primary-main);
    color: #eaf1e8;
    padding: 5rem 8% 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd8c8;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #cbd8c8;
}

.footer-col i {
    width: 25px;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: #aebfad;
    font-size: 0.9rem;
}
