/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #111111;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.hero-help-section {
    overflow: hidden;
}
p
{
    font-size:16px !important;
}
@media (max-width: 768px)
{
    p
    {
        font-size:14px !important;
    }
}
/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
    width: min(100% - 80px, 1400px);
    min-height: 92px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

    width: auto;

    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

.site-logo img:first-child {
    width: 150px;
    height: auto;
}

.site-logo img:last-child {
    width: 100px;
    height: auto;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 34px;

    margin-left: auto;
}


.nav-item {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 35px 0;

    color: #111111;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Red underline */

.nav-item::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 24px;

    width: 0;
    height: 2px;

    background: #ed1c24;

    transition: width 0.3s ease;
}


.nav-item:hover {
    color: #ed1c24;
}


.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}


.nav-item.active {
    color: #ed1c24;
}


/* =========================================================
   HEADER RIGHT
========================================================= */

.header-right {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}


/* =========================================================
   APPOINTMENT BUTTON
========================================================= */

.appointment-button {
    min-width: 178px;
    height: 50px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    background: #ed1c24;
    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;

    position: relative;
    overflow: hidden;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Shine animation */

.appointment-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}


.appointment-button:hover::before {
    left: 140%;
}


.appointment-button:hover {
    background: #111111;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12);
}


.appointment-button i {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 50%;

    font-style: normal;

    font-size: 13px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.appointment-button:hover i {
    transform: rotate(45deg);

    background: #ed1c24;

    border-color: #ed1c24;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
    width: 44px;
    height: 44px;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    padding: 0;

    border: 0;

    background: #111111;

    border-radius: 50%;

    cursor: pointer;
}


.mobile-menu-button span {
    display: block;

    width: 18px;
    height: 2px;

    background: #ffffff;

    border-radius: 2px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    display: none;

    width: 100%;

    background: #ffffff;

    border-top: 1px solid #eeeeee;

    padding: 12px 24px 24px;
}


.mobile-nav-item {
    display: block;

    padding: 14px 0;

    color: #111111;

    border-bottom: 1px solid #eeeeee;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #ed1c24;
}


.mobile-nav-item:hover {
    padding-left: 6px;
}


/* =========================================================
   MOBILE APPOINTMENT
========================================================= */

.mobile-appointment-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 48px;

    margin-top: 18px;

    background: #ed1c24;

    color: #ffffff;

    border-radius: 28px;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.mobile-appointment-button:hover {
    background: #111111;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU OPEN
========================================================= */

.site-header.menu-open .mobile-navigation {
    display: block;

    animation: mobileMenuReveal 0.35s ease forwards;
}


@keyframes mobileMenuReveal {

    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.site-header.menu-open .mobile-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.site-header.menu-open .mobile-menu-button span:nth-child(2) {
    opacity: 0;
}


.site-header.menu-open .mobile-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-inner {
        width: min(100% - 48px, 1400px);

        gap: 25px;
    }


    .main-navigation {
        gap: 22px;
    }


    .nav-item {
        font-size: 13px;
    }


    .appointment-button {
        min-width: 160px;

        padding: 0 18px;

        font-size: 12px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 78px;

        width: calc(100% - 40px);
    }


    .main-navigation {
        display: none;
    }


    .appointment-button {
        display: none;
    }


    .mobile-menu-button {
        display: flex;
    }


    .site-logo {
        width: 140px;
    }


    .logo-name {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .header-inner {
        width: calc(100% - 30px);

        min-height: 72px;

        gap: 15px;
    }


    .site-logo {
        width: 125px;
    }


    .logo-small {
        font-size: 7px;
    }


    .logo-name {
        font-size: 31px;
    }


    .logo-tagline {
        font-size: 6px;

        margin-top: 6px;
    }


    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }


    .mobile-navigation {
        padding-left: 20px;
        padding-right: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .header-inner {
        width: calc(100% - 24px);
    }


    .site-logo {
        width: 115px;
    }


    .logo-name {
        font-size: 28px;
    }


    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

}

/* =========================================================
   GLOBAL FIXES
========================================================= */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    font-family: "DM Sans", sans-serif;

    background: #ffffff;
    color: #111111;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}


/* =========================================================
   HERO + HELP SECTION
========================================================= */

.hero-help-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #ffffff;
}


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 690px;
    overflow: hidden;
}


.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: translateX(40px);

    transition:
        opacity 0.7s ease,
        transform 0.8s ease,
        visibility 0.7s ease;
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-help-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


.hero-help-background img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);

    transition:
        transform 6s ease;
}


.hero-slide.active .hero-help-background img {
    transform: scale(1.06);
}


/* =========================================================
   OVERLAY
========================================================= */

.hero-help-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.94) 38%,
            rgba(255,255,255,0.55) 57%,
            rgba(255,255,255,0.05) 78%
        );
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-help-container {
    position: relative;

    width: min(1200px, calc(100% - 80px));

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    z-index: 3;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-help-content {
    width: 560px;
    max-width: 100%;

    padding-bottom: 80px;
}


.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: #ed1c24;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.hero-eyebrow span {
    width: 30px;
    height: 2px;

    background: #ed1c24;

    flex-shrink: 0;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-help-content h1 {
    margin: 0 0 25px;

    color: #111111;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 5vw, 76px);

    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -3px;
}


.hero-help-content h1 span {
    display: block;

    color: #ed1c24;
}


/* =========================================================
   HERO TEXT
========================================================= */

.hero-description,
.hero-subdescription {
    max-width: 560px;

    margin: 0 0 18px;

    color: #444444;

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    line-height: 1.7;
}


.hero-subdescription {
    margin-bottom: 30px;
}


.hero-subdescription strong {
    color: #111111;
    font-weight: 700;
}


/* =========================================================
   BUTTON
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
}


.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 22px;

    min-width: 235px;

    padding: 13px 14px 13px 22px;

    background: #111111;

    color: #ffffff;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    font-weight: 700;

    border-radius: 5px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.hero-primary-btn i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.35);

    border-radius: 50%;

    font-style: normal;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.hero-primary-btn:hover {
    background: #ed1c24;
    transform: translateY(-3px);
}


.hero-primary-btn:hover i {
    background: #ffffff;
    color: #ed1c24;
    transform: rotate(45deg);
}


/* =========================================================
   SLIDER CONTROLS
========================================================= */

.hero-slider-controls {
    position: absolute;

    left: max(40px, calc((100% - 1200px) / 2));

    bottom: 125px;

    display: flex;
    align-items: center;
    gap: 14px;

    z-index: 10;
}


.hero-slider-prev,
.hero-slider-next {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dddddd;

    background: #ffffff;

    color: #111111;

    border-radius: 50%;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #ed1c24;
    border-color: #ed1c24;
    color: #ffffff;
}


.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}


.hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cccccc;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.hero-dot.active {
    width: 25px;

    border-radius: 10px;

    background: #ed1c24;
}


/* =========================================================
   HELP CARDS
========================================================= */

.hero-help-cards {
    position: relative;

    width: min(1080px, calc(100% - 80px));

    margin: -120px auto 0;

    display: grid;

    grid-template-columns: 1.35fr 0.9fr;

    gap: 34px;

    z-index: 20;
}


/* =========================================================
   WHITE CARD
========================================================= */

.help-white-card {
    min-height: 290px;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 35px;

    padding: 34px 40px;

    background: #ffffff;

    border-radius: 9px;

    box-shadow:
        0 20px 55px rgba(0,0,0,0.12);

    border: 1px solid #eeeeee;

    position: relative;

    overflow: hidden;
}


.help-white-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    bottom: -130px;

    border-radius: 50%;

    border: 1px solid rgba(237,28,36,0.08);
}


.help-white-content {
    position: relative;
    z-index: 2;
}


.help-eyebrow,
.dark-card-eyebrow {
    display: block;

    margin-bottom: 13px;

    color: #ed1c24;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.help-white-content h2 {
    margin: 0 0 15px;

    color: #111111;

    font-family: "Manrope", sans-serif;

    font-size: 27px;

    line-height: 1.15;
}


.help-white-content h2 span {
    color: #ed1c24;
}


.help-white-content p {
    margin: 0 0 20px;

    color: #555555;

    font-size: 14px;

    line-height: 1.65;
}


.help-treatment-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ed1c24;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;
}


.help-treatment-link i {
    font-style: normal;

    transition: transform 0.3s ease;
}


.help-treatment-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   SERVICES
========================================================= */

.help-services-list {
    display: grid;

    align-content: center;

    gap: 13px;
}


.help-service {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #333333;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.help-service span {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ed1c24;

    color: #ffffff;

    font-size: 10px;
}


.help-service:hover {
    color: #ed1c24;
    transform: translateX(4px);
}


/* =========================================================
   DARK CARD
========================================================= */

.help-dark-card {
    position: relative;

    min-height: 290px;

    padding: 38px;

    background: #111111;

    color: #ffffff;

    border-radius: 9px;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0,0,0,0.15);
}


.help-dark-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -100px;

    border: 1px solid rgba(237,28,36,0.3);

    border-radius: 50%;
}


.help-dark-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: 25px;
    bottom: -70px;

    border-radius: 50%;

    background: #ed1c24;
}


.help-dark-card > * {
    position: relative;
    z-index: 2;
}


.dark-card-eyebrow {
    color: #ed1c24;
}


.help-dark-card h3 {
    margin: 0 0 12px;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    line-height: 1.2;
}


.help-dark-card h3 span {
    display: block;

    color: #ffffff;
}


.help-dark-card p {
    max-width: 390px;

    margin: 0 0 25px;

    color: #bbbbbb;

    font-size: 14px;

    line-height: 1.6;
}


.help-phone {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
}


.help-phone-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ed1c24;

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-slider {
        height: 650px;
    }

    .hero-help-container {
        width: min(900px, calc(100% - 50px));
    }

    .hero-help-content {
        width: 500px;
    }

    .hero-help-content h1 {
        font-size: 58px;
    }

    .hero-help-cards {
        width: min(900px, calc(100% - 50px));

        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: -90px;
    }

    .help-white-card {
        min-height: 250px;
    }

    .help-dark-card {
        min-height: 220px;
    }

    .hero-slider-controls {
        left: 25px;
        bottom: 105px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-help-section {
        overflow-x: hidden;
    }


    .hero-slider {
        height: auto;
        min-height: 730px;
    }


    .hero-slide {
        position: absolute;
        min-height: 730px;
    }


    .hero-help-background {
        height: 100%;
    }


    .hero-help-background img {
        object-position: 65% center;
    }


    .hero-help-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,0.96) 0%,
                rgba(255,255,255,0.91) 42%,
                rgba(255,255,255,0.60) 72%,
                rgba(255,255,255,0.18) 100%
            );
    }


    .hero-help-container {
        width: 100%;

        min-height: 730px;

        padding: 85px 22px 160px;

        align-items: flex-start;
    }


    .hero-help-content {
        width: 100%;

        max-width: 100%;

        padding: 0;
    }


    .hero-eyebrow {
        gap: 8px;

        margin-bottom: 18px;

        font-size: 9px;

        letter-spacing: 1.2px;
    }


    .hero-eyebrow span {
        width: 22px;
    }


    .hero-help-content h1 {
        margin-bottom: 20px;

        font-size: clamp(42px, 12vw, 58px);

        line-height: 0.98;

        letter-spacing: -2px;
    }


    .hero-description,
    .hero-subdescription {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.6;
    }


    .hero-subdescription {
        margin-bottom: 25px;
    }


    .hero-primary-btn {
        min-width: 210px;

        padding: 11px 12px 11px 18px;

        font-size: 12px;
    }


    .hero-primary-btn i {
        width: 34px;
        height: 34px;
    }


    /* CONTROLS */

    .hero-slider-controls {
        left: 22px;

        bottom: 115px;

        gap: 9px;
    }


    .hero-slider-prev,
    .hero-slider-next {
        width: 34px;
        height: 34px;

        font-size: 13px;
    }


    /* HELP CARDS */

    .hero-help-cards {
        width: calc(100% - 30px);

        margin: -75px auto 0;

        display: flex;

        flex-direction: column;

        gap: 16px;
    }


    .help-white-card {
        display: block;

        min-height: auto;

        padding: 25px 22px;
    }


    .help-white-content h2 {
        font-size: 24px;
    }


    .help-white-content p {
        font-size: 13px;
    }


    .help-services-list {
        margin-top: 25px;

        padding-top: 20px;

        border-top: 1px solid #eeeeee;

        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .help-service {
        align-items: flex-start;

        font-size: 11px;

        line-height: 1.35;
    }


    .help-service span {
        width: 17px;
        height: 17px;
    }


    .help-dark-card {
        min-height: auto;

        padding: 28px 24px;
    }


    .help-dark-card h3 {
        font-size: 23px;
    }


    .help-dark-card p {
        font-size: 13px;
    }


    .help-phone {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-slider {
        min-height: 690px;
    }


    .hero-slide {
        min-height: 690px;
    }


    .hero-help-container {
        min-height: 690px;

        padding-top: 75px;
    }


    .hero-help-content h1 {
        font-size: 43px;
    }


    .hero-description,
    .hero-subdescription {
        font-size: 13px;
    }


    .hero-help-cards {
        width: calc(100% - 24px);
    }


    .help-services-list {
        grid-template-columns: 1fr;
    }


    .help-dark-card {
        padding: 25px 20px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-slide,
    .hero-help-background img,
    .hero-primary-btn,
    .hero-primary-btn i,
    .help-service {
        transition: none;
    }

}
/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1000px) {

    .site-header {
        height: 78px;
    }

    .header-inner {
        width: calc(100% - 40px);
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .appointment-btn {
        min-width: 150px;
        height: 44px;
        font-size: 12px;
    }

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAV */

    .mobile-nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        padding: 15px 20px 25px;

        background: #ffffff;

        display: flex;
        flex-direction: column;

        gap: 0;

        border-top: 1px solid rgba(0, 0, 0, 0.06);

        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav a {
        padding: 15px 10px;

        border-bottom: 1px solid rgba(0, 0, 0, 0.07);

        font-size: 14px;
        font-weight: 600;

        color: #111111;
    }

    .mobile-nav a:hover {
        color: #ed1c24;
    }

    .mobile-appointment {
        margin-top: 15px;

        text-align: center;

        border-radius: 30px !important;

        background: #ed1c24;

        color: #ffffff !important;
    }


    /* HERO */

    .hero-help-section {
        min-height: auto;
    }

    .hero-help-background {
        height: 600px;
    }

    .hero-help-container {
        width: calc(100% - 40px);

        min-height: 600px;

        grid-template-columns: 1fr;

        padding: 65px 0 0;
    }

    .hero-help-content {
        max-width: 680px;

        padding-top: 0;
    }

    .hero-help-visual {
        display: none;
    }

    .hero-help-background img {
        width: 62%;

        opacity: 0.55;
    }

    .hero-help-overlay {
        background:
            linear-gradient(
                90deg,
                #ffffff 0%,
                rgba(255, 255, 255, 0.96) 45%,
                rgba(255, 255, 255, 0.60) 75%,
                rgba(255, 255, 255, 0.35) 100%
            );
    }

    .hero-help-cards {
        width: calc(100% - 40px);

        margin-top: -65px;

        grid-template-columns: 1fr;
    }

    .help-white-card {
        min-height: auto;
    }

    .help-dark-card {
        min-height: 250px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .site-header {
        height: 72px;
    }

    .header-inner {
        width: calc(100% - 30px);
    }

    .logo {
        width: auto;
    }

    .logo-name {
        font-size: 31px;
    }

    .logo-small {
        font-size: 7px;
    }

    .logo-tagline {
        font-size: 6px;
    }

    .appointment-btn {
        display: none;
    }


    /* HERO */

    .hero-help-background {
        height: 640px;
    }

    .hero-help-container {
        width: calc(100% - 30px);

        min-height: 640px;

        padding-top: 55px;
    }

    .hero-help-content {
        width: 100%;
    }

    .hero-eyebrow {
        font-size: 8px;

        letter-spacing: 1.4px;

        gap: 8px;

        margin-bottom: 18px;
    }

    .hero-eyebrow span {
        width: 22px;
    }

    .hero-help-content h1 {
        font-size: clamp(44px, 13vw, 60px);

        line-height: 0.98;

        letter-spacing: -3px;

        margin-bottom: 23px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.65;
    }

    .hero-subdescription {
        font-size: 13px;

        line-height: 1.65;
    }

    .hero-buttons {
        margin-top: 27px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .hero-primary-btn {
        min-height: 53px;

        padding-left: 20px;

        gap: 13px;
    }

    .hero-primary-btn i {
        width: 39px;
        height: 39px;
    }


    /* HELP CARDS */

    .hero-help-cards {
        width: calc(100% - 30px);

        margin-top: -35px;

        gap: 18px;
    }

    .help-white-card {
        padding: 27px 23px;

        grid-template-columns: 1fr;

        gap: 25px;

        border-radius: 8px;
    }

    .help-white-card h2 {
        font-size: 27px;
    }

    .help-white-card p {
        font-size: 13px;
    }

    .help-services-list {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 13px 15px;
    }

    .help-service {
        align-items: flex-start;

        font-size: 11px;

        line-height: 1.35;
    }

    .help-service span {
        margin-top: 1px;
    }


    /* DARK CARD */

    .help-dark-card {
        min-height: 270px;

        padding: 30px 25px;

        border-radius: 8px;
    }

    .help-dark-card h3 {
        font-size: 26px;
    }

    .help-dark-card p {
        font-size: 13px;
    }

    .help-phone {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-help-container {
        padding-top: 45px;
    }

    .hero-help-content h1 {
        font-size: 43px;
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-subdescription {
        font-size: 12.5px;
    }

    .help-services-list {
        grid-template-columns: 1fr;
    }

    .help-white-card h2 {
        font-size: 25px;
    }

    .help-dark-card h3 {
        font-size: 24px;
    }

    .help-phone strong {
        font-size: 13px;
    }

}

/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why-section {
    position: relative;

    width: 100%;

    padding: 40px 0 20px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.why-container {
    width: min(1280px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.why-content {
    position: relative;
    z-index: 5;
}


/* =========================================================
   LABEL
========================================================= */

.why-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #ed1c24;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.why-section.visible .why-label {
    opacity: 1;

    transform: translateY(0);
}

.why-label::before {
    content: "";

    width: 28px;
    height: 2px;

    background: #ed1c24;
}


/* =========================================================
   TITLE
========================================================= */

.why-title {
    max-width: 600px;

    margin-bottom: 25px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(40px, 4vw, 60px);

    line-height: 1.03;

    letter-spacing: -3px;

    font-weight: 800;

    color: #111111;

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease 0.1s,
        transform 0.8s ease 0.1s;
}

.why-section.visible .why-title {
    opacity: 1;

    transform: translateY(0);
}

.why-title span {
    color: #ed1c24;
}


/* =========================================================
   INTRO TEXT
========================================================= */

.why-intro {
    max-width: 570px;

    margin-bottom: 35px;

    color: #555555;

    font-size: 15px;

    line-height: 1.75;

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease 0.2s,
        transform 0.8s ease 0.2s;
}

.why-section.visible .why-intro {
    opacity: 1;

    transform: translateY(0);
}

.why-intro strong {
    color: #111111;

    font-weight: 700;
}


/* =========================================================
   FEATURES
========================================================= */

.why-features {
    display: flex;

    flex-direction: column;

    gap: 0;

    margin-bottom: 30px;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.why-feature {
    position: relative;

    display: grid;

    grid-template-columns: 52px minmax(0, 1fr);

    gap: 18px;

    padding: 18px 0;

    border-top: 1px solid rgba(0, 0, 0, 0.09);

    opacity: 0;

    transform: translateX(-25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        padding-left 0.3s ease;
}

.why-feature:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}


/* stagger */

.why-section.visible .why-feature:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.35s;
}

.why-section.visible .why-feature:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}

.why-section.visible .why-feature:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.55s;
}


/* =========================================================
   FEATURE ICON
========================================================= */

.why-feature-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #ed1c24;

    background: #ffffff;

    color: #ed1c24;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.feature-number {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   FEATURE TEXT
========================================================= */

.why-feature-content h3 {
    margin-bottom: 5px;

    font-family: "Manrope", sans-serif;

    color: #111111;

    font-size: 15px;

    font-weight: 800;
}

.why-feature-content p {
    max-width: 480px;

    color: #666666;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   FEATURE HOVER
========================================================= */

.why-feature:hover {
    padding-left: 8px;
}

.why-feature:hover .why-feature-icon {
    background: #ed1c24;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   CTA BUTTON
========================================================= */

.why-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    min-height: 52px;

    padding: 5px 6px 5px 22px;

    background: #111111;

    color: #ffffff;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 700;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.7s ease 0.65s,
        transform 0.7s ease 0.65s,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.why-section.visible .why-button {
    opacity: 1;

    transform: translateY(0);
}

.why-button i {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.3);

    font-size: 17px;

    font-style: normal;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.why-button:hover {
    background: #ed1c24;

    box-shadow:
        0 15px 35px rgba(237, 28, 36, 0.2);

    transform: translateY(-3px);
}

.why-button:hover i {
    transform: rotate(45deg);

    background: #ffffff;

    color: #ed1c24;
}


/* =========================================================
   RIGHT IMAGE GALLERY
========================================================= */

.why-gallery {
    position: relative;

    min-height: 570px;

    display: grid;

    grid-template-columns: 1fr 0.72fr;

    grid-template-rows: 310px 210px;

    gap: 12px;

    opacity: 0;

    transform: translateX(40px);

    transition:
        opacity 1s ease 0.2s,
        transform 1s ease 0.2s;
}

.why-section.visible .why-gallery {
    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   IMAGE BASE
========================================================= */

.why-image {
    position: relative;

    overflow: hidden;

    background: #f4f4f4;

    border-radius: 4px;
}

.why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.why-image:hover img {
    transform: scale(1.06);
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.why-image-main {
    grid-column: 1;

    grid-row: 1;

    height: 310px;
}

.why-image-main img {
    object-position: center;
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.why-image-small {
    grid-column: 2;

    grid-row: 1;

    height: 310px;
}

.why-image-small img {
    object-position: center;
}


/* =========================================================
   WIDE BOTTOM IMAGE
========================================================= */

.why-image-wide {
    grid-column: 1 / 3;

    grid-row: 2;

    height: 210px;
}

.why-image-wide img {
    object-position: center 45%;
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.why-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.25),
            transparent 45%
        );

    pointer-events: none;
}

.why-wide-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.15),
            transparent 60%
        );

    pointer-events: none;
}


/* =========================================================
   FLOATING BADGE
========================================================= */

.why-badge {
    position: absolute;

    left: -35px;

    bottom: 145px;

    z-index: 10;

    min-width: 190px;

    padding: 13px 17px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.16);

    border-left: 3px solid #ed1c24;

    animation: whyBadgeFloat 4s ease-in-out infinite;
}

.why-badge-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ed1c24;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;
}

.why-badge-text {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.why-badge-text strong {
    color: #111111;

    font-size: 12px;
}

.why-badge-text span {
    color: #777777;

    font-size: 10px;
}


/* =========================================================
   RED DECORATIVE CIRCLE
========================================================= */

.why-red-circle {
    position: absolute;

    right: -28px;

    top: -28px;

    width: 85px;

    height: 85px;

    border-radius: 50%;

    background: #ed1c24;

    z-index: 5;

    animation: whyRedFloat 5s ease-in-out infinite;
}


/* =========================================================
   BACKGROUND DECORATIONS
========================================================= */

.why-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.why-decoration-one {
    width: 450px;
    height: 450px;

    left: -280px;
    top: 80px;

    border: 1px solid rgba(237, 28, 36, 0.07);
}

.why-decoration-two {
    width: 300px;
    height: 300px;

    right: -170px;
    bottom: -100px;

    border: 1px solid rgba(0, 0, 0, 0.06);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes whyBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


@keyframes whyRedFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(10px) rotate(8deg);
    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .why-section {
        padding: 100px 0;
    }

    .why-container {
        width: calc(100% - 50px);

        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1fr);

        gap: 45px;
    }

    .why-title {
        font-size: 47px;
    }

    .why-gallery {
        min-height: 500px;

        grid-template-rows:
            270px
            190px;
    }

    .why-image-main,
    .why-image-small {
        height: 270px;
    }

    .why-image-wide {
        height: 190px;
    }

    .why-badge {
        left: -20px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .why-section {
        padding: 90px 0;
    }

    .why-container {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .why-content {
        max-width: 700px;
    }

    .why-title {
        max-width: 650px;

        font-size: 50px;
    }

    .why-intro {
        max-width: 680px;
    }

    .why-gallery {
        width: 100%;

        min-height: 550px;

        grid-template-rows:
            320px
            210px;
    }

    .why-image-main,
    .why-image-small {
        height: 320px;
    }

    .why-image-wide {
        height: 210px;
    }

    .why-badge {
        left: 20px;
        bottom: 145px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .why-section {
        padding: 75px 0 80px;
    }

    .why-container {
        width: calc(100% - 30px);

        gap: 45px;
    }

    .why-label {
        font-size: 8px;

        letter-spacing: 1.4px;
    }

    .why-label::before {
        width: 20px;
    }

    .why-title {
        font-size: clamp(37px, 11vw, 48px);

        letter-spacing: -2.5px;

        line-height: 1.04;

        margin-bottom: 20px;
    }

    .why-intro {
        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 25px;
    }


    /* FEATURES */

    .why-feature {
        grid-template-columns: 43px minmax(0, 1fr);

        gap: 13px;

        padding: 16px 0;
    }

    .why-feature-icon {
        width: 40px;
        height: 40px;
    }

    .why-feature-content h3 {
        font-size: 14px;
    }

    .why-feature-content p {
        font-size: 11px;

        line-height: 1.55;
    }


    /* CTA */

    .why-button {
        width: fit-content;

        min-height: 50px;

        font-size: 11px;
    }


    /* GALLERY */

    .why-gallery {
        min-height: 480px;

        grid-template-columns: 1fr 0.75fr;

        grid-template-rows:
            270px
            175px;

        gap: 8px;
    }

    .why-image-main,
    .why-image-small {
        height: 270px;
    }

    .why-image-wide {
        height: 175px;
    }

    .why-badge {
        left: 10px;

        bottom: 120px;

        min-width: 165px;

        padding: 10px 12px;
    }

    .why-badge-icon {
        width: 30px;
        height: 30px;
    }

    .why-badge-text strong {
        font-size: 11px;
    }

    .why-badge-text span {
        font-size: 9px;
    }

    .why-red-circle {
        width: 60px;
        height: 60px;

        right: -15px;
        top: -15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .why-title {
        font-size: 36px;

        letter-spacing: -2px;
    }

    .why-intro {
        font-size: 12.5px;
    }

    .why-feature-content p {
        font-size: 10.5px;
    }

    .why-gallery {
        min-height: 400px;

        grid-template-rows:
            225px
            145px;
    }

    .why-image-main,
    .why-image-small {
        height: 225px;
    }

    .why-image-wide {
        height: 145px;
    }

    .why-badge {
        bottom: 100px;

        min-width: 145px;
    }

}

/* =========================================================
   COMPACT IMPACT / STATISTICS SECTION
========================================================= */

.impact-section {
    position: relative;
    width: 100%;

    /* Reduced vertical space */
    padding: 48px 0;

    background: #111111;
    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.impact-container {
    position: relative;
    z-index: 5;

    width: min(1280px, calc(100% - 80px));

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.impact-heading {
    text-align: center;

    margin-bottom: 30px;
}


/* =========================================================
   LABEL
========================================================= */

.impact-label {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

    color: #ed1c24;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.impact-label::before,
.impact-label::after {
    content: "";

    width: 18px;
    height: 1px;

    background: #ed1c24;
}


/* =========================================================
   HEADING
========================================================= */

.impact-heading h2 {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 30px;

    line-height: 1.1;

    letter-spacing: -1.3px;

    font-weight: 800;

    color: #ffffff;
}

.impact-heading h2 span {
    color: #ed1c24;
}


/* =========================================================
   STATISTICS
========================================================= */

.impact-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.13);

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}


/* =========================================================
   STAT ITEM
========================================================= */

.impact-stat {
    position: relative;

    min-height: 110px;

    padding: 20px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.13);

    overflow: hidden;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.impact-stat:last-child {
    border-right: none;
}


/* =========================================================
   RED BOTTOM LINE
========================================================= */

.impact-stat::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ed1c24;

    transform: translateX(-50%);

    transition: width 0.35s ease;
}

.impact-stat:hover::before {
    width: 100%;
}

.impact-stat:hover {
    background: rgba(255, 255, 255, 0.025);

    transform: translateY(-2px);
}


/* =========================================================
   NUMBER
========================================================= */

.impact-number-wrap {
    display: flex;

    align-items: flex-start;
    justify-content: center;

    margin-bottom: 5px;
}

.impact-number {
    font-family: "Manrope", sans-serif;

    font-size: 40px;

    line-height: 0.95;

    letter-spacing: -2px;

    font-weight: 800;

    color: #ffffff;
}


/* =========================================================
   PLUS
========================================================= */

.impact-plus {
    margin-left: 3px;
    margin-top: 1px;

    color: #ed1c24;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   LABEL
========================================================= */

.impact-stat p {
    margin: 0;

    color: rgba(255, 255, 255, 0.6);

    font-size: 10px;

    line-height: 1.35;

    font-weight: 500;

    transition: color 0.3s ease;
}

.impact-stat:hover p {
    color: #ffffff;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.impact-bg-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    border: 1px solid rgba(255, 255, 255, 0.035);
}

.impact-bg-circle-one {
    width: 300px;
    height: 300px;

    left: -190px;
    top: -180px;
}

.impact-bg-circle-two {
    width: 250px;
    height: 250px;

    right: -160px;
    bottom: -180px;

    border-color: rgba(237, 28, 36, 0.08);
}


/* =========================================================
   ANIMATION
========================================================= */

.impact-heading,
.impact-stat {
    opacity: 0;

    transform: translateY(18px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.impact-section.visible .impact-heading {
    opacity: 1;

    transform: translateY(0);
}

.impact-section.visible .impact-stat {
    opacity: 1;

    transform: translateY(0);
}


/* STAGGER */

.impact-section.visible .impact-stat:nth-child(1) {
    transition-delay: 0.1s;
}

.impact-section.visible .impact-stat:nth-child(2) {
    transition-delay: 0.18s;
}

.impact-section.visible .impact-stat:nth-child(3) {
    transition-delay: 0.26s;
}

.impact-section.visible .impact-stat:nth-child(4) {
    transition-delay: 0.34s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .impact-section {
        padding: 40px 0;
    }

    .impact-container {
        width: calc(100% - 50px);
    }

    .impact-heading {
        margin-bottom: 25px;
    }

    .impact-heading h2 {
        font-size: 27px;
    }

    .impact-stat {
        min-height: 100px;

        padding: 18px 12px;
    }

    .impact-number {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .impact-section {
        padding: 35px 0;
    }

    .impact-container {
        width: calc(100% - 30px);
    }

    .impact-heading {
        margin-bottom: 20px;
    }

    .impact-label {
        font-size: 8px;

        letter-spacing: 1.3px;
    }

    .impact-heading h2 {
        font-size: 25px;

        letter-spacing: -1px;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-stat {
        min-height: 90px;

        padding: 15px 8px;
    }

    .impact-stat:nth-child(2) {
        border-right: none;
    }

    .impact-stat:nth-child(1),
    .impact-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .impact-number {
        font-size: 31px;

        letter-spacing: -1.5px;
    }

    .impact-plus {
        font-size: 15px;
    }

    .impact-stat p {
        max-width: 115px;

        font-size: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .impact-section {
        padding: 30px 0;
    }

    .impact-heading h2 {
        font-size: 23px;
    }

    .impact-stat {
        min-height: 82px;

        padding: 12px 5px;
    }

    .impact-number {
        font-size: 28px;
    }

    .impact-plus {
        font-size: 13px;
    }

    .impact-stat p {
        font-size: 8px;
    }

}

/* =========================================================
   WHAT WE TREAT
========================================================= */

.treatments-section {
    position: relative;
    width: 100%;
    padding: 40px 0 20px;
    background: #ffffff;
    overflow: hidden;
}

.treatments-container {
    width: min(1240px, calc(100% - 70px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.treatments-header {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 45px;
}

.treatments-heading {
    position: relative;
}

.treatments-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;

    color: #ed1c24;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.treatments-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #ed1c24;
}

.treatments-heading h2 {
    margin: 0;
    max-width: 600px;

    color: #111111;

    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 4.3vw, 60px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 800;
}

.treatments-heading h2 span {
    color: #ed1c24;
}

.treatments-intro {
    max-width: 620px;
}

.treatments-intro p {
    margin: 0;

    color: #5c5c5c;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.treatments-intro strong {
    color: #111111;
}


/* =========================================================
   TABS
========================================================= */

.treatments-tabs {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 28px;
    padding-bottom: 14px;

    border-bottom: 1px solid #e8e8e8;
}

.treatment-tab {
    position: relative;

    border: 1px solid #dddddd;
    background: #ffffff;

    padding: 12px 22px;

    color: #555555;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.treatment-tab:hover {
    border-color: #111111;
    color: #111111;
    transform: translateY(-2px);
}

.treatment-tab.active {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.treatment-tab.active::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -15px;

    width: 24px;
    height: 2px;

    background: #ed1c24;

    transform: translateX(-50%);
}


/* =========================================================
   CATEGORY
========================================================= */

.treatment-category {
    display: none;
}

.treatment-category.active {
    display: block;

    animation: categoryReveal 0.5s ease both;
}

@keyframes categoryReveal {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   GRID
========================================================= */

.treatment-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.treatment-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e7e7e7;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    opacity: 0;
    animation: cardReveal 0.6s ease forwards;
}

.treatment-card:nth-child(1) {
    animation-delay: 0.04s;
}

.treatment-card:nth-child(2) {
    animation-delay: 0.08s;
}

.treatment-card:nth-child(3) {
    animation-delay: 0.12s;
}

.treatment-card:nth-child(4) {
    animation-delay: 0.16s;
}

.treatment-card:nth-child(5) {
    animation-delay: 0.20s;
}

.treatment-card:nth-child(6) {
    animation-delay: 0.24s;
}

.treatment-card:nth-child(7) {
    animation-delay: 0.28s;
}

.treatment-card:nth-child(8) {
    animation-delay: 0.32s;
}

.treatment-card:nth-child(9) {
    animation-delay: 0.36s;
}

@keyframes cardReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.treatment-card:hover {
    transform: translateY(-7px);

    border-color: rgba(237, 28, 36, 0.3);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   IMAGE
========================================================= */

.treatment-image {
    position: relative;

    width: 100%;
    height: 215px;

    overflow: hidden;

    background: #eeeeee;
}

.treatment-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.22),
            transparent 55%
        );

    pointer-events: none;
}

.treatment-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.07);
}


/* =========================================================
   CONTENT
========================================================= */

.treatment-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 21px 21px 18px;
}

.treatment-content h3 {
    margin: 0 0 8px;

    color: #111111;

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.treatment-content p {
    margin: 0 0 18px;

    color: #707070;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   READ MORE
========================================================= */

.treatment-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 13px;

    border-top: 1px solid #eeeeee;

    color: #111111;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    transition: color 0.3s ease;
}

.treatment-link span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    font-size: 14px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.treatment-card:hover .treatment-link {
    color: #ed1c24;
}

.treatment-card:hover .treatment-link span {
    background: #ed1c24;

    transform: rotate(-45deg);
}


/* =========================================================
   ENDING TEXT
========================================================= */

.treatment-ending-text {
    max-width: 850px;

    margin: 35px 0 0;

    color: #555555;

    font-size: 12px;
    line-height: 1.7;
}

.treatment-ending-text strong {
    color: #111111;
}


/* =========================================================
   CTA
========================================================= */

.treatments-cta {
    display: flex;
    justify-content: center;
    align-items:center;
    margin-top: 35px;
    gap:20px;
}

.treatments-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 5px 6px 5px 21px;

    background: #111111;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.treatments-cta-button i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;

    font-style: normal;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.treatments-cta-button:hover {
    background: #ed1c24;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(237, 28, 36, 0.18);
}

.treatments-cta-button:hover i {
    background: #ffffff;
    color: #ed1c24;

    transform: rotate(45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .treatments-section {
        padding: 85px 0;
    }

    .treatments-container {
        width: calc(100% - 50px);
    }

    .treatments-header {
        gap: 45px;
    }

    .treatment-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .treatments-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .treatments-heading h2 {
        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .treatments-section {
        padding: 65px 0 70px;
    }

    .treatments-container {
        width: calc(100% - 30px);
    }


    .treatments-header {
        gap: 16px;
        margin-bottom: 30px;
    }


    .treatments-eyebrow {
        font-size: 8px;
        letter-spacing: 1.4px;
    }

    .treatments-eyebrow::before {
        width: 20px;
    }


    .treatments-heading h2 {
        font-size: 37px;
        letter-spacing: -2px;
        line-height: 1.05;
    }


    .treatments-intro p {
        font-size: 12px;
        line-height: 1.7;
    }


    /* Tabs */

    .treatments-tabs {
        margin-bottom: 23px;
    }

    .treatment-tab {
        flex: 1;

        padding: 11px 8px;

        font-size: 10px;
    }


    /* Grid */

    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    /* Image */

    .treatment-image {
        height: 205px;
    }


    /* Content */

    .treatment-content {
        padding: 18px;
    }

    .treatment-content h3 {
        font-size: 16px;
    }

    .treatment-content p {
        font-size: 11px;
    }


    /* Ending */

    .treatment-ending-text {
        margin-top: 28px;
        font-size: 11px;
    }


    /* CTA */

    .treatments-cta {
        justify-content: stretch;
        margin-top: 28px;
    }

    .treatments-cta-button {
        width: 100%;
        justify-content: space-between;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .treatments-section {
        padding: 55px 0 60px;
    }

    .treatments-heading h2 {
        font-size: 33px;
    }

    .treatment-image {
        height: 185px;
    }

}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works {
    position: relative;

    width: 100%;

    padding: 40px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.how-container {
    width: min(1180px, calc(100% - 60px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 75px;

    align-items: center;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.how-visual {
    position: relative;

    min-width: 0;
}


.how-image-wrap {
    position: relative;

    width: 100%;

    height: 540px;

    overflow: hidden;

    border-radius: 8px;

    background: #111111;
}


.how-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.18),
        transparent 45%
    );

    pointer-events: none;
}


.how-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


.how-visual:hover .how-image-wrap img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE CTA
========================================================= */

.how-image-cta {
    position: absolute;

    left: 30px;

    bottom: -30px;

    width: 285px;

    padding: 25px 24px 22px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.13);

    border-radius: 5px;

    z-index: 3;

    border-left: 3px solid #ed1c24;

    animation: howCtaFloat 4s ease-in-out infinite;
}


@keyframes howCtaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


.how-image-cta span {
    display: block;

    margin-bottom: 14px;

    color: #111111;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.45;

    font-weight: 800;
}


.how-image-cta a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ed1c24;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: gap 0.3s ease;
}


.how-image-cta a i {
    font-style: normal;

    font-size: 17px;
}


.how-image-cta a:hover {
    gap: 13px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.how-content {
    min-width: 0;
}


.how-label {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: #ed1c24;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.how-label::before {
    content: "";

    width: 25px;
    height: 2px;

    background: #ed1c24;
}


.how-content h2 {
    max-width: 560px;

    margin: 0 0 17px;

    color: #111111;

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 49px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}


.how-content h2 span {
    color: #ed1c24;
}


.how-intro {
    max-width: 610px;

    margin: 0 0 35px;

    color: #555555;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


.how-intro strong {
    color: #111111;

    font-weight: 700;
}


/* =========================================================
   STEPS
========================================================= */

.how-steps {
    position: relative;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   VERTICAL RED LINE
========================================================= */

.how-steps::before {
    content: "";

    position: absolute;

    left: 25px;

    top: 25px;

    bottom: 25px;

    width: 1px;

    background: #ed1c24;

    transform-origin: top;

    animation: lineReveal 1.3s ease forwards;
}


@keyframes lineReveal {

    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }

}


/* =========================================================
   STEP
========================================================= */

.how-step {
    position: relative;

    display: grid;

    grid-template-columns: 51px 1fr;

    gap: 20px;

    padding: 0 0 24px;

    opacity: 0;

    transform: translateX(20px);

    animation: stepReveal 0.6s ease forwards;
}


.how-step:nth-child(1) {
    animation-delay: 0.15s;
}


.how-step:nth-child(2) {
    animation-delay: 0.3s;
}


.how-step:nth-child(3) {
    animation-delay: 0.45s;
}


.how-step:nth-child(4) {
    animation-delay: 0.6s;

    padding-bottom: 0;
}


@keyframes stepReveal {

    to {
        opacity: 1;

        transform: translateX(0);
    }

}


/* =========================================================
   NUMBER
========================================================= */

.how-step-number {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 51px;
    height: 51px;

    border: 1px solid #ed1c24;

    border-radius: 50%;

    background: #ffffff;

    color: #ed1c24;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.how-step:hover .how-step-number {
    background: #ed1c24;

    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================================
   STEP CONTENT
========================================================= */

.how-step-content {
    padding-top: 4px;
}


.how-step-content h3 {
    margin: 0 0 6px;

    color: #111111;

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 800;

    transition: color 0.3s ease;
}


.how-step:hover .how-step-content h3 {
    color: #ed1c24;
}


.how-step-content p {
    max-width: 570px;

    margin: 0;

    color: #666666;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .how-it-works {
        padding: 75px 0;
    }


    .how-container {
        width: calc(100% - 50px);

        grid-template-columns: 0.85fr 1.15fr;

        gap: 45px;
    }


    .how-image-wrap {
        height: 500px;
    }


    .how-image-cta {
        left: 20px;

        bottom: -25px;

        width: 260px;

        padding: 21px;
    }


    .how-content h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .how-intro {
        margin-bottom: 28px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 780px) {

    .how-it-works {
        padding: 70px 0 80px;
    }


    .how-container {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        gap: 65px;
    }


    .how-image-wrap {
        height: 430px;
    }


    .how-image-cta {
        left: 25px;

        bottom: -30px;

        width: 290px;
    }


    .how-content h2 {
        max-width: 650px;

        font-size: 40px;
    }


    .how-intro {
        max-width: 700px;

        font-size: 13px;

        margin-bottom: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .how-it-works {
        padding: 55px 0 70px;
    }


    .how-container {
        width: calc(100% - 30px);

        gap: 58px;
    }


    .how-image-wrap {
        height: 350px;

        border-radius: 6px;
    }


    .how-image-cta {
        left: 15px;

        bottom: -25px;

        width: calc(100% - 30px);

        padding: 19px 20px;
    }


    .how-image-cta span {
        font-size: 14px;

        margin-bottom: 10px;
    }


    .how-label {
        font-size: 9px;

        letter-spacing: 1.3px;

        margin-bottom: 12px;
    }


    .how-label::before {
        width: 20px;
    }


    .how-content h2 {
        font-size: 34px;

        line-height: 1.08;

        letter-spacing: -1.5px;

        margin-bottom: 15px;
    }


    .how-intro {
        font-size: 12px;

        line-height: 1.7;

        margin-bottom: 30px;
    }


    /* STEPS */

    .how-step {
        grid-template-columns: 45px 1fr;

        gap: 15px;

        padding-bottom: 22px;
    }


    .how-step-number {
        width: 45px;
        height: 45px;

        font-size: 10px;
    }


    .how-steps::before {
        left: 22px;

        top: 22px;

        bottom: 22px;
    }


    .how-step-content {
        padding-top: 2px;
    }


    .how-step-content h3 {
        font-size: 14px;

        margin-bottom: 5px;
    }


    .how-step-content p {
        font-size: 11px;

        line-height: 1.65;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .how-container {
        width: calc(100% - 24px);
    }


    .how-image-wrap {
        height: 315px;
    }


    .how-content h2 {
        font-size: 31px;
    }


    .how-step {
        grid-template-columns: 42px 1fr;

        gap: 13px;
    }


    .how-step-number {
        width: 42px;
        height: 42px;
    }


    .how-steps::before {
        left: 20px;

        top: 21px;
    }

}

/* =========================================================
   TESTIMONIALS SECTION
========================================================= */

.testimonials-section {
    width: 100%;
    background: #ffffff;
    padding: 90px 0;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.testimonials-container {
    width: min(100% - 80px, 1200px);
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.testimonials-heading {
    max-width: 650px;
    margin-bottom: 45px;
}


.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ed1c24;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    margin-bottom: 14px;
}


.section-eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: #ed1c24;
}


.testimonials-heading h2 {
    margin: 0;

    color: #111111;

    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -1.5px;
}


.testimonials-heading h2 span {
    color: #ed1c24;
}


/* =========================================================
   TESTIMONIAL GRID
========================================================= */

.testimonials-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.testimonial-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    padding: 30px;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

    animation: testimonialReveal 0.7s ease both;
}


.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}


.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}


.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}


.testimonial-card:hover {
    transform: translateY(-8px);

    border-color: #ed1c24;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   CARD TOP
========================================================= */

.testimonial-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}


.quote-mark {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    background: #111111;

    color: #ffffff;

    border-radius: 50%;

    font-family: Georgia, serif;
    font-size: 30px;

    line-height: 1;

    padding-top: 8px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.testimonial-card:hover .quote-mark {
    background: #ed1c24;

    transform: rotate(-8deg);
}


/* =========================================================
   STARS
========================================================= */

.testimonial-stars {
    color: #ed1c24;

    font-size: 13px;

    letter-spacing: 2px;

    white-space: nowrap;
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-text {
    margin: 0;

    color: #555555;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    line-height: 1.8;

    flex: 1;
}


/* =========================================================
   AUTHOR
========================================================= */

.testimonial-author {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    padding-top: 18px;

    border-top: 1px solid #eeeeee;
}


.author-line {
    width: 24px;
    height: 2px;

    background: #ed1c24;
}


.testimonial-author strong {
    color: #111111;

    font-family: "Manrope", sans-serif;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

@keyframes testimonialReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .testimonials-section {
        padding: 70px 0;
    }


    .testimonials-container {
        width: calc(100% - 50px);
    }


    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .testimonials-section {
        padding: 55px 0;
    }


    .testimonials-container {
        width: calc(100% - 40px);
    }


    .testimonials-heading {
        margin-bottom: 30px;
    }


    .testimonials-heading h2 {
        font-size: 32px;

        letter-spacing: -1px;
    }


    .testimonials-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .testimonial-card {
        min-height: auto;

        padding: 25px;
    }


    .testimonial-card:last-child {
        grid-column: auto;

        max-width: none;
    }


    .testimonial-text {
        font-size: 13px;

        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .testimonials-container {
        width: calc(100% - 30px);
    }


    .testimonial-card {
        padding: 22px;
    }


    .testimonial-stars {
        font-size: 11px;

        letter-spacing: 1px;
    }

}
/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta {
    position: relative;

    padding: 55px 0;

    background: #ed1c24;

    overflow: hidden;
}


.footer-cta::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    top: -180px;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;
}


.footer-cta-inner {
    position: relative;

    z-index: 2;

    width: min(1160px, calc(100% - 50px));

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-cta-content > span {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,0.75);

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.footer-cta-content h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(27px, 3vw, 39px);

    line-height: 1.1;

    letter-spacing: -1.3px;
}


.footer-cta-content h2 strong {
    display: block;

    font-weight: 800;
}


/* CTA BUTTON */

.footer-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    flex-shrink: 0;

    padding: 15px 18px 15px 22px;

    background: #111111;

    color: #ffffff;

    text-decoration: none;

    border-radius: 4px;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.footer-cta-button i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border: 1px solid #444444;

    border-radius: 50%;

    font-style: normal;

    transition: transform 0.3s ease;
}


.footer-cta-button:hover {
    transform: translateY(-3px);

    background: #000000;
}


.footer-cta-button:hover i {
    transform: rotate(45deg);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #f8f8f8;
    color: #111111;
    border-top: 3px solid #ed1c24;
    overflow: hidden;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    padding: 55px 0 45px;
}

.footer-container {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr
        1.25fr;

    gap: 55px;

    align-items: start;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    max-width: 300px;
}


/* LOGO */

.footer-logo {
    display: inline-flex;
    flex-direction: column;

    text-decoration: none;

    line-height: 1;

    margin-bottom: 22px;
}


.footer-logo img
{
    width:100%;
    height:100px;
}


/* DESCRIPTION */

.footer-description {
    max-width: 285px;

    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    line-height: 1.75;

    color: #666666;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    gap: 10px;

    margin-top: 24px;
}


.footer-social a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dddddd;

    border-radius: 50%;

    background: #ffffff;

    color: #111111;

    text-decoration: none;

    font-size: 16px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.footer-social a:hover {
    background: #ed1c24;

    border-color: #ed1c24;

    color: #ffffff;

    transform: translateY(-4px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h3,
.footer-map-column h3 {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 700;

    color: #111111;
}


.footer-title-line {
    display: block;

    width: 28px;
    height: 2px;

    background: #ed1c24;

    margin-top: 10px;
    margin-bottom: 20px;
}


/* =========================================================
   SIMPLE TREATMENT LINKS
========================================================= */

.footer-simple-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.footer-simple-links a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 150px;

    padding: 10px 0;

    border-bottom: 1px solid #e5e5e5;

    color: #555555;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.footer-simple-links a span {
    color: #ed1c24;

    font-size: 15px;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.footer-simple-links a:hover {
    color: #ed1c24;

    padding-left: 5px;
}


.footer-simple-links a:hover span {
    opacity: 1;

    transform: translateX(0);
}

/* =========================================================
   CONTACT
========================================================= */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: #666666;
    font-size: 15px;
    line-height: 1.65;

    text-decoration: none;
}


.footer-contact-icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #e2e2e2;

    color: #ed1c24;

    font-size: 13px;
}


.location-dot {
    font-size: 8px;
    color: #ed1c24;
}


/* PHONE HOVER */

.footer-contact-item[href]:hover {
    color: #ed1c24;
}


/* =========================================================
   APPOINTMENT
========================================================= */

.footer-appointment {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 4px;

    padding: 13px 17px;

    background: #111111;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 3px;

    transition:
        background .3s ease,
        transform .3s ease;
}


.footer-appointment span {
    color: #ed1c24;

    font-size: 17px;

    transition: transform .3s ease;
}


.footer-appointment:hover {
    background: #ed1c24;

    transform: translateY(-2px);
}


.footer-appointment:hover span {
    color: #ffffff;

    transform: translateX(4px);
}


/* =========================================================
   MAP
========================================================= */

.footer-map-column {
    min-width: 0;
}


.footer-map {
    width: 100%;

    height: 190px;

    overflow: hidden;

    border-radius: 8px;

    background: #eeeeee;

    border: 1px solid #e4e4e4;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}


.footer-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.footer-bottom {
    border-top: 1px solid #e4e4e4;

    background: #ffffff;
}


.footer-bottom-inner {
    width: min(1180px, calc(100% - 60px));

    min-height: 62px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    color: #777777;
}


.footer-top {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;
    font-weight: 600;

    color: #555555;

    text-decoration: none;

    transition: color .25s ease;
}


.footer-top span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dddddd;

    border-radius: 50%;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.footer-top:hover {
    color: #ed1c24;
}


.footer-top:hover span {
    background: #ed1c24;

    border-color: #ed1c24;

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr;

        gap: 40px;
    }

    .footer-map-column {
        grid-column: 1 / -1;

        max-width: 500px;
    }

    .footer-map {
        height: 200px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-container {
        width: min(100% - 36px, 500px);

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-brand {
        max-width: 100%;
    }


    .footer-description {
        max-width: 390px;
    }


    .footer-column,
    .footer-map-column {
        width: 100%;
    }


    .footer-treatment-group {
        margin-bottom: 18px;
    }


    .footer-map-column {
        max-width: none;
    }


    .footer-map {
        height: 220px;
    }


    .footer-bottom-inner {
        width: min(100% - 36px, 500px);

        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .footer-main {
        padding: 40px 0 35px;
    }


    .footer-container {
        width: calc(100% - 28px);

        gap: 30px;
    }


    .footer-logo-name {
        font-size: 34px;
    }


    .footer-description {
        font-size: 13px;
    }


    .footer-map {
        height: 200px;
    }


    .footer-bottom-inner {
        width: calc(100% - 28px);
    }
}

/* =========================================================
   APPOINTMENT POPUP
========================================================= */

.appointment-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


/* =========================================================
   ACTIVE STATE
========================================================= */

.appointment-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   OVERLAY
========================================================= */

.appointment-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* =========================================================
   MODAL BOX
========================================================= */

.appointment-modal-box {
    position: relative;

    width: 100%;
    max-width: 760px;

    max-height: calc(100vh - 50px);

    overflow-y: auto;
    overflow-x: hidden;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 20px;

    padding: 42px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28);

    transform: translateY(35px) scale(0.97);

    transition:
        transform 0.4s cubic-bezier(.22, .61, .36, 1);

    scrollbar-width: thin;
}


/* Open animation */

.appointment-modal.active .appointment-modal-box {
    transform: translateY(0) scale(1);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.appointment-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e7e7e7;

    border-radius: 50%;

    background: #ffffff;

    color: #111111;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.appointment-close:hover {
    background: #ed1c24;
    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================================
   HEADER
========================================================= */

.appointment-header {
    padding-right: 45px;

    margin-bottom: 30px;
}


.appointment-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 10px;

    color: #ed1c24;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.appointment-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: #ed1c24;
}


.appointment-header h2 {
    margin: 0 0 10px;

    color: #111111;

    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.08;
    font-weight: 800;

    letter-spacing: -1.5px;
}


.appointment-header h2 span {
    color: #ed1c24;
}


.appointment-header p {
    max-width: 590px;

    margin: 0;

    color: #666666;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.appointment-form {
    width: 100%;
}


.appointment-row {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-bottom: 18px;
}


.form-group {
    position: relative;

    min-width: 0;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #111111;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 700;
}


.form-group label span {
    color: #ed1c24;
}


/* =========================================================
   INPUTS
========================================================= */

.form-group input,
.form-group select,
.form-group textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dedede;

    border-radius: 9px;

    background: #ffffff;

    color: #111111;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.form-group input,
.form-group select {
    height: 50px;

    padding: 0 15px;
}


.form-group textarea {
    min-height: 105px;

    padding: 13px 15px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ed1c24;

    box-shadow:
        0 0 0 3px rgba(237, 28, 36, 0.08);
}


/* =========================================================
   VALIDATION
========================================================= */

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #ed1c24;

    background: #fffafa;
}


.form-error {
    display: block;

    min-height: 0;

    margin-top: 5px;

    color: #ed1c24;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    line-height: 1.4;
}


.form-error:empty {
    display: none;
}


/* =========================================================
   MESSAGE COUNT
========================================================= */

.form-group:has(textarea) {
    margin-top: 3px;
}


.character-count {
    margin-top: 5px;

    color: #999999;

    text-align: right;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
}


/* =========================================================
   CONSENT
========================================================= */

.appointment-consent {
    margin-top: 18px;
    margin-bottom: 20px;
}


.consent-label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    position: relative;

    cursor: pointer;
}


.consent-label input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.custom-checkbox {
    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    margin-top: 1px;

    border: 1px solid #cccccc;

    border-radius: 4px;

    position: relative;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.consent-label input:checked + .custom-checkbox {
    background: #ed1c24;
    border-color: #ed1c24;
}


.consent-label input:checked + .custom-checkbox::after {
    content: "";

    position: absolute;

    left: 5px;
    top: 2px;

    width: 5px;
    height: 9px;

    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    transform: rotate(45deg);
}


.consent-text {
    color: #666666;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.appointment-submit {
    width: 100%;

    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 6px 7px 6px 20px;

    border: 0;

    border-radius: 9px;

    background: #111111;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease;
}


.appointment-submit i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #ed1c24;

    color: #ffffff;

    font-size: 18px;

    font-style: normal;

    transition:
        transform 0.3s ease;
}


.appointment-submit:hover {
    background: #ed1c24;

    box-shadow:
        0 12px 30px rgba(237, 28, 36, 0.22);

    transform: translateY(-2px);
}


.appointment-submit:hover i {
    background: #ffffff;
    color: #ed1c24;

    transform: translateX(3px);
}


/* Loading */

.appointment-submit.loading {
    pointer-events: none;

    opacity: 0.7;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.appointment-success {
    display: none;

    margin-top: 20px;

    padding: 20px;

    border-radius: 10px;

    background: #f8f8f8;

    text-align: center;
}


.appointment-success.show {
    display: block;

    animation: successReveal 0.4s ease forwards;
}


.success-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 10px;

    border-radius: 50%;

    background: #ed1c24;

    color: #ffffff;

    font-size: 22px;
}


.appointment-success strong {
    display: block;

    margin-bottom: 5px;

    color: #111111;

    font-family: "Manrope", sans-serif;

    font-size: 16px;
}


.appointment-success p {
    margin: 0;

    color: #666666;

    font-size: 13px;
}


@keyframes successReveal {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   BODY LOCK
========================================================= */

body.appointment-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .appointment-modal {
        padding: 15px;
    }


    .appointment-modal-box {
        max-height: calc(100vh - 30px);

        padding: 32px 25px;

        border-radius: 16px;
    }


    .appointment-header {
        margin-bottom: 24px;
    }


    .appointment-header h2 {
        font-size: 32px;
    }


    .appointment-row {
        gap: 14px;

        margin-bottom: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .appointment-modal {
        padding: 10px;
    }


    .appointment-modal-box {
        max-height: calc(100vh - 20px);

        padding: 28px 18px;

        border-radius: 14px;
    }


    .appointment-close {
        top: 14px;
        right: 14px;

        width: 35px;
        height: 35px;

        font-size: 22px;
    }


    .appointment-header {
        padding-right: 40px;

        margin-bottom: 22px;
    }


    .appointment-eyebrow {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .appointment-eyebrow::before {
        width: 20px;
    }


    .appointment-header h2 {
        font-size: 27px;

        letter-spacing: -0.8px;
    }


    .appointment-header p {
        font-size: 13px;

        line-height: 1.6;
    }


    .appointment-row {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }


    .form-group {
        margin-bottom: 14px;
    }


    .form-group input,
    .form-group select {
        height: 48px;
    }


    .form-group textarea {
        min-height: 100px;
    }


    .appointment-submit {
        min-height: 52px;
    }


    .appointment-submit i {
        width: 40px;
        height: 40px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .appointment-modal-box {
        padding: 25px 15px;
    }


    .appointment-header h2 {
        font-size: 24px;
    }


    .appointment-header p {
        font-size: 12px;
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
    }

}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    z-index: 9990;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-float svg {
    width: 31px;
    height: 31px;

    fill: #ffffff;

    display: block;
}


/* Hover */

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.35);
}


/* =========================================================
   PULSE
========================================================= */

.whatsapp-float::before {
    content: "";

    position: absolute;

    inset: -5px;

    border: 2px solid rgba(37, 211, 102, 0.45);

    border-radius: 50%;

    animation: whatsappPulse 2s infinite;

    pointer-events: none;
}


@keyframes whatsappPulse {

    0% {
        opacity: 0.8;
        transform: scale(0.9);
    }

    70% {
        opacity: 0;
        transform: scale(1.3);
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .whatsapp-float {
        right: 15px;
        bottom: 15px;

        width: 52px;
        height: 52px;
    }


    .whatsapp-float svg {
        width: 27px;
        height: 27px;
    }

}