:root {
    --fmc-primary: #18B7AE;
    --fmc-primary-dark: #0E8F89;
    --fmc-primary-light: #EAFBF9;
    --fmc-white: #ffffff;
    --fmc-text: #12393b;
    --fmc-muted: #6B7280;
    --fmc-border: #E5E7EB;
    --fmc-gradient: linear-gradient(135deg, #18B7AE, #0E8F89);
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    overflow-x: hidden;
}

.fmc-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(24, 183, 174, 0.12);
    box-shadow: 0 8px 30px rgba(14, 143, 137, 0.08);
}

.fmc-navbar {
    min-height: 82px;
    padding: 0;
}

.fmc-nav-container {
    padding-left: 38px;
    padding-right: 38px;
}

/* Brand */
.fmc-brand,
.fmc-mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin: 0;
}

.fmc-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.fmc-brand-name h5,
.fmc-mobile-brand h5 {
    margin: 0;
    color: var(--fmc-text);
    font-size: 18px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.fmc-brand-name span,
.fmc-mobile-brand span {
    display: block;
    color: var(--fmc-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Desktop Menu */
.fmc-desktop-menu {
    gap: 12px;
}

.fmc-desktop-menu .nav-link {
    color: var(--fmc-text);
    font-size: 16px;

    padding: 13px 14px !important;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.fmc-desktop-menu .nav-link:hover,
.fmc-desktop-menu .nav-link.active {
    color: var(--fmc-primary);
    background: var(--fmc-primary-light);
}

.fmc-desktop-menu .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 7px;
}

/* Dropdown */
.fmc-dropdown-menu {
    border: 1px solid rgba(24, 183, 174, 0.14);
    border-radius: 18px;
    padding: 10px;
    min-width: 245px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.fmc-dropdown-menu .dropdown-item {
    color: var(--fmc-text);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 13px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.fmc-dropdown-menu .dropdown-item:hover {
    color: var(--fmc-primary-dark);
    background: var(--fmc-primary-light);
    padding-left: 18px;
}

/* Desktop Actions */
.fmc-desktop-actions {
    align-items: center;
    gap: 14px;
}

.fmc-phone-link {
    color: var(--fmc-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.fmc-phone-link i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fmc-book-btn {
    background: var(--fmc-gradient);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(24, 183, 174, 0.28);
    transition: all 0.3s ease;
}

.fmc-book-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(24, 183, 174, 0.36);
}

/* Mobile Toggle */
.fmc-toggler {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: var(--fmc-gradient);
    padding: 0;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.fmc-toggler span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 30px;
}

/* Offcanvas */
.fmc-offcanvas {
    width: 360px !important;
    max-width: 90%;
    border-left: none;
    border-radius: 24px 0 0 24px;
}

.fmc-offcanvas-header {
    padding: 18px;
    border-bottom: 1px solid var(--fmc-border);
}

.fmc-mobile-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.fmc-close-btn {
    background-color: var(--fmc-primary-light);
    border-radius: 12px;
    opacity: 1;
    padding: 12px;
    box-shadow: none !important;
}

.fmc-offcanvas-body {
    padding: 18px;
}

.fmc-mobile-menu {
    gap: 10px;
}

.fmc-mobile-menu .nav-link {
    min-height: 52px;
    background: #f8fbfb;
    color: var(--fmc-text);
    border-radius: 15px;
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 750;
    display: flex;
    align-items: center;
    gap: 11px;
}

.fmc-mobile-menu .nav-link i {
    color: var(--fmc-primary);
    width: 20px;
}

.fmc-mobile-menu .nav-link:hover,
.fmc-mobile-menu .nav-link.active {
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
}

.fmc-mobile-menu .dropdown-toggle {
    justify-content: space-between;
}

.fmc-mobile-menu .dropdown-toggle span {
    display: flex;
    align-items: center;
    gap: 11px;
}

.fmc-mobile-dropdown {
    position: static !important;
    transform: none !important;
    border: 1px solid var(--fmc-border);
    border-radius: 15px;
    padding: 8px;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
}

.fmc-mobile-dropdown .dropdown-item {
    color: var(--fmc-text);
    font-size: 14px;
    font-weight: 600;
    border-radius: 11px;
    padding: 10px 12px;
}

.fmc-mobile-dropdown .dropdown-item:hover {
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
}

/* Mobile Buttons */
.fmc-mobile-actions {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--fmc-border);
}

.fmc-mobile-phone,
.fmc-mobile-book {
    width: 100%;
    min-height: 52px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fmc-mobile-phone {
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
}

.fmc-mobile-book {
    background: var(--fmc-gradient);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(24, 183, 174, 0.24);
}
/* ==============================
   FMC Gut Autism Slider
============================== */
.fmc-gut-slider-section {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, var(--fmc-primary-light), #ffffff);
    padding: 50px 0;
}

.fmc-gut-slider {
    border-radius: 28px;
    overflow: hidden;
    background: var(--fmc-white);
    box-shadow: 0 18px 45px rgba(14, 143, 137, 0.18);
    border: 1px solid rgba(24, 183, 174, 0.18);
}

.fmc-gut-slide {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(24, 183, 174, 0.18), transparent 35%),
        radial-gradient(circle at bottom left, rgba(14, 143, 137, 0.16), transparent 35%),
        var(--fmc-white);
}

.fmc-gut-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}

.fmc-gut-content {
    position: relative;
    z-index: 2;
    padding: 55px 45px;
}

.fmc-gut-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(24, 183, 174, 0.25);
}

.fmc-gut-title {
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    color: var(--fmc-text);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.fmc-gut-title span {
    color: var(--fmc-primary-dark);
}

.fmc-gut-desc {
    color: var(--fmc-muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 620px;
}

.fmc-gut-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.fmc-gut-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(234, 251, 249, 0.7);
    border: 1px solid var(--fmc-border);
    border-radius: 16px;
    padding: 14px;
}

.fmc-gut-point i {
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 14px;
}

.fmc-gut-point h6 {
    margin: 0 0 3px;
    font-size: 15px;
    color: var(--fmc-text);
    font-weight: 800;
}

.fmc-gut-point p {
    margin: 0;
    color: var(--fmc-muted);
    font-size: 13.5px;
    line-height: 1.45;
}

.fmc-gut-btn-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fmc-gut-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(24, 183, 174, 0.28);
    transition: 0.3s ease;
}

.fmc-gut-btn:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(24, 183, 174, 0.36);
}

.fmc-gut-call {
    color: var(--fmc-text);
    font-weight: 800;
    text-decoration: none;
}

.fmc-gut-call i {
    color: var(--fmc-primary-dark);
}

/* Right Side Visual */
.fmc-gut-visual-wrap {
    position: relative;
    z-index: 2;
    padding: 40px 40px 40px 0;
}

.fmc-gut-visual-card {
    position: relative;
    background: var(--fmc-primary-light);
    border-radius: 28px;
    padding: 18px;
    border: 1px solid rgba(24, 183, 174, 0.22);
    box-shadow: 0 18px 35px rgba(14, 143, 137, 0.16);
}

.fmc-gut-visual-card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.fmc-gut-floating-card {
    position: absolute;
    left: -25px;
    bottom: 28px;
    width: 210px;
    background: var(--fmc-white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 14px 30px rgba(18, 57, 59, 0.14);
    border: 1px solid var(--fmc-border);
}

.fmc-gut-floating-card h5 {
    margin: 0;
    color: var(--fmc-primary-dark);
    font-size: 22px;
    font-weight: 900;
}

.fmc-gut-floating-card p {
    margin: 4px 0 0;
    color: var(--fmc-muted);
    font-size: 13px;
    line-height: 1.45;
}

.fmc-gut-mini-icons {
    position: absolute;
    right: -16px;
    top: 28px;
    display: grid;
    gap: 12px;
}

.fmc-gut-mini-icons span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--fmc-white);
    background: var(--fmc-gradient);
    box-shadow: 0 10px 20px rgba(24, 183, 174, 0.28);
}

/* Bootstrap Controls Custom */
.fmc-gut-slider .carousel-control-prev,
.fmc-gut-slider .carousel-control-next {
    width: 46px;
    height: 46px;
    top: auto;
    bottom: 22px;
    border-radius: 50%;
    background: var(--fmc-primary-dark);
    opacity: 1;
}

.fmc-gut-slider .carousel-control-prev {
    left: auto;
    right: 82px;
}

.fmc-gut-slider .carousel-control-next {
    right: 28px;
}

.fmc-gut-slider .carousel-indicators {
    left: 45px;
    right: auto;
    bottom: 26px;
    margin: 0;
}

.fmc-gut-slider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--fmc-primary-dark);
}
/* ==============================
   About Autism Clinic Section
============================== */
.fmc-about-section {
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(24, 183, 174, 0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 143, 137, 0.12), transparent 35%),
        linear-gradient(180deg, #ffffff, var(--fmc-primary-light));
}

.fmc-about-wrapper {
    position: relative;
}

.fmc-about-card {
    background: var(--fmc-white);
    border: 1px solid rgba(24, 183, 174, 0.18);
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(14, 143, 137, 0.15);
    overflow: hidden;
}

.fmc-about-left {
    position: relative;
    height: 100%;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(24, 183, 174, 0.12), rgba(255,255,255,0.95));
}

.fmc-doctor-image-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: var(--fmc-primary-light);
    border: 1px solid rgba(24, 183, 174, 0.22);
    box-shadow: 0 16px 35px rgba(18, 57, 59, 0.12);
}

.fmc-doctor-image-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.fmc-doctor-badge {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 16px;
    border: 1px solid rgba(24, 183, 174, 0.20);
}

.fmc-doctor-badge h4 {
    margin: 0 0 4px;
    color: var(--fmc-text);
    font-size: 22px;
    font-weight: 900;
}

.fmc-doctor-badge p {
    margin: 0;
    color: var(--fmc-primary-dark);
    font-size: 14px;
    font-weight: 700;
}

.fmc-about-right {
    padding: 44px 40px 38px;
}

.fmc-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(24, 183, 174, 0.22);
    margin-bottom: 16px;
}

.fmc-about-title {
    color: var(--fmc-text);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.fmc-about-title span {
    color: var(--fmc-primary-dark);
}

.fmc-about-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.fmc-about-highlight {
    background: linear-gradient(135deg, rgba(24, 183, 174, 0.10), rgba(234, 251, 249, 0.9));
    border-left: 5px solid var(--fmc-primary);
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.fmc-about-highlight p {
    margin: 0;
    color: var(--fmc-text);
    font-weight: 700;
    line-height: 1.6;
}

.fmc-about-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.fmc-service-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid var(--fmc-border);
    transition: 0.3s ease;
}

.fmc-service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 183, 174, 0.45);
    box-shadow: 0 12px 25px rgba(14, 143, 137, 0.12);
}

.fmc-service-icon {
    min-width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--fmc-white);
    background: var(--fmc-gradient);
    font-size: 15px;
}

.fmc-service-item h5 {
    margin: 0 0 4px;
    color: var(--fmc-text);
    font-size: 15px;
    font-weight: 900;
}

.fmc-service-item p {
    margin: 0;
    color: var(--fmc-muted);
    font-size: 13px;
    line-height: 1.45;
}

.fmc-contact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 18px;
    border-radius: 20px;
    background: var(--fmc-gradient);
}

.fmc-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--fmc-white);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
}

.fmc-contact-link:hover {
    color: var(--fmc-white);
}

.fmc-contact-link i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}

.fmc-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s ease;
}

.fmc-about-btn:hover {
    transform: translateY(-3px);
    color: var(--fmc-primary-dark);
}

/* Small Stats */
.fmc-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.fmc-stat-box {
    text-align: center;
    padding: 14px 10px;
    border-radius: 17px;
    background: var(--fmc-primary-light);
    border: 1px solid rgba(24, 183, 174, 0.18);
}

.fmc-stat-box h3 {
    margin: 0;
    color: var(--fmc-primary-dark);
    font-size: 24px;
    font-weight: 900;
}

.fmc-stat-box p {
    margin: 4px 0 0;
    color: var(--fmc-muted);
    font-size: 12.5px;
    font-weight: 700;
}

/* =====================================
   Health Network Services Section
===================================== */
.hn-services-section {
    width: 100%;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at top left, rgba(24, 183, 174, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(14, 143, 137, 0.14), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
    position: relative;
}

.hn-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-services-container {
    position: relative;
    z-index: 2;
}

.hn-services-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 46px;
}

.hn-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    font-size: 14px;
    font-weight: 900;
    border: 1px solid rgba(24, 183, 174, 0.24);
    box-shadow: 0 10px 25px rgba(14, 143, 137, 0.10);
    margin-bottom: 16px;
}

.hn-services-title {
    font-size: 44px;
    line-height: 1.14;
    font-weight: 950;
    color: var(--fmc-text);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.hn-services-title span {
    color: var(--fmc-primary-dark);
}

.hn-services-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Main service cards */
.hn-service-card {
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 26px;
    padding: 26px 23px;
    box-shadow: 0 18px 42px rgba(14, 143, 137, 0.12);
    transition: all 0.35s ease;
    overflow: hidden;
}

.hn-service-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(24, 183, 174, 0.12);
    transition: all 0.35s ease;
}

.hn-service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(24, 183, 174, 0.55);
    box-shadow: 0 24px 55px rgba(14, 143, 137, 0.20);
}

.hn-service-card:hover::before {
    width: 190px;
    height: 190px;
    background: rgba(24, 183, 174, 0.18);
}

.hn-service-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.hn-service-icon {
    min-width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--fmc-white);
    background: var(--fmc-gradient);
    font-size: 22px;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.28);
}

.hn-service-title-wrap h3 {
    color: var(--fmc-text);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 950;
    margin: 0 0 6px;
}

.hn-service-title-wrap p {
    color: var(--fmc-primary-dark);
    font-size: 13px;
    font-weight: 850;
    margin: 0;
}

.hn-service-text {
    position: relative;
    z-index: 2;
    color: var(--fmc-muted);
    font-size: 14.8px;
    line-height: 1.75;
    margin-bottom: 17px;
}

.hn-service-list {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
}

.hn-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--fmc-text);
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 10px;
    font-weight: 650;
}

.hn-service-list li i {
    color: var(--fmc-primary-dark);
    margin-top: 3px;
}

.hn-service-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--fmc-primary-dark);
    font-weight: 900;
    font-size: 14px;
    transition: 0.3s ease;
}

.hn-service-link:hover {
    color: var(--fmc-text);
    gap: 12px;
}

/* Featured Program Strip */
.hn-program-strip {
    margin-top: 45px;
    background: var(--fmc-gradient);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 22px 55px rgba(14, 143, 137, 0.22);
    position: relative;
    overflow: hidden;
}

.hn-program-strip::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -110px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.hn-program-strip::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.hn-program-content {
    position: relative;
    z-index: 2;
}

.hn-program-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    color: var(--fmc-white);
    border: 1px solid rgba(255,255,255,0.24);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 14px;
}

.hn-program-title {
    color: var(--fmc-white);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 950;
    margin-bottom: 10px;
}

.hn-program-desc {
    color: rgba(255,255,255,0.90);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 0;
}

.hn-program-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.hn-program-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    text-decoration: none;
    border-radius: 50px;
    padding: 13px 20px;
    font-weight: 950;
    box-shadow: 0 14px 26px rgba(18, 57, 59, 0.16);
    transition: 0.3s ease;
}

.hn-program-btn:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-4px);
}

.hn-program-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--fmc-white);
    text-decoration: none;
    font-weight: 900;
}

.hn-program-call:hover {
    color: var(--fmc-white);
}

/* Animation */
.hn-animate-up {
    animation: hnFadeUp 0.75s ease both;
}

.hn-delay-1 { animation-delay: 0.08s; }
.hn-delay-2 { animation-delay: 0.16s; }
.hn-delay-3 { animation-delay: 0.24s; }
.hn-delay-4 { animation-delay: 0.32s; }
.hn-delay-5 { animation-delay: 0.40s; }
.hn-delay-6 { animation-delay: 0.48s; }

@keyframes hnFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================
   Why Choose Health Network Section
===================================== */
.hn-why-section {
    width: 100%;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at top left, rgba(24, 183, 174, 0.16), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 143, 137, 0.14), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
    position: relative;
}

.hn-why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-why-container {
    position: relative;
    z-index: 2;
}

.hn-why-header {
    max-width: 880px;
    margin: 0 auto 46px;
    text-align: center;
}

.hn-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    font-size: 14px;
    font-weight: 900;
    border: 1px solid rgba(24, 183, 174, 0.24);
    box-shadow: 0 10px 25px rgba(14, 143, 137, 0.10);
    margin-bottom: 16px;
}

.hn-why-title {
    color: var(--fmc-text);
    font-size: 44px;
    line-height: 1.14;
    font-weight: 950;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.hn-why-title span {
    color: var(--fmc-primary-dark);
}

.hn-why-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* Main Feature Box */
.hn-why-main-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(24, 183, 174, 0.22);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 22px 55px rgba(14, 143, 137, 0.14);
    position: relative;
    overflow: hidden;
}

.hn-why-main-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    right: -120px;
    top: -120px;
    background: rgba(24, 183, 174, 0.13);
}

.hn-why-main-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.23);
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.hn-why-main-card h3 {
    color: var(--fmc-text);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 950;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.hn-why-main-card h3 span {
    color: var(--fmc-primary-dark);
}

.hn-why-main-card p {
    color: var(--fmc-muted);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.hn-why-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.hn-why-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--fmc-border);
    color: var(--fmc-text);
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 650;
}

.hn-why-check-list li:last-child {
    border-bottom: none;
}

.hn-why-check-list li i {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 12px;
    margin-top: 1px;
}

/* Reason Cards */
.hn-why-reason-card {
    height: 100%;
    background: var(--fmc-white);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 24px;
    padding: 22px 20px;
    box-shadow: 0 16px 38px rgba(14, 143, 137, 0.11);
    transition: 0.35s ease;
}

.hn-why-reason-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 183, 174, 0.55);
    box-shadow: 0 24px 55px rgba(14, 143, 137, 0.18);
}

.hn-why-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--fmc-white);
    background: var(--fmc-gradient);
    font-size: 22px;
    margin-bottom: 17px;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.28);
}

.hn-why-reason-card h4 {
    color: var(--fmc-text);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 950;
    margin-bottom: 9px;
}

.hn-why-reason-card p {
    color: var(--fmc-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* Image Gallery */
.hn-why-gallery {
    margin-top: 45px;
}

.hn-why-image-card {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: var(--fmc-white);
    border: 1px solid rgba(24, 183, 174, 0.22);
    box-shadow: 0 18px 42px rgba(14, 143, 137, 0.12);
    transition: 0.35s ease;
}

.hn-why-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(14, 143, 137, 0.18);
}

.hn-why-image-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.hn-why-image-content {
    padding: 18px;
}

.hn-why-image-content h5 {
    color: var(--fmc-text);
    font-size: 17px;
    font-weight: 950;
    margin-bottom: 7px;
}

.hn-why-image-content p {
    color: var(--fmc-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* Bottom CTA */
.hn-why-cta {
    margin-top: 45px;
    background: var(--fmc-gradient);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(14, 143, 137, 0.24);
    position: relative;
    overflow: hidden;
}

.hn-why-cta::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.hn-why-cta-content {
    position: relative;
    z-index: 2;
}

.hn-why-cta h3 {
    color: var(--fmc-white);
    font-size: 30px;
    line-height: 1.28;
    font-weight: 950;
    margin-bottom: 10px;
}

.hn-why-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0;
}

.hn-why-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.hn-why-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    text-decoration: none;
    border-radius: 50px;
    padding: 13px 20px;
    font-weight: 950;
    box-shadow: 0 14px 26px rgba(18, 57, 59, 0.16);
    transition: 0.3s ease;
}

.hn-why-btn-white:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-4px);
}

.hn-why-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--fmc-white);
    text-decoration: none;
    font-weight: 900;
}

.hn-why-call:hover {
    color: var(--fmc-white);
}

/* Animation */
.hn-why-animate {
    animation: hnWhyFadeUp 0.75s ease both;
}

.hn-why-delay-1 { animation-delay: 0.08s; }
.hn-why-delay-2 { animation-delay: 0.16s; }
.hn-why-delay-3 { animation-delay: 0.24s; }
.hn-why-delay-4 { animation-delay: 0.32s; }
.hn-why-delay-5 { animation-delay: 0.40s; }
.hn-why-delay-6 { animation-delay: 0.48s; }

@keyframes hnWhyFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================
   OUR HEALING PROCESS / HOW WE HELP
========================================= */
.hn-process-section {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at top left, rgba(24, 183, 174, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(14, 143, 137, 0.12), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
}

.hn-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.05) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-process-wrap {
    position: relative;
    z-index: 2;
}

.hn-process-header {
    max-width: 860px;
    text-align: center;
    margin: 0 auto 48px;
}

.hn-process-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border-radius: 50px;
    border: 1px solid rgba(24, 183, 174, 0.24);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(14, 143, 137, 0.10);
    margin-bottom: 16px;
}

.hn-process-title {
    color: var(--fmc-text);
    font-size: 44px;
    line-height: 1.15;
    font-weight: 950;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.hn-process-title span {
    color: var(--fmc-primary-dark);
}

.hn-process-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* Left Visual Card */
.hn-process-visual-card {
    position: relative;
    height: 100%;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 22px 55px rgba(14, 143, 137, 0.14);
    overflow: hidden;
}

.hn-process-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--fmc-primary-light);
}

.hn-process-main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.hn-process-floating-box {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 14px 35px rgba(18,57,59,0.14);
}

.hn-process-floating-box h4 {
    margin: 0 0 6px;
    color: var(--fmc-text);
    font-size: 20px;
    font-weight: 900;
}

.hn-process-floating-box p {
    margin: 0;
    color: var(--fmc-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.hn-process-mini-cards {
    margin-top: 18px;
}

.hn-process-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--fmc-white);
    border: 1px solid var(--fmc-border);
    border-radius: 18px;
    padding: 14px;
    height: 100%;
    box-shadow: 0 12px 24px rgba(14, 143, 137, 0.08);
}

.hn-process-mini-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--fmc-white);
    background: var(--fmc-gradient);
    font-size: 16px;
}

.hn-process-mini-card h6 {
    margin: 0 0 4px;
    color: var(--fmc-text);
    font-size: 15px;
    font-weight: 900;
}

.hn-process-mini-card p {
    margin: 0;
    color: var(--fmc-muted);
    font-size: 12.8px;
    line-height: 1.5;
}

/* Right Process */
.hn-process-right {
    position: relative;
    height: 100%;
}

.hn-process-highlight {
    background: linear-gradient(135deg, rgba(24,183,174,0.12), rgba(255,255,255,0.92));
    border: 1px solid rgba(24, 183, 174, 0.18);
    border-left: 5px solid var(--fmc-primary);
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 22px;
    color: var(--fmc-text);
    font-weight: 700;
    line-height: 1.7;
}

.hn-process-steps {
    position: relative;
}

.hn-process-steps::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(24,183,174,0.45), rgba(14,143,137,0.15));
}

.hn-process-step {
    position: relative;
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(24, 183, 174, 0.18);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 16px 36px rgba(14, 143, 137, 0.10);
    transition: all 0.35s ease;
}

.hn-process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 183, 174, 0.48);
    box-shadow: 0 24px 52px rgba(14, 143, 137, 0.16);
}

.hn-process-step:last-child {
    margin-bottom: 0;
}

.hn-process-step-number {
    position: relative;
    z-index: 2;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(24, 183, 174, 0.28);
}

.hn-process-step-content h3 {
    color: var(--fmc-text);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 7px;
    line-height: 1.3;
}

.hn-process-step-content p {
    color: var(--fmc-muted);
    font-size: 14.4px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.hn-process-point-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hn-process-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--fmc-text);
    font-size: 13.8px;
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 650;
}

.hn-process-point-list li:last-child {
    margin-bottom: 0;
}

.hn-process-point-list li i {
    color: var(--fmc-primary-dark);
    margin-top: 4px;
}

/* Bottom Benefit Strip */
.hn-process-benefits {
    margin-top: 26px;
    background: var(--fmc-white);
    border: 1px solid rgba(24, 183, 174, 0.18);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(14, 143, 137, 0.09);
}

.hn-process-benefits h4 {
    color: var(--fmc-text);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hn-process-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hn-process-benefit-item {
    background: var(--fmc-primary-light);
    border: 1px solid rgba(24, 183, 174, 0.18);
    border-radius: 18px;
    padding: 16px 12px;
    text-align: center;
    transition: 0.3s ease;
}

.hn-process-benefit-item:hover {
    transform: translateY(-4px);
    background: #ffffff;
}

.hn-process-benefit-item i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 17px;
    margin: 0 auto 10px;
    box-shadow: 0 10px 22px rgba(24, 183, 174, 0.22);
}

.hn-process-benefit-item h5 {
    color: var(--fmc-text);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 5px;
}

.hn-process-benefit-item p {
    color: var(--fmc-muted);
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0;
}

/* CTA */
.hn-process-cta {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hn-process-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s ease;
}

.hn-process-btn-primary {
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    box-shadow: 0 14px 26px rgba(24, 183, 174, 0.24);
}

.hn-process-btn-primary:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
}

.hn-process-btn-outline {
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.24);
}

.hn-process-btn-outline:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-3px);
}

/* Scroll Animation */
.hn-process-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.7s ease;
}

.hn-process-reveal.hn-process-show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   Our Programs / Care Plans Section
===================================== */
.hn-programs-section {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(24, 183, 174, 0.15), transparent 34%),
        radial-gradient(circle at 90% 90%, rgba(14, 143, 137, 0.13), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
}

.hn-programs-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-programs-container {
    position: relative;
    z-index: 2;
}

.hn-programs-header {
    max-width: 880px;
    margin: 0 auto 48px;
    text-align: center;
}

.hn-programs-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.24);
    box-shadow: 0 10px 25px rgba(14, 143, 137, 0.10);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hn-programs-title {
    color: var(--fmc-text);
    font-size: 44px;
    line-height: 1.14;
    font-weight: 950;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.hn-programs-title span {
    color: var(--fmc-primary-dark);
}

.hn-programs-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* Featured Program */
.hn-feature-program {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 34px;
    margin-bottom: 34px;
    background: var(--fmc-gradient);
    box-shadow: 0 25px 65px rgba(14, 143, 137, 0.26);
}

.hn-feature-program::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -125px;
    top: -145px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.hn-feature-program::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    left: -90px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.hn-feature-program-content {
    position: relative;
    z-index: 2;
}

.hn-feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fmc-white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.hn-feature-program h3 {
    color: var(--fmc-white);
    font-size: 32px;
    line-height: 1.25;
    font-weight: 950;
    margin-bottom: 12px;
}

.hn-feature-program p {
    color: rgba(255, 255, 255, 0.90);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.hn-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}

.hn-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--fmc-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.hn-feature-list li i {
    margin-top: 3px;
}

.hn-feature-action {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;
    padding: 22px;
    height: 100%;
}

.hn-feature-action h4 {
    color: var(--fmc-white);
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 10px;
}

.hn-feature-action p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.hn-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 14px 26px rgba(18, 57, 59, 0.16);
    transition: 0.3s ease;
}

.hn-feature-btn:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-4px);
}

/* Program Cards */
.hn-care-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 28px;
    padding: 26px 22px;
    box-shadow: 0 18px 45px rgba(14, 143, 137, 0.12);
    transition: 0.35s ease;
}

.hn-care-card::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    right: -72px;
    top: -72px;
    border-radius: 50%;
    background: rgba(24, 183, 174, 0.12);
    transition: 0.35s ease;
}

.hn-care-card:hover {
    transform: translateY(-9px);
    border-color: rgba(24, 183, 174, 0.55);
    box-shadow: 0 28px 65px rgba(14, 143, 137, 0.20);
}

.hn-care-card:hover::before {
    width: 190px;
    height: 190px;
    background: rgba(24, 183, 174, 0.18);
}

.hn-care-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 17px;
}

.hn-care-icon {
    min-width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 22px;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.28);
}

.hn-care-card h3 {
    color: var(--fmc-text);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 950;
    margin: 0 0 6px;
}

.hn-care-subtitle {
    color: var(--fmc-primary-dark);
    font-size: 13px;
    font-weight: 850;
    margin: 0;
}

.hn-care-desc {
    position: relative;
    z-index: 2;
    color: var(--fmc-muted);
    font-size: 14.6px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.hn-care-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.hn-care-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.20);
    padding: 7px 10px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 800;
}

.hn-care-list {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.hn-care-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--fmc-text);
    font-size: 13.8px;
    line-height: 1.5;
    margin-bottom: 9px;
    font-weight: 650;
}

.hn-care-list li i {
    color: var(--fmc-primary-dark);
    margin-top: 4px;
}

.hn-care-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--fmc-primary-dark);
    font-weight: 950;
    font-size: 14px;
    transition: 0.3s ease;
}

.hn-care-btn:hover {
    color: var(--fmc-text);
    gap: 12px;
}

/* Bottom CTA */
.hn-programs-bottom {
    margin-top: 42px;
    background: var(--fmc-white);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(14, 143, 137, 0.12);
}

.hn-programs-bottom h3 {
    color: var(--fmc-text);
    font-size: 27px;
    line-height: 1.3;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-programs-bottom p {
    color: var(--fmc-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.hn-programs-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.hn-programs-call,
.hn-programs-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    border-radius: 50px;
    padding: 13px 20px;
    font-weight: 950;
    transition: 0.3s ease;
}

.hn-programs-call {
    color: var(--fmc-primary-dark);
    background: var(--fmc-primary-light);
    border: 1px solid rgba(24, 183, 174, 0.24);
}

.hn-programs-whatsapp {
    color: var(--fmc-white);
    background: var(--fmc-gradient);
    box-shadow: 0 14px 26px rgba(24, 183, 174, 0.24);
}

.hn-programs-call:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-3px);
}

.hn-programs-whatsapp:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
}

/* Animation */
.hn-program-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.75s ease;
}

.hn-program-animate.hn-program-show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   When Should You Consult Section
===================================== */
.hn-consult-section {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at top right, rgba(24, 183, 174, 0.15), transparent 34%),
        radial-gradient(circle at bottom left, rgba(14, 143, 137, 0.13), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
}

.hn-consult-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-consult-container {
    position: relative;
    z-index: 2;
}

.hn-consult-header {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.hn-consult-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.24);
    box-shadow: 0 10px 25px rgba(14, 143, 137, 0.10);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hn-consult-title {
    color: var(--fmc-text);
    font-size: 44px;
    line-height: 1.14;
    font-weight: 950;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.hn-consult-title span {
    color: var(--fmc-primary-dark);
}

.hn-consult-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* Left Highlight Card */
.hn-consult-left-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: var(--fmc-gradient);
    padding: 32px;
    box-shadow: 0 25px 65px rgba(14, 143, 137, 0.26);
}

.hn-consult-left-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.hn-consult-left-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.hn-consult-left-content {
    position: relative;
    z-index: 2;
}

.hn-consult-left-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.18);
    color: var(--fmc-white);
    border: 1px solid rgba(255,255,255,0.24);
    font-size: 28px;
    margin-bottom: 20px;
}

.hn-consult-left-card h3 {
    color: var(--fmc-white);
    font-size: 31px;
    line-height: 1.25;
    font-weight: 950;
    margin-bottom: 14px;
}

.hn-consult-left-card p {
    color: rgba(255,255,255,0.90);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.hn-consult-note {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 20px;
    padding: 17px;
    margin-bottom: 22px;
}

.hn-consult-note h4 {
    color: var(--fmc-white);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-consult-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.hn-consult-left-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.hn-consult-left-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--fmc-white);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 750;
    margin-bottom: 11px;
}

.hn-consult-left-list li i {
    margin-top: 3px;
}

.hn-consult-left-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 14px 26px rgba(18, 57, 59, 0.16);
    transition: 0.3s ease;
}

.hn-consult-left-btn:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-4px);
}

/* Symptom Cards */
.hn-symptom-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 24px;
    padding: 22px 18px;
    box-shadow: 0 18px 42px rgba(14, 143, 137, 0.11);
    transition: 0.35s ease;
}

.hn-symptom-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -62px;
    top: -62px;
    border-radius: 50%;
    background: rgba(24, 183, 174, 0.11);
    transition: 0.35s ease;
}

.hn-symptom-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 183, 174, 0.55);
    box-shadow: 0 26px 58px rgba(14, 143, 137, 0.18);
}

.hn-symptom-card:hover::before {
    width: 160px;
    height: 160px;
    background: rgba(24, 183, 174, 0.17);
}

.hn-symptom-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 21px;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.25);
    margin-bottom: 15px;
}

.hn-symptom-card h4 {
    position: relative;
    z-index: 2;
    color: var(--fmc-text);
    font-size: 17.5px;
    line-height: 1.3;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-symptom-card p {
    position: relative;
    z-index: 2;
    color: var(--fmc-muted);
    font-size: 13.8px;
    line-height: 1.65;
    margin: 0;
}

/* Checklist Strip */
.hn-consult-check-strip {
    margin-top: 42px;
    background: var(--fmc-white);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(14, 143, 137, 0.12);
}

.hn-consult-check-heading h3 {
    color: var(--fmc-text);
    font-size: 28px;
    font-weight: 950;
    margin-bottom: 9px;
}

.hn-consult-check-heading p {
    color: var(--fmc-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.hn-consult-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hn-consult-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--fmc-primary-light);
    border: 1px solid rgba(24, 183, 174, 0.18);
    border-radius: 16px;
    padding: 13px;
    color: var(--fmc-text);
    font-size: 13.8px;
    line-height: 1.45;
    font-weight: 700;
}

.hn-consult-check-item i {
    color: var(--fmc-primary-dark);
    margin-top: 3px;
}

/* Bottom CTA */
.hn-consult-cta {
    margin-top: 30px;
    border-radius: 30px;
    background: var(--fmc-gradient);
    padding: 28px;
    box-shadow: 0 24px 60px rgba(14, 143, 137, 0.24);
    overflow: hidden;
    position: relative;
}

.hn-consult-cta::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -110px;
    top: -120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.hn-consult-cta-content {
    position: relative;
    z-index: 2;
}

.hn-consult-cta h3 {
    color: var(--fmc-white);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-consult-cta p {
    color: rgba(255,255,255,0.90);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.hn-consult-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.hn-consult-call,
.hn-consult-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 50px;
    padding: 13px 20px;
    text-decoration: none;
    font-weight: 950;
    transition: 0.3s ease;
}

.hn-consult-call {
    color: var(--fmc-white);
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.13);
}

.hn-consult-whatsapp {
    color: var(--fmc-primary-dark);
    background: var(--fmc-white);
    box-shadow: 0 14px 26px rgba(18, 57, 59, 0.16);
}

.hn-consult-call:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
}

.hn-consult-whatsapp:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-3px);
}

/* Animation */
.hn-consult-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.75s ease;
}

.hn-consult-animate.hn-consult-show {
    opacity: 1;
    transform: translateY(0);
}

.hn-testimonial-section {
    width: 100%;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at top left, rgba(24, 183, 174, 0.15), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 143, 137, 0.13), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
    position: relative;
}

.hn-testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-testimonial-container {
    position: relative;
    z-index: 2;
}

.hn-testimonial-header {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.hn-testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.24);
    box-shadow: 0 10px 25px rgba(14, 143, 137, 0.10);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hn-testimonial-title {
    color: var(--fmc-text);
    font-size: 44px;
    line-height: 1.14;
    font-weight: 950;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.hn-testimonial-title span {
    color: var(--fmc-primary-dark);
}

.hn-testimonial-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* Slider */
.hn-review-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 10px 0 20px;
}

.hn-review-track {
    display: flex;
    gap: 24px;
    transition: transform 0.65s ease;
    will-change: transform;
}

.hn-review-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
}

.hn-review-card {
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 28px;
    padding: 26px 22px;
    box-shadow: 0 18px 45px rgba(14, 143, 137, 0.12);
    transition: 0.35s ease;
    overflow: hidden;
}

.hn-review-card::before {
    content: "";
    position: absolute;
    width: 155px;
    height: 155px;
    right: -78px;
    top: -78px;
    border-radius: 50%;
    background: rgba(24, 183, 174, 0.12);
}

.hn-review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 183, 174, 0.55);
    box-shadow: 0 28px 65px rgba(14, 143, 137, 0.18);
}

.hn-review-quote {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 22px;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.26);
    margin-bottom: 18px;
}

.hn-review-stars {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 4px;
    color: #f5b301;
    font-size: 14px;
    margin-bottom: 15px;
}

.hn-review-text {
    position: relative;
    z-index: 2;
    color: var(--fmc-muted);
    font-size: 14.8px;
    line-height: 1.78;
    margin-bottom: 22px;
}

.hn-review-user {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 18px;
    border-top: 1px solid var(--fmc-border);
}

.hn-review-avatar {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(24, 183, 174, 0.22);
}

.hn-review-user h4 {
    color: var(--fmc-text);
    font-size: 16px;
    font-weight: 950;
    margin: 0 0 4px;
}

.hn-review-user p {
    color: var(--fmc-primary-dark);
    font-size: 12.8px;
    font-weight: 800;
    margin: 0;
}

/* Controls */
.hn-review-controls {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hn-review-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 25px rgba(24, 183, 174, 0.26);
    transition: 0.3s ease;
}

.hn-review-btn:hover {
    transform: translateY(-3px);
}

.hn-review-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hn-review-dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 50%;
    background: rgba(14, 143, 137, 0.28);
    transition: 0.3s ease;
}

.hn-review-dot.hn-review-dot-active {
    width: 28px;
    border-radius: 50px;
    background: var(--fmc-primary-dark);
}

/* Bottom CTA */
.hn-review-cta {
    margin-top: 42px;
    background: var(--fmc-gradient);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(14, 143, 137, 0.24);
    position: relative;
    overflow: hidden;
}

.hn-review-cta::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -110px;
    top: -125px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.hn-review-cta-content,
.hn-review-cta-actions {
    position: relative;
    z-index: 2;
}

.hn-review-cta h3 {
    color: var(--fmc-white);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-review-cta p {
    color: rgba(255,255,255,0.90);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.hn-review-cta-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.hn-review-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 50px;
    padding: 13px 20px;
    text-decoration: none;
    font-weight: 950;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    box-shadow: 0 14px 26px rgba(18, 57, 59, 0.16);
    transition: 0.3s ease;
}

.hn-review-cta-btn:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-3px);
}

/* ==============================
   FAQ Section
============================== */
.hn-faq-section {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at top left, rgba(24, 183, 174, 0.15), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 143, 137, 0.13), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
}

.hn-faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-faq-container {
    position: relative;
    z-index: 2;
}

.hn-faq-header {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.hn-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.24);
    box-shadow: 0 10px 25px rgba(14, 143, 137, 0.10);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hn-faq-title {
    color: var(--fmc-text);
    font-size: 44px;
    line-height: 1.14;
    font-weight: 950;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.hn-faq-title span {
    color: var(--fmc-primary-dark);
}

.hn-faq-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* Left Help Card */
.hn-faq-help-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 32px;
    background: var(--fmc-gradient);
    box-shadow: 0 25px 65px rgba(14, 143, 137, 0.26);
}

.hn-faq-help-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.hn-faq-help-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.hn-faq-help-content {
    position: relative;
    z-index: 2;
}

.hn-faq-help-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.18);
    color: var(--fmc-white);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 30px;
    margin-bottom: 22px;
}

.hn-faq-help-card h3 {
    color: var(--fmc-white);
    font-size: 31px;
    line-height: 1.25;
    font-weight: 950;
    margin-bottom: 14px;
}

.hn-faq-help-card p {
    color: rgba(255,255,255,0.90);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.hn-faq-help-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.hn-faq-help-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--fmc-white);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 750;
    margin-bottom: 12px;
}

.hn-faq-help-list li i {
    margin-top: 3px;
}

.hn-faq-help-box {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 20px;
    padding: 17px;
    margin-bottom: 20px;
}

.hn-faq-help-box h4 {
    color: var(--fmc-white);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-faq-help-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.hn-faq-help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 14px 26px rgba(18, 57, 59, 0.16);
    transition: 0.3s ease;
}

.hn-faq-help-btn:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-4px);
}

/* Accordion */
.hn-faq-accordion-wrap {
    height: 100%;
}

.hn-faq-accordion .accordion-item {
    border: 1px solid rgba(24, 183, 174, 0.20);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 16px 38px rgba(14, 143, 137, 0.10);
}

.hn-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.hn-faq-accordion .accordion-button {
    background: var(--fmc-white);
    color: var(--fmc-text);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 900;
    padding: 20px 22px;
    box-shadow: none;
    gap: 12px;
}

.hn-faq-accordion .accordion-button::after {
    display: none;
}

.hn-faq-question-icon {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.22);
}

.hn-faq-plus-icon {
    margin-left: auto;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    transition: 0.3s ease;
}

.hn-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(234, 251, 249, 0.95), #ffffff);
    color: var(--fmc-primary-dark);
}

.hn-faq-accordion .accordion-button:not(.collapsed) .hn-faq-plus-icon {
    transform: rotate(45deg);
}

.hn-faq-accordion .accordion-body {
    color: var(--fmc-muted);
    font-size: 14.8px;
    line-height: 1.8;
    padding: 0 22px 22px 76px;
    background: linear-gradient(135deg, rgba(234, 251, 249, 0.5), #ffffff);
}

.hn-faq-accordion .accordion-body strong {
    color: var(--fmc-text);
}

/* Bottom CTA */
.hn-faq-bottom {
    margin-top: 42px;
    background: var(--fmc-white);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(14, 143, 137, 0.12);
}

.hn-faq-bottom h3 {
    color: var(--fmc-text);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-faq-bottom p {
    color: var(--fmc-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.hn-faq-bottom-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.hn-faq-call,
.hn-faq-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 50px;
    padding: 13px 20px;
    text-decoration: none;
    font-weight: 950;
    transition: 0.3s ease;
}

.hn-faq-call {
    color: var(--fmc-primary-dark);
    background: var(--fmc-primary-light);
    border: 1px solid rgba(24, 183, 174, 0.24);
}

.hn-faq-whatsapp {
    color: var(--fmc-white);
    background: var(--fmc-gradient);
    box-shadow: 0 14px 26px rgba(24, 183, 174, 0.24);
}

.hn-faq-call:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-3px);
}

.hn-faq-whatsapp:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
}

/* Animation */
.hn-faq-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.75s ease;
}

.hn-faq-animate.hn-faq-show {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   Contact & Appointment Section
============================== */
.hn-contact-section {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at top left, rgba(24, 183, 174, 0.16), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 143, 137, 0.13), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
}

.hn-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24, 183, 174, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(24, 183, 174, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-contact-container {
    position: relative;
    z-index: 2;
}

.hn-contact-header {
    max-width: 880px;
    margin: 0 auto 45px;
    text-align: center;
}

.hn-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24, 183, 174, 0.24);
    box-shadow: 0 10px 25px rgba(14, 143, 137, 0.10);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hn-contact-title {
    color: var(--fmc-text);
    font-size: 44px;
    line-height: 1.14;
    font-weight: 950;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.hn-contact-title span {
    color: var(--fmc-primary-dark);
}

.hn-contact-desc {
    color: var(--fmc-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* Contact Info Card */
.hn-contact-info-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 32px;
    background: var(--fmc-gradient);
    box-shadow: 0 25px 65px rgba(14, 143, 137, 0.26);
}

.hn-contact-info-card::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    right: -125px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.hn-contact-info-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.hn-contact-info-content {
    position: relative;
    z-index: 2;
}

.hn-contact-info-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.18);
    color: var(--fmc-white);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 30px;
    margin-bottom: 22px;
}

.hn-contact-info-card h3 {
    color: var(--fmc-white);
    font-size: 31px;
    line-height: 1.25;
    font-weight: 950;
    margin-bottom: 14px;
}

.hn-contact-info-card p {
    color: rgba(255,255,255,0.90);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.hn-contact-detail-list {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.hn-contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 18px;
    padding: 15px;
}

.hn-contact-detail-item i {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.18);
    color: var(--fmc-white);
    font-size: 16px;
}

.hn-contact-detail-item h4 {
    color: var(--fmc-white);
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 4px;
}

.hn-contact-detail-item a,
.hn-contact-detail-item span {
    color: rgba(255,255,255,0.90);
    font-size: 13.8px;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
}

.hn-contact-detail-item a:hover {
    color: var(--fmc-white);
}

.hn-contact-note {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 20px;
    padding: 17px;
    margin-bottom: 22px;
}

.hn-contact-note h4 {
    color: var(--fmc-white);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-contact-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.hn-contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 14px 26px rgba(18, 57, 59, 0.16);
    transition: 0.3s ease;
}

.hn-contact-whatsapp-btn:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-4px);
}

/* Form Card */
.hn-appointment-card {
    height: 100%;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 22px 55px rgba(14, 143, 137, 0.14);
}

.hn-appointment-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.hn-appointment-icon {
    min-width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 22px;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.26);
}

.hn-appointment-top h3 {
    color: var(--fmc-text);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 950;
    margin: 0 0 6px;
}

.hn-appointment-top p {
    color: var(--fmc-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.hn-form-group {
    margin-bottom: 16px;
}

.hn-form-label {
    color: var(--fmc-text);
    font-size: 13.5px;
    font-weight: 900;
    margin-bottom: 8px;
}

.hn-form-control,
.hn-form-select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--fmc-border);
    border-radius: 16px;
    padding: 12px 14px;
    color: var(--fmc-text);
    background: var(--fmc-white);
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: 0.3s ease;
}

.hn-form-control::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.hn-form-control:focus,
.hn-form-select:focus {
    border-color: var(--fmc-primary);
    box-shadow: 0 0 0 4px rgba(24, 183, 174, 0.13);
}

textarea.hn-form-control {
    min-height: 118px;
    resize: vertical;
}

.hn-form-mini-text {
    color: var(--fmc-muted);
    font-size: 12.5px;
    line-height: 1.5;
    margin: -4px 0 18px;
}

.hn-submit-btn {
    width: 100%;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 50px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.24);
    transition: 0.3s ease;
}

.hn-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(24, 183, 174, 0.32);
}

.hn-form-safe-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 16px;
    color: var(--fmc-muted);
    font-size: 12.8px;
    line-height: 1.55;
}

.hn-form-safe-note i {
    color: var(--fmc-primary-dark);
    margin-top: 3px;
}

/* Quick Cards */
.hn-contact-quick-row {
    margin-top: 36px;
}

.hn-contact-quick-card {
    height: 100%;
    background: var(--fmc-white);
    border: 1px solid rgba(24, 183, 174, 0.20);
    border-radius: 24px;
    padding: 22px 18px;
    box-shadow: 0 16px 38px rgba(14, 143, 137, 0.10);
    transition: 0.35s ease;
}

.hn-contact-quick-card:hover {
    transform: translateY(-7px);
    border-color: rgba(24, 183, 174, 0.55);
}

.hn-contact-quick-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 21px;
    margin-bottom: 15px;
}

.hn-contact-quick-card h4 {
    color: var(--fmc-text);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 950;
    margin-bottom: 8px;
}

.hn-contact-quick-card p {
    color: var(--fmc-muted);
    font-size: 13.8px;
    line-height: 1.6;
    margin: 0;
}

/* Animation */
.hn-contact-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.75s ease;
}

.hn-contact-animate.hn-contact-show {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   Health Network Footer
============================== */
.hn-footer-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(24, 183, 174, 0.18), transparent 35%),
        linear-gradient(180deg, #12393b 0%, #08292b 100%);
    color: var(--fmc-white);
    padding: 70px 0 0;
}

.hn-footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hn-footer-container {
    position: relative;
    z-index: 2;
}

.hn-footer-brand-box {
    margin-bottom: 26px;
}

.hn-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
}

.hn-footer-logo-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 24px;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.25);
}

.hn-footer-logo-text h3 {
    color: var(--fmc-white);
    font-size: 24px;
    font-weight: 950;
    margin: 0;
    line-height: 1.2;
}

.hn-footer-logo-text span {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 700;
}

.hn-footer-about {
    color: rgba(255,255,255,0.78);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.hn-footer-doctor {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 22px;
}

.hn-footer-doctor h4 {
    color: var(--fmc-white);
    font-size: 17px;
    font-weight: 950;
    margin: 0 0 5px;
}

.hn-footer-doctor p {
    color: rgba(255,255,255,0.72);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

.hn-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hn-footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    color: var(--fmc-white);
    border: 1px solid rgba(255,255,255,0.12);
    text-decoration: none;
    transition: 0.3s ease;
}

.hn-footer-social a:hover {
    background: var(--fmc-primary);
    transform: translateY(-4px);
}

.hn-footer-widget {
    margin-bottom: 26px;
}

.hn-footer-heading {
    color: var(--fmc-white);
    font-size: 19px;
    font-weight: 950;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.hn-footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 50px;
    background: var(--fmc-gradient);
}

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

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

.hn-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.76);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    transition: 0.3s ease;
}

.hn-footer-links a i {
    color: var(--fmc-primary);
    font-size: 12px;
}

.hn-footer-links a:hover {
    color: var(--fmc-white);
    transform: translateX(4px);
}

.hn-footer-contact-list {
    display: grid;
    gap: 14px;
}

.hn-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hn-footer-contact-icon {
    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(24, 183, 174, 0.18);
    color: var(--fmc-primary);
    border: 1px solid rgba(24, 183, 174, 0.25);
}

.hn-footer-contact-item h5 {
    color: var(--fmc-white);
    font-size: 14px;
    font-weight: 900;
    margin: 0 0 4px;
}

.hn-footer-contact-item a,
.hn-footer-contact-item span {
    color: rgba(255,255,255,0.76);
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    word-break: break-word;
}

.hn-footer-contact-item a:hover {
    color: var(--fmc-white);
}

.hn-footer-cta-box {
    margin-top: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 16px;
}

.hn-footer-cta-box p {
    color: rgba(255,255,255,0.78);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.hn-footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 50px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.24);
    transition: 0.3s ease;
}

.hn-footer-whatsapp-btn:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
}

.hn-footer-top-strip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 26px;
    padding: 22px;
    margin-bottom: 45px;
}

.hn-footer-strip-card {
    display: flex;
    align-items: center;
    gap: 13px;
    height: 100%;
}

.hn-footer-strip-icon {
    min-width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 19px;
}

.hn-footer-strip-card h4 {
    color: var(--fmc-white);
    font-size: 16px;
    font-weight: 950;
    margin: 0 0 4px;
}

.hn-footer-strip-card p {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.hn-footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 35px;
    padding: 20px 0;
}

.hn-footer-bottom p {
    color: rgba(255,255,255,0.70);
    font-size: 13.5px;
    margin: 0;
}

.hn-footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.hn-footer-bottom-links a {
    color: rgba(255,255,255,0.70);
    font-size: 13.5px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hn-footer-bottom-links a:hover {
    color: var(--fmc-white);
}

/* Floating Buttons */
.hn-floating-action {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 999;
    display: grid;
    gap: 12px;
}

.hn-floating-action a {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--fmc-white);
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 12px 28px rgba(18,57,59,0.24);
    transition: 0.3s ease;
}

.hn-float-whatsapp {
    background: #25D366;
}

.hn-float-call {
    background: var(--fmc-gradient);
}

.hn-floating-action a:hover {
    transform: translateY(-4px) scale(1.04);
    color: var(--fmc-white);
}

.about-mini-header {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(18, 57, 59, 0.82), rgba(14, 143, 137, 0.65)),
        url("{{ asset('image/about-header.jpg') }}") center/cover no-repeat;
}

.about-mini-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(24,183,174,0.45), transparent 32%),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.18), transparent 34%);
}

.about-mini-shape {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
}

.about-mini-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--fmc-white);
}

.about-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--fmc-white);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.about-mini-title {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 14px;
}

.about-mini-title span {
    color: #bff7f3;
}

.about-mini-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 22px;
}

.about-mini-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 10px 15px;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 700;
}

.about-mini-breadcrumb a {
    color: var(--fmc-white);
    text-decoration: none;
}
/* =================================
   Autism & ADHD Header
================================= */
.autism-adhd-header {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(18, 57, 59, 0.92), rgba(14, 143, 137, 0.76)),
        radial-gradient(circle at top left, rgba(255,255,255,0.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 32%);
}

.autism-adhd-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}

.autism-adhd-header::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
}

.autism-adhd-wrap {
    position: relative;
    z-index: 2;
}

.autism-adhd-content {
    max-width: 720px;
    color: var(--fmc-white);
}

.autism-adhd-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    color: var(--fmc-white);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.autism-adhd-title {
    font-size: 50px;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.autism-adhd-title span {
    color: #c8fffb;
}

.autism-adhd-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    max-width: 650px;
    margin-bottom: 20px;
}

.autism-adhd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.autism-adhd-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.94);
    font-size: 13px;
    font-weight: 700;
}

.autism-adhd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.autism-adhd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.autism-adhd-btn-primary {
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

.autism-adhd-btn-primary:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-3px);
}

.autism-adhd-btn-outline {
    background: rgba(255,255,255,0.10);
    color: var(--fmc-white);
    border: 1px solid rgba(255,255,255,0.22);
}

.autism-adhd-btn-outline:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
}

.autism-adhd-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 50px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.90);
    font-size: 13.5px;
    font-weight: 700;
}

.autism-adhd-breadcrumb a {
    color: var(--fmc-white);
    text-decoration: none;
}

.autism-adhd-side-card {
    margin-left: auto;
    max-width: 320px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.14);
    color: var(--fmc-white);
}

.autism-adhd-side-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.20);
    font-size: 24px;
    margin-bottom: 16px;
}

.autism-adhd-side-card h4 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.autism-adhd-side-card p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}

.autism-adhd-side-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.autism-adhd-side-points li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    margin-bottom: 10px;
}

.autism-adhd-side-points li i {
    margin-top: 3px;
}

/* ===============================
   Autism & ADHD Detail Page
================================ */
.aadp-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
}

.aadp-section.aadp-light {
    background: linear-gradient(180deg, #ffffff 0%, var(--fmc-primary-light) 100%);
}

.aadp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(24,183,174,0.04) 1px, transparent 1px),
        linear-gradient(rgba(24,183,174,0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}

.aadp-container {
    position: relative;
    z-index: 2;
}

.aadp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24,183,174,0.22);
    box-shadow: 0 10px 24px rgba(14,143,137,0.08);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.aadp-heading {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.aadp-title {
    color: var(--fmc-text);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 950;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.aadp-title span {
    color: var(--fmc-primary-dark);
}

.aadp-desc {
    color: var(--fmc-muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Common Cards */
.aadp-card {
    height: 100%;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(24,183,174,0.18);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(14,143,137,0.10);
    transition: 0.35s ease;
}

.aadp-card:hover {
    transform: translateY(-7px);
    border-color: rgba(24,183,174,0.48);
    box-shadow: 0 24px 54px rgba(14,143,137,0.15);
}

.aadp-icon-box {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 21px;
    box-shadow: 0 14px 28px rgba(24,183,174,0.22);
    margin-bottom: 16px;
}

.aadp-card h3,
.aadp-card h4 {
    color: var(--fmc-text);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 950;
    margin-bottom: 10px;
}

.aadp-card p {
    color: var(--fmc-muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 0;
}

.aadp-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.aadp-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--fmc-text);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 11px;
}

.aadp-list li i {
    color: var(--fmc-primary-dark);
    margin-top: 3px;
}

/* Image Box */
.aadp-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--fmc-white);
    border: 1px solid rgba(24,183,174,0.18);
    padding: 14px;
    box-shadow: 0 22px 54px rgba(14,143,137,0.14);
}

.aadp-image-box img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.aadp-floating-note {
    position: absolute;
    left: 26px;
    bottom: 26px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(24,183,174,0.18);
    border-radius: 18px;
    padding: 14px 16px;
    max-width: 250px;
    box-shadow: 0 16px 38px rgba(18,57,59,0.13);
}

.aadp-floating-note h5 {
    color: var(--fmc-text);
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 4px;
}

.aadp-floating-note p {
    color: var(--fmc-muted);
    font-size: 12.8px;
    line-height: 1.5;
    margin: 0;
}

/* Overview */
.aadp-overview-highlight {
    background: var(--fmc-primary-light);
    border: 1px solid rgba(24,183,174,0.18);
    border-radius: 20px;
    padding: 18px;
    margin-top: 18px;
}

.aadp-overview-highlight h5 {
    color: var(--fmc-text);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 8px;
}

.aadp-overview-highlight p {
    color: var(--fmc-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Early Signs */
.aadp-sign-card {
    height: 100%;
    background: var(--fmc-white);
    border: 1px solid rgba(24,183,174,0.18);
    border-radius: 24px;
    padding: 22px 18px;
    box-shadow: 0 14px 36px rgba(14,143,137,0.09);
    transition: 0.35s ease;
}

.aadp-sign-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24,183,174,0.45);
}

.aadp-sign-card h4 {
    color: var(--fmc-text);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 8px;
}

.aadp-sign-card p {
    color: var(--fmc-muted);
    font-size: 13.6px;
    line-height: 1.65;
    margin: 0;
}

/* Difference Section */
.aadp-diff-card {
    height: 100%;
    border-radius: 28px;
    padding: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 48px rgba(14,143,137,0.12);
}

.aadp-diff-autism {
    background: linear-gradient(180deg, #ffffff 0%, #eefdfa 100%);
    border: 1px solid rgba(24,183,174,0.22);
}

.aadp-diff-adhd {
    background: linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
    border: 1px solid rgba(24,183,174,0.22);
}

.aadp-diff-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.aadp-diff-card p {
    margin-bottom: 16px;
}

.aadp-diff-note {
    margin-top: 26px;
    background: var(--fmc-white);
    border: 1px solid rgba(24,183,174,0.18);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 14px 36px rgba(14,143,137,0.08);
}

.aadp-diff-note h4 {
    color: var(--fmc-text);
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 8px;
}

.aadp-diff-note p {
    color: var(--fmc-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Root Causes */
.aadp-root-card h4 {
    font-size: 18px;
}

/* Gut Brain */
.aadp-gut-points {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.aadp-gut-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--fmc-white);
    border: 1px solid rgba(24,183,174,0.16);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(14,143,137,0.06);
}

.aadp-gut-point i {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
}

/* How Helps */
.aadp-step-card {
    position: relative;
    height: 100%;
    text-align: center;
    background: var(--fmc-white);
    border: 1px solid rgba(24,183,174,0.18);
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 14px 34px rgba(14,143,137,0.08);
}

.aadp-step-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    font-size: 18px;
    font-weight: 900;
}

.aadp-step-card h4 {
    color: var(--fmc-text);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.aadp-step-card p {
    color: var(--fmc-muted);
    font-size: 13.8px;
    line-height: 1.65;
    margin: 0;
}

/* Support Approach */
.aadp-support-card {
    height: 100%;
}

/* Parent Coaching */
.aadp-parent-box {
    background: linear-gradient(135deg, #ffffff 0%, #eefdfa 100%);
    border: 1px solid rgba(24,183,174,0.18);
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 20px 48px rgba(14,143,137,0.12);
}

.aadp-parent-box h3 {
    color: var(--fmc-text);
    font-size: 28px;
    font-weight: 950;
    margin-bottom: 10px;
}

.aadp-parent-box p {
    color: var(--fmc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.aadp-parent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.aadp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.aadp-btn-primary {
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    box-shadow: 0 14px 28px rgba(24,183,174,0.22);
}

.aadp-btn-primary:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
}

.aadp-btn-light {
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    border: 1px solid rgba(24,183,174,0.18);
}

.aadp-btn-light:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-3px);
}

/* Consult Section */
.aadp-consult-wrap {
    background: var(--fmc-gradient);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 24px 58px rgba(14,143,137,0.22);
    overflow: hidden;
    position: relative;
}

.aadp-consult-wrap::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -110px;
    top: -120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
}

.aadp-consult-content {
    position: relative;
    z-index: 2;
}

.aadp-consult-content h3 {
    color: var(--fmc-white);
    font-size: 30px;
    font-weight: 950;
    margin-bottom: 10px;
}

.aadp-consult-content p {
    color: rgba(255,255,255,0.90);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.aadp-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.aadp-check-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--fmc-white);
    border-radius: 18px;
    padding: 13px;
    font-size: 13.8px;
    line-height: 1.5;
    font-weight: 700;
}

.aadp-check-item i {
    margin-top: 3px;
}

.aadp-consult-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.aadp-btn-white {
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
}

.aadp-btn-white:hover {
    color: var(--fmc-primary-dark);
    transform: translateY(-3px);
}

.aadp-btn-outline-white {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--fmc-white);
}

.aadp-btn-outline-white:hover {
    color: var(--fmc-white);
    transform: translateY(-3px);
}
/* Appointment + Blog Section */
.hn-appointment-blog-section {
    width: 100%;
    padding: 90px 15px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fffd 100%);
    position: relative;
    overflow: hidden;
}

.hn-ab-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: 8fr 3fr; */
    gap: 35px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.hn-ab-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--fmc-primary-light);
    z-index: 1;
}

.hn-ab-shape-one {
    width: 260px;
    height: 260px;
    top: -90px;
    left: -90px;
}

.hn-ab-shape-two {
    width: 340px;
    height: 340px;
    right: -140px;
    bottom: -150px;
}

.hn-ab-form-box,
.hn-ab-blog-box {
    background: var(--fmc-white);
    border: 1px solid var(--fmc-border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 55px rgba(14, 143, 137, 0.12);
}

.hn-ab-form-box {
    position: relative;
    overflow: hidden;
}

.hn-ab-form-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--fmc-primary-light);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.hn-ab-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hn-ab-mini-title i {
    color: var(--fmc-primary);
}

.hn-ab-form-box h2,
.hn-ab-blog-heading h2 {
    font-size: 34px;
    line-height: 1.18;
    color: var(--fmc-text);
    margin-bottom: 12px;
}

.hn-ab-form-box h2 span,
.hn-ab-blog-heading h2 span {
    color: var(--fmc-primary-dark);
}

.hn-ab-form-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fmc-muted);
    margin-bottom: 24px;
    max-width: 480px;
}

.hn-ab-form {
    position: relative;
    z-index: 2;
}

.hn-ab-field {
    margin-bottom: 16px;
}

.hn-ab-field label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--fmc-text);
    margin-bottom: 8px;
}

.hn-ab-input-icon {
    position: relative;
}

.hn-ab-input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fmc-primary-dark);
    font-size: 15px;
}

.hn-ab-input-icon input,
.hn-ab-input-icon select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--fmc-border);
    background: #fbffff;
    border-radius: 15px;
    padding: 0 14px 0 43px;
    outline: none;
    color: var(--fmc-text);
    font-size: 14px;
    transition: 0.3s ease;
}

.hn-ab-field textarea {
    width: 100%;
    min-height: 115px;
    border: 1px solid var(--fmc-border);
    background: #fbffff;
    border-radius: 15px;
    padding: 14px;
    outline: none;
    resize: vertical;
    color: var(--fmc-text);
    font-size: 14px;
    font-family: inherit;
    transition: 0.3s ease;
}

.hn-ab-input-icon input:focus,
.hn-ab-input-icon select:focus,
.hn-ab-field textarea:focus {
    border-color: var(--fmc-primary);
    background: var(--fmc-white);
    box-shadow: 0 0 0 4px rgba(24, 183, 174, 0.13);
}

.hn-ab-submit-btn {
    width: 100%;
    border: none;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    height: 52px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 16px 30px rgba(24, 183, 174, 0.28);
    transition: 0.3s ease;
}

.hn-ab-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(24, 183, 174, 0.36);
}

/* Blog Right Side */
.hn-ab-blog-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.hn-ab-view-all {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    padding: 12px 17px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(24, 183, 174, 0.25);
    transition: 0.3s ease;
}

.hn-ab-view-all:hover {
    transform: translateY(-2px);
}

.hn-ab-blog-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hn-ab-blog-card {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--fmc-border);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, #f8fffe);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hn-ab-blog-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--fmc-primary-light);
    border-radius: 50%;
    right: -45px;
    bottom: -45px;
    transition: 0.3s ease;
}

.hn-ab-blog-card:hover {
    border-color: rgba(24, 183, 174, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(14, 143, 137, 0.11);
}

.hn-ab-blog-card:hover::after {
    transform: scale(1.2);
}

.hn-ab-blog-date {
    width: 75px;
    height: 82px;
    border-radius: 20px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: 0 14px 28px rgba(24, 183, 174, 0.27);
    position: relative;
    z-index: 2;
}

.hn-ab-blog-date strong {
    font-size: 26px;
    line-height: 1;
}

.hn-ab-blog-date span {
    font-size: 13px;
    font-weight: 800;
}

.hn-ab-blog-content {
    position: relative;
    z-index: 2;
}

.hn-ab-blog-tag {
    display: inline-flex;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.hn-ab-blog-content h3 {
    font-size: 19px;
    line-height: 1.35;
    color: var(--fmc-text);
    margin-bottom: 8px;
}

.hn-ab-blog-content p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--fmc-muted);
    margin-bottom: 10px;
}

.hn-ab-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fmc-primary-dark);
    font-size: 14px;
    font-weight: 900;
}

.hn-ab-read-more i {
    font-size: 12px;
    transition: 0.3s ease;
}

.hn-ab-read-more:hover i {
    transform: translateX(4px);
}
/* Blog Detail Page */
.hn-blog-detail-section {
    width: 100%;
    padding: 90px 15px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fffd 100%);
}

.hn-blog-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.hn-blog-detail-main,
.hn-blog-detail-sidebar {
    min-width: 0;
}

.hn-blog-detail-hero {
    background: var(--fmc-white);
    border: 1px solid var(--fmc-border);
    border-radius: 30px;
    padding: 14px;
    box-shadow: 0 22px 55px rgba(14, 143, 137, 0.12);
    overflow: hidden;
}

.hn-blog-detail-image {
    width: 100%;
    height: 430px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--fmc-primary-light);
}

.hn-blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hn-blog-detail-meta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 6px 4px;
}

.hn-blog-detail-meta-box span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hn-blog-detail-content-box {
    margin-top: 24px;
    background: var(--fmc-white);
    border: 1px solid var(--fmc-border);
    border-radius: 30px;
    padding: 36px;
    box-shadow: 0 22px 55px rgba(14, 143, 137, 0.10);
}

.hn-blog-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hn-blog-detail-content-box h1 {
    font-size: 42px;
    line-height: 1.15;
    color: var(--fmc-text);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.hn-blog-detail-content-box h2 {
    font-size: 27px;
    line-height: 1.3;
    color: var(--fmc-text);
    margin: 30px 0 12px;
}

.hn-blog-detail-content-box p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--fmc-muted);
    margin-bottom: 16px;
}

.hn-blog-detail-lead {
    font-size: 18px !important;
    color: var(--fmc-text) !important;
    font-weight: 600;
    background: var(--fmc-primary-light);
    padding: 18px 20px;
    border-left: 5px solid var(--fmc-primary);
    border-radius: 16px;
}

.hn-blog-detail-highlight {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: linear-gradient(135deg, #EAFBF9, #ffffff);
    border: 1px solid rgba(24, 183, 174, 0.25);
    border-radius: 22px;
    padding: 20px;
    margin: 24px 0;
}

.hn-blog-detail-highlight i {
    min-width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.hn-blog-detail-highlight p {
    margin: 0;
    color: var(--fmc-text);
    font-weight: 700;
}

.hn-blog-detail-content-box ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 24px;
    display: grid;
    gap: 11px;
}

.hn-blog-detail-content-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fbffff;
    border: 1px solid var(--fmc-border);
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--fmc-muted);
    line-height: 1.6;
    font-size: 15px;
}

.hn-blog-detail-content-box ul li i {
    margin-top: 4px;
    color: var(--fmc-primary-dark);
}

.hn-blog-detail-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.hn-blog-detail-point-card {
    background: #fbffff;
    border: 1px solid var(--fmc-border);
    border-radius: 20px;
    padding: 20px;
    transition: 0.3s ease;
}

.hn-blog-detail-point-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 183, 174, 0.45);
    box-shadow: 0 14px 35px rgba(14, 143, 137, 0.10);
}

.hn-blog-detail-point-card i {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.hn-blog-detail-point-card h3 {
    font-size: 17px;
    color: var(--fmc-text);
    margin-bottom: 8px;
}

.hn-blog-detail-point-card p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.hn-blog-detail-cta {
    margin-top: 32px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    border-radius: 24px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hn-blog-detail-cta h3 {
    font-size: 24px;
    margin-bottom: 7px;
}

.hn-blog-detail-cta p {
    color: rgba(255,255,255,0.88);
    margin: 0;
    line-height: 1.6;
}

.hn-blog-detail-cta-btn {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    padding: 13px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

/* Sidebar */
.hn-blog-detail-sidebar {
    position: sticky;
    top: 20px;
    display: grid;
    gap: 20px;
}

.hn-blog-detail-side-card,
.hn-blog-detail-help-card {
    background: var(--fmc-white);
    border: 1px solid var(--fmc-border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(14, 143, 137, 0.10);
}

.hn-blog-detail-side-card h3 {
    font-size: 20px;
    color: var(--fmc-text);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.hn-blog-detail-side-card h3::after {
    content: "";
    width: 48px;
    height: 3px;
    background: var(--fmc-gradient);
    border-radius: 999px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.hn-blog-detail-search {
    display: flex;
    background: #fbffff;
    border: 1px solid var(--fmc-border);
    border-radius: 15px;
    overflow: hidden;
}

.hn-blog-detail-search input {
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    padding: 0 13px;
    color: var(--fmc-text);
    background: transparent;
}

.hn-blog-detail-search button {
    min-width: 48px;
    border: none;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    cursor: pointer;
}

.hn-blog-detail-category {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.hn-blog-detail-category li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fbffff;
    border: 1px solid var(--fmc-border);
    border-radius: 14px;
    padding: 12px 13px;
    color: var(--fmc-muted);
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.hn-blog-detail-category li a:hover {
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    border-color: rgba(24, 183, 174, 0.35);
}

.hn-blog-detail-category span {
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    min-width: 30px;
    height: 25px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hn-blog-detail-recent {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--fmc-border);
}

.hn-blog-detail-recent:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hn-blog-detail-recent img {
    width: 78px;
    height: 72px;
    border-radius: 15px;
    object-fit: cover;
}

.hn-blog-detail-recent span {
    display: block;
    font-size: 12px;
    color: var(--fmc-primary-dark);
    font-weight: 900;
    margin-bottom: 5px;
}

.hn-blog-detail-recent a {
    color: var(--fmc-text);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
    transition: 0.3s ease;
}

.hn-blog-detail-recent a:hover {
    color: var(--fmc-primary-dark);
}

.hn-blog-detail-help-card {
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    text-align: center;
}

.hn-blog-detail-help-card i {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.18);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 14px;
}

.hn-blog-detail-help-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.hn-blog-detail-help-card p {
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 16px;
}

.hn-blog-detail-help-card a {
    display: inline-flex;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

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

    .hn-ab-form-box,
    .hn-ab-blog-box {
        padding: 30px;
    }
     .hn-blog-detail-container {
        grid-template-columns: 1fr;
    }

    .hn-blog-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .hn-blog-detail-help-card {
        grid-column: span 2;
    }
}
@media (max-width: 991px) {
    .fmc-navbar {
        min-height: 74px;
    }

    .fmc-nav-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fmc-logo {
        width: 50px;
        height: 50px;
    }

    .fmc-brand-name h5 {
        font-size: 16px;
    }

    .fmc-brand-name span {
        font-size: 11px;
    }
      .fmc-gut-slide {
        min-height: auto;
    }

    .fmc-gut-content {
        padding: 42px 28px 20px;
        text-align: center;
    }

    .fmc-gut-title {
        font-size: 36px;
    }

    .fmc-gut-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .fmc-gut-points {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .fmc-gut-btn-wrap {
        justify-content: center;
    }

    .fmc-gut-visual-wrap {
        padding: 15px 28px 80px;
    }

    .fmc-gut-visual-card img {
        height: 330px;
    }

    .fmc-gut-floating-card {
        left: 25px;
        bottom: 95px;
    }

    .fmc-gut-mini-icons {
        right: 18px;
        top: 38px;
    }

    .fmc-gut-slider .carousel-indicators {
        left: 0;
        right: 0;
        justify-content: center;
        bottom: 24px;
    }

    .fmc-gut-slider .carousel-control-prev {
        left: 28px;
        right: auto;
        bottom: 20px;
    }

    .fmc-gut-slider .carousel-control-next {
        right: 28px;
        bottom: 20px;
    }
    .fmc-about-section {
        padding: 55px 0;
    }

    .fmc-about-right {
        padding: 32px 28px 34px;
    }

    .fmc-about-title {
        font-size: 34px;
    }

    .fmc-doctor-image-box img {
        height: 430px;
    }
        .hn-services-section {
        padding: 60px 0;
    }

    .hn-services-title {
        font-size: 36px;
    }

    .hn-program-actions {
        justify-content: flex-start;
        margin-top: 22px;
    }
    .hn-why-section {
        padding: 60px 0;
    }

    .hn-why-title {
        font-size: 36px;
    }

    .hn-why-main-card h3 {
        font-size: 26px;
    }

    .hn-why-cta-actions {
        justify-content: flex-start;
        margin-top: 22px;
    }
        .hn-process-section {
        padding: 60px 0;
    }

    .hn-process-title {
        font-size: 36px;
    }

    .hn-process-main-image img {
        height: 430px;
    }

    .hn-process-steps::before {
        display: none;
    }

    .hn-process-right {
        margin-top: 10px;
    }

    .hn-process-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
     .hn-programs-section {
        padding: 60px 0;
    }

    .hn-programs-title {
        font-size: 36px;
    }

    .hn-feature-program {
        padding: 28px;
    }

    .hn-feature-action {
        margin-top: 22px;
    }

    .hn-programs-actions {
        justify-content: flex-start;
        margin-top: 20px;
    }
        .hn-consult-section {
        padding: 60px 0;
    }

    .hn-consult-title {
        font-size: 36px;
    }

    .hn-consult-left-card {
        padding: 28px;
    }

    .hn-consult-actions {
        justify-content: flex-start;
        margin-top: 22px;
    }

    .hn-consult-check-grid {
        margin-top: 22px;
    }
 .hn-testimonial-section {
        padding: 60px 0;
    }

    .hn-testimonial-title {
        font-size: 36px;
    }

    .hn-review-slide {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }

    .hn-review-cta-actions {
        justify-content: flex-start;
        margin-top: 20px;
    }
    .hn-faq-section {
        padding: 60px 0;
    }

    .hn-faq-title {
        font-size: 36px;
    }

    .hn-faq-help-card {
        padding: 28px;
    }

    .hn-faq-bottom-actions {
        justify-content: flex-start;
        margin-top: 20px;
    }
        .hn-contact-section {
        padding: 60px 0;
    }

    .hn-contact-title {
        font-size: 36px;
    }

    .hn-contact-info-card,
    .hn-appointment-card {
        padding: 28px;
    }
      .hn-footer-section {
        padding-top: 55px;
    }

    .hn-footer-bottom-links {
        justify-content: flex-start;
        margin-top: 12px;
    }
  .autism-adhd-header {
        min-height: 400px;
        padding: 45px 0;
    }

    .autism-adhd-title {
        font-size: 40px;
    }

    .autism-adhd-side-card {
        display: none;
    }
     .aadp-section {
        padding: 60px 0;
    }

    .aadp-title {
        font-size: 34px;
    }

    .aadp-image-box img {
        min-height: 320px;
    }

    .aadp-floating-note {
        left: 18px;
        bottom: 18px;
    }
}

@media (max-width: 768px) {
    .hn-appointment-blog-section {
        padding: 65px 14px;
    }

    .hn-ab-form-box h2,
    .hn-ab-blog-heading h2 {
        font-size: 28px;
    }

    .hn-ab-blog-heading {
        align-items: flex-start;
    }
    .hn-blog-detail-section {
        padding: 65px 14px;
    }

    .hn-blog-detail-image {
        height: 330px;
    }

    .hn-blog-detail-content-box {
        padding: 28px;
    }

    .hn-blog-detail-content-box h1 {
        font-size: 32px;
    }

    .hn-blog-detail-content-box h2 {
        font-size: 23px;
    }

    .hn-blog-detail-points {
        grid-template-columns: 1fr;
    }

    .hn-blog-detail-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hn-blog-detail-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hn-blog-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .hn-blog-detail-help-card {
        grid-column: span 1;
    }
}

@media (max-width: 575px) {
    .fmc-nav-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .fmc-navbar {
        min-height: 68px;
    }

    .fmc-brand {
        gap: 8px;
    }

    .fmc-logo {
        width: 44px;
        height: 44px;
    }

    .fmc-brand-name h5 {
        font-size: 14px;
        max-width: 145px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .fmc-brand-name span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .fmc-toggler {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .fmc-offcanvas {
        width: 310px !important;
        max-width: 92%;
        border-radius: 20px 0 0 20px;
    }
      .fmc-gut-slider-section {
        padding: 28px 0;
    }

    .fmc-gut-slider {
        border-radius: 20px;
    }

    .fmc-gut-content {
        padding: 32px 18px 15px;
    }

    .fmc-gut-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .fmc-gut-title {
        font-size: 28px;
        line-height: 1.18;
        margin-bottom: 14px;
    }

    .fmc-gut-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .fmc-gut-points {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .fmc-gut-point {
        text-align: left;
        padding: 12px;
        border-radius: 14px;
    }

    .fmc-gut-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .fmc-gut-call {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .fmc-gut-visual-wrap {
        padding: 10px 16px 78px;
    }

    .fmc-gut-visual-card {
        padding: 12px;
        border-radius: 20px;
    }

    .fmc-gut-visual-card img {
        height: 260px;
        border-radius: 16px;
    }

    .fmc-gut-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
        text-align: center;
    }

    .fmc-gut-mini-icons {
        display: none;
    }

    .fmc-gut-slider .carousel-control-prev,
    .fmc-gut-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
      .fmc-about-section {
        padding: 35px 0;
    }

    .fmc-about-card {
        border-radius: 22px;
    }

    .fmc-about-left {
        padding: 15px;
    }

    .fmc-doctor-image-box {
        border-radius: 20px;
    }

    .fmc-doctor-image-box img {
        height: 360px;
    }

    .fmc-doctor-badge {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 13px;
        border-radius: 16px;
    }

    .fmc-doctor-badge h4 {
        font-size: 18px;
    }

    .fmc-doctor-badge p {
        font-size: 12.5px;
    }

    .fmc-about-right {
        padding: 26px 16px 24px;
    }

    .fmc-about-tag {
        font-size: 12px;
        padding: 8px 12px;
    }

    .fmc-about-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .fmc-about-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .fmc-about-services {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fmc-service-item {
        padding: 13px;
    }

    .fmc-contact-strip {
        padding: 15px;
        border-radius: 17px;
        flex-direction: column;
        align-items: stretch;
    }

    .fmc-contact-link,
    .fmc-about-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 14px;
    }

    .fmc-about-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
       .hn-services-section {
        padding: 38px 0;
    }

    .hn-services-header {
        margin-bottom: 30px;
    }

    .hn-services-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hn-services-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.4px;
    }

    .hn-services-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hn-service-card {
        border-radius: 21px;
        padding: 20px 16px;
    }

    .hn-service-top {
        gap: 12px;
        margin-bottom: 14px;
    }

    .hn-service-icon {
        min-width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 18px;
    }

    .hn-service-title-wrap h3 {
        font-size: 17px;
    }

    .hn-service-title-wrap p {
        font-size: 12px;
    }

    .hn-service-text {
        font-size: 13.8px;
        line-height: 1.65;
    }

    .hn-service-list li {
        font-size: 13.2px;
    }

    .hn-program-strip {
        margin-top: 30px;
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-program-title {
        font-size: 23px;
    }

    .hn-program-desc {
        font-size: 14px;
    }

    .hn-program-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hn-program-btn,
    .hn-program-call {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 14px;
    }
     .hn-why-section {
        padding: 38px 0;
    }

    .hn-why-header {
        margin-bottom: 30px;
    }

    .hn-why-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hn-why-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.3px;
    }

    .hn-why-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hn-why-main-card {
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-why-main-card h3 {
        font-size: 22px;
    }

    .hn-why-main-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .hn-why-check-list li {
        font-size: 13.2px;
        gap: 10px;
    }

    .hn-why-reason-card {
        border-radius: 20px;
        padding: 20px 16px;
    }

    .hn-why-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 18px;
    }

    .hn-why-reason-card h4 {
        font-size: 16.5px;
    }

    .hn-why-reason-card p {
        font-size: 13.5px;
    }

    .hn-why-gallery {
        margin-top: 30px;
    }

    .hn-why-image-card {
        border-radius: 20px;
    }

    .hn-why-image-card img {
        height: 230px;
    }

    .hn-why-cta {
        margin-top: 32px;
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-why-cta h3 {
        font-size: 23px;
    }

    .hn-why-cta p {
        font-size: 14px;
    }

    .hn-why-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hn-why-btn-white,
    .hn-why-call {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 14px;
    }
       .hn-process-section {
        padding: 38px 0;
    }

    .hn-process-header {
        margin-bottom: 30px;
    }

    .hn-process-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hn-process-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.3px;
    }

    .hn-process-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hn-process-visual-card {
        padding: 14px;
        border-radius: 22px;
    }

    .hn-process-main-image {
        border-radius: 18px;
    }

    .hn-process-main-image img {
        height: 310px;
    }

    .hn-process-floating-box {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        border-radius: 16px;
        padding: 14px;
    }

    .hn-process-floating-box h4 {
        font-size: 17px;
    }

    .hn-process-mini-cards {
        margin-top: 14px;
    }

    .hn-process-mini-card {
        padding: 12px;
        border-radius: 16px;
    }

    .hn-process-highlight {
        font-size: 14px;
        line-height: 1.65;
        padding: 14px;
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .hn-process-step {
        gap: 12px;
        padding: 16px 14px;
        border-radius: 18px;
        margin-bottom: 14px;
    }

    .hn-process-step-number {
        min-width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .hn-process-step-content h3 {
        font-size: 17px;
    }

    .hn-process-step-content p {
        font-size: 13.4px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .hn-process-point-list li {
        font-size: 12.8px;
    }

    .hn-process-benefits {
        border-radius: 18px;
        padding: 16px 14px;
        margin-top: 20px;
    }

    .hn-process-benefits h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .hn-process-benefit-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hn-process-benefit-item {
        padding: 14px 12px;
        border-radius: 16px;
        text-align: left;
    }

    .hn-process-benefit-item i {
        margin: 0 0 10px;
    }

    .hn-process-cta {
        margin-top: 20px;
        flex-direction: column;
    }

    .hn-process-btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
       .hn-programs-section {
        padding: 38px 0;
    }

    .hn-programs-header {
        margin-bottom: 30px;
    }

    .hn-programs-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hn-programs-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.3px;
    }

    .hn-programs-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hn-feature-program {
        border-radius: 22px;
        padding: 22px 16px;
        margin-bottom: 24px;
    }

    .hn-feature-program h3 {
        font-size: 23px;
    }

    .hn-feature-program p {
        font-size: 14px;
        line-height: 1.65;
    }

    .hn-feature-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .hn-feature-list li {
        font-size: 13.2px;
    }

    .hn-feature-action {
        border-radius: 20px;
        padding: 18px 14px;
    }

    .hn-feature-action h4 {
        font-size: 18px;
    }

    .hn-feature-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .hn-care-card {
        border-radius: 22px;
        padding: 21px 16px;
    }

    .hn-care-top {
        gap: 12px;
    }

    .hn-care-icon {
        min-width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 18px;
    }

    .hn-care-card h3 {
        font-size: 17px;
    }

    .hn-care-subtitle {
        font-size: 12px;
    }

    .hn-care-desc {
        font-size: 13.8px;
        line-height: 1.65;
    }

    .hn-care-tags span {
        font-size: 11.8px;
        padding: 6px 9px;
    }

    .hn-care-list li {
        font-size: 13px;
    }

    .hn-programs-bottom {
        margin-top: 30px;
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-programs-bottom h3 {
        font-size: 22px;
    }

    .hn-programs-bottom p {
        font-size: 14px;
    }

    .hn-programs-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hn-programs-call,
    .hn-programs-whatsapp {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
     .hn-testimonial-section {
        padding: 38px 0;
    }

    .hn-testimonial-header {
        margin-bottom: 28px;
    }

    .hn-testimonial-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hn-testimonial-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.3px;
    }

    .hn-testimonial-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hn-review-track {
        gap: 16px;
    }

    .hn-review-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .hn-review-card {
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-review-quote {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .hn-review-text {
        font-size: 13.8px;
        line-height: 1.68;
    }

    .hn-review-user h4 {
        font-size: 15px;
    }

    .hn-review-user p {
        font-size: 12px;
    }

    .hn-review-controls {
        margin-top: 20px;
    }

    .hn-review-btn {
        width: 40px;
        height: 40px;
    }

    .hn-review-cta {
        margin-top: 30px;
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-review-cta h3 {
        font-size: 22px;
    }

    .hn-review-cta p {
        font-size: 14px;
    }

    .hn-review-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hn-review-cta-btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
      .hn-faq-section {
        padding: 38px 0;
    }

    .hn-faq-header {
        margin-bottom: 30px;
    }

    .hn-faq-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hn-faq-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.3px;
    }

    .hn-faq-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hn-faq-help-card {
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-faq-help-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .hn-faq-help-card h3 {
        font-size: 23px;
    }

    .hn-faq-help-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .hn-faq-help-list li {
        font-size: 13.2px;
    }

    .hn-faq-help-box {
        border-radius: 16px;
        padding: 14px;
    }

    .hn-faq-help-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .hn-faq-accordion .accordion-item {
        border-radius: 18px;
        margin-bottom: 12px;
    }

    .hn-faq-accordion .accordion-button {
        padding: 15px 14px;
        font-size: 14px;
        gap: 10px;
    }

    .hn-faq-question-icon {
        min-width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 13px;
    }

    .hn-faq-plus-icon {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .hn-faq-accordion .accordion-body {
        padding: 0 14px 16px 60px;
        font-size: 13.6px;
        line-height: 1.7;
    }

    .hn-faq-bottom {
        margin-top: 30px;
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-faq-bottom h3 {
        font-size: 22px;
    }

    .hn-faq-bottom p {
        font-size: 14px;
    }

    .hn-faq-bottom-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hn-faq-call,
    .hn-faq-whatsapp {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
      .hn-contact-section {
        padding: 38px 0;
    }

    .hn-contact-header {
        margin-bottom: 30px;
    }

    .hn-contact-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hn-contact-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.3px;
    }

    .hn-contact-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hn-contact-info-card,
    .hn-appointment-card {
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-contact-info-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .hn-contact-info-card h3 {
        font-size: 23px;
    }

    .hn-contact-info-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .hn-contact-detail-item {
        padding: 13px;
        border-radius: 16px;
    }

    .hn-contact-detail-item i {
        min-width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 14px;
    }

    .hn-contact-detail-item h4 {
        font-size: 14px;
    }

    .hn-contact-detail-item a,
    .hn-contact-detail-item span {
        font-size: 12.8px;
    }

    .hn-contact-note {
        border-radius: 16px;
        padding: 14px;
    }

    .hn-contact-whatsapp-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .hn-appointment-top {
        gap: 12px;
        margin-bottom: 20px;
    }

    .hn-appointment-icon {
        min-width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 18px;
    }

    .hn-appointment-top h3 {
        font-size: 22px;
    }

    .hn-appointment-top p {
        font-size: 13.5px;
    }

    .hn-form-label {
        font-size: 13px;
    }

    .hn-form-control,
    .hn-form-select {
        min-height: 48px;
        border-radius: 14px;
        font-size: 13.5px;
    }

    .hn-submit-btn {
        font-size: 14px;
        padding: 13px 16px;
    }

    .hn-contact-quick-row {
        margin-top: 26px;
    }

    .hn-contact-quick-card {
        border-radius: 20px;
        padding: 20px 15px;
    }
    .hn-footer-section {
        padding-top: 38px;
    }

    .hn-footer-top-strip {
        border-radius: 20px;
        padding: 18px 14px;
        margin-bottom: 32px;
    }

    .hn-footer-strip-card {
        align-items: flex-start;
    }

    .hn-footer-logo-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 21px;
    }

    .hn-footer-logo-text h3 {
        font-size: 21px;
    }

    .hn-footer-about {
        font-size: 13.8px;
    }

    .hn-footer-heading {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .hn-footer-links a {
        font-size: 13.5px;
    }

    .hn-footer-bottom {
        text-align: center;
        padding-bottom: 88px;
    }

    .hn-footer-bottom-links {
        justify-content: center;
        gap: 12px;
    }

    .hn-floating-action {
        right: 12px;
        bottom: 12px;
        gap: 9px;
    }

    .hn-floating-action a {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

.about-mini-header {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(18, 57, 59, 0.82), rgba(14, 143, 137, 0.65)),
        url("{{ asset('image/about-header.jpg') }}") center/cover no-repeat;
}

.about-mini-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(24,183,174,0.45), transparent 32%),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.18), transparent 34%);
}

.about-mini-shape {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
}

.about-mini-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--fmc-white);
}

.about-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--fmc-white);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.about-mini-title {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 14px;
}

.about-mini-title span {
    color: #bff7f3;
}

.about-mini-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 22px;
}

.about-mini-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 10px 15px;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 700;
}

.about-mini-breadcrumb a {
    color: var(--fmc-white);
    text-decoration: none;
}
   .autism-adhd-header {
        min-height: 400px;
        text-align: center;
        padding: 32px 0;
    }

    .autism-adhd-content {
        margin: 0 auto;
    }

    .autism-adhd-badge {
        font-size: 12px;
        padding: 8px 12px;
        margin-bottom: 14px;
    }

    .autism-adhd-title {
        font-size: 31px;
        line-height: 1.18;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }

    .autism-adhd-text {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .autism-adhd-tags {
        justify-content: center;
        gap: 8px;
        margin-bottom: 18px;
    }

    .autism-adhd-tag {
        font-size: 12px;
        padding: 8px 12px;
    }

    .autism-adhd-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
    }

    .autism-adhd-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .autism-adhd-breadcrumb {
        font-size: 12px;
        border-radius: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
       .aadp-section {
        padding: 38px 0;
    }

    .aadp-heading {
        margin-bottom: 28px;
    }

    .aadp-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .aadp-title {
        font-size: 27px;
        line-height: 1.2;
    }

    .aadp-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .aadp-card,
    .aadp-diff-card,
    .aadp-parent-box,
    .aadp-consult-wrap {
        border-radius: 22px;
        padding: 20px 16px;
    }

    .aadp-card h3,
    .aadp-card h4,
    .aadp-diff-card h3,
    .aadp-parent-box h3,
    .aadp-consult-content h3 {
        font-size: 22px;
    }

    .aadp-card p,
    .aadp-parent-box p,
    .aadp-consult-content p {
        font-size: 14px;
        line-height: 1.68;
    }

    .aadp-image-box {
        border-radius: 22px;
        padding: 10px;
    }

    .aadp-image-box img {
        min-height: 250px;
        border-radius: 16px;
    }

    .aadp-floating-note {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 10px;
        max-width: 100%;
        border-radius: 16px;
    }

    .aadp-sign-card {
        border-radius: 20px;
        padding: 20px 15px;
    }

    .aadp-sign-card h4,
    .aadp-step-card h4,
    .aadp-root-card h4 {
        font-size: 16px;
    }

    .aadp-sign-card p,
    .aadp-step-card p {
        font-size: 13px;
    }

    .aadp-step-card {
        border-radius: 20px;
        padding: 20px 15px;
    }

    .aadp-parent-actions,
    .aadp-consult-actions {
        flex-direction: column;
    }

    .aadp-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .aadp-check-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aadp-check-item {
        font-size: 13px;
        border-radius: 16px;
    }
.hn-ab-form-box,
    .hn-ab-blog-box {
        padding: 22px;
        border-radius: 22px;
    }

    .hn-ab-blog-heading {
        flex-direction: column;
        gap: 12px;
    }

    .hn-ab-view-all {
        width: 100%;
        justify-content: center;
    }

    .hn-ab-blog-card {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .hn-ab-blog-date {
        width: 68px;
        height: 72px;
        border-radius: 17px;
    }

    .hn-ab-blog-date strong {
        font-size: 23px;
    }

    .hn-ab-blog-content h3 {
        font-size: 17px;
    }
}
@media (max-width: 380px) {
    .hn-appointment-blog-section {
        padding: 45px 10px;
    }

    .hn-ab-container {
        gap: 18px;
    }

    .hn-ab-form-box,
    .hn-ab-blog-box {
        padding: 16px;
        border-radius: 18px;
    }

    .hn-ab-mini-title {
        font-size: 11px;
        padding: 7px 10px;
        gap: 6px;
    }

    .hn-ab-form-box h2,
    .hn-ab-blog-heading h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .hn-ab-form-text {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .hn-ab-field label {
        font-size: 13px;
    }

    .hn-ab-input-icon input,
    .hn-ab-input-icon select {
        height: 46px;
        font-size: 13px;
        border-radius: 13px;
        padding-left: 39px;
    }

    .hn-ab-input-icon i {
        left: 13px;
        font-size: 13px;
    }

    .hn-ab-field textarea {
        min-height: 95px;
        font-size: 13px;
        border-radius: 13px;
    }

    .hn-ab-submit-btn {
        height: 48px;
        font-size: 13px;
        border-radius: 13px;
    }

    .hn-ab-blog-card {
        padding: 14px;
        border-radius: 17px;
    }

    .hn-ab-blog-date {
        width: 62px;
        height: 66px;
        border-radius: 15px;
    }

    .hn-ab-blog-date strong {
        font-size: 21px;
    }

    .hn-ab-blog-date span {
        font-size: 11px;
    }

    .hn-ab-blog-tag {
        font-size: 10px;
        padding: 5px 8px;
    }

    .hn-ab-blog-content h3 {
        font-size: 15px;
    }

    .hn-ab-blog-content p {
        font-size: 12px;
    }

    .hn-ab-read-more {
        font-size: 12px;
    }
}
@media (max-width: 520px) {
    .hn-blog-detail-section {
        padding: 45px 12px;
    }

    .hn-blog-detail-hero {
        padding: 10px;
        border-radius: 22px;
    }

    .hn-blog-detail-image {
        height: 240px;
        border-radius: 18px;
    }

    .hn-blog-detail-content-box {
        padding: 22px;
        border-radius: 22px;
    }

    .hn-blog-detail-content-box h1 {
        font-size: 26px;
    }

    .hn-blog-detail-content-box p {
        font-size: 14px;
    }

    .hn-blog-detail-lead {
        font-size: 15px !important;
        padding: 15px;
    }

    .hn-blog-detail-highlight {
        flex-direction: column;
        padding: 16px;
    }

    .hn-blog-detail-cta {
        padding: 20px;
        border-radius: 20px;
    }

    .hn-blog-detail-cta h3 {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .fmc-brand-name h5 {
        max-width: 125px;
        font-size: 13px;
    }

    .fmc-brand-name span {
        font-size: 9px;
    }

    .fmc-logo {
        width: 40px;
        height: 40px;
    }

    .fmc-toggler {
        width: 41px;
        height: 41px;
    }

    .fmc-offcanvas-body {
        padding: 14px;
    }
      .fmc-gut-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .fmc-gut-title {
        font-size: 25px;
    }

    .fmc-gut-desc {
        font-size: 14px;
    }

    .fmc-gut-point h6 {
        font-size: 14px;
    }

    .fmc-gut-point p {
        font-size: 12.5px;
    }

    .fmc-gut-visual-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    .fmc-gut-visual-card img {
        height: 225px;
    }
      .hn-consult-section {
        padding: 38px 0;
    }

    .hn-consult-header {
        margin-bottom: 30px;
    }

    .hn-consult-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hn-consult-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.3px;
    }

    .hn-consult-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hn-consult-left-card {
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-consult-left-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 23px;
    }

    .hn-consult-left-card h3 {
        font-size: 23px;
    }

    .hn-consult-left-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .hn-consult-note {
        border-radius: 16px;
        padding: 14px;
    }

    .hn-consult-note h4 {
        font-size: 16px;
    }

    .hn-consult-left-list li {
        font-size: 13.2px;
    }

    .hn-symptom-card {
        border-radius: 20px;
        padding: 20px 15px;
    }

    .hn-symptom-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 18px;
    }

    .hn-symptom-card h4 {
        font-size: 16px;
    }

    .hn-symptom-card p {
        font-size: 13.2px;
    }

    .hn-consult-check-strip {
        margin-top: 30px;
        border-radius: 22px;
        padding: 20px 16px;
    }

    .hn-consult-check-heading h3 {
        font-size: 22px;
    }

    .hn-consult-check-heading p {
        font-size: 14px;
    }

    .hn-consult-check-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hn-consult-check-item {
        font-size: 13px;
        padding: 12px;
    }

    .hn-consult-cta {
        border-radius: 22px;
        padding: 22px 16px;
    }

    .hn-consult-cta h3 {
        font-size: 22px;
    }

    .hn-consult-cta p {
        font-size: 14px;
    }

    .hn-consult-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hn-consult-call,
    .hn-consult-whatsapp,
    .hn-consult-left-btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
    .hn-blog-detail-section {
        padding: 35px 10px;
    }

    .hn-blog-detail-container {
        gap: 18px;
    }

    .hn-blog-detail-image {
        height: 205px;
    }

    .hn-blog-detail-meta-box {
        gap: 7px;
        padding-top: 12px;
    }

    .hn-blog-detail-meta-box span {
        font-size: 11px;
        padding: 7px 9px;
    }

    .hn-blog-detail-content-box {
        padding: 16px;
    }

    .hn-blog-detail-badge {
        font-size: 11px;
        padding: 7px 10px;
    }

    .hn-blog-detail-content-box h1 {
        font-size: 22px;
        line-height: 1.25;
    }

    .hn-blog-detail-content-box h2 {
        font-size: 19px;
    }

    .hn-blog-detail-content-box p {
        font-size: 13px;
        line-height: 1.75;
    }

    .hn-blog-detail-content-box ul li {
        font-size: 12px;
        padding: 11px;
    }

    .hn-blog-detail-point-card {
        padding: 16px;
        border-radius: 16px;
    }

    .hn-blog-detail-point-card h3 {
        font-size: 15px;
    }

    .hn-blog-detail-point-card p {
        font-size: 12px;
    }

    .hn-blog-detail-side-card,
    .hn-blog-detail-help-card {
        padding: 16px;
        border-radius: 18px;
    }

    .hn-blog-detail-recent {
        grid-template-columns: 65px 1fr;
    }

    .hn-blog-detail-recent img {
        width: 65px;
        height: 62px;
        border-radius: 12px;
    }

    .hn-blog-detail-recent a {
        font-size: 12px;
    }
}
@media (max-width: 340px) {
    .fmc-about-left {
        padding: 12px;
    }

    .fmc-doctor-image-box img {
        height: 315px;
    }

    .fmc-about-right {
        padding: 22px 12px;
    }

    .fmc-about-title {
        font-size: 24px;
    }

    .fmc-about-desc {
        font-size: 14px;
    }

    .fmc-service-item h5 {
        font-size: 14px;
    }

    .fmc-service-item p {
        font-size: 12.5px;
    }

    .fmc-contact-link,
    .fmc-about-btn {
        font-size: 13px;
    }
      .hn-services-title {
        font-size: 25px;
    }

    .hn-service-card {
        padding: 18px 12px;
    }

    .hn-service-icon {
        min-width: 44px;
        height: 44px;
    }

    .hn-service-title-wrap h3 {
        font-size: 15.5px;
    }

    .hn-service-text {
        font-size: 13px;
    }

    .hn-service-list li {
        font-size: 12.5px;
    }

    .hn-program-title {
        font-size: 20px;
    }

    .hn-program-btn,
    .hn-program-call {
        font-size: 13px;
    }
     .hn-why-title {
        font-size: 25px;
    }

    .hn-why-main-card {
        padding: 20px 12px;
    }

    .hn-why-main-card h3 {
        font-size: 20px;
    }

    .hn-why-check-list li {
        font-size: 12.5px;
    }

    .hn-why-reason-card {
        padding: 18px 12px;
    }

    .hn-why-image-card img {
        height: 205px;
    }

    .hn-why-image-content {
        padding: 15px;
    }

    .hn-why-image-content h5 {
        font-size: 15.5px;
    }

    .hn-why-image-content p {
        font-size: 12.5px;
    }

    .hn-why-cta h3 {
        font-size: 20px;
    }

    .hn-why-btn-white,
    .hn-why-call {
        font-size: 13px;
    }
        .hn-process-title {
        font-size: 24px;
    }

    .hn-process-desc {
        font-size: 14px;
    }

    .hn-process-main-image img {
        height: 270px;
    }

    .hn-process-step-content h3 {
        font-size: 15px;
    }

    .hn-process-step-content p,
    .hn-process-point-list li,
    .hn-process-floating-box p,
    .hn-process-mini-card p {
        font-size: 12.5px;
    }

    .hn-process-btn {
        font-size: 13px;
    }
      .hn-programs-title {
        font-size: 24px;
    }

    .hn-programs-desc {
        font-size: 14px;
    }

    .hn-feature-program {
        padding: 20px 12px;
    }

    .hn-feature-program h3 {
        font-size: 20px;
    }

    .hn-care-card {
        padding: 18px 12px;
    }

    .hn-care-icon {
        min-width: 44px;
        height: 44px;
    }

    .hn-care-card h3 {
        font-size: 15.5px;
    }

    .hn-care-desc,
    .hn-care-list li {
        font-size: 12.5px;
    }

    .hn-programs-bottom h3 {
        font-size: 19px;
    }

    .hn-programs-call,
    .hn-programs-whatsapp {
        font-size: 13px;
    }
    .hn-consult-title {
        font-size: 24px;
    }

    .hn-consult-desc {
        font-size: 14px;
    }

    .hn-consult-left-card {
        padding: 20px 12px;
    }

    .hn-consult-left-card h3 {
        font-size: 20px;
    }

    .hn-consult-left-card p,
    .hn-consult-left-list li,
    .hn-symptom-card p,
    .hn-consult-check-item {
        font-size: 12.5px;
    }

    .hn-symptom-card {
        padding: 18px 12px;
    }

    .hn-consult-check-strip,
    .hn-consult-cta {
        padding: 20px 12px;
    }

    .hn-consult-call,
    .hn-consult-whatsapp,
    .hn-consult-left-btn {
        font-size: 13px;
    }
      .hn-testimonial-title {
        font-size: 24px;
    }

    .hn-testimonial-desc {
        font-size: 14px;
    }

    .hn-review-card {
        padding: 20px 12px;
    }

    .hn-review-text {
        font-size: 12.8px;
    }

    .hn-review-avatar {
        min-width: 48px;
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .hn-review-cta {
        padding: 20px 12px;
    }

    .hn-review-cta h3 {
        font-size: 20px;
    }

    .hn-review-cta-btn {
        font-size: 13px;
    }
        .hn-faq-title {
        font-size: 24px;
    }

    .hn-faq-desc {
        font-size: 14px;
    }

    .hn-faq-help-card {
        padding: 20px 12px;
    }

    .hn-faq-help-card h3 {
        font-size: 20px;
    }

    .hn-faq-help-card p,
    .hn-faq-help-list li {
        font-size: 12.8px;
    }

    .hn-faq-accordion .accordion-button {
        font-size: 13px;
        padding: 14px 12px;
    }

    .hn-faq-question-icon {
        min-width: 32px;
        height: 32px;
    }

    .hn-faq-plus-icon {
        min-width: 28px;
        height: 28px;
    }

    .hn-faq-accordion .accordion-body {
        padding: 0 12px 15px 54px;
        font-size: 12.7px;
    }

    .hn-faq-bottom {
        padding: 20px 12px;
    }

    .hn-faq-bottom h3 {
        font-size: 19px;
    }

    .hn-faq-call,
    .hn-faq-whatsapp,
    .hn-faq-help-btn {
        font-size: 13px;
    }
   .hn-contact-title {
        font-size: 24px;
    }

    .hn-contact-info-card,
    .hn-appointment-card {
        padding: 20px 12px;
    }

    .hn-contact-info-card h3,
    .hn-appointment-top h3 {
        font-size: 20px;
    }

    .hn-contact-info-card p,
    .hn-contact-note p,
    .hn-form-mini-text,
    .hn-form-safe-note,
    .hn-contact-quick-card p {
        font-size: 12.5px;
    }

    .hn-form-control,
    .hn-form-select {
        font-size: 13px;
        padding: 11px 12px;
    }

    .hn-submit-btn,
    .hn-contact-whatsapp-btn {
        font-size: 13px;
    }
     .hn-footer-top-strip {
        padding: 16px 12px;
    }

    .hn-footer-logo-text h3 {
        font-size: 19px;
    }

    .hn-footer-about,
    .hn-footer-links a,
    .hn-footer-contact-item a,
    .hn-footer-contact-item span,
    .hn-footer-cta-box p,
    .hn-footer-bottom p,
    .hn-footer-bottom-links a {
        font-size: 12.5px;
    }

    .hn-footer-whatsapp-btn {
        font-size: 13px;
    }
     .about-mini-title {
        font-size: 29px;
    }

    .about-mini-text {
        font-size: 13px;
    }
     .autism-adhd-title {
        font-size: 27px;
    }

    .autism-adhd-text {
        font-size: 13px;
    }

    .autism-adhd-tag {
        font-size: 11.5px;
        padding: 7px 10px;
    }

    .autism-adhd-btn {
        font-size: 13px;
    }
      .aadp-title {
        font-size: 24px;
    }

    .aadp-desc,
    .aadp-card p,
    .aadp-parent-box p,
    .aadp-consult-content p,
    .aadp-list li,
    .aadp-check-item {
        font-size: 12.8px;
    }

    .aadp-card,
    .aadp-sign-card,
    .aadp-step-card,
    .aadp-parent-box,
    .aadp-consult-wrap {
        padding: 18px 12px;
    }

    .aadp-btn {
        font-size: 13px;
    }
}
.hn-blog-list-page {
    padding: 80px 15px;
    background: #f7fffe;
}

.hn-blog-list-container {
    max-width: 1180px;
    margin: 0 auto;
}

.hn-blog-list-heading {
    text-align: center;
    margin-bottom: 45px;
}

.hn-blog-list-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #18B7AE;
    font-weight: 700;
    margin-bottom: 10px;
}

.hn-blog-list-heading h1 {
    font-size: 42px;
    color: #12393b;
    margin-bottom: 12px;
}

.hn-blog-list-heading p {
    color: #6B7280;
    max-width: 650px;
    margin: 0 auto;
}

.hn-blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hn-blog-list-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(14, 143, 137, 0.10);
    border: 1px solid #E5E7EB;
    transition: 0.3s ease;
}

.hn-blog-list-card:hover {
    transform: translateY(-6px);
}

.hn-blog-list-img {
    height: 230px;
    overflow: hidden;
}

.hn-blog-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hn-blog-list-content {
    padding: 22px;
}

.hn-blog-list-tag {
    display: inline-block;
    background: #EAFBF9;
    color: #0E8F89;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.hn-blog-list-content h3 {
    font-size: 21px;
    line-height: 1.35;
    color: #12393b;
    margin-bottom: 10px;
}

.hn-blog-list-content p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 18px;
}

.hn-blog-list-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.hn-blog-list-bottom span {
    color: #6B7280;
    font-size: 14px;
}

.hn-blog-list-bottom a {
    color: #18B7AE;
    font-weight: 700;
    text-decoration: none;
}

.hn-blog-pagination {
    margin-top: 35px;
}

@media (max-width: 991px) {
    .hn-blog-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hn-blog-list-heading h1 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .hn-blog-list-page {
        padding: 55px 12px;
    }

    .hn-blog-list-grid {
        grid-template-columns: 1fr;
    }

    .hn-blog-list-heading h1 {
        font-size: 28px;
    }

    .hn-blog-list-img {
        height: 200px;
    }

    .hn-blog-list-content {
        padding: 18px;
    }

    .hn-blog-list-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 320px) {
    .hn-blog-list-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hn-blog-list-heading h1 {
        font-size: 25px;
    }

    .hn-blog-list-content {
        padding: 15px;
    }

    .hn-blog-list-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


.hn-care-products-section {
    position: relative;
    padding: 90px 15px;
    background: linear-gradient(180deg, var(--fmc-white), var(--fmc-primary-light));
    overflow: hidden;
}

.hn-care-products-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -170px;
    top: -160px;
    background: var(--fmc-gradient);
    opacity: 0.12;
    border-radius: 50%;
}

.hn-care-products-bg::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -120px;
    background: var(--fmc-primary);
    border-radius: 50%;
    opacity: 0.25;
}

.hn-care-products-container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hn-care-products-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.hn-care-products-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    background: var(--fmc-white);
    border: 1px solid var(--fmc-border);
    color: var(--fmc-primary-dark);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(14, 143, 137, 0.08);
    margin-bottom: 16px;
}

.hn-care-products-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--fmc-text);
    margin: 0 0 14px;
    font-weight: 800;
}

.hn-care-products-heading h2 span {
    color: var(--fmc-primary);
}

.hn-care-products-heading p {
    color: var(--fmc-muted);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.hn-care-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.hn-care-product-card {
    background: var(--fmc-white);
    border: 1px solid var(--fmc-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(18, 57, 59, 0.08);
    transition: 0.35s ease;
}

.hn-care-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(14, 143, 137, 0.16);
}

.hn-care-product-img {
    position: relative;
    height: 225px;
    overflow: hidden;
}

.hn-care-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.hn-care-product-card:hover .hn-care-product-img img {
    transform: scale(1.08);
}

.hn-care-product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--fmc-white);
    color: var(--fmc-primary-dark);
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(18, 57, 59, 0.14);
}

.hn-care-product-content {
    position: relative;
    padding: 28px 24px 26px;
}

.hn-care-product-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-top: -58px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(24, 183, 174, 0.28);
    position: relative;
    z-index: 2;
}

.hn-care-product-content h3 {
    font-size: 22px;
    color: var(--fmc-text);
    margin: 0 0 10px;
    line-height: 1.3;
    font-weight: 800;
}

.hn-care-product-content p {
    color: var(--fmc-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.hn-care-product-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.hn-care-product-content ul li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--fmc-text);
    font-size: 14px;
    margin-bottom: 9px;
}

.hn-care-product-content ul li i {
    color: var(--fmc-primary);
}

.hn-care-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fmc-primary-dark);
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.hn-care-product-btn:hover {
    color: var(--fmc-primary);
    gap: 12px;
}

.hn-care-products-bottom {
    margin-top: 38px;
    padding: 24px;
    border-radius: 26px;
    background: var(--fmc-white);
    border: 1px solid var(--fmc-border);
    box-shadow: 0 16px 40px rgba(18, 57, 59, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hn-care-products-help {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hn-care-products-help > i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--fmc-primary-light);
    color: var(--fmc-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.hn-care-products-help h4 {
    color: var(--fmc-text);
    font-size: 20px;
    margin: 0 0 4px;
}

.hn-care-products-help p {
    color: var(--fmc-muted);
    margin: 0;
    line-height: 1.6;
}

.hn-care-products-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--fmc-gradient);
    color: var(--fmc-white);
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(24, 183, 174, 0.25);
    transition: 0.3s ease;
}

.hn-care-products-main-btn:hover {
    transform: translateY(-3px);
    color: var(--fmc-white);
    box-shadow: 0 18px 35px rgba(24, 183, 174, 0.32);
}

@media (max-width: 991px) {
    .hn-care-products-section {
        padding: 75px 15px;
    }

    .hn-care-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hn-care-products-heading h2 {
        font-size: 34px;
    }

    .hn-care-products-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .hn-care-products-section {
        padding: 60px 12px;
    }

    .hn-care-products-heading {
        margin-bottom: 32px;
    }

    .hn-care-products-heading h2 {
        font-size: 28px;
    }

    .hn-care-products-heading p {
        font-size: 15px;
    }

    .hn-care-products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hn-care-product-card {
        border-radius: 22px;
    }

    .hn-care-product-img {
        height: 205px;
    }

    .hn-care-product-content {
        padding: 26px 20px 24px;
    }

    .hn-care-products-bottom {
        padding: 20px;
        border-radius: 22px;
    }

    .hn-care-products-help {
        align-items: flex-start;
    }

    .hn-care-products-main-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .hn-care-products-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hn-care-products-badge {
        font-size: 12px;
        padding: 8px 13px;
    }

    .hn-care-products-heading h2 {
        font-size: 24px;
    }

    .hn-care-product-content h3 {
        font-size: 20px;
    }

    .hn-care-product-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hn-care-products-help {
        gap: 12px;
    }

    .hn-care-products-help > i {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .hn-care-products-help h4 {
        font-size: 17px;
    }

    .hn-care-products-help p {
        font-size: 14px;
    }
}
