/* Base Styles & Variables */
:root {
    --primary-color: #592d61; /* Deep Purple */
    --secondary-color: #D78A69; /* Peach/Orange */
    --secondary-hover: #C57B5A;
    --text-dark: #333;
    --text-light: #555;
    --bg-light: #F9F9F9;
    --white: #FFF;
    /* Icon Colors */
    --icon-yellow: #F4C430;
    --icon-green: #8CC63F;
    --icon-teal: #00A99D;
    --icon-pink: #ED1E79;
    /* Typography */
    --font-heading: 'EB Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    /* Layout */
    --container-width: 1340px;
    --transition: all 0.3s ease;
    --bold: 700;
    --semibold: 600;
    --medium: 500;
    --regular: 400;
    --light: 300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}
@media (min-width: 550px) {
    h1 {
        font-size: 45px;
    }
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 20px;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding-left: 1.5em; /* adjust as needed */
}

.insideContent ul li::before {
    content: "•";
    color: #593061;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: -5px;
}

.accordion-section-content ul li::before {
    color: #fff;
}
ol {
    list-style: none;
    padding-left: 1.1em;
    counter-reset: my-counter;
}

ol li {
    counter-increment: my-counter;
}

ol li::before {
    content: counter(my-counter) ".";
    color: #593061;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.accordion-section-content ol li::before {
    color: #fff;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
}
.container.full-container {
    width: 100% !important;
    max-width: 100% !important;
}
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: var(--medium);
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}
.bg-light {
    background: var(--white) !important;
}
.header-actions .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}
.btn-donate {
    padding-left: 15px !important;
}
.btn-donate span {
    background: url(/images/icon-donate.png) no-repeat left;
    display: inline-block;
    padding-left: 25px;
}
.header-actions .btn-primary:hover {
    background: transparent !important;
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none;
}
.header-actions .btn-primary.btn-donate:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    opacity: 0.9;
}
.header-actions .btn-primary:hover i {
    color: var(--primary-color) !important;
}

.btn-secondary {
    background: #C57F5D;
    background: linear-gradient(90deg, rgba(197, 127, 93, 1) 0%,rgba(251, 202, 166, 1) 51%,rgba(222, 147, 116, 255) 99%);
    color: var(--primary-color);
    border: none;
}

.btn-secondary:hover {
    background: #C57F5D;
    background: linear-gradient(45deg, rgba(197, 127, 93, 1) 0%,rgba(251, 202, 166, 1) 51%,rgba(222, 147, 116, 255) 99%);
    box-shadow: 0 4px 12px rgba(215, 138, 105, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color) !important;
}

.btn-outline:hover {
    border-color: var(--text-dark);
    background-color: #f4f0f5;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-line {
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.badge-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-color);
    padding: 4px 8px;
    border: 1px solid var(--primary-color);
}

/* --- Header Section --- */
.top-bar {
    background: #f4f0f5;
    /*border-bottom: 1px solid #EAEAEA;*/
    padding: 2px 0 8px;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: end !important;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.empty-left {
    display: none;
}


.top-bar-right a {
    border-radius: 8px;
    cursor: pointer;
}
.top-bar-right a:hover, .top-bar-right:hover, .eBMAEp:hover {
    text-decoration: none !important; 
}
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 18px;
}
.eBMAEp {
    background: url(/Images/lang-icon.png) no-repeat left;
    padding-left: 25px;
}
.social-links a:hover {
    color: var(--secondary-color);
}
.social-links i {
    font-size: 30px !important;
}
.divider {
    width: 1px;
    height: 14px;
    background-color: var(--primary-color);
}

.top-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: var(--medium);
}

.top-link:hover {
    color: var(--primary-color);
}

.main-header {
    background-color: #f4f0f5;
    padding: 8px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:5px;
}

.header-inner::after {
    content: none;
}

.logo img {
    height: 100px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: var(--medium);
    font-size: 20px;
    color: var(--primary-color);
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all .25s ease;
}

.main-nav a:hover {
    border: 1px solid var(--primary-color);
    background: transparent;
    text-decoration: none;
}

.header-actions .btn-primary::after {
    content: none !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions .btn-primary {
    background: var(--primary-color) !important;
    text-decoration: none !important;
}

 .header-actions .btn-primary i {
     color: var(--white) !important;
 }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}
@media (min-width: 100px) {
    .container {
        width: 98%;
        padding: 0;
    }
}
/* --- Hero Section --- */
.hero {
    background-color: var(--white);
    overflow: hidden;
}

.hero .hero-inner {
    align-items: center;
    background: var(--white);
    width: 100% !important;
    padding-top: 30px !important;
}

.hero .hero-inner .hero-content h1 {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: #222;
}

.hero .hero-inner .hero-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero .hero-inner .hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 32px;
}
.hero-buttons a {
    position: relative;
}
.hero-buttons .fa-location-dot {
        background: url(/images/icon-location.png) no-repeat !important;
        width: 23px;
        height: 23px;
    }
    .hero-buttons .fa-location-dot:before {
        display: none;
    }
    .hero-buttons a:hover .fa-location-dot {
        background: url(/images/icon-location-light.png) no-repeat !important;
    } 
.hero-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.hero-links p {
    font-weight: var(--medium);
}

.dot {
    font-weight: var(--bold);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* --- Quick Links Bar --- */
.quick-links {
    background-color: #f4f0f5;
    padding: 0;
    position: relative;
    z-index: 10;
}

.quick-links > .container {
    width: 100% !important;
}

.quick-links-inner {
    display: flex;
    gap: 20px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.1);
    font-weight: var(--medium);
    font-size: 18px;
    background: var(--primary-color);
    border-radius: 4px;
}

.quick-link:last-child {
    border-right: none;
}

.quick-link:hover {
    background-color: rgba(255,255,255,0.1);
}
.ql-icon {
    font-size: 21px;
    display: flex;
}

/* --- About Section --- */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about > .container {
    width: 100%;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 30px;
}

.about-image {
    border-radius: 8px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 5px;
}
.about-image::after {
    content: '';
    background: var(--primary-color);
    width: 150px;
    height: 150px;
    position: absolute;
    right: -30px;
    bottom: -30px;
    z-index: 1;
    border-radius: 5px;
    border: 5px solid var(--secondary-color);
}
/* --- Areas of Care --- */
.areas-of-care {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
}

.light-text h2, .light-text p {
    color: var(--white);
}

.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    line-height: 29px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
/* ── Care Card base ── */
/* ── Care Card base ── */
.care-card {
    background-color: var(--white);
    border-radius: 4px !important;
    padding: 30px 20px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

    .care-card:hover {
        transform: translateY(-5px);
    }

    /* ── Full card borders ── */
    .care-card:has(.icon-mh) {
        border: 3px solid transparent;
        background: url(/images/mh-container.png) no-repeat !important;
        background-size: 100% 100% !important;
    }

    .care-card:has(.icon-rc) {
        border-color: var(--icon-green);
    }

    .care-card:has(.icon-cy) {
        border-color: var(--icon-pink);
    }

    .care-card:has(.icon-cm) {
        /* border-top: 3px solid var(--icon-teal);
        border-left: 3px solid var(--icon-teal);
        border-bottom: 3px solid var(--icon-teal);
        border-right: 3px solid var(--icon-teal); */
        border: 3px solid transparent;
        background: url(/images/cm-container.png) no-repeat !important;
        background-size: 100% 100% !important;
    }

    /* ── Inner wrapper ── */
    .care-card > div {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

/* ── Top row: accent line LEFT, icons RIGHT ── */
.card-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /*margin-bottom: 20px;*/
    position: static; /* remove absolute */
}

    /* Accent line as pseudo on card-icons */
    .card-icons::before {
        content: "";
        display: block;
        width: 36px;
        height: 3px;
        flex-shrink: 0;
    }

.care-card:has(.icon-mh) .card-icons::before {
    background-color: var(--icon-yellow);
}

.care-card:has(.icon-rc) .card-icons::before {
    background-color: var(--icon-green);
}

.care-card:has(.icon-cm) .card-icons::before {
    background-color: var(--icon-teal);
}

.care-card:has(.icon-cy) .card-icons::before {
    background-color: var(--icon-pink);
}

/* Icons group pushed to the right */
.card-icons-group {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

/* ── Hexagonal icons ── */
.care-icon {
    width: 43px;
    height: 50px;
    border-radius: 0 !important;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--medium);
    font-size: 0 !important;
    font-family: var(--font-heading);
    font-weight: var(--bold);
    letter-spacing: -3;
}

.icon-mh {
    /* background-color: var(--icon-yellow);
    color: var(--text-dark); */
    background: url(/images/icon-mh.png) no-repeat;
}

.icon-ad {
    background-color: var(--icon-yellow);
    color: var(--text-dark);
    background: url(/images/icon-ad.png) no-repeat;
}

.icon-rc {
    background-color: var(--icon-green);
    color: var(--white);
    background: url(/images/icon-re.png) no-repeat;
}

.icon-cm {
    background-color: var(--icon-teal);
    color: var(--white);
    background: url(/images/icon-cm.png) no-repeat;
}

.icon-pc {
    background-color: var(--icon-teal);
    color: var(--white);
    background: url(/images/icon-pa.png) no-repeat;
}

.icon-cy {
    background-color: var(--icon-pink);
    color: var(--white);
    background: url(/images/icon-cy.png) no-repeat;
}

/* ── Remove old ::before on care-card ── */
.care-card::before {
    content: none;
}

/* ── Typography ── */
.care-card h3 {
    font-size: 27px;
    margin-bottom: 15px;
    min-height: 65px;
    padding-right: 0;
}

.care-card p {
    font-size: 18px;
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 23px;
}

/* ── Card link ── */
.card-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: var(--semibold);
    font-size: 18px;
    color: var(--primary-color);
}

.card-link:hover {
    color: var(--secondary-color);
}

/* --- Facilities --- */
.facilities {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-nav:hover {
    background-color: var(--secondary-color);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
    flex-grow: 1;
}

.facility-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.10);
}

.facility-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.facility-info {
    padding: 20px;
}

.facility-info h3 {
    font-size: 17px;
    margin-bottom: 10px;
    /*min-height: 45px;*/
}

.campus {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: var(--semibold);
}

.address {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.help-finding-banner {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px 75px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.10);
}

.extra-corner {
    position: relative;
}

.extra-corner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 30px;
    border-radius: 6px 0 0 0;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
}
.extra-corner::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 30px;
    border-radius: 0 0 6px 0;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.help-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.help-icon i{
    color: var(--white);
}

.help-text {
flex-grow: 1;
margin-left: 20px;
}

.help-text h3 {
    font-size: 27px;
    margin-bottom: 5px;
}

.help-text p {
    color: var(--text-light);
    font-size: 18px;
}

/* --- Blog Preview --- */
.blog-preview {
    padding: 80px 0;
}

.blog-header {
    margin-bottom: 30px;
}

.blog-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.blog-header-inner h2 {
    font-size: 36px;
    margin-bottom: 0 !important;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: var(--medium);
}

.view-all:hover {
    color: var(--primary-color);
}

.blog-card {
    display: flex;
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.10);
    border: 1px solid #EAEAEA;
    border-radius: 6px 0 0 0;
}

.blog-card.extra-corner::after, 
.blog-card.extra-corner::before {
    z-index: 1;
}

.blog-image {
    width: 38%;
    height: 325px;
    border-radius: 6px 0 0 0;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px 0 0 0;
    }

.blog-content {
    width: 62%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    font-size: 14px;
    line-height: 1.33;
    padding: 4px 10px;
    font-weight: 400;
}

.tag-purple {
    background-color: var(--primary-color);
    color: var(--white);
}

.tag-dark {
    background-color: var(--text-dark);
    color: var(--white);
}

.blog-date {
    font-size: 14px;
    color: var(--text-light);
}

.blog-content h3 {
    font-size: 20px;
    line-height: 1.33;
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

div.blog-single-item-img-wrapper img {
    max-width: 100%;
    height: auto;
}
/* --- Footer --- */
.main-footer {
    background-color: #231f20;
    color: #EAEAEA;
    padding-top: 10px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-logo {
    flex-shrink: 0;
    width: 250px;
}
.footer-logo img {
    max-width: 100%;
    height: auto;
}
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    flex-grow: 1;
}

.footer-col h4 {
    color: var(--white);
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-heading);
    font-weight: var(--semibold);
}

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

.footer-col a {
    color: var(--white);
    font-size: 18px;
}

.footer-col a:hover {
    color: var(--white);
}

.contact-info strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: var(--bold);
}

.contact-info p {
    color: #303030;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info .contact-details p {
    color: #CCC !important;
    font-size: 14px;
    line-height: 1.5;
}

.footer-middle {
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 20px 0;
    margin-bottom: 60px;
}

.footer-middle ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-middle ul li a {
    font-size: 18px;
    font-weight: var(--medium);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    font-size: 16px;
    color: var(--white);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: var(--white);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .cards-grid-4, .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner, .about-inner, .blog-card {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        height: 350px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .quick-links-inner {
        flex-direction: column;
    }

    .quick-link {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .cards-grid-4, .facilities-grid, .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .help-finding-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .help-text {
        margin-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*#region Home page (Juan) */
section.hero {
    display: grid;
    align-items: center !important;
    grid-template-columns: 1fr 1fr;
}
/*#endregion */

/* isolate new header from legacy main.css */
#new-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#new-header li {
    display: list-item;
}

#new-header .main-nav ul {
    display: flex;
    gap: 25px;
}

#new-header .main-nav li {
    display: block;
    margin-bottom: 0 !important;
}

/* override skeleton container */
main .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
}
    width: 100% !important;
    max-width: 100% !important;
}                                                                                 
/*.hero .hero-inner {*/ 
/*display: grid !important;*/
/*grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}*/

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.main-nav ul li {
    padding: 0;
    background: none !important;
}

.top-bar-inner {
    border-bottom: 1px solid #593060 !important;
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;
}

.hero .hero-inner h1 {
    font-size: 44px;
}

.hero .hero-inner p {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 33px;

}

.hero-buttons .btn-outline::before {
    content: none;
}

.carousel-wrapper .carousel-nav i {
    color: white;
}

.hero-buttons .btn-outline:hover {
    color: var(--primary-color);
    /*text-decoration:none;*/
}
body.home div#widget_content_7666 > div:not(.widget_handle),
.quick-links .quick-links-inner > div {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.quick-links .quick-links-inner {
 display:block;
 padding: 16px 0;
}

.quick-links .quick-links-inner .quick-link span, .quick-links .quick-links-inner .quick-link .ql-icon em {
    color: white !important;
}
.quick-links .quick-links-inner .quick-link {
    border: 2px solid transparent !important;
}
.quick-links .quick-links-inner .quick-link:hover {
    background: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.quick-links .quick-links-inner .quick-link:hover span,
.quick-links .quick-links-inner .quick-link:hover .ql-icon em {
    color: var(--primary-color) !important;
}

.main-footer .footer-top .footer-col ul, .main-footer .footer-middle ul {
    padding: 0;
}
.main-footer .footer-top .footer-col ul li, .main-footer .footer-middle ul li {
    padding: 0;
    background: none;
}

.footer-bottom .copyright,
.footer-bottom .copyright a,
.footer-bottom .legal-links a {
    color: var(--white) !important;
    font-weight: normal;
}
/*.footer-bottom .copyright a:hover {
    color: #ccc!important;
    font-weight:600;
}*/

@media (min-width: 1000px) {
    div.blog-items .four.columns {
        width: 100%;
        margin-left: 0;
    }
}

div.blog-item {
    position: relative;
    max-width: 100%;
    min-height: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
    border: 1px solid #cccccc;
    display: flex;
}

div.blog-item-img {
    text-align: center;
    height: 325px;
    width: 28%;
    overflow: hidden;
    height: 325px;
    width: 28%;
    overflow: hidden;
}

.container div.blog-item-img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

div.blog-item-content {
    width: 72%;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.facilities-container {
    overflow: hidden;
    width: 100%;
}

.facilities-grid {
    display: flex;
    transition: transform 0.4s ease;
}

.facility-card {
    min-width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-prev {
    left: -40px;
}

.nav-next {
    right: -40px;
}

/* Slider container */
.carousel-wrapper {
    position: relative;
    margin-top: 40px;
}

/* Hide overflow */
.facilities-container {
    overflow: hidden;
    position: relative;
}

/* slider track */
.facilities-grid {
    display: flex !important;
    transition: transform .45s ease;
}

/* card width = 4 items */
.facility-card {
    flex: 0 0 calc(25% - 20px);
    margin-right: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

/* image */
.facility-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* nav buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #592d61;
    color: white;
    border: none;
    z-index: 5;
}

.nav-prev {
    left: -25px;
}

.nav-next {
    right: -25px;
}

/* fade shadow like figma */
.facilities-container:before,
.facilities-container:after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.facilities-container:before {
    left: 0;
    background: linear-gradient(to right,#f9f9f9,transparent);
}

.facilities-container:after {
    right: 0;
    background: linear-gradient(to left,#f9f9f9,transparent);
}

.facility-card:hover {
    transform: translateY(-5px);
    transition: .25s;
}


/* =============================================================
   OurFacilities Carousel  –  standalone styles
   Depends on: --primary-color (#592d61) from site root vars
   ============================================================= */

/* ── Layout shell ─────────────────────────────────────────── */
.fac-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    position: relative;
}

/* ── Clipping window ──────────────────────────────────────── */
.fac-window {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    /* STATE 1 — at start: right fade only, no left fade */
    -webkit-mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
}

    /* STATE 2 — mid scroll: fade both sides */
    .fac-window.fac--mid {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 88%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 8%, black 88%, transparent 100%);
    }

    /* STATE 3 — at end: left fade only, no right fade */
    .fac-window.fac--end {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 8%, black 100%);
    }

/* ── Sliding track ────────────────────────────────────────── */
.fac-track {
    display: flex;
    gap: 20px;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Cards ────────────────────────────────────────────────── */
.fac-card {
    flex: 0 0 calc(32.2% - 7px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    cursor: pointer;
}

.fac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(89, 45, 97, 0.16);
}

/* ── Image ────────────────────────────────────────────────── */
.fac-img {
    width: 100%;
    height: 186px;
    overflow: hidden;
    background: #ede8f0;
}

.fac-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.38s ease;
}

.fac-card:hover .fac-img img {
    transform: scale(1.04);
}

/* ── Orange accent line — sits at top of body, below image ── */
.fac-line {
    display: block;
    width: 40px;
    height: 3px;
    background-color: #D78A69; /* matches --secondary-color */
    border-radius: 2px;
    margin-bottom: 14px;
}

/* ── Body ─────────────────────────────────────────────────── */
.fac-body {
    padding: 20px 20px 24px;
}

/* Title — dark charcoal, matches image 1 */
.fac-body h3 {
    font-size: 20px;
    font-weight: var(--semibold);
    color: var(--primary-color);
    line-height: normal;
    margin: 0 0 8px;
    min-height: 50px;
}

/* Campus/location — purple, matches image 1 */
.fac-campus {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: var(--medium);
    color: #746e6e;
    margin: 0 0 10px;
    line-height: 1.4;
}

/* Address row */
.fac-address,
a.fac-address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #666;
    line-height: 1.45;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fac-address i {
    color: #592d61;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

a.fac-address:hover {
    color: #592d61;
}

a.fac-address:hover span {
    text-decoration: underline;
}

/* ── Nav buttons ──────────────────────────────────────────── */
.fac-nav {
    flex-shrink: 0;
    width: 42px;
    height: 52px;
    border-radius: 7px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
    position: absolute;
    z-index: 5;
}
.fac-prev {
    left: 0 !important;
}
.fac-next {
    right: 0 !important;
}
.fac-nav i {
    color: #fff;
    line-height: 1;
}

/* Active — purple */
.fac-nav:not(:disabled) {
    background: #592d61;
    box-shadow: 0 4px 14px rgba(89, 45, 97, 0.28);
}

.fac-nav:not(:disabled):hover {
    background: #3d2050;
    box-shadow: 0 6px 20px rgba(89, 45, 97, 0.38);
}

/* Disabled — muted grey */
.fac-nav:disabled {
    background: #ccc3d0;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.55;
}


/* ── Responsive ───────────────────────────────────────────── */

/* Tablet: 2 full + partial 3rd */
@media (max-width: 1024px) {
    .fac-card {
        flex: 0 0 calc(47% - 7px);
    }
}

/* Mobile: 1 full + partial 2nd */
@media (max-width: 640px) {
    .fac-card {
        flex: 0 0 calc(84% - 7px);
    }

    .fac-nav {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

.fac-img {
    border-bottom: 3px solid #592d61;
}

/* =============================================================
   BlogHome – style additions / overrides
   Add these to your main stylesheet (or a blog-specific CSS)
   ============================================================= */

/* ── Blog card: corner bracket decoration ── */
.blog-item.extra-corner {
    position: relative;
    border: none; /* remove old full border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-radius: 4px;
    background: #fff;
}

/* top-left bracket */
.blog-item.extra-corner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 34px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    border-radius: 4px 0 0 0;
    z-index: 1;
}

/* bottom-right bracket */
.blog-item.extra-corner::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 44px;
    height: 34px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    border-radius: 0 0 4px 0;
    z-index: 1;
}

/* ── Date + categories row ── */
.blog-item-date-cat {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

/* Category tags — purple filled pills */
.blog-item-category a {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff!important;
    font-size: 13px;
    font-weight: var(--medium);
    font-family: var(--font-body);
    padding: 4px 12px;
    border-radius: 3px;
    text-decoration: none;
    margin-right: 4px;
    margin-left: 12px;
    transition: background 0.2s ease;
}

.blog-item-category a:hover {
    background-color: #3d2050;
}

/* Remove the old " | " separator injected in code-behind */
.blog-item-category {
    font-size: 0; /* hides the " | " text node */
}

/* Date — plain grey text, after the tags */
.blog-item-date {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
}

/* ── Blog title ── */
.blog-item-title h2 {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0 0 14px;
}

/* ── Short description ── */
.blog-item-short-desc p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 24px; /* space above button */
}

/* ── Read Full Story button — already uses .btn.btn-secondary ── */
/* btn-secondary is already peach/gold in your existing styles   */
/* Just ensure consistent sizing here:                           */
.blog-item-content .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* ← center the text */
    gap: 8px;
    padding: 14px 22px;
    font-size: 18px;
    font-weight: var(--medium);
    font-family: var(--font-body);
    border-radius: 4px;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    /* width: 31% !important; */
    box-sizing: border-box;
}

/* ── Blog item layout ── */
div.blog-item {
    display: flex;
    align-items: stretch;
    border: 1px solid #eee;
    margin-bottom: 32px;
    align-items: center;
}

div.blog-item-img {
    height: 100%;
    width: 38%;
    min-height: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

div.blog-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

div.blog-item-content {
    width: 62%;
    padding: 36px 44px;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
}
.fa-solid, .fas {
    font-weight: 600 !important;
}
/* ── Responsive ── */
@media (max-width: 768px) {
    div.blog-item {
        flex-direction: column;
    }

    div.blog-item-img,
    div.blog-item-content {
        width: 100%;
    }

    div.blog-item-img {
        min-height: 220px;
    }

    div.blog-item-content {
        padding: 24px 20px;
    }
}

.top-bar-right i {
    color: var(--primary-color);
}

.btn-outline .fa-location-dot {
    color: var(--primary-color) !important;
}

.btn-outline:hover em,
.btn-outline:hover em::before,
.btn-outline:hover i,
.btn-outline:hover i::before {
    color: var(--white) !important;
}

.top-link.badge-text {
    text-decoration: none !important; 
    cursor: default; 
}

.top-link.badge-text:hover {
    text-decoration: none !important;
    cursor: default;
}

a {
   text-decoration: none !important; 
}

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

.btn-outline:hover i {
    color: var(--white) !important;
}

.quick-link {
    transition: all 0.25s ease;
    cursor: pointer;
}

.quick-link:hover {
    background: transparent !important;
    border: 1px solid var(--white);
    color: var(--white);
}

.quick-link:hover span,
.quick-link:hover .ql-icon em {
    color: var(--white) !important;
}

.quick-link {
    transition: all 0.25s ease;
    cursor: pointer;
}

.quick-link:hover {
    background: var(--white) !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.quick-link:hover span {
    color: var(--primary-color) !important;
}

.quick-link:hover .ql-icon em {
    color: var(--primary-color) !important;
}

.quick-link:hover .ql-icon {
    color: var(--primary-color) !important;
}

.header-actions btn btn-primary i::after {
    content:none;
}
/* ── Search Dropdown Bar ── */
.search-bar-dropdown {
    display: none;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 24px;
    align-items: center;
    gap: 14px;
    height: 52px;
    position: relative;
    z-index: 99;
    box-sizing: border-box;
}

.search-bar-dropdown.active {
    display: flex;
}

.search-bar-dropdown .search-icon {
    color: #555;
    font-size: 15px;
    flex-shrink: 0;
}

/* ── Legacy control wrappers — flatten to flex ── */
.search-bar-dropdown .searchPanel,
.search-bar-dropdown .tableSearch,
.search-bar-dropdown .div-table,
.search-bar-dropdown .div-table-row {
    display: flex !important;
    width: 100% !important;
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.search-bar-dropdown .div-table-cell {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
}

.search-bar-dropdown .corner_tops,
.search-bar-dropdown .corner_bottoms {
    width: 100% !important;
    display: flex !important;
}

/* ── Input field ── */
.search-bar-dropdown #ctl00_SearchText1_tbSearch,
.search-bar-dropdown input.tbSearch {
    width: 100% !important;
    height: 30px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
    text-transform: none !important;
    text-align: left !important;
    padding: 0 8px !important;
    letter-spacing: 0 !important;
    border-radius: 0 !important;
    -webkit-appearance: none !important;
    margin-bottom: 0 !important;
}

.search-bar-dropdown input.tbSearch::placeholder {
    color: #aaa !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

/* ── Hide Go button and label ── */
.search-bar-dropdown .last-child,
.search-bar-dropdown #ctl00_SearchText1_btSearch,
.search-bar-dropdown #ctl00_SearchText1_lbsearch,
.search-bar-dropdown span#lbsearch {
    display: none !important;
}

/* ── Close (X) button ── */
.search-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: color 0.2s ease;
}

.search-close-btn:hover {
    color: var(--primary-color);
}

.div-table-row .div-table-cell .corner_tops::before, .div-table-row .div-table-cell .corner_bottoms::before, .div-table-row .div-table-cell .corner_tops::after, .div-table-row .div-table-cell .corner_bottoms::after {
 content:none;
}

/* ── Search bar borders — line above AND below ── */
.search-bar-dropdown {
    display: none;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--primary-color);
    padding: 0 24px;
    align-items: center;
    gap: 14px;
    height: 52px;
    z-index: 99;
    box-sizing: border-box;
    margin-bottom: 10px;
    /* max-width: 374px; */
    transition: var(--transition);

}


.search-bar-dropdown.active {
    display: flex;
}

/* Center the search input group */
.search-bar-dropdown .search-icon {
    color: #555;
    font-size: 15px;
    flex-shrink: 0;
}

/* .search-bar-dropdown .searchPanel {
    flex: 0 1 700px; 
} */
.btn-go {
    position: absolute;
    right: 0;
    top: 0;
    margin-bottom: 0 !important;
}
.btn-go input {
    height: 50px !important;
    border: none !important;
    border-left: 1px solid var(--primary-color) !important ;
    border-radius: none !important;
    font-size: 16px;
}
/* Close button pinned to the right */
.search-close-btn {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: color 0.2s ease;
}

.search-close-btn:hover {
    color: var(--primary-color);
}

.btn-menu {
    padding: 9px;
    height: 47px;
    background: linear-gradient(90deg, rgb(210 124 83) 0%, rgb(242 147 77) 51%, rgba(222, 147, 116, 255) 99%);
    border: none;
}

.mega-menu {
    display: none;
}

.mega-menu.open {
    display: block;
}


/* ==========================================================================
   1. ROOT RESET & TYPOGRAPHY
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #f9f9f9;
}

a:not(.a-quick-link) {
    text-decoration: none;
    color: #993365;
}

ul {
    list-style: none;
}

/* ==========================================================================
   2. SITE HEADER & NAVIGATION (IMAGE 1)
   ========================================================================== */
.site-header {
    background-color: #fff;
    border-bottom: 2px solid #5a3c6b; /* Purple border under header */
    position: relative;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5a3c6b; /* Purple */
}

.main-nav ul {
    display: flex;
    gap: 40px;
    font-weight: var(--medium);
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: #5a3c6b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Base Donate Button (Top Nav) */
.btn-donate-header {
    background-color: #5a3c6b; /* Dark Purple */
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: var(--semibold);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-donate-header:hover {
    background-color: #432a52;
}

/* ==========================================================================
   3. HAMBURGER MENU BUTTON ANIMATION SHIFT (THE MAGIC)
   ========================================================================== */
.hamburger-menu {
    /* Gradient orange background for default closed state */
    background: linear-gradient(135deg, #f0985c 0%, #dc703f 100%);
    border: 1px solid transparent;
    width: 44px;
    height: 54px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Spaces out the 3 lines perfectly */
    transition: all 0.3s ease-in-out;
    margin: 0 !important;
}

/* The three small inner lines */
.hamburger-menu .bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #222; /* Dark line color */
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* ---- ACTIVE STATE (Turns into the X) ---- */
.hamburger-menu.active {
    background: #fff; /* Changes to white background mapping to Image 2 */
    border: 1px solid #ccc; /* Adds light grey border */
}

/* Rotate top line 45 degrees downward */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

/* Fade out middle line */
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

/* Rotate bottom line 45 degrees upward */
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   4. MEGA MENU EXPANDED DISPLAY (EXACT MATCH)
   ========================================================================== */
.mega-menu {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    /* Animation defaults (Hidden) */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    box-sizing: border-box; /* Prevents 100% width from bleeding off screen */
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

/* Active State (Shown) */
.mega-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Container aligned with your header */
.mega-menu-container,
#new-header .mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    box-sizing: border-box;
}

/* 4 Column Grid Configuration */
.menu-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Exact spacing between the boxed columns */
    margin-bottom: 25px;
    box-sizing: border-box;
}

/* 1. Missing Borders Fixed */
.menu-column {
    border: 1px solid #eaeaea; /* Exact light grey border from image */
    padding: 18px;
    background: #fff;
    box-sizing: border-box;
}

.menu-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-top: 0;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 2. Missing Squares Around Icons Fixed */
.menu-column h3 i,
.menu-column h3 svg,
.menu-column h3 img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #f2f2f2; /* Exact light grey square */
    border-radius: 5px; /* Subtle rounded corners */
    color: #444; /* Icon color */
    font-size: 14px;
}

    .menu-column h3 i, .menu-column h3 a {
        margin-bottom: 0;
    }

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

.menu-column ul li {
    margin-bottom: 2px; /* Set low because 'a' handles the padding */
    background: none !important;
}
/* 3. Missing Hover Effect Fixed */
.menu-column ul li a {
    display: block;
    color: #555;
    font-size: 14px;
    padding: 8px 12px; /* Important: internal padding for hover block */
    margin-left: -12px; /* Pull left so text aligns perfectly under heading */
    margin-right: -12px; /* Allows hover block to span to edges nicely */
    border-radius: 4px; /* Rounded edges on hover */
    text-decoration: none;
    transition: all 0.2s ease;
}

.menu-column ul li a:hover {
    background: #f5f5f5; /* Grey block hover state */
    color: #5a3c6b; /* HDGH Purple */
    text-decoration: none;
}

/* ==========================================================================
   CONTACT US / ACTIONS (UNTOUCHED PER REQUEST)
   ========================================================================== */
.contact-section {
    background-color: #ebebeb;
    padding: 25px;
    margin-bottom: 25px;
}

.contact-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
}

.contact-info p i {
    width: 20px;
}

.bottom-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bottom-actions .btn-primary {
    width: 100% !important;
}

.btn-donate-full {
    display: block;
    width: 100%;
    background-color: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;        
    color: var(--primary-color);
}

.social-icons a i {
    color: var(--primary-color);
}
/* ── Responsive ── */
@media (max-width: 1024px) {
    .menu-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .menu-columns {
        grid-template-columns: 1fr;
    }

    #new-header .mega-menu-container {
        padding: 20px 18px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}



/* ==========================================================================
   Programs & Services A-Z Page CSS
   ========================================================================== */

:root {
    --primary-color: #592d61;
    --secondary-color: #D78A69;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --font-heading: 'EB Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
}
@media (min-width: 768px) {
    .container {
        max-width: var(--container-width) !important;
        width: 100% !important;
    }
}
/* Hero / Page Intro */
.page-intro {
    background: var(--bg-light);
    padding: 48px 0 40px;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.breadcrumb-line {
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.breadcrumb-text {
    font-size: 13px;
    font-weight: var(--semibold);
    letter-spacing: 1px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 3px 8px;
}

.page-intro h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.page-intro p {
    color: var(--text-light);
    font-size: 15px;
    max-width: 640px;
    line-height: 1.7;
}
.container-full-width {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
}
.container-full-width .container-right {
    width: 50% ;
}
.container-full-width .container-left {
    padding: 30px 50px ;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gap-0 {
    padding: 0 !important;
}
.container-full-width .container-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
@media (max-width: 990px) {
    .container-full-width {
        flex-direction: column-reverse;
    }
    .container-full-width .container-right {
        width: 100% ;
    }
}
/* Filters */
.filters-bar {
    background: var(--white);
    padding: 28px 0 20px;
    border-bottom: 1px solid #eee;
}
@media (max-width: 990px) {
    .filters-bar {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.filters-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.search-input-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}

    .search-input-wrap i {
        position: absolute;
        left: 10px;
        top: 20px;
        transform: translateY(-50%);
        color: #999;
        font-size: 14px;
        z-index: 9;
        background: url(/images/search-icon.png) no-repeat;
        width: 20px;
        height: 20px;
    }
    .search-input-wrap i::before {
        display: none !important;
    }
    .search-input-wrap input {
        width: 100%;
        padding: 12px 14px 12px 38px;
        border: 1px solid #d0d0d0;
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--text-light);
        outline: none;
        transition: border-color 0.2s;
    }

        .search-input-wrap input:focus {
            border-color: var(--primary-color);
        }

.filter-select-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.filter-select-wrap i {
    position: absolute;
    left: 14px;
    top: 20px;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    z-index: 99;
    background: url(/images/icon-filter.png) no-repeat;
    width: 20px;
    height: 20px;
}
.filter-select-wrap i::before {
    display: none !important;
}
.filter-select-wrap select {
    width: 100%;
    padding: 9px 14px 10px 38px !important;
    border: 1px solid #d0d0d0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    background: var(--white);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-select-wrap select:focus {
    border-color: var(--primary-color);
}

/* A-Z Nav */
.az-nav {
    margin-top: 40px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.az-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: space-between;
}

    .az-nav-inner a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 1px solid #ccc;
        font-size: 13px;
        font-weight: var(--semibold);
        color: var(--text-dark);
        transition: var(--transition);
        text-decoration: none;
    }

        .az-nav-inner a:hover,
        .az-nav-inner a.active {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .az-nav-inner a.inactive {
            color: #bbb;
            border-color: #e0e0e0;
            pointer-events: none;
        }
@media (max-width: 990px) {
    .az-nav-inner {
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* Services Grid */
.services-section {
    padding: 48px 0;
}
@media (max-width: 990px) {
    .services-section {
        padding: 48px 20px !important;
    }
}
.letter-group {
    margin-bottom: 52px;
}

letter-group {
    scroll-margin-top: 195px;
}

.letter-heading {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px;
    margin-bottom: 28px;
}

.letter-box {
    width: 52px;
    height: 52px;
    background: var(--primary-color); /*var(--text-dark);*/
    color: var(--white);
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: var(--bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.letter-heading-line {
    height: 1px;
    background: #ddd;
    width: 93%;
    margin: 0 auto 15px;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    border: 1px solid #e0e0e0;
    background: var(--white);
    padding: 24px;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(89,45,97,0.1);
}

.card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--semibold);
    /*color: var(--text-light);*/
    border: 1px solid #ccc;
    padding: 3px 10px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    background-color: #ccc;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 27px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: var(--semibold);
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

    .learn-more:hover {
        color: var(--primary-color);
    }

    .learn-more i {
        font-size: 11px;
    }

/* Can't Find CTA */
.cta-section {
    background: var(--bg-light);
    padding: 48px 0;
}

.cta-box {
    border: 1px solid #e0e0e0;
    background: var(--white);
    padding: 48px 32px;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

    .cta-box h2 {
        font-family: var(--font-heading);
        font-size: 36px;
        margin-bottom: 14px;
    }

    .cta-box p {
        color: var(--text-light);
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: var(--semibold);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-dark {
    background: var(--text-dark);
    color: var(--white);
}

    .btn-dark:hover {
        background: #1a1a1a;
    }

.btn-outline-dark {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .filters-row {
        flex-direction: column;
    }

    .page-intro h1 {
        font-size: 1.6rem;
    }
}
.full-container .cta-section {
    border: 40px solid var(--secondary-color);
    background: var(--white) !important;
}
.full-container .page-intro {
    background: var(--primary-color);
    color: var(--white) !important;
}
.full-container .page-intro h1, 
.full-container .page-intro h2, 
.full-container .page-intro h3,   
.full-container .page-intro p {
    color: var(--white);
}
.breadcrumb-text {
    color: var(--white);
    border-color: var(--white);
}
.cta-buttons .btn-primary {
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}
.cta-buttons i {
    color: var(--primary-color) !important;
}

.btn-primary::after {
    content: none;
}

/*.cta-buttons .btn-primary:hover{
    background: transparent !important;
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none;
    text-decoration: none !important;
}
*/


/* Service card icon row — mirrors care-card layout */
.service-card .card-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 16px;
}

/* Orange accent line on the left */
.service-card .card-icons::before {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background-color: var(--secondary-color); /* #D78A69 orange */
    flex-shrink: 0;
}

/* Icons pushed to the right */
.service-card .card-icons .card-icons-group {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

/* Remove default border from service-card when extra-corner is applied */
.service-card.extra-corner {
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Corporate Services icon */
.icon-cs {
    background-color: #746e6e;
    color: var(--white);
    background: url(/images/Corporate_Stream_New.png) no-repeat;
}

/* Make service-card icons slightly larger to match care-card hero icons */
.service-card .care-icon {
    width: 44px;
    height: 50px;
    font-size: 0 !important;
}




/* =============================================================
   ECP Page — New Styles
   ============================================================= */

/* =============================================================
   1. PAGE HERO BANNER — Purple background override
   ============================================================= */
.ecp-hero-banner {
    background-color: var(--primary-color);
    padding: 48px 0 48px;
    border-bottom: none;
}

    .ecp-hero-banner .breadcrumb-text {
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.55);
    }

    .ecp-hero-banner .breadcrumb-line {
        background-color: var(--secondary-color);
    }

    .ecp-hero-banner h1 {
        font-family: var(--font-heading);
        font-size: 2.4rem;
        color: var(--white);
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .ecp-hero-banner p {
        color: rgba(255, 255, 255, 0.88);
        font-family: var(--font-body);
        font-size: 14.5px;
        max-width: 520px;
        line-height: 1.75;
    }


/* =============================================================
   2. TWO-COLUMN PAGE LAYOUT
   ============================================================= */
.ecp-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    padding-top: 50px;
    padding-bottom: 60px;
    align-items: start;
}

/* =============================================================
   ECP Page — New Styles 
   ============================================================= */
/* =============================================================
   1. PAGE HERO BANNER — Purple background override
   ============================================================= */
.ecp-hero-banner {
    background-color: var(--primary-color);
    padding: 48px 0 48px;
    border-bottom: none;
}

.ecp-hero-banner .breadcrumb-text {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.ecp-hero-banner .breadcrumb-line {
    background-color: var(--secondary-color);
}

.ecp-hero-banner h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.ecp-hero-banner p {
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-body);
    font-size: 14.5px;
    max-width: 520px;
    line-height: 1.75;
}


/* =============================================================
   2. TWO-COLUMN PAGE LAYOUT
   ============================================================= */
.ecp-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    padding-top: 50px;
    padding-bottom: 60px;
    align-items: start;
}


/* =============================================================
   3. LEFT SIDEBAR
   ============================================================= */
.ecp-sidebar {
    position: sticky;
    top: 80px; /* accounts for sticky header height */
}

/* Sidebar box — top-left corner bracket decoration */
.sidebar-box {
    position: relative;
    border: 1px solid #e0e0e0;
    background: var(--white);
    padding: 0;
}

/* Top-left bracket */
.sidebar-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 30px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    z-index: 1;
}

/* Sidebar Title */
.sidebar-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-color);
    padding: 20px 20px 16px;
    border-bottom: 1px solid #eee;
    margin: 0;
    font-weight: var(--bold);
}

/* Sidebar nav list */
.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav ul li {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    padding: 0;
    background: none;
}

.sidebar-nav ul li:last-child {
    border-bottom: none;
}

.sidebar-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1.4;
}

.sidebar-nav ul li a i {
    font-size: 11px;
    color: #5f3866;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.sidebar-nav ul li a:hover {
    background-color: #f8f5fa;
    color: var(--primary-color);
}

.sidebar-nav ul li a:hover i {
    color: var(--primary-color);
}

/* =============================================================
   4. MAIN CONTENT COLUMN
   ============================================================= */
.ecp-main-content {
    min-width: 0; /* prevents grid blowout */
    margin: 33px 23px 30px 19px;
}

/* Generic section spacing */
.ecp-section {
    margin-bottom: 25px;
}

/* =============================================================
   5. BECOME AN ECP SECTION (Section 1 — top main content)
   ============================================================= */
.ecp-become-section h2 {
    font-family: var(--font-heading);
    font-size: 2.55rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.ecp-become-section p {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 4px;
}

/* Policy / info banner — grey row */
.ecp-policy-banner {
    background-color: #4e2a57; /* slightly darker purple tint */
    /*background-color: #eeeeee;*/
    border: 1px solid #d8d8d8;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--white);
    line-height: 1.6;
}

.ecp-policy-banner a {
    color: var(--white);
    font-weight: var(--semibold);
    text-decoration: underline !important;
}

.ecp-policy-banner a:hover {
    color: var(--white);
}

/* =============================================================
   6. CONTACT CARDS ROW
   ============================================================= */
.ecp-contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact card base — uses .extra-corner from main stylesheet */
.ecp-contact-card {
    border: 1px solid #e0e0e0;
    background: var(--white);
    padding: 22px 24px 26px;
    position: relative;
    /* extra-corner is applied in HTML; override radius here */
    border-radius: 0;
}

.ecp-contact-card .contact-card-label {
    font-family: var(--font-heading) !important;
    font-size: 2.1rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 8px !important;
}

.ecp-contact-card .contact-card-role {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.ecp-contact-card .contact-card-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.ecp-contact-card .contact-card-detail:last-child {
    margin-bottom: 0;
}

.ecp-contact-card .contact-card-detail p em {
    color: var(--primary-color);
}

.ecp-contact-card .contact-card-detail i {
    color: var(--primary-color);
    font-size: 13px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* Override extra-corner for contact cards — smaller brackets */
.ecp-contact-card.extra-corner::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 36px !important;
    height: 28px !important;
    border-top: 2px solid var(--primary-color) !important;
    border-left: 2px solid var(--primary-color) !important;
    border-radius: 0 !important;
    z-index: 1 !important;
}

.ecp-contact-card.extra-corner::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 36px !important;
    height: 28px !important;
    border-bottom: 2px solid var(--primary-color) !important;
    border-right: 2px solid var(--primary-color) !important;
    border-radius: 0 !important;
    z-index: 1 !important;
}


/* =============================================================
   7. ACCORDION — Program Details & FAQ
   ============================================================= */
.ecp-accordion-section,
.ecp-faq-section {
    margin-top: 30px;
}

/* FAQ section heading */
.faq-heading {
    font-family: var(--font-heading);
    font-size: 2.45rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
    margin-top: 40px;
}

/* Single accordion item */
.ecp-accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    background: var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Open state — purple background */
.ecp-accordion-item.open {
    background: var(--primary-color);
}

/* Trigger button — the clickable row */
.ecp-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background 0.2s ease;
}

/* Corner bracket — top left of each accordion item */
.acc-bracket {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 22px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    pointer-events: none;
    flex-shrink: 0;
}

/* When open, bracket becomes white */
.ecp-accordion-item.open .acc-bracket {
    border-color: rgba(255, 255, 255, 0.6);
}

.acc-title {
    flex: 1;
    font-size: 14.5px;
    font-weight: var(--medium);
    color: var(--text-dark);
    line-height: 1.45;
}

/* Open item — white title text */
.ecp-accordion-item.open .acc-title {
    color: var(--white);
    font-weight: var(--semibold);
}

/* Chevron icon */
.acc-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.3s ease;
}

.acc-icon i {
    font-size: 11px;
    color: var(--white);
}

/* Open item — icon background becomes slightly lighter */
.ecp-accordion-item.open .acc-icon {
    background: rgba(255, 255, 255, 0.25);
}

/* Closed hover state */
.ecp-accordion-trigger:hover .acc-icon {
    background: #3d1f47;
}

.ecp-accordion-item.open .ecp-accordion-trigger:hover .acc-icon {
    background: rgba(255, 255, 255, 0.35);
}

/* Accordion body */
.ecp-accordion-body {
    padding: 0 20px 18px 20px;
    background: var(--primary-color);
}

.ecp-accordion-body p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}


/* =============================================================
   8. TESTIMONIALS SECTION
   ============================================================= */
.ecp-testimonials-section {
    background-color: #f4f0f5;
}

.ecp-section ecp-testimonials-section {
    background: #f4f0f5;
}
/* Header row: title left, view-all link right */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 40px;
    gap: 20px;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 2.45rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.testimonials-sub {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-light);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: var(--semibold);
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: var(--secondary-color);
}

.view-all-link i {
    font-size: 12px;
}

/* DCP note — purple banner */
.ecp-dcp-note {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.65;
    padding: 14px 20px;
    margin-bottom: 28px;
    text-decoration: underline;
    cursor: pointer;
}

/* Two-column video grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Individual video card */
.testimonial-video-card {
    margin-bottom: 60px;
}

/* Thumbnail wrapper */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

.testimonial-video-card:hover .video-thumbnail img {
    transform: scale(1.04);
}

/* Play button overlay */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .video-play-btn i {
        color: var(--white);
        font-size: 16px;
        margin-left: 3px; /* optical centering for play icon */
    }

    .video-play-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translate(-50%, -50%) scale(1.08);
    }

/* Video meta info below thumbnail */
.video-meta {
    padding: 14px 0 0;
}

/* Orange accent line — matches fac-line from main */
.video-accent-line {
    display: block;
    width: 36px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    margin-bottom: 10px;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.video-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-light);
}


/* =============================================================
   9. CALL TO ACTION SECTION (Full-width peach/warm background)
   ============================================================= */
.ecp-cta-section {
    background-color: #e8b49a; /* warm peach matching screenshot */
    padding: 50px 20px;
    margin-top: 0;
}

.ecp-cta-box {
    background: var(--white);
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 44px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

    .ecp-cta-box h2 {
        font-family: var(--font-heading);
        font-size: 2.4rem;
        color: var(--primary-color);
        margin-bottom: 16px;
        line-height: 1.35;
    }

    .ecp-cta-box p {
        font-family: var(--font-body);
        font-size: 14.5px;
        color: var(--text-light);
        line-height: 1.7;
        max-width: 480px;
        margin: 0 auto 28px;
    }

    .ecp-cta-box .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* Override btn-outline in CTA to match screenshot (dark border) */
    .ecp-cta-box .btn-outline {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: transparent;
    }

        .ecp-cta-box .btn-outline:hover {
            background-color: var(--primary-color) !important;
            color: var(--white) !important;
        }


/* =============================================================
   10. RESPONSIVE — Tablet & Mobile
   ============================================================= */
@media (max-width: 900px) {
    .ecp-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ecp-sidebar {
        position: static;
    }

    .ecp-contact-cards {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ecp-hero-banner h1 {
        font-size: 1.7rem;
    }

    .ecp-cta-box {
        padding: 30px 20px;
    }

    .testimonials-header {
        flex-direction: column;
        gap: 10px;
    }

    .ecp-layout {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}


/* ── Inside Banner — hero override for ECP-style purple banner ── */
.inside-banner.ecp-hero-banner {
    background-color: var(--primary-color);
    padding: 35px 0;
    border-bottom: none;
    margin-bottom: 12px;
}

.inside-banner.ecp-hero-banner h1 {
    font-family: var(--font-heading);
    font-size: 45px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.inside-banner.ecp-hero-banner p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    max-width: 520px;
    line-height: 1.75;
    margin: 0;
}

.btn-outline::before {
    content:none;
}

.ecp-contact-card .extra-corner p em {
    color: var(--primary-color) !important;
}
.nine.columns.insideContent {
    margin-left: 2% !important;
    padding-left: 2% !important;
    border-left: 1px solid var(--primary-color);
}
/* ── Left sidebar — active item left border indicator ── */
/* Active sidebar item — peach background + left purple border */
.sidebar-nav ul li.active > a {
    background-color: #F4E3DA;
    color: var(--text-dark);
    font-weight: var(--semibold);
    border-left: 8px solid var(--primary-color);
    padding-left: 17px;
}

.sidebar-nav ul li.active > a:hover {
    background-color: #f5ede8;
    color: var(--primary-color);
}

/* ── Sidebar nested children ── */
.sidebar-nav ul.sidebar-children {
    padding-left: 0;
    border-top: 1px solid #f0f0f0;
}

.sidebar-nav ul.sidebar-children li a {
    padding-left: 32px;
    font-size: 16px;
    color: var(--text-light);
    background-color: #faf8fb;
}

.sidebar-nav ul.sidebar-children li a:hover {
    background-color: #f0ebf4;
    color: var(--primary-color);
}

/* ── Sidebar arrow rotation on expand ── */
.sidebar-nav li.has-children.open > a .sidebar-arrow {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.sidebar-nav li.has-children > a .sidebar-arrow {
    transition: transform 0.25s ease;
}

.sidebar-nav ul.sidebar-children {
    padding-left: 0;
    border-top: 1px solid #f0f0f0;
}

.sidebar-nav ul.sidebar-children li a {
    padding-left: 32px;
    font-size: 16px;
    color: var(--text-light);
    background-color: #faf8fb;
}

.sidebar-nav ul.sidebar-children li ul li a {
    padding-left: 55px
}
.sidebar-nav ul.sidebar-children li a:hover {
    background-color: #f8f5fa;
    color: var(--primary-color);
}

/* ── Accordion icon — white when open, purple when closed ── */
.ecp-accordion-item .acc-icon {
    background: var(--primary-color);
}

.ecp-accordion-item .acc-icon i {
    color: var(--white);
}

.ecp-accordion-item.open .acc-icon {
    background: rgba(255, 255, 255, 0.2);
}

.ecp-accordion-item.open .acc-icon i {
    color: var(--white);
}

.ecp-accordion-trigger .acc-icon em {
    color: #ffffff !important;
}

.video-thumbnail iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
}


.ecp-testimoniols-inside {
    position: relative;
    margin: 0px 180px;
    padding-top: 10px;
}


/* =============================================================
   MOBILE RESPONSIVE — ECP Inside Pages
   Target: screens under 768px (phone) and under 960px (tablet)
   ============================================================= */

/* ── Tablet: sidebar collapses to top dropdown ── */
@media (max-width: 960px) {

    /* Stack sidebar above content */
    .ecp-main-content .row {
        display: flex;
        flex-direction: column;
    }

    /* Sidebar goes full width */
    .three.columns.leftmenu.ecp-sidebar {
        width: 100% !important;
        margin: 0 0 16px 0 !important;
        position: static !important;
    }

    /* Content goes full width */
    .nine.columns.insideContent {
        width: 100% !important;
        margin-left: 0 !important;
    }

    /* Sidebar box full width */
    .sidebar-box {
        width: 100%;
    }

    /* Sidebar nav — collapsible on mobile */
    .sidebar-nav {
        display: none;
    }

        .sidebar-nav.open {
            display: block;
        }

    /* Sidebar title becomes a toggle button */
    .sidebar-title {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 36px;
        padding: 14px 20px;
        margin: 0;
        border-bottom: none;
    }

        .sidebar-title::after {
            content: "\f078"; /* fa-chevron-down */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 13px;
            color: var(--primary-color);
            transition: transform 0.25s ease;
        }

    .sidebar-box.open .sidebar-title::after {
        transform: rotate(180deg);
    }

    .sidebar-box.open .sidebar-nav {
        display: block;
    }

    /* Contact cards stack */
    body.inside .ecp-contact-cards {
        grid-template-columns: 1fr;
    }

    /* Testimonials grid stack */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials section padding reduced */
    .ecp-testimonials-section {
        padding: 30px 20px;
    }

    /* Hero banner padding reduced */
    .inside-banner.ecp-hero-banner {
        padding: 24px 0;
    }

    .ecp-hero-banner h1 {
        font-size: 1.7rem;
    }

    /* CTA box padding reduced */
    .ecp-cta-box {
        padding: 30px 20px;
    }

        .ecp-cta-box h2 {
            font-size: 1.4rem;
        }
}

/* ── Phone: tighter spacing ── */
@media (max-width: 480px) {

    .ecp-hero-banner h1 {
        font-size: 1.4rem;
    }

    .ecp-hero-banner p {
        font-size: 13px;
    }

    .ecp-become-section h2 {
        font-size: 1.6rem;
    }

    .faq-heading {
        font-size: 1.6rem;
    }

    .ecp-accordion-trigger {
        padding: 12px 14px;
    }

    .acc-title {
        font-size: 13.5px;
    }

    .ecp-cta-box .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ecp-cta-box .btn {
        width: 100%;
        justify-content: center;
    }

    .testimonials-header {
        flex-direction: column;
        gap: 8px;
    }

    .video-thumbnail iframe {
        height: 180px;
    }
}


/* =============================================================
   MOBILE RESPONSIVE — ECP Page
   ============================================================= */

@media (max-width: 768px) {

    /* ── Hero banner ── */
    .inside-banner.ecp-hero-banner {
        padding: 24px 0;
    }

        .ecp-hero-banner h1,
        .inside-banner.ecp-hero-banner h1 {
            font-size: 1.5rem !important;
        }

        .ecp-hero-banner p,
        .inside-banner.ecp-hero-banner p {
            font-size: 13.5px !important;
        }

    /* ── Sidebar — full width, sticky off ── */
    .three.columns.leftmenu.ecp-sidebar {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        position: static !important;
    }

    /* ── Content — full width ── */
    .nine.columns.insideContent {
        width: 100% !important;
        margin-left: 0 !important;
    }

    /* ── Accordion — prevent overflow ── */
    .ecp-accordion-item {
        overflow: hidden;
    }

    .ecp-accordion-trigger {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 12px;
        gap: 10px;
    }

    .acc-title {
        font-size: 13px;
        min-width: 0; /* allows text to shrink */
        word-break: break-word;
    }

    .acc-icon {
        flex-shrink: 0; /* icon never shrinks */
        width: 26px;
        height: 26px;
    }

    /* ── DCP note banner — fix word overflow ── */
    .ecp-dcp-note {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
        width: 100%;
        box-sizing: border-box;
        font-size: 12.5px;
        padding: 12px 16px;
    }

    /* ── Contact cards — stack ── */
    .ecp-contact-cards {
        grid-template-columns: 1fr;
    }

    /* ── Testimonials — stack videos ── */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ── Testimonials section padding ── */
    .ecp-testimonials-section {
        padding: 30px 16px !important;
    }

    /* ── Testimonials header — stack on mobile ── */
    .testimonials-header {
        flex-direction: column;
        gap: 8px;
        margin-top: 0;
    }

    /* ── Video thumbnail responsive height ── */
    .video-thumbnail {
        height: 200px;
    }

        .video-thumbnail iframe {
            height: 200px !important;
        }

    /* ── CTA section ── */
    .ecp-cta-box {
        padding: 28px 16px;
    }

        .ecp-cta-box h2 {
            font-size: 1.2rem;
        }

        .ecp-cta-box .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .ecp-cta-box .btn {
            width: 100%;
            justify-content: center;
        }

    /* ── Main content margin reset ── */
    .ecp-main-content {
        margin: 16px 0 20px 0 !important;
    }
}

/* ── Very small phones ── */
@media (max-width: 420px) {

    .ecp-hero-banner h1,
    .inside-banner.ecp-hero-banner h1 {
        font-size: 1.3rem !important;
    }

    .acc-title {
        font-size: 12.5px;
    }

    .sidebar-title {
        font-size: 1.1rem !important;
    }

    .ecp-contact-card {
        padding: 16px 16px 20px;
    }

    .ecp-testimonials-section {
        padding: 20px 12px !important;
    }
}




/* =============================================================
   HDGH — COMPLETE RESPONSIVE CSS — ALL SCREEN SIZES
   ============================================================= */

/* Prevent horizontal scroll on all screens */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

.insideContentNoLeftMenu .extra-corner::before {
    display: none;
}
.insideContentNoLeftMenu .cta-box {
    border: none !important;
}
/* =============================================================
   LARGE DESKTOP — 1200px +   Desktop looks
   ============================================================= */
@media (min-width: 1200px) {

    section.hero {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        align-items: center !important;
        column-gap: 50px;
    }

    .hero .hero-image {
        order: 0 !important;
    }

    .hero .hero-inner {
        order: 0 !important;
    }

    .main-nav {
        display: flex !important;
        white-space:nowrap;
    }

    .header-actions .btn-primary {
        display: inline-flex !important;
    }

    .menu-toggle {
        display: none !important;
    }

    .quick-links-inner {
        flex-direction: row !important;
    }

    .quick-link {
        flex-direction: row !important;
        border: 1px solid transparent !important;
        width: auto !important;
    }

    .cards-grid-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .about-inner {
        grid-template-columns: 1fr 1fr !important;
    }

    .blog-card {
        flex-direction: row !important;
    }

    .blog-image {
        width: 38% !important;
        height: 325px !important;
    }

    .blog-content {
        width: 62% !important;
    }

        /* .blog-content .btn-secondary {
            width: 31% !important;
        } */

    .footer-links-grid {
        /*grid-template-columns: repeat(3, 1fr) !important;*/
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-top {
        flex-direction: column !important;
    }
}


/* =============================================================
   MEDIUM DESKTOP / LAPTOP — 1025px to 1199px
   ============================================================= */
@media (min-width: 1025px) and (max-width: 1199px) {

    section.hero {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        align-items: center !important;
    }

    .main-nav {
        display: flex !important;
        white-space: nowrap;
    }

    .header-actions .btn-primary {
        display: inline-flex !important;
    }

    .menu-toggle {
        display: none !important;
    }

    .cards-grid-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .blog-card {
        flex-direction: row !important;
    }

    .blog-image {
        width: 38% !important;
        height: 325px !important;
    }

    .blog-content {
        width: 62% !important;
    }

        .blog-content .btn-secondary {
            width: 40% !important;
        }
}


/* =============================================================
   TABLET LANDSCAPE / SMALL LAPTOP — 769px to 1024px
   Surface Pro 7 (912px) 
   ============================================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Header: keep nav + donate visible but compress */
    .main-nav {
        display: flex !important;
        white-space: nowrap;
    }

        .main-nav a {
            font-size: 13px !important;
            padding: 6px 8px !important;
        }

        .main-nav ul {
            gap: 10px !important;
        }

    .header-actions .btn-primary {
        display: inline-flex !important;
    }

    .menu-toggle {
        display: none !important;
    }

    /* Hero: keep 2-col but tighten */
    section.hero {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        align-items: center !important;
    }

    .hero .hero-inner h1,
    .hero .hero-content h1 {
        font-size: 24px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
        .hero-buttons .btn {
            width: 100% !important;
            justify-content: center !important;
        }

    /* Quick links: horizontal row */
    .quick-links-inner {
        flex-direction: row !important;
    }

    .quick-link {
        font-size: 13px !important;
        padding: 14px 12px !important;
    }

    /* Care cards: 2x2 grid */
    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* About: 2-col */
    .about-inner {
        grid-template-columns: 1fr 1fr !important;
        display: grid !important;
    }

    /* Blog: FIXED — full width stacked at this size */
    .blog-card,
    div.blog-item {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .blog-image,
    div.blog-item-img {
        width: 100% !important;
        height: 260px !important;
        min-height: unset !important;
        overflow: hidden !important;
        float: none !important;
    }

        .blog-image img,
        div.blog-item-img img {
            width: 100% !important;
            height: 260px !important;
            object-fit: cover !important;
            display: block !important;
        }

    .blog-content,
    div.blog-item-content {
        width: 100% !important;
        padding: 28px 30px !important;
        box-sizing: border-box !important;
        float: none !important;
    }

        .blog-content h3 {
            font-size: 20px !important;
        }

        .blog-content p {
            font-size: 14px !important;
        }

        /* Blog button: full width at tablet */
        .blog-content .btn,
        .blog-content .btn-secondary,
        .blog-content a.btn,
        .blog-content a.btn-secondary,
        div.blog-item-content .btn,
        div.blog-item-content .btn-secondary,
        div.blog-item-content a.btn,
        div.blog-item-content a.btn-secondary {
            /* width: 50% !important; */
            /* display: flex !important;
            justify-content: center !important;
            align-items: center !important; */
            height: auto !important;
            aspect-ratio: unset !important;
            padding: 14px 20px !important;
            box-sizing: border-box !important;
            float: none !important;
        }

    /* Footer */
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-top {
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* Fac carousel */
    .fac-card {
        flex: 0 0 calc(47% - 7px) !important;
    }
}


/* =============================================================
   TABLET PORTRAIT / LARGE PHONE — 576px to 768px
   ============================================================= */
@media (max-width: 768px) {

    /* ── TOP BAR ── */
    .top-bar {
        padding: 6px 0 !important;
    }

        .top-bar .social-links {
            display: none !important;
        }

    .top-bar-inner .divider {
        display: none !important;
    }

    .top-bar-right {
        gap: 8px !important;
    }

    .top-link.badge-text {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        font-size: 12px !important;
        padding: 5px 12px !important;
        border: 1px solid var(--primary-color) !important;
        border-radius: 20px !important;
        color: var(--text-dark) !important;
        font-weight: 400 !important;
        background: transparent !important;
    }

        .top-link.badge-text i {
            font-size: 11px !important;
            color: var(--text-dark) !important;
        }

    /* ── HEADER ── */
    .main-header {
        padding: 0 0 !important;
    }

    .header-inner {
        padding: 0 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .logo img {
        height: 60px !important;
        width: auto !important;
    }

    /* HIDE nav + donate */
    .main-nav {
        display: none !important;
        white-space:nowrap;
    }

    .header-actions .btn-primary {
        display: none !important;
    }

    .header-actions {
        gap: 0 !important;
    }

    /* Orange hamburger */
    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        background: linear-gradient(135deg, #f0985c 0%, #dc703f 100%) !important;
        border-radius: 4px !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        flex-direction: column !important;
        gap: 5px !important;
    }

        .menu-toggle i {
            color: #222 !important;
            font-size: 19px !important;
        }

    .hamburger-menu {
        width: 44px !important;
        height: 44px !important;
        background: linear-gradient(135deg, #f0985c 0%, #dc703f 100%) !important;
        border-radius: 4px !important;
        border: none !important;
    }

        .hamburger-menu .bar {
            background-color: #222 !important;
        }

    /* ── HERO — column-reverse so image appears on top ── */
    section.hero,
    .hero {
        /* display: flex !important;
        flex-direction: column-reverse !important; */
        grid-template-columns: unset !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

        .hero .hero-image,
        section.hero .hero-image {
            width: 100% !important;
            height: 240px !important;
            overflow: hidden !important;
            float: none !important;
            margin: 0 !important;
            flex-shrink: 0 !important;
        }

            .hero .hero-image img,
            section.hero .hero-image img {
                width: 100% !important;
                height: 240px !important;
                object-fit: cover !important;
                object-position: center top !important;
                display: block !important;
                float: none !important;
            }

        .hero .hero-inner,
        section.hero .hero-inner,
        .hero > .container.hero-inner {
            width: 100% !important;
            max-width: 100% !important;
            display: block !important;
            padding: 24px 16px !important;
            margin: 0 !important;
            float: none !important;
            background: var(--white);
        }

            /* Kill skeleton column floats inside hero */
            .hero .hero-inner [class*="column"],
            .hero .hero-inner [class*=" columns"],
            .hero [class*="column"],
            .hero [class*=" columns"] {
                width: 100% !important;
                margin-left: 0 !important;
                float: none !important;
                display: block !important;
            }

            .hero h1,
            .hero .hero-content h1,
            .hero .hero-inner h1 {
                font-size: 44px !important;
                line-height: 53px !important;
                margin-bottom: 14px !important;
                overflow-wrap: break-word !important;
            }

            .hero p,
            .hero .hero-content p,
            .hero .hero-inner p {
                font-size: 20px !important;
                line-height: 1.65 !important;
                margin-bottom: 20px !important;
                max-width: 100% !important;
            }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }

        .hero-buttons .btn,
        .hero-buttons a {
            /* width: 100% !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important; */
            padding: 14px 20px !important;
            font-size: 14px !important;
            float: none !important;
            box-sizing: border-box !important;
        }

    .hero-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

        .hero-links .dot {
            display: none !important;
        }

        .hero-links a, .hero-links p {
            font-size: 18px !important;
        }

    /* ── QUICK LINKS — full-width stacked ── */
    .quick-links {
        padding: 18px !important;
    }

        .quick-links > .container,
        .quick-links .container {
            max-width: 100% !important;
            width: 84% !important;
            padding: 0 !important;
            margin: 0px 23px !important;
        }

        .quick-links-inner,
        .quick-links .quick-links-inner {
            display: flex !important;
            flex-direction: column !important;
            gap: 0 !important;
            padding: 0 !important;
            width: 100% !important;
        }

        .quick-links .quick-links-inner > div {
            display: flex !important;
            flex-direction: column !important;
            gap: 0 !important;
            width: 100% !important;
        }

        .quick-link {
            width: 100% !important;
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: flex-start !important;
            gap: 16px !important;
            padding: 15px 20px !important;
            background: var(--primary-color) !important;
            color: var(--white) !important;
            border-radius: 0 !important;
            border-right: none !important;
            border-top: none !important;
            border-left: none !important;
            border-bottom: 1px solid rgba(255,255,255,0.12) !important;
            font-size: 18px !important;
            box-sizing: border-box !important;
            float: none !important;
            margin: 14px !important;
        }

        .quick-link:last-child {
            border-bottom: none !important;
        }

        .quick-link span {
            color: var(--white) !important;
        }

        .quick-link .ql-icon {
            font-size: 19px !important;
            width: 22px !important;
            flex-shrink: 0 !important;
            display: flex !important;
            align-items: center !important;
        }

            .quick-link .ql-icon i,
            .quick-link .ql-icon em {
                color: var(--white) !important;
            }

        .quick-link:hover,
        .quick-link:hover span,
        .quick-link:hover .ql-icon i,
        .quick-link:hover .ql-icon em {
            background: var(--primary-color) !important;
            color: var(--white) !important;
        }

        /* ── ABOUT ── */
        .about {
            padding: 40px 0 !important;
        }

        .about > .container, .about .container {
            padding: 0 16px !important;
        }

        .about-inner {
            display: flex !important;
            flex-direction: column !important;
            grid-template-columns: unset !important;
            gap: 24px !important;
        }

        .about-inner [class*="column"],
        .about-inner [class*=" columns"] {
            width: 100% !important;
            margin-left: 0 !important;
            float: none !important;
            display: block !important;
        }

    .about-content {
        order: 0 !important;
        width: 100% !important;
    }

    .about-image {
        order: 1 !important;
        width: 100% !important;
        box-shadow: 5px 5px 0 var(--primary-color) !important;
    }

    .about-image img {
        width: 100% !important;
        height: 230px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .about-content h2 {
        font-size: 36px !important;
    }

    .about-content p {
        font-size: 18px !important;
    }

    .about-content .btn,
    .about-content a.btn {
        /* width: 100% !important;
        display: flex !important;
        justify-content: center !important; */
        margin-top: 20px !important;
        box-sizing: border-box !important;
    }

    /* ── AREAS OF CARE ── */
    .areas-of-care {
        padding: 40px 0 !important;
    }

        .areas-of-care .section-header h2 {
            font-size: 22px !important;
        }

    .cards-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .care-card {
        padding: 20px 18px !important;
        border-radius: 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

        .care-card h3 {
            font-size: 27px !important;
            min-height: auto !important;
            margin-top: 10px !important;
        }

    .care-icon {
        /*border-radius: 50% !important;*/
        clip-path: none !important;
        /*width: 36px !important;
        height: 36px !important;*/
        font-size: 10px !important;
    }

    /* ── FACILITIES ── */
    .facilities {
        padding: 40px 0 !important;
    }

    .fac-carousel {
        margin-top: 20px !important;
        gap: 8px !important;
    }

    .fac-card {
        flex: 0 0 calc(46% - 6px) !important;
        min-width: 0 !important;
    }

    .fac-img {
        height: 120px !important;
    }

        .fac-img img {
            height: 120px !important;
        }

    .fac-body {
        padding: 12px 12px 14px !important;
    }

        .fac-body h3 {
            font-size: 20px !important;
            line-height: 1.3 !important;
        }

    .fac-campus {
        font-size: 16px !important;
    }

    .fac-address {
        font-size: 18px !important;
    }

    .fac-nav {
        width: 34px !important;
        height: 34px !important;
        font-size: 12px !important;
        flex-shrink: 0 !important;
    }

    .help-finding-banner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 16px !important;
        padding: 24px 18px !important;
    }

    .help-text {
        margin-left: 0 !important;
        text-align: center !important;
    }

    .help-finding-banner .btn {
        /* width: 100% !important; */
        justify-content: center !important;
    }

    /* ── BLOG ── */
    .blog-preview {
        padding: 40px 0 !important;
    }

        .blog-preview .container {
            padding: 0 16px !important;
        }

    .blog-card,
    div.blog-item {
        display: flex !important;
        flex-direction: column !important;
    }

    .blog-image,
    div.blog-item-img {
        width: 100% !important;
        height: 200px !important;
        min-height: unset !important;
        order: -1 !important;
        overflow: hidden !important;
        float: none !important;
    }

        .blog-image img,
        div.blog-item-img img {
            width: 100% !important;
            height: 200px !important;
            object-fit: cover !important;
            display: block !important;
        }

    .blog-content,
    div.blog-item-content {
        width: 100% !important;
        padding: 20px 16px 24px !important;
        box-sizing: border-box !important;
        float: none !important;
    }

        .blog-content h3 {
            font-size: 17px !important;
        }

        .blog-content p {
            font-size: 13.5px !important;
            margin-bottom: 16px !important;
        }

        /* Blog button: full width */
        .blog-content .btn,
        .blog-content .btn-secondary,
        .blog-content a.btn,
        .blog-content a.btn-secondary,
        div.blog-item-content .btn,
        div.blog-item-content .btn-secondary,
        div.blog-item-content a.btn,
        div.blog-item-content a.btn-secondary {
            /* width: 100% !important;
            max-width: 100% !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important; */
            box-sizing: border-box !important;
            padding: 14px 20px !important;
            float: none !important;
            height: auto !important;
            aspect-ratio: unset !important;
        }
/*Programe & Services*/
.container.full-container {
    width: 100% !important;
    max-width: 100% !important;
}
    /* ── FOOTER ── */
    .footer-top {
        flex-direction: column !important;
        gap: 28px !important;
        padding-top: 30px !important;
        margin-bottom: 28px !important;
    }

    .footer-links-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .footer-middle ul {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        padding-bottom: 24px !important;
    }

    .legal-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    /* ── SKELETON GRID KILL ── */
    main .row,
    .hero .row,
    .about .row,
    .quick-links .row,
    .areas-of-care .row,
    .facilities .row,
    .blog-preview .row {
        display: block !important;
        width: 100% !important;
        float: none !important;
        clear: both !important;
    }

        main .row::after, main .row::before {
            display: none !important;
        }

    main .one.column, main .two.columns,
    main .three.columns, main .four.columns,
    main .five.columns, main .six.columns,
    main .seven.columns, main .eight.columns,
    main .nine.columns, main .ten.columns,
    main .eleven.columns, main .twelve.columns,
    main .one-third.column, main .two-thirds.column,
    main .one-half.column {
        width: 100% !important;
        margin-left: 0 !important;
        float: none !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}


/* =============================================================
   SMALL PHONES — max-width: 480px
   ============================================================= */
@media (max-width: 480px) {

    .hero h1, .hero .hero-inner h1, .hero .hero-content h1 {
        font-size: 44px !important;
    }

    .hero .hero-image,
    .hero .hero-image img {
        height: 210px !important;
    }

    .about-content h2 {
        font-size: 36px !important;
    }

    .care-card h3 {
        font-size: 27px !important;
    }

    .fac-card {
        flex: 0 0 calc(78% - 6px) !important;
    }

    .quick-link {
        padding: 13px 14px !important;
        font-size: 18px !important;
    }

    .blog-content h3 {
        font-size: 15px !important;
    }

    .container, main .container {
        padding: 0 12px 8px !important;
    }
    .logo img {
        height: 50px;
    }
}


/* =============================================================
   VERY SMALL PHONES — max-width: 375px
   ============================================================= */
@media (max-width: 375px) {

    .hero h1, .hero .hero-inner h1, .hero .hero-content h1 {
        font-size: 40px !important;
    }

    .logo img {
        height: 30px !important;
    }

    .menu-toggle {
        width: 38px !important;
        height: 38px !important;
    }

    .top-link.badge-text {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }

    .care-card {
        padding: 16px 14px !important;
    }

        .care-card h3 {
            font-size: 15px !important;
        }

    .fac-card {
        flex: 0 0 calc(85% - 6px) !important;
    }

    .fac-nav {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
}
.nosize {
	position:absolute;
	width:0px;
	height:0px;
	overflow:hidden;
}
.smallsize {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.hide{
    display:none;
}

.insideRealContent img{
    margin:12px;
}

/* -- eForm --*/
.efTable input[type=checkbox] ~ label,
.efTable input[type=radio] ~ label {
    display: inline;
}


/* -- eForm - till here --*/
