@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Afacad:wght@400;500;600;700&display=swap');

:root {
    /* --secondary-color: #1a2b52; */
    --secondary-navy: #2d3e66;
    /* --theme-color: #e4a86e; */
    --light-cream: #f5e6d3;
    /* --title-color: #ffffff; */
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--text-font);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    font-weight: 700;
}

.navbar {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--title-color) !important;
}

.navbar-nav .nav-link {
    color: var(--title-color) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--theme-color) !important;
}

.btn-accent {
    background-color: var(--theme-color);
    color: var(--text-dark);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--theme-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(228, 168, 110, 0.3);
}

.hero-section {
    opacity: .9;
    height: 670px;
    position: relative;
    /* background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-navy) 100%); */
    background: linear-gradient(135deg, #372513 0%, #e4a86eba 100%);
    color: var(--title-color);
    /* padding-top: 80px; */
}

.hero-section .auto-container .row {
    padding-top: 9rem;
}

.hero-overlay {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/background/background-image2.jpg') no-repeat center center/cover;
    opacity: 0.1;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--theme-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}


.hero-cta .btn {
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--theme-color);
    border: none;
    color: var(--text-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #d89a5f;
}

.btn-outline-light {
    border: 2px solid var(--title-color);
    color: var(--title-color);
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: var(--title-color);
    color: var(--secondary-color);
}

/* .about-section {
    background-color: var(--light-cream);
} */

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
    /* background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--secondary-color) 100%); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-size: 1.2rem;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-navy);
    margin-bottom: 1rem;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.what-is-section {
    background-color: #fff;
}

.benefit-card {
    background-color: var(--light-cream);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-dark);
    margin-bottom: 0;
}

.treatments-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-navy) 100%);
    color: var(--title-color);
}

.treatments-section .section-title,
.treatments-section .section-content {
    color: var(--title-color);
}



/* .treatment-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.treatment-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    border-color: var(--theme-color);
} */

.treatment-card h4 {
    color: var(--theme-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.treatment-card p {
    color: var(--title-color);
    margin-bottom: 0;
}

/* .treatment-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */

.treatment-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 28px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-8px);
    border-color: #e4a86e;
    box-shadow: 0px 8px 25px rgba(228, 168, 110, 0.25);
}

.treatment-icon {
    /* width: 32px;
    height: 32px; */
    stroke: #e4a86e;
    /* margin-bottom: 12px; */
    font-size: 3rem;
    margin-bottom: 1rem;
}



.process-section {
    background-color: var(--title-color);
}

.process-timeline {
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--theme-color), var(--secondary-navy));
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-color) 0%, #d89a5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(228, 168, 110, 0.3);
}

.step-content {
    margin-left: 2rem;
    background-color: #2d3e66;
    padding: 1.5rem;
    border-radius: 10px;
    flex-grow: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content h4 {
    color: var(--title-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    /* color: var(--text-dark); */
    margin-bottom: 0;
}

/* .why-us-section {
    background-color: #fff;
} */

.why-card {
    background: linear-gradient(135deg, var(--light-cream) 0%, #fff 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: rotateY(10deg) translateY(-10px);
    border-color: var(--theme-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.why-card h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-card p {
    color: var(--text-dark);
    margin-bottom: 0;
}

.testimonials-section {
    background-color: var(--title-color);
}

.testimonial-card {
    background-color: var(--title-color);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.before-after-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--theme-color);
    font-weight: 600;
    margin-bottom: 0;
}

.faq-section {
    background-color: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: var(--light-cream);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--theme-color);
    color: var(--text-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(1);
}

.accordion-body {
    background-color: #fff;
    color: var(--text-dark);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-card.classy {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card.classy:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.before-after-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    padding: 22px;
    text-align: center;
}

.testimonial-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-content span {
    font-weight: 600;
    color: #1a3c75;
    font-size: 15px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step-content {
        margin-left: 1rem;
    }

    .navbar-nav {
        padding-top: 1rem;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .btn-accent {
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-content {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        gap: 26px;
        display: flex;
        flex-direction: column;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;

    }

    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step:not(:last-child)::after {
        left: 40px;
        top: 100px;
        height: 100px;
    }

    .step-content {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        z-index: 2;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-content {
        padding-top: 5px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .benefit-card,
    .why-card,
    .treatment-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}