:root {
    --primary-color: #7BAE43;
    --secondary-color: #A3C585;
    --accent-color: #E2D5A0;
    --text-dark: #2E3A1F;
    --bg-light: #F7F4ED;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: var(--bg-light);
    overflow-x: hidden;
}


/* Topbar */

.topbar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    padding: 6px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.topbar .social-icons a {
    color: white;
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.topbar .social-icons a:hover {
    transform: scale(1.2);
}


/* Navbar */

.navbar {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: background-color 0.4s ease, box-shadow 0.4s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

:root {
    --primary-color: #4f7e42;
    --dark-green: #1b2d1b;
    --light-bg: #f7fff5;
}

.custom-navbar {
    background-color: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.custom-navbar .nav-link {
    font-weight: 500;
    color: var(--dark-green);
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: var(--primary-color);
}

.custom-navbar .navbar-toggler {
    border: none;
}

.custom-navbar .navbar-toggler-icon {
    background-size: contain;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        animation: slideDown 0.4s ease forwards;
    }
    .nav-links.active {
        display: flex;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* Hero */

.hero-section {
    position: relative;
    background: linear-gradient(to bottom right, #F7F4ED, #d4e6b5);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
    box-sizing: border-box;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 70%);
    z-index: 0;
    animation: pulseGlow 5s infinite alternate ease-in-out;
}

.hero-content {
    z-index: 2;
    max-width: 1000px;
    color: var(--text-dark);
    animation: fadeInUp 1.5s ease;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.tagline {
    font-size: 1.1rem;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 30px;
    color: #3e3e3e;
}

.hero-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border: none;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.hero-btn:hover {
    background-color: var(--text-dark);
    transform: scale(1.05);
}

.hero-quote {
    font-family: 'Great Vibes', cursive;
    font-size: 1.7rem;
    color: #5f7040;
    margin: 40px auto 20px;
    max-width: 600px;
    animation: fadeIn 2.5s ease;
}

.hero-quote span {
    display: block;
    font-size: 1rem;
    margin-top: 8px;
    font-family: 'Work Sans', sans-serif;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-box {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 20px;
    width: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-box h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #444;
    font-family: 'Work Sans', sans-serif;
}

.leaves-animation,
.falling-petals {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 80px;
    opacity: 0.6;
    animation: float 8s infinite ease-in-out;
}

.leaf1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.leaf2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.leaf3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.leaf4 {
    top: 30%;
    left: 25%;
    animation-delay: 3s;
}

.leaf5 {
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

.leaf6 {
    bottom: 15%;
    left: 15%;
    animation-delay: 5s;
}

.leaf7 {
    bottom: 10%;
    right: 35%;
    animation-delay: 6s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.petal {
    position: absolute;
    width: 40px;
    opacity: 0.8;
    animation: fall 10s linear infinite, drift 4s ease-in-out infinite alternate;
}

.petal1 {
    left: 10%;
    animation-delay: 0s;
}

.petal2 {
    left: 25%;
    animation-delay: 2s;
}

.petal3 {
    left: 40%;
    animation-delay: 4s;
}

.petal4 {
    left: 55%;
    animation-delay: 1s;
}

.petal5 {
    left: 70%;
    animation-delay: 3s;
}

.petal6 {
    left: 85%;
    animation-delay: 5s;
}

@keyframes fall {
    0% {
        top: -10%;
        opacity: 0;
        transform: rotate(0deg) scale(1);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: rotate(360deg) scale(0.8);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(30px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .feature-box {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    .hero-quote {
        font-size: 1.3rem;
    }
    .leaf,
    .petal {
        width: 35px;
    }
}


/* About Section */

.about-section {
    padding: 80px 20px;
    background: #f7fef1;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text h2 span {
    color: var(--primary-color);
    font-style: italic;
}

.about-text p {
    font-family: 'Work Sans', sans-serif;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: var(--text-dark);
    transform: scale(1.05);
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.effect-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
    z-index: 1;
    position: relative;
}

.about-image:hover .effect-img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .about-text,
    .about-image {
        width: 100%;
    }
    .about-text h2 {
        font-size: 2rem;
    }
}


/* Services Section */

.services-section {
    background: #f7fef1;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-color);
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
    color: #444;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-info {
    padding: 20px;
}

.service-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-info p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


/* Doctors Section */

.doctors-section {
    background: #f7fef1;
    padding: 80px 20px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
    justify-items: center;
}

.doctor-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.doctor-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.05);
}

.social-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    opacity: 0;
}

.doctor-card:hover .social-icons {
    transform: translateY(0);
    opacity: 1;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--text-dark);
}

.doctor-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.specialty {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.doctor-card p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}


/* Appointment Section */

.appointment-section {
    position: relative;
    padding: 100px 20px;
    z-index: 1;
    overflow: hidden;
    color: #fff;
}

.appointment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(40, 65, 30, 0.85), rgba(90, 140, 70, 0.7));
    z-index: 0;
}

.appointment-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.appointment-content {
    flex: 1;
    max-width: 500px;
}

.appointment-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.appointment-content h2 span {
    color: #d4ffb2;
    font-style: italic;
}

.appointment-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: #e9f9e2;
    margin-bottom: 30px;
    line-height: 1.6;
}

.appointment-form {
    display: grid;
    gap: 15px;
}

.appointment-form input,
.appointment-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    background: #f9fff4;
    color: #333;
}

.appointment-form textarea {
    resize: none;
}

.appointment-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.appointment-form button:hover {
    background: #1f4723;
}

.appointment-image {
    flex: 1;
    max-width: 400px;
}

.appointment-image img {
    width: 100%;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .appointment-container {
        flex-direction: column;
    }
    .appointment-content,
    .appointment-image {
        max-width: 100%;
    }
}


/* Blog Section */

.blog-section {
    background: #f7fef1;
    padding: 100px 20px;
    text-align: center;
}

.blog-entry {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
    text-align: left;
}

.blog-entry.reverse {
    flex-direction: row-reverse;
}

.blog-img,
.blog-content {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
    flex: 1;
    min-width: 280px;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: #2d4b1d;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.blog-content p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Work Sans', sans-serif;
}

.read-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: 0.3s ease;
}

.read-more:hover {
    color: #1e4728;
}

@media (max-width: 768px) {
    .blog-entry {
        flex-direction: column !important;
        text-align: center;
    }
    .blog-content,
    .blog-img {
        width: 100%;
    }
    .blog-date {
        top: 10px;
        left: 10px;
        font-size: 0.75rem;
    }
}


/* FAQ Section */

.faq-section {
    background: #f7fef1;
    padding: 100px 20px;
    text-align: center;
}

.faq-section .section-title {
    font-size: 2.5rem;
    color: #2d4b1d;
    font-family: 'Playfair Display', serif;
}

.faq-section .section-title span {
    color: var(--primary-color);
}

.faq-section .section-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-top: 10px;
    font-family: 'Work Sans', sans-serif;
}

.faq-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 40px;
}

.faq-image {
    flex: 1;
    min-width: 280px;
}

.faq-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.faq-accordion {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.faq-item {
    background: #ffffffc7;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #2d4b1d;
    text-align: left;
    font-family: 'Work Sans', sans-serif;
    position: relative;
}

.faq-question .toggle-icon {
    position: absolute;
    right: 24px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background: #fafff1;
    color: #444;
    transition: max-height 0.5s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 16px 24px 20px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .faq-image,
    .faq-accordion {
        width: 100%;
    }
}

.contact-section {
    background: #f7fef1;
    padding: 100px 20px;
    text-align: center;
}

.contact-section .section-title {
    font-size: 2.5rem;
    color: #2d4b1d;
    font-family: 'Playfair Display', serif;
}

.contact-section .section-title span {
    color: var(--primary-color);
}

.contact-section .section-subtitle {
    font-size: 1.1rem;
    color: #444;
    font-family: 'Work Sans', sans-serif;
    margin-top: 10px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    justify-content: space-between;
    align-items: stretch;
}


/* Contact Form */

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 12px 12px 0;
    border: none;
    border-bottom: 2px solid #aacba8;
    background: transparent;
    outline: none;
    resize: none;
    font-family: 'Work Sans', sans-serif;
    color: #2d4b1d;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #1e4728;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.clinic-details {
    background: #ffffffd9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.clinic-details h3 {
    font-family: 'Playfair Display', serif;
    color: #2d4b1d;
    margin-bottom: 15px;
}

.clinic-details p {
    margin-bottom: 10px;
    color: #444;
    font-family: 'Work Sans', sans-serif;
}

.clinic-map {
    margin-top: 20px;
}

.clinic-map iframe {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    border: none;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .contact-form,
    .contact-info {
        width: 100%;
    }
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.main-footer {
    position: relative;
    background: #1b2d1b;
    /* Dark Herbal Green */
    padding: 80px 20px 40px;
    font-family: 'Work Sans', sans-serif;
    overflow: hidden;
    color: #e9fbe3;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-leaf {
    position: absolute;
    width: 80px;
    opacity: 0.08;
    animation: floatLeaf 12s infinite;
    filter: brightness(0.8);
}

.footer-leaf.leaf1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.footer-leaf.leaf2 {
    bottom: 15%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes floatLeaf {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-box {
    flex: 1 1 220px;
}

.footer-box h3,
.footer-box h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #f9ffeb;
}

.footer-box p {
    margin-bottom: 10px;
    color: #cde6c1;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #cde6c1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #ffd700;
    /* Herbal gold accent */
}

.footer-socials a {
    font-size: 1.3rem;
    margin-right: 12px;
    color: #cde6c1;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #ffd700;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: #2d402d;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.newsletter-form input {
    border: none;
    padding: 10px 15px;
    flex: 1;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
    color: #fff;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form button {
    background: #ffd700;
    border: none;
    color: #1b2d1b;
    padding: 10px 18px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #fff;
    color: #1b2d1b;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 0.95rem;
    color: #a6d3a0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-box {
        width: 100%;
    }
    .footer-socials {
        justify-content: center;
    }
}