:root {
    --primary: #71be5b;
    --secondary: #1c5881;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Marcellus', sans-serif;
    box-sizing: border-box;
}
@media(max-width:765px){
    h2{
        font-size: 2rem !important;
    }
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Header & Navbar */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo img {
    max-height: 60px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary);
    font-size: 16px;
    padding: 10px 12px;
    transition: color 0.3s ease;
    display: block;
    text-transform: capitalize;
}

.nav-link:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-link {
    text-decoration: none;
    color: var(--secondary);
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-link:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.arrow {
    font-size: 12px;
    margin-left: 5px;
}

/* Contact Button */
.btn-contact {
    background-color: var(--primary);
    color: #ffffff !important;
    border-radius: 30px;
    padding: 10px 25px;
    transition: background-color 0.3s, transform 0.3s;
    margin-left: 10px;
}

.btn-contact:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-link {
        font-size: 14px;
        padding: 10px 8px;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        transition: left 0.3s ease;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
        text-align: left;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        padding: 15px 5%;
        font-size: 16px;
    }

    .nav-item:last-child {
        border-bottom: none;
        padding: 15px 5%;
        text-align: center;
    }
    
    .btn-contact {
        margin-left: 0;
        display: inline-block;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        background-color: #f9f9f9;
        display: none;
        padding: 0;
        border-radius: 0;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding: 12px 10%;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }

    /* Mobile toggle animations */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Slider Styles */
.hero-slider {
    background-color: #f4fdf5;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(113, 190, 91, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(113, 190, 91, 0.25) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(113, 190, 91, 0.2) 0%, transparent 25%);
    position: relative;
    overflow: hidden;
    /* padding: 60px 0; */
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
}

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

.hero-title {
    font-family: 'Marcellus', serif;
    font-size: 5.5rem;
    line-height: 1.1;
    color: #2b2726;
    margin: 0 0 20px 0;
    font-weight: normal;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-solid {
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background-color 0.3s, border-color 0.3s;
    border: 1px solid var(--primary);
}

.btn-solid:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    text-decoration: none;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 650px;
}

/* Swiper Pagination Colors */
.swiper-pagination-bullet {
    background: var(--primary) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        margin-bottom: 40px;
        max-width: 100%;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-text {
        margin: 0 auto 30px auto;
    }

    .hero-image {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafdf8 0%, #e6f4ebfc 100%);
    position: relative;
    overflow: hidden;
}

.about-leaf {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.about-leaf-1 {
    top: 50px;
    left: 20%;
    width: 60px;
    transform: rotate(-15deg);
}

.about-leaf-2 {
    bottom: 80px;
    right: 15%;
    width: 80px;
    transform: rotate(45deg);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.about-blob-bg {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 80%;
    height: 90%;
    background-color: #77b66145;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    opacity: 0.8;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.about-content {
    flex: 1;
}

.about-subheading {
    font-family: 'Marcellus', sans-serif;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-heading {
    font-family: 'Marcellus', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: normal;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 550px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0 0 10px 0;
    font-weight: normal;
}

.feature-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 480px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        gap: 50px;
    }
    
    .about-heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image-wrapper {
        margin-bottom: 30px;
    }
    
    .about-blob-bg {
        width: 100%;
        left: 0;
    }
    
    .about-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-item {
        text-align: left;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 2.2rem;
    }
    
    .feature-item {
        gap: 15px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    margin-bottom: 50px;
}

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

.subheading {
    font-family: 'Marcellus', sans-serif;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.main-heading {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #2b2726;
    margin-top: 0;
    font-weight: normal;
}

.servicesSwiper {
    padding-bottom: 60px !important; /* space for pagination */
}

.service-card {
    text-align: center;
    padding: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f4fdf5;
    transition: border-radius 0.5s ease;
}

.service-img-wrapper.arch-top {
    border-radius: 200px 200px 0 0;
}

.service-img-wrapper.arch-bottom {
    border-radius: 0 0 200px 200px;
}

.service-card:hover .service-img-wrapper {
    border-radius: 200px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-title {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #2b2726;
    margin: 0 0 15px 0;
    font-weight: normal;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes the read-more to the bottom if text varies */
}

.read-more {
    font-family: 'Marcellus', sans-serif;
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
    margin-top: auto; /* aligns bottom */
}

.read-more:hover {
    color: var(--secondary);
}

.read-more .arrow {
    margin-left: 5px;
}

/* Services Pagination position adjustments */
.services-pagination {
    bottom: 0 !important;
}

.services-pagination .swiper-pagination-bullet {
    background: var(--primary) !important;
}

/* Services Navigation Arrows */
.services-container {
    position: relative;
}

.services-next, .services-prev {
    color: #ffffff !important;
    background-color: var(--primary);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    top: 55%;
    margin-top: -22px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background-color 0.3s, transform 0.3s;
}

.services-next {
    right: 2%;
}

.services-prev {
    left: 2%;
}

.services-next:after, .services-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.services-next:hover, .services-prev:hover {
    background-color: var(--secondary);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .service-img-wrapper.arch-top {
        border-radius: 150px 150px 0 0;
    }
    
    .service-img-wrapper.arch-bottom {
        border-radius: 0 0 150px 150px;
    }
    
    .service-card:hover .service-img-wrapper {
        border-radius: 150px;
    }
}

/* Professionals Section */
.professionals-section {
    padding: 80px 0 100px;
    background-color: #f8fdfa;
}

.professionals-section .subheading {
    color: var(--primary);
}

.professionals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.professionals-grid.center-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.professionals-grid.center-cards .pro-card {
    flex: 0 1 280px;
    max-width: 100%;
}


.pro-card {
    text-align: center;
}

.pro-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 200px 200px;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #e5e5e5;
}

.pro-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.pro-name {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: #2b2726;
    margin: 0 0 10px 0;
    font-weight: normal;
}

.pro-role {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .professionals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 576px) {
    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pro-img-wrapper {
        border-radius: 150px 150px 150px 150px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer Section */
.site-footer {
    background-color: #F8FDF8; /* Off-white shade */
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
    color: #555;
    border-top: 1px solid #f0f0f0;
}

.footer-bg-left {
  position: absolute;
    bottom: 0;
    left: 0;
    max-height: 100%;
    max-width: 300px;
    z-index: 0;
    object-fit: contain;
    object-position: bottom left;
    opacity: .4;
}

.footer-bg-right {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 100%;
    max-width: 300px;
    z-index: 0;
    object-fit: contain;
    object-position: bottom right;
    opacity: .4;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-about {
    flex: 1.5;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-contact p {
    margin: 12px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary);
    width: 25px;
    font-size: 1.1rem;
}

.footer-heading {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0 0 25px 0;
    font-weight: normal;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s, padding-left 0.3s;
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: var(--secondary);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #eaeaea;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-row {
        gap: 30px;
    }
    
    .footer-bg-left, .footer-bg-right {
        max-width: 250px;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .footer-col {
        flex: 100%;
    }
    
    .footer-bg-left, .footer-bg-right {
        max-width: 150px;
        opacity: 0.15;
    }
}

/* About Banner Section */
.about-banner {
    background-color: #f7f8f9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-banner-content {
    flex: 1;
    max-width: 600px;
}

.cursive-subtitle {
    font-family: 'Alex Brush', cursive;
    font-size: 5rem;
    color: var(--primary);
    margin: 0 0 -30px 0;
    font-weight: normal;
    transform: rotate(-8deg);
    display: inline-block;
}

.about-banner-content .main-title {
    font-family: 'Marcellus', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 20px 0;
    font-weight: 700;
}

.about-banner-content .banner-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.btn-shop-now {
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 45px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-shop-now:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.about-banner-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.oval-image-wrapper {
    position: relative;
    padding: 15px;
    border: 1.5px solid var(--primary);
    border-radius: 44%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.oval-image-wrapper img {
    display: block;
    border-radius: 44%;
    width: 100%;
    height: auto;
    max-width: 400px;
    aspect-ratio: 3.2 / 4;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .about-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .about-banner-content {
        margin-bottom: 50px;
    }

    .cursive-subtitle {
        font-size: 4rem;
        margin-bottom: -20px;
    }

    .about-banner-content .main-title {
        font-size: 3.5rem;
    }
    
    .about-banner-image {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cursive-subtitle {
        font-size: 3rem;
    }

    .about-banner-content .main-title {
        font-size: 2.5rem;
    }
    
    .about-banner {
        padding: 60px 0;
    }
}

/* About Features Section */
.about-features-section {
    padding: 80px 0;
    background-color: #fdfbf8;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.features-main-title {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: normal;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 10px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    color: var(--primary);
}

.feature-icon-wrapper svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.feature-card-title {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 15px 0;
    font-weight: normal;
}

.feature-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: black;
    margin: 0;
}

/* Features Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Anti-Aging Section */
.anti-aging-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #d1e4cd 0%, #efffea 100%);
    position: relative;
    overflow: hidden;
}

.anti-aging-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.anti-aging-content {
    flex: 1;
    max-width: 550px;
}

.anti-aging-subtitle {
    font-family: 'Marcellus', sans-serif;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.anti-aging-title {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--secondary);
    margin: 0 0 25px 0;
    font-weight: normal;
}

.anti-aging-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.btn-book-now {
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-book-now:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.anti-aging-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.anti-aging-blob {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 60%;
    height: 95%;
    background-color: #dfcdb9;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
}

.anti-aging-blob-2 {
    position: absolute;
    bottom: 5%;
    left: 10%;
    width: 120px;
    height: 150px;
    background-color: #dfcdb9;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
}

.anti-aging-leaf {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 80px;
    z-index: 0;
    transform: rotate(-15deg);
    opacity: 0.5;
}

.anti-aging-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    width: 450px;
    object-fit: cover;
}

/* Anti-Aging Responsive */
@media (max-width: 992px) {
    .anti-aging-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .anti-aging-content {
        margin: 0 auto;
    }
    
    .anti-aging-title {
        font-size: 2.8rem;
    }
    
    .anti-aging-blob {
        right: 0;
        width: 80%;
    }
}

@media (max-width: 576px) {
    .anti-aging-title {
        font-size: 2.2rem;
    }
    
    .anti-aging-img {
        width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    /* padding: 0 5%; */
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-item {
    border: 1px solid #eaeaea;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    background-color: #ffffff;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-item.active .faq-question {
    background-color: var(--primary);
}

.faq-question h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 0;
    font-weight: normal;
    transition: color 0.3s;
}

.faq-item.active .faq-question h3 {
    color: #ffffff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s, color 0.3s;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Contact Page Banner */
.page-banner {
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.contact-banner,
.gallery-banner {
    background-image: linear-gradient(135deg, rgba(113, 190, 91, 0.85) 0%, rgba(28, 88, 129, 0.85) 100%), url('../img/banner/contactbanner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-title {
    font-family: 'Marcellus', serif;
    font-size: 3.5rem;
    margin: 0 0 10px 0;
    font-weight: normal;
}

.banner-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Info & Map */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background-color: #fdfbf8;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    color: var(--secondary);
    margin: 0 0 10px 0;
    font-weight: normal;
}

.contact-info-card > p {
    color: #666;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 0 0 5px 0;
}

.info-item p {
    margin: 0;
    color: #666;
}

.contact-map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    color: var(--secondary);
    margin: 0 0 30px 0;
    font-weight: normal;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(113, 190, 91, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: inherit;
    padding: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .contact-info-card, .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* Highlight List Styling */
.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-list li {
    position: relative;
    padding-left: 28px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
    background: #f9fdf8;
    border-radius: 5px;
    padding: 8px 10px 8px 35px;
    border-left: 3px solid var(--primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.highlight-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2371be5b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}