
/* =========================================================
   AAMINA HOSPITAL & NURSING HOME — FRONT-END DESIGN SYSTEM
   Brand direction: clinical blue + care green + clean white
   ========================================================= */

:root {
    --primary-color: #318fd0;
    --primary-dark: #0f4f85;
    --primary-deep: #08345e;
    --primary-soft: #eaf6fd;
    --secondary-color: #79cd39;
    --secondary-dark: #4da923;
    --secondary-soft: #f1fae9;
    --heading-color: #0d2841;
    --description-color: #526b80;
    --muted-color: #7890a4;
    --white: #ffffff;
    --off-white: #f7fbfe;
    --surface: #ffffff;
    --border-color: #dce9f2;
    --border-soft: #eaf1f6;
    --danger-soft: #fff1f1;
    --shadow-sm: 0 8px 24px rgba(16, 69, 108, 0.08);
    --shadow-md: 0 18px 45px rgba(16, 69, 108, 0.12);
    --shadow-lg: 0 28px 70px rgba(8, 52, 94, 0.16);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 38px;
    --header-topbar-height: 38px;
    --header-nav-height: 88px;
    --transition: 0.28s ease;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body,
html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: "Manrope", Arial, sans-serif;
    color: var(--description-color);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.sidebar-open,
html.sidebar-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

ul,
ol {
    margin-top: 0;
}

p {
    margin: 0 0 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.18;
}

h1 { font-size: 58px; }
h2 { font-size: 42px; }
h3 { font-size: 42px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

main {
    display: block;
}

section {
    position: relative;
}

::selection {
    background: var(--secondary-color);
    color: var(--primary-deep);
}

.skip-link {
    position: fixed;
    left: 18px;
    top: -70px;
    z-index: 100000;
    background: var(--primary-deep);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 8px;
}

.skip-link:focus {
    top: 18px;
}

/* ---------- Buttons ---------- */
.cta_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.cta_main,
.cta_2,
.cta_4,
.cta_5,
.read_more_btn,
.load_more_blog a,
.load-more-written-reviews a,
#not_found a,
.report-search-form button,
.header-appointment-btn,
#about_us_section_3 .left_box > a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(49, 143, 208, 0.18);
}

.cta_main::after,
.cta_2::after,
.cta_4::after,
.cta_5::after,
.read_more_btn::after,
.header-appointment-btn::after,
#about_us_section_3 .left_box > a::after {
    content: "→";
    font-size: 17px;
    line-height: 1;
    transition: transform var(--transition);
}

.cta_main:hover,
.cta_2:hover,
.cta_5:hover,
.read_more_btn:hover,
.load_more_blog a:hover,
.load-more-written-reviews a:hover,
.report-search-form button:hover,
.header-appointment-btn:hover,
#about_us_section_3 .left_box > a:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 13px 26px rgba(15, 79, 133, 0.23);
}

.cta_main:hover::after,
.cta_2:hover::after,
.cta_4:hover::after,
.cta_5:hover::after,
.read_more_btn:hover::after,
.header-appointment-btn:hover::after,
#about_us_section_3 .left_box > a:hover::after {
    transform: translateX(3px);
}

.cta_4 {
    background: transparent;
    color: var(--primary-dark) !important;
    border-color: var(--border-color);
    box-shadow: none;
}

.cta_4:hover {
    background: var(--primary-soft);
    border-color: var(--primary-color);
    color: var(--primary-dark) !important;
}

.cta_2 {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-deep) !important;
    box-shadow: 0 8px 20px rgba(121, 205, 57, 0.22);
}

.cta_2:hover {
    background: #8adb49;
    border-color: #8adb49;
    color: var(--primary-deep) !important;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: transform var(--transition), box-shadow var(--transition);
}

.header.hide_header {
    transform: translateY(-100%);
}

.hospital-topbar {
    height: var(--header-topbar-height);
    background: var(--primary-deep);
    color: rgba(255, 255, 255, 0.92);
}

.hospital-topbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hospital-notice {
    min-width: 0;
    max-width: 700px;
    flex: 1;
}

.hospital-notice p,
.header .hospital-notice p {
    color: rgba(255, 255, 255, 0.93);
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    display: flex !important;
    align-items: center;
    gap: 9px;
    text-align: left;
}

.hospital-notice p::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(121, 205, 57, 0.14);
}

.hospital-topbar__links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.hospital-topbar__links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    line-height: 1;
}

.hospital-topbar__links a:hover {
    color: var(--secondary-color);
}

.hospital-topbar__icon {
    color: var(--secondary-color);
}

.hospital-navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(24, 97, 146, 0.08);
    transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled_header .hospital-navbar {
    box-shadow: 0 12px 30px rgba(8, 52, 94, 0.09);
    background: rgba(255, 255, 255, 0.99);
}

.row-wrap {
    min-height: var(--header-nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo-wrap {
    flex: 0 0 auto;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.row-wrap .logo-wrap a img,
.header_logo {
    width: 220px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-list > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #244a66;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > .current-menu-item > a,
.nav-list > .current-menu-parent > a,
.nav-list > .current_page_parent > a {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.nav-list > .current-menu-item > a::after,
.nav-list > .current-menu-parent > a::after,
.nav-list > .current_page_parent > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.header-appointment-btn {
    min-height: 44px;
    padding: 10px 18px;
    flex: 0 0 auto;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-deep) !important;
    box-shadow: none;
}

.header-appointment-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white) !important;
}

/* dropdowns */
.nav-list .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 230px;
    margin: 0;
    padding: 9px;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-list .sub-menu li {
    position: relative;
}

.nav-list .sub-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 600;
}

.nav-list .sub-menu a:hover {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.nav-list .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 8px);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: var(--primary-soft);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    z-index: 10001;
}

.hamburger .line {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--primary-deep);
    border-radius: 4px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.hamburger .line:nth-child(2) { width: 15px; }
.hamburger.is-active .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .line:nth-child(2) { opacity: 0; }
.hamburger.is-active .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.overlay {
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: rgba(5, 31, 54, 0.5);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(2px);
    transition: opacity var(--transition), visibility var(--transition);
}

.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   HOME HERO
   ========================================================= */
#home_banner_section {
    margin-top: 0;
    background: var(--primary-deep);
}

#home_banner_section .banner_slide {
    position: relative;
    min-height: 760px;
    padding-top: calc(var(--header-topbar-height) + var(--header-nav-height));
    background-size: cover !important;
    background-position: center !important;
    isolation: isolate;
}

#home_banner_section .banner_slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(5, 45, 78, 0.93) 0%, rgba(6, 55, 94, 0.82) 39%, rgba(10, 63, 101, 0.36) 70%, rgba(10, 63, 101, 0.15) 100%);
}

#home_banner_section .banner_slide::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -200px;
    width: 520px;
    height: 520px;
    z-index: -1;
    border-radius: 50%;
    border: 80px solid rgba(121, 205, 57, 0.08);
}

#home_banner_section .container {
    display: flex;
    align-items: center;
}

#home_banner_section .wrapper {
    width: 100%;
    padding: 90px 0 70px;
}

#home_banner_section .content_wrapper {
    width: min(690px, 100%);
}

#home_banner_section .content_wrapper > p {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #ecf8ff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

#home_banner_section .content_wrapper > p::before {
    content: "✚";
    color: var(--secondary-color);
}

#home_banner_section h1 {
    max-width: 720px;
    color: var(--white);
    font-size: 62px;
    line-height: 1.08;
    letter-spacing: -1.4px;
    text-wrap: balance;
}

#home_banner_section h2 {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255,255,255,0.82);
    font-size: 20px;
    line-height: 1.65;
    font-weight: 500;
}

#home_banner_section .cta_box {
    margin-top: 32px;
}

#home_banner_section .cta_2 {
    min-height: 54px;
    padding: 14px 26px;
    font-size: 16px;
}

#home_banner_section .slick-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    width: min(100% - 48px, 1240px);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    transform: translateX(-50%);
}

#home_banner_section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 4px;
}

#home_banner_section .slick-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.5);
    font-size: 0;
    transition: width var(--transition), background var(--transition);
}

#home_banner_section .slick-dots .slick-active button {
    width: 30px;
    background: var(--secondary-color);
}

#home_banner_section .slick-dots button::before { display: none; }

/* =========================================================
   COMMON HOME SECTION TYPOGRAPHY
   ========================================================= */
#home_section_1,
#home_section_2,
#home_section_3,
#home_section_4,
#home_section_5,
#home_section_6,
#home_blogs_section,
#home_section_8,
#home_quote_form,
#blogs_main_section,
#testimonial_main_section,
#gallery_images,
#faq-section,
#about_us_section_1,
#about_us_section_2,
#about_us_section_3,
#main_content_section,
#related_blogs_section,
.reports_download_section {
    padding: 100px 0;
}

#home_section_3 > .container > h3,
#home_section_5 > .container > h3,
#home_section_6 > .container > h3,
#home_blogs_section > .container > h3,
#home_section_8 h3,
#testimonial_main_section h2,
#related_blogs_section > .container > h3,
#gallery_images h2,
#faq-section > .container > h3 {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 42px;
    letter-spacing: -0.6px;
}

#home_section_3 > .container > h4,
#home_section_5 > .container > h4,
#home_section_6 > .container > h4,
#home_section_8 h4,
#gallery_images h6,
#testimonial_main_section > .container > p {
    max-width: 720px;
    margin: 16px auto 0;
    text-align: center;
    color: var(--description-color);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

/* =========================================================
   SERVICES
   ========================================================= */
#home_section_3 {
    background: var(--off-white);
    overflow: hidden;
}

#home_section_3::before {
    content: "+";
    position: absolute;
    right: 5%;
    top: 45px;
    color: rgba(49, 143, 208, 0.08);
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
}

#home_section_3 .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 48px;
}

#home_section_3 .card {
    width: calc(33.333% - 15px);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

#home_section_3 .card:hover {
    transform: translateY(-7px);
    border-color: rgba(49,143,208,0.28);
    box-shadow: var(--shadow-md);
}

#home_section_3 .card > img {
    order: -1;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

#home_section_3 .card:hover > img {
    transform: scale(1.04);
}

#home_section_3 .card .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px 26px 28px;
}

#home_section_3 .card h6 {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 11px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--secondary-soft);
    color: var(--secondary-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

#home_section_3 .card h5 {
    margin-bottom: 12px;
    color: var(--heading-color);
    font-size: 23px;
}

#home_section_3 .card p {
    margin: 0 0 20px;
    color: var(--description-color);
    font-size: 15px;
    line-height: 1.65;
}

#home_section_3 .card .content > a {
    margin-top: auto;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
}

#home_section_3 .card .content > a::after {
    content: " →";
    color: var(--secondary-dark);
}

#home_section_3 .cta_box,
#home_section_4 .cta_box,
#home_section_5 .cta_box,
#home_section_6 .cta_box,
#home_blogs_section .cta_box,
#home_section_8 .cta_box {
    justify-content: center;
}

/* =========================================================
   WHY CHOOSE US / SPLIT CONTENT
   ========================================================= */
#home_section_2 {
    background: var(--white);
}

#home_section_2 .wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

#home_section_2 .wrapper > img {
    width: calc(50% - 35px);
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

#home_section_2 .content_wrapper {
    width: calc(50% - 35px);
}

#home_section_2 .content_wrapper h4 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#home_section_2 .content_wrapper h4::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--secondary-color);
}

#home_section_2 .content_wrapper h3 {
    margin-bottom: 22px;
    font-size: 46px;
    letter-spacing: -0.7px;
}

#home_section_2 .content_wrapper p {
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================================
   STATS
   ========================================================= */
#stats_section {
    padding: 42px 0;
    background: linear-gradient(120deg, var(--primary-deep), var(--primary-dark) 60%, #17689d);
    overflow: hidden;
}

#stats_section::before,
#stats_section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 45px solid rgba(255,255,255,0.045);
}

#stats_section::before {
    width: 300px;
    height: 300px;
    left: -130px;
    top: -120px;
}

#stats_section::after {
    width: 240px;
    height: 240px;
    right: -90px;
    bottom: -100px;
}

#stats_section .stats_wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

#stats_section .content {
    width: 31%;
}

#stats_section .content h6 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#stats_section .content h3 {
    color: var(--white);
    font-size: 31px;
    line-height: 1.25;
}

#stats_section .stats_box {
    width: 69%;
    display: flex;
    align-items: stretch;
}

#stats_section .box {
    flex: 1;
    min-width: 0;
    padding: 18px 24px;
    border-left: 1px solid rgba(255,255,255,0.16);
}

#stats_section .box h5 {
    color: var(--white);
    font-size: 38px;
    line-height: 1;
}

#stats_section .box p {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.5;
}

/* =========================================================
   DOCTORS / TEAM
   ========================================================= */
#home_section_4 {
    background: var(--white);
}

#home_section_4 > .container > .wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 44px;
}

#home_section_4 > .container > .wrapper h3 {
    max-width: 620px;
    font-size: 42px;
}

#home_section_4 > .container > .wrapper p {
    max-width: 500px;
    margin: 0;
    font-size: 16px;
}

#home_section_4 .team_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

#home_section_4 .card {
    width: calc(33.333% - 15px);
    overflow: hidden;
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

#home_section_4 .card:hover {
    transform: translateY(-6px);
    border-color: rgba(49,143,208,0.25);
    box-shadow: var(--shadow-md);
}

#home_section_4 .image_wrapper {
    position: relative;
    overflow: hidden;
    background: var(--primary-soft);
}

#home_section_4 .image_wrapper::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(transparent, rgba(8,52,94,0.12));
    pointer-events: none;
}

#home_section_4 .image_wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

#home_section_4 .card:hover .image_wrapper img {
    transform: scale(1.035);
}

#home_section_4 .content {
    display: flex;
    flex-direction: column;
    min-height: 235px;
    padding: 24px;
}

#home_section_4 .content h6 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

#home_section_4 .content h5 {
    margin-bottom: 7px;
    font-size: 23px;
}

#home_section_4 .content h4 {
    margin-bottom: 12px;
    color: var(--secondary-dark);
    font-size: 14px;
    line-height: 1.5;
}

#home_section_4 .content p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
}

#home_section_4 .content > a {
    align-self: flex-start;
    margin-top: auto;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
}

#home_section_4 .content > a::after {
    content: "  →";
    color: var(--secondary-dark);
}

/* =========================================================
   HOW IT WORKS / PROCESS
   ========================================================= */
#home_section_6 {
    background: var(--primary-soft);
    overflow: hidden;
}

#home_section_6 .cards_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 48px;
}

#home_section_6 .cards_wrapper::before {
    content: "";
    position: absolute;
    left: 11%;
    right: 11%;
    top: 39px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0.38;
}

#home_section_6 .card {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    padding: 28px 22px 26px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

#home_section_6 .card h5 {
    width: 48px;
    height: 48px;
    margin: -53px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--primary-soft);
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 17px;
    box-sizing: content-box;
}

#home_section_6 .card h6 {
    margin-bottom: 10px;
    font-size: 18px;
}

#home_section_6 .card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
#home_section_5 {
    background: var(--white);
}

#home_section_5 .cards_wrapper {
    margin-top: 46px;
}

#home_section_5 .slick-list {
    overflow: visible;
}

#home_section_5 .slick-slide {
    margin: 0 11px;
}

#home_section_5 .card {
    position: relative;
    min-height: 260px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

#home_section_5 .card::before {
    content: "“";
    position: absolute;
    right: 26px;
    top: 15px;
    color: rgba(49, 143, 208, 0.14);
    font-size: 90px;
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1;
}

#home_section_5 .card p {
    position: relative;
    z-index: 1;
    margin: 0 0 26px;
    color: #405b71;
    font-size: 16px;
    line-height: 1.75;
}

#home_section_5 .card h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

#home_section_5 .card h5::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 4px;
    background: var(--secondary-color);
}

#home_section_5 .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
    padding: 0;
}

#home_section_5 .slick-dots li,
#home_section_5 .slick-dots button {
    width: auto;
    height: auto;
}

#home_section_5 .slick-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #bfd4e4;
    font-size: 0;
}

#home_section_5 .slick-dots .slick-active button {
    width: 25px;
    background: var(--primary-color);
}

#home_section_5 .slick-dots button::before { display: none; }

/* =========================================================
   BLOG CARDS — HOME, ARCHIVE, RELATED
   ========================================================= */
#home_blogs_section,
#related_blogs_section {
    background: var(--off-white);
}

#home_blogs_section .blogs_wrapper,
#blogs_main_section .blogs_wrapper,
#related_blogs_section .blogs_wrapper_2 {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 46px;
}

.blog_card {
    width: calc(33.333% - 15px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.blog_card:hover {
    transform: translateY(-6px);
    border-color: rgba(49,143,208,0.25);
    box-shadow: var(--shadow-md);
}

.blog_card > img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog_card:hover > img { transform: scale(1.035); }

.blog_card .content_wrapper,
#blogs_main_section .blog_card,
#related_blogs_section .blog_card {
    position: relative;
}

.blog_card .content_wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

#blogs_main_section .blog_card,
#related_blogs_section .blog_card {
    padding-bottom: 24px;
}

#blogs_main_section .blog_card > h5,
#blogs_main_section .blog_card > h4,
#blogs_main_section .blog_card > p,
#blogs_main_section .blog_card > .read_more_btn,
#related_blogs_section .blog_card > h5,
#related_blogs_section .blog_card > h4,
#related_blogs_section .blog_card > p,
#related_blogs_section .blog_card > .read_more_btn {
    margin-left: 24px;
    margin-right: 24px;
}

.blog_card h5 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.65px;
}

.blog_card h4 {
    margin: 0 0 12px;
    color: var(--heading-color);
    font-size: 21px;
    line-height: 1.35;
}

.blog_card p {
    display: -webkit-box;
    margin: 0 0 22px;
    overflow: hidden;
    color: var(--description-color);
    font-size: 14px;
    line-height: 1.65;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog_card .read_more_btn {
    align-self: flex-start;
    min-height: 40px;
    margin-top: auto;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
}

#blogs_main_section {
    min-height: 520px;
    background: var(--white);
}

#blogs_main_section .blogs_wrapper:empty {
    min-height: 80px;
}

.load_more_blog,
.load-more-written-reviews {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.load_more_blog a,
.load-more-written-reviews a {
    min-width: 180px;
    text-align: center;
}

#noPostsSection_text {
    text-align: center;
    color: var(--muted-color);
}

/* =========================================================
   INSTANT CARE / LOCATION
   ========================================================= */
#home_section_7 {
    background: var(--white);
}

#home_section_7 > .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

#home_section_7 .wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(125deg, var(--primary-deep), #1269a5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

#home_section_7 .wrapper::before {
    content: "+";
    position: absolute;
    left: -25px;
    bottom: -70px;
    color: rgba(255,255,255,0.05);
    font-size: 260px;
    font-weight: 700;
    line-height: 1;
}

#home_section_7 .content_wrapper {
    position: relative;
    z-index: 1;
    width: 52%;
    padding: 64px;
}

#home_section_7 .content_wrapper h3 {
    color: var(--white);
    font-size: 43px;
}

#home_section_7 .content_wrapper p {
    max-width: 530px;
    margin-top: 18px;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
}

#home_section_7 .right_wrapper {
    align-self: stretch;
    width: 48%;
    min-height: 450px;
}

#home_section_7 .right_wrapper img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

#home_section_7 > iframe {
    display: block;
    width: min(100% - 48px, 1240px);
    height: 420px;
    margin: -35px auto 0;
    border: 8px solid var(--white) !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* =========================================================
   GALLERY
   ========================================================= */
#home_section_8 {
    overflow: hidden;
    background: var(--off-white);
}

#home_section_8 .home_gallery_slider {
    margin: 46px 0 0;
    padding: 0;
    list-style: none;
}

#home_section_8 .slick-slide {
    margin: 0 7px;
}

#home_section_8 .home_gallery_slider li {
    overflow: hidden;
    border-radius: 20px;
}

#home_section_8 .home_gallery_slider img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

#home_section_8 .home_gallery_slider li:hover img {
    transform: scale(1.05);
}

/* =========================================================
   APPOINTMENT / QUOTE FORM
   ========================================================= */
#home_quote_form {
    background: var(--white);
}

#home_quote_form .wrapper {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: var(--off-white);
    box-shadow: var(--shadow-md);
}

#home_quote_form .left_wrapper {
    position: relative;
    width: 43%;
    min-height: 650px;
    overflow: hidden;
    background: var(--primary-soft);
}

#home_quote_form .left_wrapper::after {
    content: "Care You Deserve";
    position: absolute;
    left: 28px;
    bottom: 28px;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

#home_quote_form .left_wrapper img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

#home_quote_form .right_wrapper {
    width: 57%;
    padding: 54px 58px;
    background: var(--white);
}

#home_quote_form .right_wrapper > h3 {
    max-width: 560px;
    font-size: 38px;
}

#home_quote_form .right_wrapper > h4 {
    margin: 12px 0 28px;
    color: var(--description-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

/* Contact Form 7 and generic forms */
.wpcf7 form,
.form_wrapper form,
.right_wrapper form {
    margin: 0;
}

.wpcf7 p {
    margin: 0 0 14px;
}

.wpcf7 label,
.form_wrapper label,
.right_wrapper form label {
    display: block;
    margin-bottom: 6px;
    color: var(--heading-color);
    font-size: 13px;
    font-weight: 700;
}

.wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7 select,
.wpcf7 textarea,
.form_wrapper input:not([type="submit"]),
.form_wrapper select,
.form_wrapper textarea,
.right_wrapper form input:not([type="submit"]),
.right_wrapper form select,
.right_wrapper form textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #d4e3ee;
    border-radius: 12px;
    outline: 0;
    background: var(--off-white);
    color: var(--heading-color);
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.wpcf7 textarea,
.form_wrapper textarea,
.right_wrapper form textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus,
.form_wrapper input:focus,
.form_wrapper select:focus,
.form_wrapper textarea:focus,
.right_wrapper form input:focus,
.right_wrapper form select:focus,
.right_wrapper form textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(49,143,208,0.11);
}

.wpcf7 input[type="submit"],
.form_wrapper input[type="submit"],
.right_wrapper form input[type="submit"],
.wpcf7 button[type="submit"] {
    min-height: 50px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--secondary-color);
    color: var(--primary-deep);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.wpcf7 input[type="submit"]:hover,
.form_wrapper input[type="submit"]:hover,
.right_wrapper form input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
    transform: translateY(-2px);
    background: #8adb49;
    box-shadow: 0 10px 22px rgba(121,205,57,0.22);
}

.wpcf7-not-valid-tip {
    margin-top: 5px;
    color: #c84343;
    font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 18px 0 0;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
}

/* =========================================================
   PAGE BANNERS
   ========================================================= */
#about_us_banner_section,
#contact_banner_section,
#gallery_section,
#testimonial_banner_section,
#banner_section_default {
    position: relative;
    min-height: 500px;
    padding-top: calc(var(--header-topbar-height) + var(--header-nav-height));
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    isolation: isolate;
}

#about_us_banner_section::before,
#contact_banner_section::before,
#gallery_section::before,
#testimonial_banner_section::before,
#banner_section_default::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(8,52,94,0.9), rgba(15,79,133,0.69) 52%, rgba(15,79,133,0.26));
}

#about_us_banner_section .container,
#contact_banner_section .container,
#gallery_section .container,
#testimonial_banner_section .container,
#banner_section_default .container {
    position: relative;
    z-index: 1;
    padding-top: 50px;
    padding-bottom: 50px;
}

#about_us_banner_section h1,
#contact_banner_section h1,
#gallery_section h1,
#testimonial_banner_section h1,
#banner_section_default h1 {
    max-width: 800px;
    color: var(--white);
    font-size: 55px;
}

#about_us_banner_section h2,
#contact_banner_section h2,
#gallery_section .banner_sub_title,
#banner_section_default h2 {
    max-width: 700px;
    margin-top: 18px;
    color: rgba(255,255,255,0.82);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.65;
}

/* Blog archive banner is image + content */
#blog_banner_section,
#single_blog_banner {
    min-height: 560px;
    padding-top: calc(var(--header-topbar-height) + var(--header-nav-height));
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #eef8fe 0%, #f8fcff 58%, #f1fae9 100%);
    overflow: hidden;
}

#blog_banner_section::before,
#single_blog_banner::before {
    content: "+";
    position: absolute;
    left: -50px;
    bottom: -120px;
    color: rgba(49,143,208,0.06);
    font-size: 340px;
    font-weight: 700;
    line-height: 1;
}

#blog_banner_section .container,
#single_blog_banner .blog_single_banner_wrapper {
    position: relative;
    z-index: 1;
    min-height: 430px;
    gap: 60px;
    padding-top: 55px;
    padding-bottom: 55px;
}

#blog_banner_section .container > div,
#single_blog_banner .container > div:first-child {
    width: calc(55% - 30px);
}

#blog_banner_section h1,
#single_blog_banner h1 {
    font-size: 52px;
    letter-spacing: -0.7px;
}

#blog_banner_section p {
    max-width: 600px;
    margin-top: 18px;
    font-size: 17px;
}

#blog_banner_section #banner_main_image,
#single_blog_banner #banner_main_image {
    width: calc(45% - 30px);
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
#about_us_section_1 {
    background: var(--white);
}

#about_us_section_1 .section_1_main,
#about_us_section_2 .upper_section_2,
#about_us_section_3 .section_3_box {
    display: flex;
    align-items: center;
    gap: 70px;
}

#about_us_section_1 .left_box,
#about_us_section_1 .right_box,
#about_us_section_2 .left_box,
#about_us_section_2 .right_box,
#about_us_section_3 .left_box,
#about_us_section_3 .right_box {
    width: calc(50% - 35px);
}

#about_us_section_1 .left_box h3,
#about_us_section_2 .right_box h3,
#about_us_section_3 .left_box h6 {
    margin-bottom: 20px;
    font-size: 43px;
    letter-spacing: -0.6px;
}

#about_us_section_3 .left_box h6 span {
    display: block;
    margin-top: 8px;
    color: var(--primary-color);
    font-size: 17px;
    line-height: 1.5;
}

#about_us_section_1 .left_box p,
#about_us_section_2 .right_box p,
#about_us_section_3 .left_box p {
    font-size: 16px;
    line-height: 1.75;
}

#about_us_section_1 .right_box img,
#about_us_section_2 .left_box img,
#about_us_section_3 .right_box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

#about_us_section_2 {
    background: var(--off-white);
}

#about_us_section_2 .right_box ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

#about_us_section_2 .right_box li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #34566d;
    font-size: 15px;
}

#about_us_section_2 .right_box li img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    object-fit: contain;
}

#about_us_section_2 .cta_box {
    justify-content: center;
    margin-top: 48px;
}

#about_us_section_3 {
    background: var(--white);
}

#about_us_section_3 .left_box > a {
    margin-top: 20px;
}

/* =========================================================
   CONTACT PAGE + FAQ
   ========================================================= */
#contact_section_1 {
    padding: 100px 0 0;
    background: var(--white);
}

#contact_section_1 .wrapper {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

#contact_section_1 .content_wrapper {
    width: 38%;
    padding: 38px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--primary-deep), var(--primary-dark));
    box-shadow: var(--shadow-md);
}

#contact_section_1 .content_wrapper::before {
    content: "Get in touch";
    display: block;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

#contact_section_1 .content_wrapper a,
#contact_section_1 .content_wrapper .address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 14px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

#contact_section_1 .content_wrapper a:hover {
    background: rgba(255,255,255,0.13);
    color: var(--secondary-color);
}

#contact_section_1 .form_wrapper {
    width: 62%;
    padding: 38px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

#contact_section_1 .google_map {
    width: min(100% - 48px, 1240px);
    height: 430px;
    margin: 52px auto 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

#faq-section {
    background: var(--off-white);
}

#faq-section .faq-sec {
    max-width: 860px;
    margin: 42px auto 0;
}

.faq-wrap {
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.faq-head {
    position: relative;
    padding: 19px 58px 19px 22px;
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.faq-head::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 19px;
    transform: translateY(-50%);
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-head.active::after {
    content: "−";
    background: var(--primary-color);
    color: var(--white);
}

.faq-content {
    display: none;
    padding: 0 22px 20px;
}

.faq-content p {
    margin: 0;
    color: var(--description-color);
    font-size: 15px;
    line-height: 1.7;
}

#faq-section > .container > .cta_main {
    display: flex;
    width: max-content;
    margin: 30px auto 0;
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */
#gallery_images {
    background: var(--white);
}

#gallery_images .gallery-images-main > h6 {
    max-width: 700px;
}

#gallery_images .foogallery,
#gallery_images .fg-gallery,
#gallery_images .gallery {
    margin-top: 40px !important;
}

#gallery_images .fg-item,
#gallery_images .foogallery .fg-item-inner,
#gallery_images .gallery-item {
    border-radius: 15px !important;
    overflow: hidden;
}

#gallery_images img {
    border-radius: 15px;
}

/* =========================================================
   TESTIMONIAL PAGE
   ========================================================= */
#testimonial_main_section {
    background: var(--off-white);
}

#testimonial_main_section .review-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 44px;
}

#testimonial_main_section .box_wrap {
    width: calc(50% - 10px);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

#testimonial_main_section .box_wrap .top > img {
    width: 104px;
    height: auto;
    margin-bottom: 18px;
}

#testimonial_main_section .box_wrap .top p {
    margin: 0;
    color: #405b71;
    font-size: 15px;
    line-height: 1.75;
}

#testimonial_main_section .box_wrap .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
}

#testimonial_main_section .box_wrap .bottom h5 {
    font-size: 16px;
}

#testimonial_main_section .box_wrap .bottom img {
    width: 76px;
    height: auto;
}

/* =========================================================
   DEFAULT CONTENT / LEGAL PAGES
   ========================================================= */
#main_section_default {
    padding: 90px 0;
    background: var(--white);
}

#main_section_default .content {
    max-width: 900px;
    margin: 0 auto;
}

#main_section_default .content + .content {
    margin-top: 36px;
}

#main_section_default h2,
#main_section_default h3,
#main_section_default h4 {
    margin: 28px 0 13px;
}

#main_section_default p,
#main_section_default li {
    color: var(--description-color);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   REPORTS
   ========================================================= */
.reports_download_section {
    min-height: 560px;
    background: var(--off-white);
}

.reports_download_wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.report-search-form {
    display: flex;
    gap: 12px;
}

.report-search-form input {
    flex: 1;
    min-width: 0;
    min-height: 52px;
    padding: 12px 17px;
    outline: 0;
    border: 1px solid #cfe0eb;
    border-radius: 999px;
    background: var(--off-white);
    color: var(--heading-color);
}

.report-search-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(49,143,208,0.1);
}

.reports_download_wrapper > h3 {
    margin: 30px 0 18px;
    font-size: 25px;
}

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

.report-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-soft);
}

.report-list .cta_main {
    min-height: 40px;
    padding: 8px 15px;
    font-size: 13px;
}

.error_message {
    margin: 25px 0 0;
    padding: 13px 15px;
    border-radius: 10px;
    background: var(--danger-soft);
    color: #a74343;
    font-size: 14px;
}

/* =========================================================
   SINGLE BLOG
   ========================================================= */
#single_blog_banner .top h6 {
    display: inline-flex;
    margin-bottom: 15px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#single_blog_banner .author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

#single_blog_banner .author .profile-pic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

#single_blog_banner .author h5 {
    color: var(--description-color);
    font-size: 13px;
    font-weight: 600;
}

#main_content_section {
    background: var(--white);
}

#main_content_section .inner_box {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

#main_content_section .content_box {
    width: calc(68% - 25px);
}

#main_content_section .right_wrapper {
    position: sticky;
    top: 155px;
    width: calc(32% - 25px);
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--off-white);
}

#main_content_section .right_wrapper > h5 {
    font-size: 24px;
}

#main_content_section .right_wrapper > h6 {
    margin: 9px 0 20px;
    color: var(--description-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

#main_content_section .content_box h2,
#main_content_section .content_box h3,
#main_content_section .content_box h4 {
    margin: 32px 0 14px;
    color: var(--heading-color);
}

#main_content_section .content_box h2 { font-size: 32px; }
#main_content_section .content_box h3 { font-size: 27px; }
#main_content_section .content_box h4 { font-size: 22px; }

#main_content_section .content_box p,
#main_content_section .content_box li {
    color: #405b71;
    font-size: 16px;
    line-height: 1.82;
}

#main_content_section .content_box img {
    margin: 28px 0;
    border-radius: var(--radius-md);
}

.summary_box {
    margin-top: 35px;
    padding: 26px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--secondary-soft);
}

.summary_box #summary_title {
    margin-bottom: 10px;
    color: var(--primary-deep);
    font-size: 21px;
}

.author_box {
    margin-top: 38px;
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--off-white);
}

.author_box > h6 {
    margin-bottom: 17px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.author_box .profile-pic {
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
    border-radius: 50%;
    object-fit: cover;
}

.author_box h4 {
    margin: 0 0 8px !important;
    font-size: 19px !important;
}

/* =========================================================
   THANK YOU + 404
   ========================================================= */
#thank_you_section,
#not_found {
    min-height: 100vh;
    padding-top: calc(var(--header-topbar-height) + var(--header-nav-height) + 70px);
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-soft), var(--white), var(--secondary-soft));
}

#thank_you_section .inner-box,
#not_found .box {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

#not_found h2 {
    color: var(--primary-color);
    font-size: 110px;
    line-height: 1;
}

#not_found h4 {
    margin-top: 13px;
    font-size: 30px;
}

#not_found p {
    max-width: 560px;
    margin: 15px auto 26px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    position: relative;
    background: #062c4d;
    color: rgba(255,255,255,0.72);
    overflow: hidden;
}

.site-footer::before {
    content: "+";
    position: absolute;
    right: -20px;
    bottom: 0;
    color: rgba(255,255,255,0.025);
    font-size: 380px;
    font-weight: 700;
    line-height: 0.7;
    pointer-events: none;
}

.footer-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color) 0 35%, var(--primary-color) 35% 100%);
}

.upper_footer {
    position: relative;
    z-index: 1;
    padding: 74px 0 58px;
}

.footer_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}

.footer-brand {
    width: 34%;
}

.footer-brand__logo {
    display: inline-flex;
    padding: 10px 13px;
    border-radius: 14px;
    background: var(--white);
}

.footer_logo {
    width: 215px;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

.footer-description {
    max-width: 390px;
    margin: 22px 0 0;
    color: rgba(255,255,255,0.67);
    font-size: 14px;
    line-height: 1.75;
}

.social_links {
    display: flex;
    gap: 9px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.social_links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
}

.social_links a:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.social_links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.links_box {
    width: 66%;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-contact {
    width: 44%;
}

.links_box .footer-links-nav {
    width: 56%;
    display: flex;
    gap: 50px;
}

.footer-column {
    min-width: 0;
}

.footer-column .title {
    margin-bottom: 19px;
    color: var(--white);
    font-size: 16px;
}

.footer-contact__item,
.footer-contact #address {
    display: block;
    margin: 0 0 10px;
    color: rgba(255,255,255,0.67);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}

.footer-contact__link:hover {
    color: var(--secondary-color);
}

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

.footer-column li + li {
    margin-top: 9px;
}

.footer-column li a {
    color: rgba(255,255,255,0.67);
    font-size: 13px;
}

.footer-column li a:hover {
    color: var(--secondary-color);
    padding-left: 3px;
}

.lower_footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.09);
}

.lower_footer_wrapper {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lower_footer p,
.lower_footer h6,
.lower_footer a {
    margin: 0;
    color: rgba(255,255,255,0.52);
    font-size: 12px;
    font-weight: 500;
}

.lower_footer a:hover { color: var(--secondary-color); }

#progress {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

#progress:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

#progress-value {
    font-size: 20px;
    line-height: 1;
}

/* ---------- Slick cleanup ---------- */
.slick-slider { user-select: none; }
.slick-slide { outline: none; }
.slick-dotted.slick-slider { margin-bottom: 0; }

/* ---------- Soft reveal animation (progressive enhancement) ---------- */
.aamina-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.aamina-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .aamina-reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1180px) {
    :root { --header-nav-height: 80px; }

    .row-wrap .logo-wrap a img,
    .header_logo {
        width: 190px;
        height: 62px;
    }

    .nav-list > li > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 13px;
    }

    .header-appointment-btn {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 13px;
    }

    #home_banner_section h1 { font-size: 56px; }

    #home_section_3 .card,
    #home_section_4 .card,
    .blog_card {
        width: calc(33.333% - 15px);
    }

    #home_section_7 .content_wrapper { padding: 50px; }

    .footer_wrapper { gap: 45px; }
    .links_box { gap: 35px; }
    .links_box .footer-links-nav { gap: 30px; }
}

@media (max-width: 991px) {
    :root {
        --header-topbar-height: 36px;
        --header-nav-height: 76px;
    }

    h1 { font-size: 48px; }
    h2, h3 { font-size: 36px; }

    .hospital-topbar__links .hospital-topbar__email { display: none; }

    .hamburger { display: flex; }

    .nav-wrap {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10000;
        width: min(84vw, 380px);
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 20px;
        padding: 120px 28px 30px;
        overflow-y: auto;
        background: var(--white);
        box-shadow: -18px 0 50px rgba(5,31,54,0.14);
        transform: translateX(104%);
        transition: transform 0.32s ease;
    }

    .nav-wrap.is-open { transform: translateX(0); }

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

    .nav-list > li > a {
        width: 100%;
        min-height: 46px;
        padding: 11px 13px;
        color: var(--heading-color) !important;
        border-radius: 10px;
        font-size: 15px;
    }

    .nav-list > .current-menu-item > a::after,
    .nav-list > .current-menu-parent > a::after,
    .nav-list > .current_page_parent > a::after {
        left: auto;
        right: 13px;
        bottom: 50%;
        transform: translateY(50%);
    }

    .nav-list .sub-menu,
    .nav-list .sub-menu .sub-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 4px 0 8px;
        padding: 5px 0 5px 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block;
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--secondary-color);
        border-radius: 0;
    }

    .header-appointment-btn {
        width: 100%;
        min-height: 48px;
    }

    #home_banner_section .banner_slide {
        min-height: 680px;
    }

    #home_banner_section h1 {
        font-size: 50px;
    }

    #home_banner_section h2 { font-size: 18px; }

    #home_section_1,
    #home_section_2,
    #home_section_3,
    #home_section_4,
    #home_section_5,
    #home_section_6,
    #home_blogs_section,
    #home_section_8,
    #home_quote_form,
    #blogs_main_section,
    #testimonial_main_section,
    #gallery_images,
    #faq-section,
    #about_us_section_1,
    #about_us_section_2,
    #about_us_section_3,
    #main_content_section,
    #related_blogs_section,
    .reports_download_section {
        padding: 80px 0;
    }

    #home_section_3 .card,
    #home_section_4 .card,
    .blog_card {
        width: calc(50% - 11px);
    }

    #home_section_2 .wrapper,
    #about_us_section_1 .section_1_main,
    #about_us_section_2 .upper_section_2,
    #about_us_section_3 .section_3_box {
        gap: 42px;
    }

    #home_section_2 .wrapper > img { height: 480px; }
    #home_section_2 .content_wrapper h3 { font-size: 38px; }

    #stats_section .stats_wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    #stats_section .content,
    #stats_section .stats_box {
        width: 100%;
    }

    #stats_section .content { text-align: center; }
    #stats_section .content h3 { max-width: 650px; margin: 0 auto; }
    #stats_section .box:first-child { border-left: 0; }

    #home_section_4 > .container > .wrapper {
        align-items: flex-start;
        flex-direction: column;
    }

    #home_section_6 .cards_wrapper {
        flex-wrap: wrap;
        row-gap: 55px;
    }

    #home_section_6 .cards_wrapper::before { display: none; }
    #home_section_6 .card { flex: 0 0 calc(50% - 9px); }

    #home_section_7 .content_wrapper { padding: 42px; }
    #home_section_7 .content_wrapper h3 { font-size: 36px; }

    #home_quote_form .left_wrapper { width: 38%; }
    #home_quote_form .right_wrapper { width: 62%; padding: 42px 38px; }

    #about_us_section_1 .right_box img,
    #about_us_section_2 .left_box img,
    #about_us_section_3 .right_box img {
        height: 440px;
    }

    #contact_section_1 .wrapper { gap: 22px; }
    #contact_section_1 .content_wrapper { width: 40%; padding: 28px; }
    #contact_section_1 .form_wrapper { width: 60%; padding: 28px; }

    #main_content_section .inner_box { gap: 30px; }
    #main_content_section .content_box { width: calc(65% - 15px); }
    #main_content_section .right_wrapper { width: calc(35% - 15px); padding: 22px; }

    .footer_wrapper {
        flex-direction: column;
        gap: 45px;
    }

    .footer-brand,
    .links_box { width: 100%; }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 767px) {
    :root {
        --header-topbar-height: 34px;
        --header-nav-height: 72px;
        --radius-xl: 26px;
        --radius-lg: 22px;
    }

    body { font-size: 15px; }

    h1 { font-size: 39px; }
    h2, h3 { font-size: 32px; }

    .hospital-topbar__inner { justify-content: center; }
    .hospital-notice { max-width: 100%; }
    .hospital-notice p,
    .header .hospital-notice p {
        justify-content: center;
        text-align: center;
        font-size: 11px;
    }
    .hospital-topbar__links { display: none; }

    .row-wrap .logo-wrap a img,
    .header_logo {
        width: 170px;
        height: 58px;
    }

    .nav-wrap { padding-top: 108px; }

    #home_banner_section .banner_slide {
        min-height: 640px;
        background-position: 62% center !important;
    }

    #home_banner_section .banner_slide::before {
        background: linear-gradient(90deg, rgba(5,45,78,0.94) 0%, rgba(6,55,94,0.84) 58%, rgba(6,55,94,0.55) 100%);
    }

    #home_banner_section .wrapper { padding: 72px 0 80px; }
    #home_banner_section h1 { font-size: 43px; letter-spacing: -0.7px; }
    #home_banner_section h2 { font-size: 16px; line-height: 1.6; }
    #home_banner_section .content_wrapper > p { font-size: 12px; }

    #home_banner_section .slick-dots {
        width: min(100% - 30px, 1240px);
        bottom: 24px;
    }

    #home_section_1,
    #home_section_2,
    #home_section_3,
    #home_section_4,
    #home_section_5,
    #home_section_6,
    #home_blogs_section,
    #home_section_8,
    #home_quote_form,
    #blogs_main_section,
    #testimonial_main_section,
    #gallery_images,
    #faq-section,
    #about_us_section_1,
    #about_us_section_2,
    #about_us_section_3,
    #main_content_section,
    #related_blogs_section,
    .reports_download_section {
        padding: 65px 0;
    }

    #home_section_3 > .container > h3,
    #home_section_5 > .container > h3,
    #home_section_6 > .container > h3,
    #home_blogs_section > .container > h3,
    #home_section_8 h3,
    #testimonial_main_section h2,
    #related_blogs_section > .container > h3,
    #gallery_images h2,
    #faq-section > .container > h3 {
        font-size: 32px;
    }

    #home_section_3 .wrapper,
    #home_blogs_section .blogs_wrapper,
    #blogs_main_section .blogs_wrapper,
    #related_blogs_section .blogs_wrapper_2 {
        margin-top: 34px;
    }

    #home_section_3 .card,
    #home_section_4 .card,
    .blog_card {
        width: 100%;
    }

    #home_section_3 .card { min-height: 0; }
    #home_section_3 .card > img { height: 230px; }

    #home_section_2 .wrapper,
    #about_us_section_1 .section_1_main,
    #about_us_section_2 .upper_section_2,
    #about_us_section_3 .section_3_box {
        flex-direction: column;
        gap: 34px;
    }

    #home_section_2 .wrapper > img,
    #home_section_2 .content_wrapper,
    #about_us_section_1 .left_box,
    #about_us_section_1 .right_box,
    #about_us_section_2 .left_box,
    #about_us_section_2 .right_box,
    #about_us_section_3 .left_box,
    #about_us_section_3 .right_box {
        width: 100%;
    }

    #home_section_2 .wrapper > img {
        height: 410px;
        order: 2;
    }
    #home_section_2 .content_wrapper { order: 1; }
    #home_section_2 .content_wrapper h3 { font-size: 34px; }

    #stats_section { padding: 46px 0; }
    #stats_section .stats_box { flex-wrap: wrap; }
    #stats_section .box {
        flex: 0 0 50%;
        padding: 18px;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.14);
        text-align: center;
    }
    #stats_section .box:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.14); }
    #stats_section .box h5 { font-size: 34px; }

    #home_section_4 .image_wrapper img { height: 380px; }

    #home_section_6 .cards_wrapper { margin-top: 60px; }
    #home_section_6 .card { flex: 0 0 100%; }

    #home_section_5 .slick-slide { margin: 0 5px; }
    #home_section_5 .card { padding: 27px; }

    #home_section_7 > .container { padding-top: 65px; padding-bottom: 65px; }
    #home_section_7 .wrapper { flex-direction: column; }
    #home_section_7 .content_wrapper,
    #home_section_7 .right_wrapper { width: 100%; }
    #home_section_7 .content_wrapper { padding: 38px 28px; }
    #home_section_7 .content_wrapper h3 { font-size: 33px; }
    #home_section_7 .right_wrapper,
    #home_section_7 .right_wrapper img { min-height: 330px; height: 330px; }
    #home_section_7 > iframe {
        width: min(100% - 30px, 1240px);
        height: 330px;
        margin-top: -20px;
        border-width: 5px !important;
    }

    #home_section_8 .home_gallery_slider img { height: 250px; }

    #home_quote_form .wrapper { flex-direction: column; }
    #home_quote_form .left_wrapper,
    #home_quote_form .right_wrapper { width: 100%; }
    #home_quote_form .left_wrapper,
    #home_quote_form .left_wrapper img { min-height: 320px; height: 320px; }
    #home_quote_form .right_wrapper { padding: 34px 24px; }
    #home_quote_form .right_wrapper > h3 { font-size: 31px; }

    #about_us_banner_section,
    #contact_banner_section,
    #gallery_section,
    #testimonial_banner_section,
    #banner_section_default {
        min-height: 420px;
    }

    #about_us_banner_section h1,
    #contact_banner_section h1,
    #gallery_section h1,
    #testimonial_banner_section h1,
    #banner_section_default h1 {
        font-size: 42px;
    }

    #about_us_banner_section h2,
    #contact_banner_section h2,
    #gallery_section .banner_sub_title,
    #banner_section_default h2 {
        font-size: 16px;
    }

    #about_us_section_1 .left_box h3,
    #about_us_section_2 .right_box h3,
    #about_us_section_3 .left_box h6 {
        font-size: 34px;
    }

    #about_us_section_1 .right_box img,
    #about_us_section_2 .left_box img,
    #about_us_section_3 .right_box img {
        height: 390px;
    }

    #about_us_section_3 .right_box { order: -1; }

    #contact_section_1 { padding-top: 65px; }
    #contact_section_1 .wrapper { flex-direction: column; }
    #contact_section_1 .content_wrapper,
    #contact_section_1 .form_wrapper { width: 100%; }
    #contact_section_1 .google_map {
        width: min(100% - 30px, 1240px);
        height: 330px;
        margin-top: 35px;
    }

    #testimonial_main_section .box_wrap { width: 100%; }

    #blog_banner_section,
    #single_blog_banner {
        min-height: 0;
    }

    #blog_banner_section .container,
    #single_blog_banner .blog_single_banner_wrapper {
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    #blog_banner_section .container > div,
    #single_blog_banner .container > div:first-child,
    #blog_banner_section #banner_main_image,
    #single_blog_banner #banner_main_image {
        width: 100%;
    }

    #blog_banner_section h1,
    #single_blog_banner h1 { font-size: 40px; }

    #blog_banner_section #banner_main_image,
    #single_blog_banner #banner_main_image { height: 300px; }

    #main_content_section .inner_box { flex-direction: column; }
    #main_content_section .content_box,
    #main_content_section .right_wrapper {
        width: 100%;
    }
    #main_content_section .right_wrapper { position: static; }

    .report-search-form { flex-direction: column; }
    .reports_download_wrapper { padding: 28px 22px; }

    .footer_wrapper { gap: 38px; }
    .links_box { flex-direction: column; gap: 35px; }
    .footer-contact,
    .links_box .footer-links-nav { width: 100%; }
    .links_box .footer-links-nav { gap: 35px; }
    .upper_footer { padding: 58px 0 42px; }

    .lower_footer_wrapper {
        padding: 18px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .row-wrap .logo-wrap a img,
    .header_logo {
        width: 150px;
        height: 54px;
    }

    #home_banner_section .banner_slide { min-height: 610px; }
    #home_banner_section h1 { font-size: 37px; }
    #home_banner_section h2 { font-size: 15px; }

    .cta_main,
    .cta_2,
    .cta_4,
    .cta_5 {
        width: 100%;
    }

    #stats_section .content h3 { font-size: 27px; }
    #stats_section .box { padding: 16px 10px; }
    #stats_section .box h5 { font-size: 30px; }

    #home_section_4 .image_wrapper img { height: 330px; }

    #about_us_banner_section h1,
    #contact_banner_section h1,
    #gallery_section h1,
    #testimonial_banner_section h1,
    #banner_section_default h1,
    #blog_banner_section h1,
    #single_blog_banner h1 {
        font-size: 36px;
    }

    #contact_section_1 .content_wrapper,
    #contact_section_1 .form_wrapper {
        padding: 24px 20px;
    }

    #testimonial_main_section .box_wrap { padding: 23px; }

    .links_box .footer-links-nav { flex-direction: column; }
    .footer_logo { width: 190px; }

    #not_found h2 { font-size: 82px; }
    #not_found .box { padding: 38px 22px; }
}

/* Interaction helpers generated by the mobile-nav script */
#progress.show { display: flex; }

.plusminus { display: none; }

@media (max-width: 991px) {
    .nav-list .menu-item-has-children {
        position: relative;
    }

    .nav-list .menu-item-has-children > .plusminus {
        position: absolute;
        right: 5px;
        top: 5px;
        z-index: 2;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        border-radius: 9px;
        background: transparent;
        cursor: pointer;
    }

    .nav-list .menu-item-has-children > .plusminus::before,
    .nav-list .menu-item-has-children > .plusminus::after {
        content: "";
        position: absolute;
        width: 13px;
        height: 2px;
        border-radius: 4px;
        background: var(--primary-dark);
        transition: transform var(--transition);
    }

    .nav-list .menu-item-has-children > .plusminus::after {
        transform: rotate(90deg);
    }

    .nav-list .menu-item-has-children > .plusminus.active::after {
        transform: rotate(0);
    }

    .nav-list .menu-item-has-children > a {
        padding-right: 48px;
    }

    .nav-list .menu-item-has-children > .sub-menu,
    .nav-list .menu-item-has-children > .sub-menu .sub-menu {
        display: none;
    }
}
