/* GLOBAL */

body {
    font-family: 'Inter', sans-serif;
    background: #edf0ea;
    margin: 0;
    padding-top: 90px;
}

a {
    text-decoration: none !important;
	color: #555;
    transition: 0.3s;
}
a:hover{color:#f27286}

img.header-logo {
    height: 100px;
    width: auto;
}

@media (max-width:767px) {
    img.header-logo {
        height: 50px;
        width: auto;
    }
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 5px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 20px;
    color: #2f3a2f;
}

/* NAV LINKS */

.nav-link {
    font-weight: 500;
    margin-right: 18px;
    color: #555 !important;
    position: relative;
}

.nav-link:hover {
    color: #f27286 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f27286;
    transition: 0.3s;
}

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

/* RIGHT NAV AREA */

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LOGIN BUTTON */

.login-btn {
    padding: 7px 15px;
    border-radius: 8px;
    color: #444;
}

.login-btn:hover {
    background: #f27286;
    color: white !important;
}

/* SIGNUP BUTTON */

.signup-btn {
    padding: 7px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    color: #555;
}

.signup-btn:hover {
    background: #f27286;
    color: white !important;
    border-color: #f27286;
}

/* BOOK BUTTON */

.book-btn {
    background: #f27286;
    color: white !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 500;
}

.book-btn:hover {
    background: #e05d73;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* HERO SECTION */

.hero {
    padding: 80px 0;
}

.badge-clinic {
    background: #f6dfe2;
    color: #e0697e;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #1f2a1f;
    margin-top: 20px;
    line-height: 1.2;
}

.hero-text {
    margin-top: 20px;
    color: #6b756c;
    font-size: 18px;
}

/* HERO BUTTONS */

.btn-main {
    background: #f27286;
    color: white;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 500;
    margin-right: 10px;
    display: inline-block;
}

.btn-main:hover {
    background: #e05d73;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-contact {
    border: 1px solid #ddd;
    padding: 13px 28px;
    border-radius: 10px;
    background: white;
    color: #555;
}

.btn-contact:hover {
    background: #f27286;
    color: white;
    border-color: #f27286;
    transform: translateY(-2px);
}

/* IMAGE CARD */

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.hero-img {
    width: 100%;
}

/* TABLET */

@media (max-width:991px) {

    .nav-right {
        flex-direction: column;
        margin-top: 15px;
    }

    .login-btn,
    .signup-btn,
    .book-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    .hero {
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-card {
        margin-top: 40px;
    }

}

/* MOBILE */

@media (max-width:576px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }

    .btn-main,
    .btn-contact {
        width: 100%;
        margin-bottom: 30px;
    }

}


/* WELCOME SECTION */

.welcome-section {
    background: #F7F9F6;
    padding: 100px 20px;
    text-align: center;
}

.welcome-subtitle {
    color: #6b8c63;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #1f2a1f;
    margin-bottom: 25px;
}

.welcome-text {
    max-width: 750px;
    margin: auto;
    color: #5f6f63;
    font-size: 18px;
    line-height: 1.8;
}

/* MOBILE */

@media(max-width:768px) {

    .welcome-title {
        font-size: 32px;
    }

    .welcome-text {
        font-size: 16px;
    }

}

/* WHY CHOOSE US */

.why-section {
    background: #edf0ea;
    padding: 100px 0;
    text-align: center;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1f2a1f;
}

.why-subtitle {
    color: #6b756c;
    margin-top: 10px;
    margin-bottom: 60px;
}

.why-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all .35s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: #f6dfe2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 30px;
    color: #f27286;
}

.why-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1f2a1f;
    line-height: 1.5;
}

/* MOBILE */

@media(max-width:768px) {

    .why-title {
        font-size: 32px;
    }

}


/* SERVICES SECTION */

.services-section {
    background: #f6f7f2;
    padding: 100px 0;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1f2a1f;
}

.services-subtitle {
    text-align: center;
    color: #6b756c;
    margin-top: 10px;
    margin-bottom: 60px;
}

/* SERVICE CARD */

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    border: 1px solid #e6e6e6;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    height: 100%;
}


/* ICON */

.service-icon {
    width: 60px;
    height: 60px;
    background: #eef2ea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #4c6a3f;
    margin-bottom: 20px;
    transition: all .3s ease;
}

/* HOVER EFFECT */

.service-card:hover {
    border: 1px solid #f27286;
    box-shadow: 0 12px 30px rgba(242, 114, 134, 0.15);
    transform: translateY(-4px);
}

/* ICON COLOR CHANGE */

.service-card:hover .service-icon {
    background: #fce4e8;
    color: #f27286;
}

.service-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2a1f;
}

.service-card p {
    color: #6b756c;
    font-size: 15px;
    line-height: 1.6;
}

.services-btn {
    color: #555;
    display: inline-block;
    margin: 60px auto 0;
    border: 1px solid #ddd;
    padding: 14px 30px;
    border-radius: 12px;
    background: white;
    font-weight: 500;
    transition: .3s;
}

.services-btn:hover {
    background: #f27286;
    color: white;
    border-color: #f27286;
}

/* MOBILE */

@media(max-width:768px) {

    .services-title {
        font-size: 32px;
    }

}


/* CTA SECTION */

.cta-section {
    background: #f4e9ea;
    padding: 120px 20px;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #1f2a1f;
    margin-bottom: 20px;
}

.cta-text {
    /*max-width: 700px;*/
    margin: auto;
    color: #6b756c;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* CTA BUTTON */

.cta-btn {
    background: #f27286;
    color: white;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(242, 114, 134, 0.35);
    transition: all .3s ease;
}

.cta-btn:hover {
    background: #e35c71;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(242, 114, 134, 0.45);
    color: white;
}

/* MOBILE */

@media(max-width:768px) {

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 16px;
    }

}


/* TESTIMONIAL SECTION */

.testimonial-section {
    background: #f6f7f2;
    padding: 110px 0;
}

.testimonial-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: #1f2a1f;
    margin-bottom: 70px;
}

/* TESTIMONIAL CARD */

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    border: 1px solid #e9e9e9;
    transition: all .35s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* STARS */

.testimonial-stars {
    color: #f27286;
    font-size: 18px;
    margin-bottom: 18px;
}

/* TEXT */

.testimonial-text {
    color: #5f6f63;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

/* DIVIDER */

.testimonial-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 20px 0;
}

/* NAME */

.testimonial-name {
    font-weight: 600;
    color: #1f2a1f;
    margin-bottom: 2px;
}

.testimonial-role {
    color: #6b756c;
    font-size: 14px;
}

/* MOBILE */

@media(max-width:768px) {

    .testimonial-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

}


/* BLOG / RESOURCES SECTION */

.blog-section {
    background: #EDF0EA;
    padding: 110px 0;
    text-align: center;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #1f2a1f;
}

.blog-subtitle {
    color: #6b756c;
    margin-top: 10px;
    margin-bottom: 60px;
}

/* BLOG CARD */

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    border: 1px solid #e8e8e8;
    text-align: left;
    transition: all .35s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* CATEGORY BADGE */

.blog-badge {
    display: inline-block;
    background: #e9efe5;
    color: #4c6a3f;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* BLOG TITLE */

.blog-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1f2a1f;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* DATE */

.blog-date {
    color: #7a857a;
    font-size: 14px;
}

/* READ MORE BUTTON */

.blog-btn {
    margin-top: 50px;
    display: inline-block;
    border: 1px solid #ddd;
    padding: 14px 32px;
    border-radius: 12px;
    background: white;
    font-weight: 500;
    transition: all .3s;
}

.blog-btn:hover {
    background: #f27286;
    color: white;
    border-color: #f27286;
}

/* MOBILE */

@media(max-width:768px) {

    .blog-title {
        font-size: 32px;
    }

}


/* FAQ SECTION */

.faq-section {
    background: #f6f7f2;
    padding: 110px 0;
    text-align: center;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #1f2a1f;
    margin-bottom: 60px;
}

/* ACCORDION */

.accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
}

.accordion-button {
    background: #ffffff;
    border-radius: 14px !important;
    padding: 20px 25px;
    font-weight: 500;
    font-size: 18px;
    color: #1f2a1f;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #1f2a1f;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.accordion-body {
    text-align: left;
    color: #6b756c;
    font-size: 15px;
    line-height: 1.7;
}

/* FAQ BUTTON */

.faq-btn {
    color: #555;
    margin-top: 40px;
    display: inline-block;
    border: 1px solid #ddd;
    padding: 14px 30px;
    border-radius: 12px;
    background: white;
    transition: .3s;
}

.faq-btn:hover {
    background: #f27286;
    color: white;
    border-color: #f27286;
}

/* MOBILE */

@media(max-width:768px) {

    .faq-title {
        font-size: 32px;
    }

}


/* FINAL CTA SECTION */

.final-cta {
    background: #4f642e;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
    color: #e3eadc;
    margin-bottom: 35px;
}

/* BUTTON */

.final-cta-btn {
    background: #f27286;
    color: white;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(242, 114, 134, 0.4);
    transition: all .3s ease;
}

.final-cta-btn:hover {
    background: #e35c71;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(242, 114, 134, 0.5);
    color: white;
}

/* MOBILE */

@media(max-width:768px) {

    .final-cta h2 {
        font-size: 32px;
    }

    .final-cta p {
        font-size: 16px;
    }

}


/* BLOSSOM ABOUT SECTION */
/* ABOUT NO IMAGE */
.about-blossom {
    background: #F7F9F6;
    padding: 100px 20px;
    text-align: center;
}
.about-feature-box{
background:#ffffff;
padding:25px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:0.3s;
height:100%;
}

.about-feature-box:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.about-feature-box i{
font-size:28px;
color:#f27286;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #1f2a1f;
    margin-bottom: 25px;
}

.about-text{
color:#5f6f63;
font-size:16px;
line-height:1.8;
margin-bottom:18px;
}

/* JOURNEY */
.journey-section{
background:#edf0ea;
padding:100px 0;
text-align:center;
}

.journey-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:.3s;
height:100%;
}

.journey-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.journey-icon{
font-size:28px;
color:#f27286;
margin-bottom:15px;
}

/* MESSAGE */
.message-box{
background:#ffffff;
padding:50px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
text-align:center;
}

/* TRUST */
.trust-section{
padding:100px 0;
background:#edf0ea;
text-align:center;
}

.trust-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:.3s;
height:100%;
}

.trust-card:hover{
transform:translateY(-6px);
}

/* MOBILE */
@media(max-width:768px){
.about-title{font-size:30px;}
}


/* FOOTER */

.footer {
    background: #4f642e;
    color: #e7f0e0;
    padding: 90px 0 40px;
    border-top: 1px solid #fff;
}

.footer-logo {
    width: auto;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #fff;
    padding: 10px;
}

.footer-text {
    line-height: 1.8;
    color: #d7e3cf;
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: #d7e3cf;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* CONTACT */

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #d7e3cf;
}

.footer-contact i {
    margin-top: 4px;
}

/* COPYRIGHT */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #cfe0c4;
}

/* MOBILE */

@media(max-width:768px) {

    .footer {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

}


/* CHAT BUTTON */

.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all .3s ease;
    z-index: 999;
}

.chat-btn i {
    font-size: 18px;
}

.chat-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    color: white;
}

/* BACK TO TOP BUTTON */

#topBtn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #f27286;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all .3s ease;
    z-index: 999;
}

#topBtn:hover {
    background: #e35c71;
    transform: translateY(-3px);
}


/* HERO */

.about-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: #edf0ea;
}

.about-hero small {
    color: #6a8b55;
    letter-spacing: 1px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-top: 10px;
}

.about-hero p {
    color: #6b756c;
}

section.missionVision {
    background: #edf0ea;
    padding: 100px 0 100px;
    /* padding: 10px 0; */
}

/* SECTION TEXT */

.section-text {
    text-align: center;
    padding: 80px 0;
}

.section-text h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.section-text p {
    max-width: 700px;
    margin: auto;
    color: #6b756c;
}

/* CARDS */

.info-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: #f6dfe2;
    color: #f27286;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* APPROACH CARDS */

.approach-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all .35s ease;
    text-align: center;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: #e7efe0;
    color: #56733a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 12px;
}

/* TEAM */

.healthTam {
    background: #edf0ea;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    transition: all .35s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-icon {
    width: 60px;
    height: 60px;
    background: #e7efe0;
    color: #56733a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 12px;
}

.team-role {
    color: #f27286;
    font-size: 14px;
}

/* CTA */

.about-cta {
    background: #f782981a;
    text-align: center;
    padding: 100px 0;
}

.cta-btn {
    background: #f27286;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
}


/* SERVICES LIST SECTION */

.services-list {
    padding: 100px 0;
    background: #f6f7f2;
}

.service-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border: 1px solid #eaeaea;
    margin-bottom: 25px;
    transition: all .3s ease;
}

.service-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

/* ICON */

.service-icon {
    width: 60px;
    height: 60px;
    background: #fde3e6;
    color: #f27286;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* CONTENT */

.service-content h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.service-content p {
    color: #6b756c;
    margin-bottom: 15px;
}

/* BUTTON */

.service-btn {
    background: #f27286;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.service-btn:hover {
    background: #e35c71;
    color: white;
}

/* MOBILE */

@media(max-width:768px) {

    .service-item {
        flex-direction: column;
    }

}


/* FAQ SECTION */

.faq-section {
    padding: 100px 0;
    background: #f6f7f2;
}

/* ACCORDION STYLE */

.faq-accordion .accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
}

.faq-accordion .accordion-button {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    padding: 18px 22px;
    background: white;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: white;
    color: #000;
}

.faq-accordion .accordion-body {
    color: #6b756c;
    padding: 20px 22px;
}

/* CTA */

.about-cta {
    background: #f782981a;
    text-align: center;
    padding: 100px 0;
}

.cta-btn {
    background: #f27286;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
}


/* CONTACT SECTION */

.contact-section {
    padding: 100px 0;
    background: #f6f7f2;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* INFO ITEMS */

.contact-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #fde3e6;
    color: #f27286;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* FORM */

.form-control {
    border-radius: 10px;
    padding: 12px;
}

textarea.form-control {
    height: 120px;
}

/* BUTTON */

.btn-main {
    background: #f27286;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
}

.btn-main:hover {
    background: #e45c71;
    color: white;
}

/* MAP */

.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* APPOINTMENT */

.appointment-section {
    padding: 100px 0;
}

.appointment-card {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}


.blog-section {
    padding: 100px 0;
    background: #EDF0EA;
}

/* FILTER BUTTONS */

.blog-filter {
    text-align: center;
    margin-bottom: 50px;
}

.blog-filter button {
    border: 1px solid #dcdcdc;
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 5px;
    font-size: 14px;
    transition: .3s;
}

.blog-filter button.active {
    background: #556b2f;
    color: white;
    border-color: #556b2f;
}

.blog-filter button:hover {
    background: #556b2f;
    color: white;
}

/* BLOG CARD */

.blog-card {
    background: white;
    border-radius: 14px;
    padding: 25px;
    border: 1px solid #e6e6e6;
    transition: .3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* CATEGORY TAG */

.blog-tag {
    display: inline-block;
    background: #e7efe0;
    color: #556b2f;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* TITLE */

.blog-card h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

/* TEXT */

.blog-card p {
    color: #6b756c;
    font-size: 14px;
}


	/* ABOUT ME SECTION */
.about-me-section{
background:#f7f9f6;
padding:80px 0;
}

.about-me-card{
background:#ffffff;
padding:25px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.about-me-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.about-me-card i{
font-size:28px;
color:#f27286;
}
section.section-text.about-me-section p
 {
    max-width: 100% !important;
    padding: 10px;
}

/* BEGIN JOURNEY SECTION */
.begin-journey{
background:#edf0ea;
padding:100px 20px;
text-align:center;
}

.journey-title{
font-family:'Playfair Display',serif;
font-size:42px;
font-weight:700;
color:#1f2a1f;
margin-bottom:20px;
}

.journey-text{
color:#5f6f63;
font-size:17px;
line-height:1.8;
margin-bottom:18px;
}

.journey-btn{
background:#f27286;
color:white;
padding:14px 34px;
border-radius:12px;
font-weight:500;
display:inline-block;
box-shadow:0 8px 20px rgba(242,114,134,0.35);
transition:0.3s;
}

.journey-btn:hover{
background:#e35c71;
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(242,114,134,0.45);
color:white;
}

/* MOBILE */
@media(max-width:768px){
.journey-title{font-size:30px;}
.journey-text{font-size:15px;}
}



/* FOOTER */

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #7a7a7a;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 15px;
}

/* NEWSLETTER SECTION */

.newsletter {
    padding: 100px 0;
    background: #f6eeec;
    text-align: center;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.newsletter p {
    color: #6b756c;
    margin-bottom: 30px;
}

/* FORM */

.newsletter-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* INPUT */

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    outline: none;
}

/* BUTTON */

.newsletter-form button {
    background: #f27286;
    color: white;
    border: none;
    padding: 14px 26px;
    border-radius: 12px;
    transition: .3s;
}

.newsletter-form button:hover {
    background: #e35c71;
}

/* MOBILE */

@media(max-width:768px) {

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

}