/* ==========================================================
   ACF Bootstrap Theme — theme.css
   Loaded AFTER bootstrap.min.css
   ========================================================== */

/* ── Custom Properties ─────────────────────────────────── */
:root {
    --acfbt-primary:          #193045;   /* blue text & buttons */
    --acfbt-primary-dark:     #082f46;   /* dark blue (hover, banner bg) */
    --acfbt-secondary:        #49752e;   /* green */
    --acfbt-accent:           #c86828;   /* orange (CTA button) */
    --acfbt-accent-dark:      #a85520;   /* orange hover */
    --acfbt-dark:             #082f46;   /* darkest navy */
    --acfbt-light:            #f8f9fa;
    --acfbt-white:            #ffffff;
    --acfbt-text:             #1a1a1a;
    --acfbt-font-sans: 'Rethink Sans', sans-serif;
	--acfbt-font-serif: 'Radley', serif;
    --acfbt-font-heading:     var(--acfbt-font-sans);
    --acfbt-radius:           .5rem;
    --acfbt-transition:       .25s ease;
    --acfbt-shadow:           0 4px 24px rgba(0,0,0,.08);
    --acfbt-header-height:    70px;
	--acfbt-header-fz:    68px;
	--acfbt-header-mz:    48px;
	--bs-dark-gray:       #eae9e8;
	--bs-light: #eae9e8 !important;
}


.sd-section--dark-grey{
	background-color:var(--bs-dark-gray); 
}

h2{
	font-size:var(--acfbt-header-fz); 
}


.h3, h3 {
        font-size: 2.1rem;
}


hr{
	opacity:1 !important;
	margin:0px !important;
	color:var(--acfbt-primary-dark); 
}

a {
    color: rgba(var(--acfbt-primary));
    text-decoration: none;
}

.text-primary {
    color: rgba(var(--acfbt-primary-dark)) !important;
}


element.style {
}
.me-2 {
    margin-right: .5rem !important;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--acfbt-primary-dark);
    --bs-btn-border-color: var(--acfbt-primary-dark);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--acfbt-primary-dark);
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: var(--acfbt-primary-dark);
}



/* Section Backgrounds */
.acf--white{
    background: var(--acfbt-white);
}

.acf--light{
    background: var(--bs-dark-gray);
}

.acf--green{
    background: var(--acfbt-secondary);
}

.acf--navy{
    background: var(--acfbt-primary-dark);
}


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

html { scroll-behavior: smooth; }

body {
    font-family:    var(--acfbt-font-sans);
    color:          var(--acfbt-dark);
    line-height:    1.7;
    overflow-x:     hidden;
	font-optical-sizing: auto;
	 width: 100%;
}


html,
body {
    overflow-x: hidden;
    max-width: 100%;
}


img, svg { max-width: 100%; height: auto; }

/* ── Typography ─────────────────────────────────────────── */

h1, h2 {
    font-family:    var(--acfbt-font-heading);
    line-height:    1em;
    color:          var(--acfbt-dark);
}


h3, h4, h5, h6 {
    font-family:    var(--acfbt-font-heading);
    line-height:    1.25;
    color:          var(--acfbt-dark);
}

h2{
	font-size: var(--acfbt-header-fz);
}

@media (max-width: 767.98px) {
	
	
	h2{font-size:var(--acfbt-header-mz); }


	.h3, h3 {font-size: 1.1rem;}

	
	section,
		.container,
		.container-fluid {
			max-width: 100%;
		}
}
.section-title {
    font-size:  clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -.02em;
}

/* ── Header / Navbar ────────────────────────────────────── */
.site-header {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
    z-index:    1030;
}

.site-header .navbar { min-height: var(--acfbt-header-height); }

.site-header .navbar-brand {
    font-size:   1.25rem;
    color:       var(--acfbt-dark);
    text-decoration: none;
}
.site-header .navbar-brand:hover { color: var(--acfbt-primary); }

.site-header .nav-link {
    font-weight:  500;
    padding:      .5rem .75rem;
    color:        #333;
    transition:   color var(--acfbt-transition);
}
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--acfbt-primary); }

.site-header .dropdown-menu {
    border:       none;
    border-radius: var(--acfbt-radius);
    box-shadow:   var(--acfbt-shadow);
    padding:      .5rem;
}
.site-header .dropdown-item {
    border-radius: calc(var(--acfbt-radius) - 2px);
    transition:   background var(--acfbt-transition);
	padding:12px 20px;
}
.site-header .dropdown-item:hover { background: var(--acfbt-accent);color:#fff; }
.site-header .dropdown-item.active {background: var(--acfbt-primary-dark);}

.site-header  .dropdown-item-wrapper{
	margin:5px;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero-section {
    position:           relative;
    background-color:   var(--acfbt-dark);
    background-size:    cover;
    background-position: center;
    background-repeat:  no-repeat;
    min-height:         520px;
    display:            flex;
    align-items:        center;
}

.hero-overlay {
    position:   absolute;
    inset:      0;
    background: #000;
}

.hero-inner {
    position:   relative;
    padding:    5rem 1rem;
    width:      100%;
}

.min-vh-60 { min-height: 60vh; }

.hero-text          { position: relative; }
.hero-image-col img { width: 100%; border-radius: var(--acfbt-radius); }

/* ── Cards ──────────────────────────────────────────────── */
.card {
    border-radius:  var(--acfbt-radius);
    overflow:       hidden;
    transition:     transform var(--acfbt-transition), box-shadow var(--acfbt-transition);
}
.card:hover {
    transform:  translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.12);
}

.card-img-top {
    aspect-ratio: 16/9;
    object-fit:   cover;
    width:        100%;
}

.card-img-link { display: block; overflow: hidden; }
.card-img-link img { transition: transform .4s ease; }
.card-img-link:hover img { transform: scale(1.04); }

/* ── CTA Banner ─────────────────────────────────────────── */
.flex-cta-banner {
    position:           relative;
    background-size:    cover;
    background-position: center;
}

.cta-overlay {
    position:   absolute;
    inset:      0;
    background: rgba(0,0,0,.55);
}

/* ── Accordion ──────────────────────────────────────────── */
.accordion-item  { border-radius: var(--acfbt-radius) !important;  }
.accordion-button:not(.collapsed) { color: var(--acfbt-primary); }
.accordion-button:focus { box-shadow: none; }

/* ── Sidebar ────────────────────────────────────────────── */
.widget       { font-size: .95rem; }
.widget ul    { padding-left: 1.25rem; }
.widget ul li { margin-bottom: .25rem; }
.widget a     { color: var(--acfbt-primary); text-decoration: none; }
.widget a:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    color:      rgba(255,255,255,.8);
	
}

.footer-widgets { border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-bottom  { border-top: 1px solid var(--acfbt-primary-dark); }

.site-footer .widget-title { color: #fff; }
.site-footer a             { color: rgba(255,255,255,.75); text-decoration: none; }
.site-footer a:hover       { color: #fff; }
.site-footer .nav-link     { color: rgba(255,255,255,.65); padding: .25rem .5rem; }
.site-footer .nav-link:hover { color: #fff; }

.social-link {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:           36px;
    height:          36px;
    border-radius:   50%;
    background:      rgba(255,255,255,.1);
    color:           #fff;
    transition:      background var(--acfbt-transition);
}
.social-link:hover { background: var(--acfbt-primary); color: #fff !important; }

/* ── Pagination ─────────────────────────────────────────── */
.pagination .page-link {
    border-radius:  var(--acfbt-radius) !important;
    margin:         0 2px;
    color:          var(--acfbt-primary);
    border-color:   #dee2e6;
}
.pagination .page-item.active .page-link {
    background:  var(--acfbt-primary);
    border-color: var(--acfbt-primary);
}

/* ── Entry Content ──────────────────────────────────────── */
.entry-content img   { border-radius: var(--acfbt-radius); margin: 1.5rem 0; }
.entry-content h2    { margin-top: 2.5rem; }
.entry-content h3    { margin-top: 2rem; }
.entry-content blockquote {
    border-left: 4px solid var(--acfbt-primary);
    padding:     1rem 1.5rem;
    background:  var(--bs-primary-bg-subtle);
    border-radius: 0 var(--acfbt-radius) var(--acfbt-radius) 0;
    margin:      1.5rem 0;
    font-style:  italic;
}

/* ── Search Form ────────────────────────────────────────── */
.search-form { display: flex; gap: .5rem; }
.search-form label { flex: 1; margin: 0; }
.search-form .search-field  { border-radius: var(--acfbt-radius); }
.search-form .search-submit {
    white-space: nowrap;
    border-radius: var(--acfbt-radius);
}

/* ── Skip link ──────────────────────────────────────────── */
.visually-hidden-focusable:focus {
    position:   fixed;
    top:        1rem;
    left:       1rem;
    z-index:    9999;
    padding:    .5rem 1rem;
    background: var(--acfbt-primary);
    color:      #fff;
    border-radius: var(--acfbt-radius);
}

/* ── Utilities ──────────────────────────────────────────── */
.shadow-sm { box-shadow: var(--acfbt-shadow) !important; }

@media (max-width: 991.98px) {
    .hero-section  { min-height: 400px; }
    .hero-inner    { padding: 3rem 1rem; }
    .hero-heading  { font-size: clamp(1.75rem, 6vw, 2.5rem); }
}

/* ── Banner ──────────────────────────────────────────────── */
.site-banner {
    background-color: var(--acfbt-primary-dark);
    color: var(--acfbt-white);
    font-size: 0.8125rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.65rem 0;
}

.site-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.site-banner__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.9;
}

/* ── Header / Navbar ─────────────────────────────────────── */
.site-header {
    background: var(--acfbt-white);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
}

.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-logo {
    max-height: 56px;
    width: auto;
}

/* ── Nav Links ───────────────────────────────────────────── */
.navbar-nav .nav-link {
    color: var(--acfbt-primary);
    font-weight: 500;
    padding-inline: 0.9rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--acfbt-accent);
}

/* ── Contact Button ──────────────────────────────────────── */
.btn-contact {
    background-color: var(--acfbt-accent);
    color: var(--acfbt-white);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1rem 0.8rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-contact:hover,
.btn-contact:focus {
    background-color: var(--acfbt-accent-dark);
    color: var(--acfbt-white);
}

.btn-contact__arrow {
    background: #ae5920;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.btn-contact:hover .btn-contact__arrow {
    background: rgba(255, 255, 255, 0.35);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding-block: 1.3rem;
        border-bottom: 1px solid rgba(8, 47, 70, 0.08);
    }

    .btn-contact {
        width: fit-content;
        margin-top: 0.75rem;
    }
	
	.nav-link {
        font-size: 15px;
    }
}


/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    color: var(--acfbt-primary-dark);
}

/* Column headings: LINKS / SUPPORT / LANGUAGE */
.footer-heading {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--acfbt-primary-dark);
    margin-bottom: 1.25rem;
}

/* ── Logo ────────────────────────────────────────────────── */
.footer-logo {
    max-width: 250px;
    height: auto;
}

.footer-site-name {
    font-size: 1.25rem;
    color: var(--acfbt-primary-dark);
}

/* ── Nav Links column ────────────────────────────────────── */
.footer-nav-list li {
    margin-bottom: 0.75rem;
}

.footer-nav-list a {
    color: var(--acfbt-primary-dark);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: var(--acfbt-accent);
}

/* ── Support / Contact column ────────────────────────────── */
.footer-contact li {
    margin-bottom: 0.85rem;
    color: var(--acfbt-primary-dark);
    line-height: 1.5;
}

.footer-contact a {
    color: var(--acfbt-primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--acfbt-accent);
}

/* ── Language pill (fallback) ────────────────────────────── */
.footer-lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--acfbt-primary-dark);
    color: var(--acfbt-white);
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 160px;
    justify-content: space-between;
}

.footer-lang-pill__caret {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ── Business Hours ──────────────────────────────────────── */
.footer-hours {
    font-size: 0.9rem;
    color: var(--acfbt-primary-dark);
    line-height: 1.6;
}

/* ── Copyright Bar ───────────────────────────────────────── */
.footer-bottom {
    border-top: 1px solid var(--acfbt-primary-dark);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--acfbt-primary-dark);
    font-weight: 500;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .footer-main {
        text-align: center;
    }

    .footer-logo {
        max-width: 160px;
    }

    .footer-lang-pill {
        justify-content: center;
        width: 100%;
    }
}

/* ── Hero Shared ─────────────────────────────────────────── */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--acfbt-accent);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-eyebrow__icon {
    flex-shrink: 0;
    stroke: var(--acfbt-accent);
}

.hero-eyebrow--light {
    color: #fff;
}

.hero-eyebrow--light .hero-eyebrow__icon {
    stroke: #fff;
}

/* Heading */
.hero-heading {
    font-size: 72px;
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.75rem;
	font-family: var(--acfbt-font-serif);
}

@media (max-width: 767.98px) {
	.hero-heading{font-size: 48px;}
}

/* Sub-heading */
.hero-subheading {
    font-weight: 400;
    color: var(--acfbt-primary-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
	font-family: var(--acfbt-font-serif);
}

/* Description */
.hero-description {
    font-size: 1rem;
    color: var(--acfbt-primary-dark);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
	font-family: var(--acfbt-font-serif);
}

/* Buttons row */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 50px;
    padding: 1.2rem 1rem 1.2rem 2.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    line-height: 1;
}

.hero-btn:hover {
    opacity: 0.88;
    transform: translateX(2px);
}
.hero-btn--dark .hero-btn__arrow {
	background: #224052;
}

.hero-btn--green .hero-btn__arrow {
	background: #39622c;
}


.hero-btn__arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Dark navy button */
.hero-btn--dark {
    background-color: var(--acfbt-primary-dark);
    color: #fff;
}

/* Green button */
.hero-btn--green {
    background-color: var(--acfbt-secondary);
    color: #fff;
}

/* ── Split Hero ───────────────────────────────────────────── */
.hero-split {
    background-color: var(--acfbt-light);
}

.hero-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
	
}

.hero-split__text {
    display: flex;
    align-items: center;
    padding: 4rem 0 4rem 0;
}

.hero-split__content {
    width: 100%;
    padding: 0 3rem 0 0;
}

.hero-split__image {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 480px;
}

/* ── Full Hero ────────────────────────────────────────────── */
.hero-full {
    background-size: cover;
    background-position: center;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    pointer-events: none;
}

.hero-full__inner {
    position: relative;
    z-index: 1;
    padding-block: 5rem;
}


/* ── Minimal Hero ─────────────────────────────────────────── */
.hero-minimal__inner {
    padding-block: 3rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-split__inner {
        grid-template-columns: 1fr;
		display: flex;
		flex-direction: column-reverse;
    }

    .hero-split__image {
        min-height: 600px;
        order: -1;   /* image on top on mobile */
    }

    .hero-split__content {
        margin-left: 0;
        padding: 2.5rem 1.5rem;
    }

    .hero-description {
        max-width: 100%;
    }
	
	.hero-split__text {
		padding: 4rem 0 0rem 0;
   }
}


/* ── About Section ───────────────────────────────────────── */
.about-section {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* ── Header ──────────────────────────────────────────────── */
.about-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}



.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot--green  { background-color: var(--acfbt-secondary); }
.dot--navy   { background-color: var(--acfbt-primary-dark); }
.dot--orange { background-color: var(--acfbt-accent); }

.about-section__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    line-height: 1.2;
    max-width: 800px;
    margin-inline: auto;
}

/* ── Two-column body ─────────────────────────────────────── */
.about-section__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ── Image Grid ──────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.about-grid__left,
.about-grid__right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-grid__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

.about-grid__img--tl { height: 220px; }
.about-grid__img--bl { height: 220px; }
.about-grid__img--tr { height: 260px; }

.about-grid__left > *:last-child,
.about-grid__right > *:last-child {
    margin-bottom: 0;
}

/* ── Stat Box ────────────────────────────────────────────── */
.about-grid__stat {
    background-color: var(--acfbt-primary-dark);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 180px;
}

.about-stat__number {
    font-size: 4rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* ── Text Content ────────────────────────────────────────── */
.about-content__lead {
    font-size: 1.0625rem;
    color: var(--acfbt-primary-dark);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.about-content__body p {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .about-section__body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-grid__img--tl,
    .about-grid__img--bl { height: 180px; }
    .about-grid__img--tr { height: 210px; }
}

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

.flex-image-text{
	padding-top:5em;
	padding-bottom:5em;
}

/* ── Image + Text Section ────────────────────────────────── */
.it-section {
    padding: 5rem 0;
}

.it-section__main-heading {
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.it-section__main-description {
    max-width: 700px;
    margin: 0 auto;
}

.it-section__main-description p:last-child {
    margin-bottom: 0;
}

.it-section__heading {
    font-family: var(--acfbt-font-serif);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.it-section__body p {
    line-height: 1.75;
    margin-bottom: 1rem;
    max-width: 560px;
}

/* ── Image ───────────────────────────────────────────────── */
.it-section__img-wrap {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(8, 47, 70, 0.10);
}

.it-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 680px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .it-section {
        padding: 3rem 0;
    }

    .it-section__body p {
        max-width: 100%;
    }
}

/* ── Card Slider Section ─────────────────────────────────── */
.card-slider-section {
    padding: 5rem 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

/* Header */
.card-slider-section__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
}

.card-slider-section__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    line-height: 1.2;
    max-width: 700px;
    margin-inline: auto;
}

/* Slider wrapper — full bleed, clips overflow */
.card-slider-wrap {
    position: relative;
    padding: 0 5rem;
}

/* Track */
.card-slider {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s ease;
}

/* Individual slide */
.card-slide {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 0;
}

.card-slide__inner {
    background-color: #ebebeb;
    padding: 2.5rem 2rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

/* Quote */
.card-slide__quote {
    color: var(--acfbt-primary-dark);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* Body */
.card-slide__body {
    font-size: 0.9375rem;
    color: #3a3a3a;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 2rem;
}

/* Footer: author + stars */
.card-slide__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.card-slide__stars {
    display: flex;
    gap: 2px;
}

/* Prev / Next buttons */
.card-slider__btn {
    position: absolute;
    bottom: -40px;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--acfbt-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
}

.card-slider__btn:hover {
    background: var(--acfbt-primary-dark);
    color: #fff;
    border-color: var(--acfbt-primary-dark);
}

.card-slider__btn--prev { left: 0; }
.card-slider__btn--next {
    right: 0;
    background: var(--acfbt-accent);
    color: #fff;
    border-color: var(--acfbt-accent);
}

.card-slider__btn--next:hover {
    background: var(--acfbt-accent-dark);
    border-color: var(--acfbt-accent-dark);
}

/* Pagination dots */
.card-slider__pagination {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 4rem;
}

.card-slider__pagination .cs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
    border: none;
    padding: 0;
}

.card-slider__pagination .cs-dot.is-active {
    background: var(--acfbt-accent);
    width: 28px;
    border-radius: 10px;
}

.card-slider-section  .slick-dots li {
    width:auto !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .card-slider-wrap {
        padding: 0 3rem;
    }

    .card-slide {
        flex: 0 0 100%;
    }
}


/* ==========================================
   Modern Controls (Slick)
========================================== */
.card-slider-wrap--modern{
	margin-bottom:50px;
	padding: 0px !important;
}
.card-slider-wrap--modern .slick-dots{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    align-items:center;
    gap:12px;
    margin:0;
}

.card-slider-wrap--modern .slick-dots li{
    width:auto;
    height:auto;
    margin:0;
}

.card-slider-wrap--modern .slick-dots li.slick-active button{
    width:10px !important;
    height:10px !important;
    border-radius:50%;
    background:#d6d6d6;
    padding:0;
	margin-right: 10px;
}

.card-slider-wrap--modern .card-slick-next{
	right: 43% !important;
	background: var(--acfbt-secondary);
    border-color: var(--acfbt-secondary);
}

.card-slider-wrap--modern .slick-dots li.slick-active button{
	background: var(--acfbt-secondary) !important;
	margin-left: 10px;
}

.card-slider-wrap--modern .card-slick-prev{
	left: 43% !important;
	background: var(--acfbt-primary-dark) !important;
	color: #ffffff !important;
}

.card-slider-wrap--modern  .slick-disabled{
	opacity:1 !important;
}

.card-slider-wrap--modern .slick-dots button:before{
    display:none;
}

.card-slider-wrap--modern .slick-dots .slick-active button{
    background:var(--acfbt-secondary);
}

/* Prev / Next */

.card-slider-wrap--modern .slick-prev,
.card-slider-wrap--modern .slick-next{
    width:120px;
    height:120px;
    border-radius:50%;
    z-index:10;
}

.card-slider-wrap--modern .slick-prev{
    left:calc(50% - 180px);
}

.card-slider-wrap--modern .slick-next{
    right:calc(50% - 180px);
}

.card-slider-wrap--modern .slick-prev:before,
.card-slider-wrap--modern .slick-next:before{
    font-size:48px;
    opacity:1;
}

.card-slider-wrap--modern .slick-prev{
    background:var(--acfbt-primary-dark);
}

.card-slider-wrap--modern .slick-next{
    background:var(--acfbt-secondary);
}

.card-slider-wrap--modern .slick-prev:hover{
    background:var(--acfbt-primary);
}

.card-slider-wrap--modern .slick-next:hover{
    background:var(--acfbt-secondary);
}

/* ── Cards + Text Section ────────────────────────────────── */
.ct-section {
    padding: 5rem 0;
    background-color: #fff;
}

/* ── Top two-column layout ───────────────────────────────── */
.ct-section__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Left column */
.ct-section__heading {
    font-family: var(--acfbt-font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--acfbt-primary-dark);
    line-height: 1.15;
    margin-bottom: 2rem;
}

/* Right column */
.ct-section__right p {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.ct-section__right p:last-child {
    margin-bottom: 0;
}

/* ── Icon Cards Row ──────────────────────────────────────── */
.ct-icon-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.ct-icon-card {
    background-color: #f3f4f4;
    border-radius: 1rem;
    padding: 1.75rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: box-shadow 0.2s;
}

.ct-icon-card:hover {
    box-shadow: 0 4px 20px rgba(8, 47, 70, 0.08);
}

.ct-icon-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-icon-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ct-icon-card__label {
    font-size: 0.9375rem;
    color: var(--acfbt-primary-dark);
    line-height: 1.4;
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .ct-section__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ct-icon-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .ct-icon-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Section — full width, clips overflow */
.card-slider-section {
    padding: 5rem 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

/* Wrap — no padding, just relative for buttons */
.card-slider-wrap {
    position: relative;
    overflow: hidden;
}

/* Track */
.card-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    transition: transform 0.4s ease;
    will-change: transform;
    overflow: visible;
}

/* Slides */
.card-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
}

/* Prev / Next buttons — outside wrap, positioned on section */
.card-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--acfbt-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}

.card-slider__btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.card-slider__btn:hover:not(:disabled) {
    background: var(--acfbt-primary-dark);
    color: #fff;
}

.card-slider__btn--prev {
    left: 1rem;
}

.card-slider__btn--next {
    right: 1rem;
    background: var(--acfbt-accent);
    color: #fff;
    border-color: var(--acfbt-accent);
}

.card-slider__btn--next:hover:not(:disabled) {
    background: var(--acfbt-accent-dark);
    border-color: var(--acfbt-accent-dark);
}

/* Pagination */
.card-slider__pagination {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2rem;
}

.cs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
    border: none;
    padding: 0;
}

.cs-dot.is-active {
    background: var(--acfbt-accent);
    width: 28px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .card-slide {
        flex: 0 0 85vw;
        min-width: 85vw;
        max-width: 85vw;
    }
}


/* ── Card Slider Section ─────────────────────────────────── */
.card-slider-section {
    padding: 5rem 0;
    background-color: #fff;
}

/* Header */
.card-slider-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.card-slider-section__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    line-height: 1.2;
    max-width: 700px;
    margin-inline: auto;
}

/* ── Wrap — space for arrows ─────────────────────────────── */
.card-slider-wrap {
    position: relative;
    padding: 0 4rem;
}

/* ── Slide inner card ────────────────────────────────────── */
.card-slide {
    padding: 0 0.75rem;   /* gap between cards */
}

.card-slide__inner {
    background-color: #ebebeb;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.card-slider-wrap--modern .card-slide__inner{
	min-height: 755px;
}

.card-slide__quote {
    color: var(--acfbt-primary-dark);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.card-slide__body {
    font-size: 0.9375rem;
    color: #3a3a3a;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.card-slide__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.card-slide__author {
    font-weight: 600;
    color: var(--acfbt-primary-dark);
}

.card-slide__stars {
    display: flex;
    gap: 2px;
}

/* ── Slick arrows ────────────────────────────────────────── */
.card-slick-prev,
.card-slick-next {
    position: absolute;
    bottom: -95px;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #ebebeb;
    color: var(--acfbt-primary-dark);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.card-slick-prev {
    left: 1%;
}

.card-slick-next {
    right: 1%;
    background: var(--acfbt-accent);
    color: #fff;
    border-color: var(--acfbt-accent);
}

.card-slick-prev:hover {
    background: var(--acfbt-primary-dark);
    color: #fff;
    border-color: var(--acfbt-primary-dark);
}

.card-slick-next:hover {
    background: var(--acfbt-accent-dark);
    border-color: var(--acfbt-accent-dark);
}

.card-slick-prev.slick-disabled,
.card-slick-next.slick-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* ── Slick dots ──────────────────────────────────────────── */
.card-slider .slick-dots {
    bottom: -60px;
}

.card-slider .slick-dots li button:before {
    display: none;
}

.card-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    transition: background 0.2s, width 0.2s;
}

.card-slider .slick-dots li.slick-active button {
    background: var(--acfbt-accent);
    width: 28px;
    border-radius: 10px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .card-slider-wrap {
        padding: 0 1rem;
    }
}
/* ── Steps Section ───────────────────────────────────────── */
.ss-section {
    padding: 5rem 0;
}

.ss-section--light { background-color: #e8e8e8; }
.ss-section--white { background-color: #fff; }

/* ── Header ──────────────────────────────────────────────── */
.ss-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ss-section__heading {
    font-family: var(--acfbt-font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--acfbt-primary-dark);
    line-height: 1.2;
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 1rem;
}

.ss-section__subheading {
    font-size: 1rem;
    color: var(--acfbt-primary-dark);
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.6;
}

.card-slider-section .slick-dotted {
    margin-bottom: 80px !important;
}


/* ── Steps Grid ──────────────────────────────────────────── */
.ss-steps {
    display: grid;
    grid-template-columns: repeat( var(--step-count, 3), 1fr );
    gap: 0;
    margin-bottom: 3.5rem;
    align-items: start;
}

/* ── Single Step ─────────────────────────────────────────── */
.ss-step {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
}

/* ── Number row — 3-col grid: spacer | number | connector ── */
.ss-step__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding-bottom: 2rem;
}

/* Number always in center column */
.ss-step__number {
    grid-column: 2;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ss-step__number--navy  { background-color: var(--acfbt-primary-dark); }
.ss-step__number--green { background-color: var(--acfbt-secondary); }

/* Connector fills cell 3 (right side only) */
.ss-step__connector {
    grid-column: 3;
    display: block;
    border: none;
    border-top: 4px dotted var(--acfbt-primary-dark);
    margin-left: 0.6rem;
    opacity: 0.6;
	position:absolute;
	left: 75%;
    width: 200px;
}



/* ── Body: padding lives here, not on .ss-step ──────────── */
.ss-step__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

/* ── Icon circle ─────────────────────────────────────────── */
.ss-step__icon-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    flex-shrink: 0;
}

.ss-step__icon-wrap img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* ── Step title ──────────────────────────────────────────── */
.ss-step__title {
    font-family: var(--acfbt-font-serif);
    font-size: 1.5rem;
    color: var(--acfbt-primary-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

/* ── Step description ────────────────────────────────────── */
.ss-step__desc {
    font-size: 0.9375rem;
    color: #3a3a3a;
    line-height: 1.7;
    max-width: 280px;
    margin-inline: auto;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .ss-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* All steps centered on mobile */
    .ss-step__top,
    .ss-step:first-child .ss-step__top,
    .ss-step:last-child .ss-step__top {
        grid-template-columns: 0 auto 0;
        padding-bottom: 1.5rem;
    }

    .ss-step__connector {
        display: none;
    }

    .ss-step__body {
        padding: 0;
    }

    .ss-step__icon-wrap {
        width: 130px;
        height: 130px;
    }

    .ss-step__icon-wrap img {
        width: 64px;
        height: 64px;
    }
}


/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    overflow: hidden;
    padding: 5rem 2rem;
}

/* Background colour variants */
.cta-banner--navy  { background-color: var(--acfbt-primary-dark); }
.cta-banner--green { background-color: var(--acfbt-secondary); }
.cta-banner--dark  { background-color: #0a1f2e; }

/* ── Side images — absolutely positioned ─────────────────── */
.cta-banner__img {
    position: absolute;
    z-index: 2;
}

.cta-banner__img img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

/* Left image: top-left corner */
.cta-banner__img--left {
    top: 50px;
    left: 50px;
}

.cta-banner__img--left img {
    border-top-left-radius: 0;     /* flush with section corner */
    border-bottom-left-radius: 0;
}

/* Right image: bottom-right corner */
.cta-banner__img--right {
    bottom: 50px;
    right: 50px;
}

.cta-banner__img--right img {
    border-bottom-right-radius: 0; /* flush with section corner */
    border-top-right-radius: 0;
}

/* ── Center content ──────────────────────────────────────── */
.cta-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
    max-width: 680px;
}

/* White dot variant */
.dot--white { background-color: #fff; }

/* Heading */
.cta-banner__heading {
    font-family: var(--acfbt-font-serif);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: #fff;
    line-height: 1.35;
    margin-bottom: 0;
}

/* ── Decorative circles ──────────────────────────────────── */
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 353'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' stop-color='white' stop-opacity='0.07'/%3E%3Cstop offset='100%25' stop-color='white' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cellipse cx='175' cy='176.5' rx='175' ry='176.5' fill='url(%23g)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.cta-banner::before {
    width: 340px;
    height: 340px;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-banner::after {
    width: 280px;
    height: 280px;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .cta-banner {
        padding: 3rem 1.5rem 4rem;
    }

    .cta-banner__img img {
        width: 140px;
        height: 170px;
    }

    .cta-banner__content {
        padding: 1rem 0;
    }
}

@media (max-width: 575.98px) {
    .cta-banner__img {
        display: none;
    }
}

/* ── Events Section ──────────────────────────────────────── */
.events-section {
    padding: 5rem 0;
    background: #fff;
}

/* ── Header ──────────────────────────────────────────────── */
.events-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .events-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .events-section__header .btn,
    .events-section__header a {
        width: 100%;
        text-align: center;
    }
}

.events-section__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    line-height: 1.15;
    margin: 0;
}

.events-section__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--acfbt-primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: color 0.2s;
    padding-bottom: 0.5rem;
}

.events-section__view-all:hover {
    color: var(--acfbt-accent);
}

/* ── Event List ──────────────────────────────────────────── */
.events-list {
    border-top: 1px solid #e0e0e0;
}

/* ── Single Row ──────────────────────────────────────────── */
.event-row {
    display: grid;
    grid-template-columns: 100px 200px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Date block */
.event-row__date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.event-row__day {
    font-size: 4rem;
    color: var(--acfbt-primary-dark);
    line-height: 1;
    margin-bottom: 0.15rem;
}

.event-row__month {
    font-size: 0.875rem;
    color: var(--acfbt-primary-dark);
    font-weight: 400;
}

/* Thumbnail */
.event-row__thumb {
    width: 200px;
    height: 140px;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
}

.event-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Info */
.event-row__title {
    font-size: 1.25rem;
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-row__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.event-row__title a:hover {
    color: var(--acfbt-accent);
}

.event-row__meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.event-row__meta svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.event-row__meta a {
    color: inherit;
    text-decoration: none;
}

.event-row__meta a:hover {
    color: var(--acfbt-accent);
    text-decoration: underline;
}

/* CTA button */
.hero-btn--accent {
    background-color: var(--acfbt-accent);
    color: #fff;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
}

.hero-btn--accent:hover {
    background-color: var(--acfbt-accent-dark);
    color: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .event-row {
        grid-template-columns: 70px 1fr auto;
        grid-template-rows: auto auto;
    }

    .event-row__thumb {
        display: none;
    }

    .event-row__day  { font-size: 3rem; }
}

@media (max-width: 575.98px) {
    .event-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-row__date {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .event-row__day { font-size: 2rem; }
}


/* ── Services Tab Section ────────────────────────────────── */
.svct-section {
    padding: 5rem 0;
}

.svct-section--navy  { background-color: var(--acfbt-primary-dark); }
.svct-section--white { background-color: #fff; }
.svct-section--light { background-color: var(--acfbt-light); }

/* ── Header ──────────────────────────────────────────────── */
.svct-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.svct-section__heading {
    font-family: var(--acfbt-font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.svct-section--white .svct-section__heading,
.svct-section--light .svct-section__heading {
    color: var(--acfbt-primary-dark);
}

.svct-section__subheading {
    color: rgba(255, 255, 255, 0.85);
    margin-inline: auto;
    line-height: 1.7;
}

.svct-section--white .svct-section__subheading,
.svct-section--light .svct-section__subheading {
    color: #3a3a3a;
}

/* Outline button variant for dark bg */
.hero-btn--outline {
	background-color: #fff;
    color: var(--acfbt-primary-dark);
	border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}


.hero-btn--outline .hero-btn__arrow{
	background-color: var(--acfbt-primary-dark);
	 color: #fff;
}

/* ── Tab Layout ──────────────────────────────────────────── */
.svct-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ── Tab List (left) ─────────────────────────────────────── */
.svct-tabs {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svct-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: none;
    background: transparent;
    border-radius: 0.65rem;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.svct-tab:last-child {
    border-bottom: none;
}

.svct-tab:hover {
    background: rgba(8, 47, 70, 0.05);
}

.svct-tab.is-active {
    background-color: var(--acfbt-primary-dark);
}

.svct-tab.is-active img{
	filter: brightness(0) invert(1);
}

.svct-tab__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svct-tab__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svct-tab__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--acfbt-primary-dark);
    line-height: 1.3;
}

.svct-tab.is-active .svct-tab__label {
    color: #fff;
}

/* ── Panels (right) ──────────────────────────────────────── */
.svct-panels {
    position: relative;
}

.svct-panel {
    display: none;
}

.svct-panel.is-active {
    display: block;
}

.svct-panel__image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.svct-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.svct-panel__title {
    font-family: var(--acfbt-font-serif);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.svct-section--white .svct-panel__title,
.svct-section--light .svct-panel__title {
    color: var(--acfbt-primary-dark);
}

.svct-panel__excerpt {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

.svct-section--white .svct-panel__excerpt,
.svct-section--light .svct-panel__excerpt {
    color: #3a3a3a;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .svct-layout {
        grid-template-columns: 1fr;
    }

    .svct-tabs {
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .svct-tab {
        border-bottom: none;
        border-radius: 0.5rem;
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .svct-tabs {
        grid-template-columns: 1fr;
    }
}

/* ── Tab Layout — equal height ───────────────────────────── */
.svct-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: stretch;   /* ← changed from start to stretch */
}

/* ── Tab List — full height ──────────────────────────────── */
.svct-tabs {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;           /* ← fill full grid row height */
    box-sizing: border-box;
}

/* ── Panels wrapper — full height ────────────────────────── */
.svct-panels {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Active panel fills available height ─────────────────── */
.svct-panel {
    display: none;
    flex-direction: column;
    height: 100%;
}

.svct-panel.is-active {
    display: flex;
    flex: 1;
}

/* ── Image fills remaining space ─────────────────────────── */
.svct-panel__image {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}


/* ── Tab items distribute evenly ─────────────────────────── */
.svct-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: none;
    background: transparent;
    border-radius: 0.65rem;
    cursor: pointer;
    text-align: left;
    width: 100%;
    flex: 1;                /* ← each tab takes equal share of height */
    transition: background 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.svct-tab:last-child {
    border-bottom: none;
}

.svct-tab:hover {
    background: rgba(8, 47, 70, 0.05);
}

.svct-tab.is-active {
    background-color: var(--acfbt-primary-dark);
}

.svct-tab__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svct-tab__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svct-tab__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--acfbt-primary-dark);
    line-height: 1.3;
}

.svct-tab.is-active .svct-tab__label {
    color: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .svct-layout {
        grid-template-columns: 1fr;
        align-items: start;  /* reset on mobile */
    }

    .svct-tabs {
        height: auto;
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .svct-tab {
        flex: unset;
        border-bottom: none;
        border-radius: 0.5rem;
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .svct-panel {
        height: auto;
    }

    .svct-panel.is-active {
        flex: unset;
    }
}

@media (max-width: 575.98px) {
    .svct-tabs {
        grid-template-columns: 1fr;
    }
}

/* ── Newsletter Section ──────────────────────────────────── */
.nl-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.nl-section--white { background-color: #fff; }
.nl-section--transparent { background-color: transparent; }
.nl-section--light { background-color: var(--acfbt-light); }
.nl-section--navy  { background-color: var(--acfbt-primary-dark); }

/* Decorative background image (right side) */
.nl-section::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;

    /* Use CSS variable if image provided, fallback to tinted circle */
    background-image: var(--nl-bg-image, none);
    background-size: cover;
    background-position: center;

    /* Fallback when no image */
    background-color: rgba(71, 118, 56, 0.08);

    /* Soften the edges */
    overflow: hidden;
    opacity: 0.18;
}

/* If image is set, increase opacity slightly */
.nl-section[style*="--nl-bg-image"]::after {
    opacity: 0.25;
    background-color: transparent;
}
/* ── Inner two-column layout ─────────────────────────────── */
.nl-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Left text ───────────────────────────────────────────── */
.nl-section__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.nl-section--navy .nl-section__heading {
    color: #fff;
}

.nl-section__description {
    color: #3a3a3a;
    line-height: 1.75;
    max-width: 480px;
}

.nl-section--navy .nl-section__description {
    color: rgba(255, 255, 255, 0.8);
}

/* ── Form wrapper card ───────────────────────────────────── */
.nl-form-wrap {
    overflow: hidden;
}

.nl-form-wrap__notice {
    padding: 1rem;
    color: #888;
    font-size: 0.875rem;
}

/* ── Gravity Form overrides ──────────────────────────────── */

/* Hide GF title/description if shown */
.nl-form-wrap .gform_title,
.nl-form-wrap .gform_description {
    display: none;
}

/* Remove default GF margins */
.nl-form-wrap .gform_wrapper {
    margin: 0 !important;
}

.nl-form-wrap .gform_body {
    padding: 0;
}

/* Email input field */
.nl-form-wrap .gfield {
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.nl-form-wrap .ginput_container input[type="email"],
.nl-form-wrap .ginput_container input[type="text"] {
    width: 100% !important;
    background: #f0f2f3 !important;
    border: none !important;
    border-radius: 0.75rem 0.75rem 0 0 !important;
    padding: 1.25rem 1.5rem !important;
    font-size: 1rem !important;
    color: var(--acfbt-primary-dark) !important;
    box-shadow: none !important;
    outline: none !important;
}

.nl-form-wrap .ginput_container input::placeholder {
    color: #888 !important;
}

/* Submit button */
.nl-form-wrap .gform_footer,
.nl-form-wrap .gform_page_footer {
    padding: 0 !important;
    margin: 0 !important;
}

.nl-form-wrap input[type="submit"],
.nl-form-wrap button[type="submit"] {
    width: 100% !important;
    background-color: var(--acfbt-secondary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 0 0.75rem 0.75rem !important;
    padding: 1.25rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    transition: background-color 0.2s !important;
    letter-spacing: 0.01em !important;
}

.nl-form-wrap input[type="submit"]:hover,
.nl-form-wrap button[type="submit"]:hover {
    background-color: #3a6230 !important;
}

/* Add send icon before submit text via pseudo — only works on button not input */
.nl-form-wrap .gform_button::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Hide GF validation errors styling — keep it clean */
.nl-form-wrap .gfield_error input {
    border-bottom: 2px solid #e53e3e !important;
}

.nl-form-wrap .validation_message {
    font-size: 0.8rem !important;
    color: #e53e3e !important;
    padding: 0.25rem 1.5rem !important;
}

/* Confirmation message */
.nl-form-wrap .gform_confirmation_message {
    padding: 1.5rem !important;
    text-align: center !important;
    color: var(--acfbt-secondary) !important;
    font-weight: 600 !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .nl-section__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nl-section__description {
        max-width: 100%;
    }
}

/* ===========================
   GRAVITY FORM STYLING
=========================== */

/* Hide label */
#gform_1 .gfield_label {
    display: none !important;
}

/* Form wrapper */
#gform_1 {
    width: 100%;
    margin: 0 auto;
}

/* Form body */
#gform_1 .gform-body {
    background: #e8eaed;
    border-radius: 16px 16px 0 0;
    padding: 30px 25px 20px;
}

/* Input field */
#gform_1 .ginput_container input[type="email"],
#gform_1 .ginput_container input[type="text"],
#gform_1 .ginput_container input {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    font-size: 18px !important;
    color: #2c3e50 !important;
    padding: 5px 0 !important;
    font-weight: 400 !important;
}

/* Placeholder */
#gform_1 .ginput_container input::placeholder {
    color: #2c3e50 !important;
    opacity: 0.7;
    font-size: 18px;
}

/* Remove default gform field border/bg */
#gform_1 .gfield {
    padding: 0 !important;
    margin: 0 !important;
}

#gform_1 .gfield input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#gform_submit_button_1.gform_button.button {
    display: block;
    width: 100%;
    background-color: #477638 !important;
    color: #ffffff;
    border: none;
    border-radius: 0 0 16px 16px !important;
    padding: 30px 24px !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease;
	margin-top: -20px;

    /* Icon via background-image so we don't touch the input's content */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'%3E%3C/line%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'%3E%3C/polygon%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center left calc(48% - 55px); /* nudge icon left of text */
}

#gform_submit_button_1.gform_button.button:hover {
    background-color: #3d5636;
}

#gform_submit_button_1.gform_button.button:active {
    background-color: #33472e;
}
/* ===========================
   GTRANSLATE SWITCHER
=========================== */

/* Hide default wrapper bg */
.gt_switcher.notranslate {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    display: inline-block !important;
}

/* ===========================
   SELECTED / CURRENT LANGUAGE
=========================== */
.gt_switcher .gt_selected {
    background: #1a2b3c !important;
    border-radius: 50px !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}

.gt_switcher .gt_selected a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 25px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    min-width: 180px !important;
    white-space: nowrap !important;
}

/* Flag */
.gt_switcher .gt_selected a img {
    width: 28px !important;
    height: 20px !important;
    object-fit: cover !important;
    border-radius: 3px !important;
    flex-shrink: 0 !important;
}

/* Add chevron arrow via pseudo */
.gt_switcher .gt_selected a::after {
    content: '';
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    margin-left: auto !important;
    transition: transform 0.3s ease !important;
}

/* Rotate chevron when open */
.gt_switcher.open .gt_selected a::after {
    transform: rotate(180deg) !important;
}

/* ===========================
   DROPDOWN OPTIONS
=========================== */
.gt_switcher .gt_option {
    background: #1a2b3c !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
    border: none !important;
    margin-top: 8px !important;
    min-width: 100% !important;
}

.gt_switcher .gt_option a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 11px 22px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: background 0.2s ease !important;
    white-space: nowrap !important;
}

.gt_switcher .gt_option a:hover {
    background: rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
}

.gt_switcher .gt_option a img {
    width: 24px !important;
    height: 18px !important;
    object-fit: cover !important;
    border-radius: 3px !important;
    flex-shrink: 0 !important;
}

/* ===========================
   HIDE GOOGLE JUNK
=========================== */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-text-highlight {
    display: none !important;
}

#google_translate_element2 {
    display: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 575px) {
    .gt_switcher .gt_selected a {
        min-width: 150px !important;
        font-size: 15px !important;
        padding: 12px 18px !important;
    }
}

.gt_selected a {
    border:none !important;
}

.gt_selected img {
	border-radius: 50px !important;
}

/* ── Event Single ────────────────────────────────────────── */
.event-single {
    background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.event-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background-color: var(--acfbt-primary-dark);
    overflow: hidden;
}

.event-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.event-hero__image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.event-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 47, 70, 0.92) 0%,
        rgba(8, 47, 70, 0.5) 50%,
        rgba(8, 47, 70, 0.15) 100%
    );
    z-index: 1;
}

.event-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

/* ── Date Badge ──────────────────────────────────────────── */
.event-hero__date-badge {
    background: var(--acfbt-accent);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    text-align: center;
    flex-shrink: 0;
    min-width: 80px;
}

.event-hero__day {
    display: block;
    font-size: 3rem;
    
    color: #fff;
    line-height: 1;
}

.event-hero__month,
.event-hero__year {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Hero Title + Tags ───────────────────────────────────── */
.event-hero__meta {
    flex: 1;
    min-width: 0;
}

.event-hero__title {
    font-family: var(--acfbt-font-serif);
    font-size: clamp(1.75rem, 4vw, 3rem);
    
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.event-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.event-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.event-hero__tag svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ── Body ────────────────────────────────────────────────── */
.event-body {
    padding: 4rem 0 5rem;
}

.event-body__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* ── Main Content ────────────────────────────────────────── */
.event-body__content {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.event-body__content h2,
.event-body__content h3,
.event-body__content h4 {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.event-body__content h2 { font-size: 1.75rem; }
.event-body__content h3 { font-size: 1.375rem; }
.event-body__content h4 { font-size: 1.125rem; }

.event-body__content p {
    margin-bottom: 1.25rem;
}

.event-body__content ul,
.event-body__content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.event-body__content li {
    margin-bottom: 0.4rem;
}

.event-body__content a {
    color: var(--acfbt-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.event-body__content a:hover {
    color: var(--acfbt-accent-dark);
}

.event-body__content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.event-body__sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Details Card ────────────────────────────────────────── */
.event-sidebar-card {
    background: var(--acfbt-light);
    border-radius: 1rem;
    padding: 1.75rem;
}

.event-sidebar-card__title {
    font-size: 1rem;
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.event-sidebar-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.event-sidebar-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.event-sidebar-card__icon {
    width: 2rem;
    height: 2rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--acfbt-primary-dark);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.event-sidebar-card__item strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.2rem;
}

.event-sidebar-card__item p {
    font-size: 0.9375rem;
    color: var(--acfbt-primary-dark);
    margin: 0;
    line-height: 1.5;
}

.event-sidebar-card__item a {
    color: var(--acfbt-primary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.event-sidebar-card__item a:hover {
    color: var(--acfbt-accent);
}

/* Register button */
.event-sidebar-card .hero-btn {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

/* ── Back Link ───────────────────────────────────────────── */
.event-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--acfbt-primary-dark);
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.event-back-link:hover {
    color: var(--acfbt-accent);
}

.event-back-link svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.event-back-link:hover svg {
    transform: translateX( -3px );
}

/* ── Utility ─────────────────────────────────────────────── */
.w-100          { width: 100%; }
.justify-content-center { justify-content: center; }
.mt-3           { margin-top: 1rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .event-hero {
        min-height: 360px;
    }

    .event-hero__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 8rem;
        padding-bottom: 2rem;
    }

    .event-body__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-body__sidebar {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .event-hero {
        min-height: 280px;
    }

    .event-hero__day {
        font-size: 2rem;
    }

    .event-hero__title {
        font-size: 1.5rem;
    }

    .event-hero__tags {
        gap: 0.75rem;
    }

    .event-body {
        padding: 2.5rem 0 3rem;
    }
}

/* ══════════════════════════════════════════════════════════
   GRAVITY FORMS — Global Design Override
   ══════════════════════════════════════════════════════════ */

/* ── Form Title ──────────────────────────────────────────── */
.gform_wrapper .gform_title {
    font-family: var(--acfbt-font-serif) !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--acfbt-primary-dark) !important;
    margin-bottom: 0.5rem !important;
}

.gform_wrapper .gform_description {
    font-size: 0.9375rem !important;
    color: #555 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
}

/* ── Form wrapper reset ──────────────────────────────────── */
.gform_wrapper {
    margin: 0 !important;
    max-width: 100% !important;
}

.gform_wrapper ul.gform_fields {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Field container ─────────────────────────────────────── */
.gform_wrapper .gfield {
    margin-bottom: 1.25rem !important;
    padding: 0 !important;
}

/* ── Labels ──────────────────────────────────────────────── */
.gform_wrapper .gfield_label {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--acfbt-primary-dark) !important;
    margin-bottom: 0.4rem !important;
    display: block !important;
}

.gform_wrapper .gfield_required {
    color: var(--acfbt-accent) !important;
    margin-left: 2px !important;
}

/* ── Inputs, Textareas, Selects ──────────────────────────── */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="date"],
.gform_wrapper input[type="search"],
.gform_wrapper textarea,
.gform_wrapper select {
    width: 100% !important;
    background: #fff !important;
    border: 1.5px solid #dde1e5 !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9375rem !important;
    font-family: var(--acfbt-font-sans) !important;
    color: var(--acfbt-primary-dark) !important;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="password"]:focus,
.gform_wrapper input[type="date"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    border-color: var(--acfbt-primary-dark) !important;
    box-shadow: 0 0 0 3px rgba(8, 47, 70, 0.08) !important;
    outline: none !important;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
    color: #aab0b8 !important;
    font-size: 0.9375rem !important;
}

/* ── Textarea ─────────────────────────────────────────────── */
.gform_wrapper textarea {
    min-height: 130px !important;
    resize: vertical !important;
    line-height: 1.6 !important;
}

/* ── Select arrow ────────────────────────────────────────── */
.gform_wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23082f46' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 14px !important;
    padding-right: 2.5rem !important;
    cursor: pointer !important;
}

/* ── Checkbox & Radio ────────────────────────────────────── */
.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    margin-bottom: 0.5rem !important;
}

.gform_wrapper .gfield_checkbox input[type="checkbox"],
.gform_wrapper .gfield_radio input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    border: 1.5px solid #dde1e5 !important;
    border-radius: 4px !important;
    accent-color: var(--acfbt-primary-dark) !important;
    cursor: pointer !important;
    padding: 0 !important;
}

.gform_wrapper .gfield_radio input[type="radio"] {
    border-radius: 50% !important;
}

.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
    font-size: 0.9375rem !important;
    color: #3a3a3a !important;
    cursor: pointer !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* ── File upload ─────────────────────────────────────────── */
.gform_wrapper input[type="file"] {
    border: 1.5px dashed #dde1e5 !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    background: #f8f9fa !important;
    cursor: pointer !important;
    width: 100% !important;
}

/* ── Submit Button ───────────────────────────────────────── */
.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
    padding: 0.75rem 0 0 !important;
    margin: 0 !important;
    border: none !important;
}

.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"],
.gform_wrapper .gform_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    background-color: var(--acfbt-accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
    font-family: var(--acfbt-font-sans) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.2s, transform 0.15s !important;
    letter-spacing: 0.01em !important;
    text-decoration: none !important;
    min-width: 160px !important;
}

.gform_wrapper input[type="submit"]:hover,
.gform_wrapper button[type="submit"]:hover,
.gform_wrapper .gform_button:hover {
    background-color: var(--acfbt-accent-dark) !important;
    transform: translateY( -1px ) !important;
}

.gform_wrapper input[type="submit"]:active,
.gform_wrapper button[type="submit"]:active {
    transform: translateY( 0 ) !important;
}

/* ── Previous button (multi-step) ────────────────────────── */
.gform_wrapper .gform_previous_button {
    background-color: transparent !important;
    color: var(--acfbt-primary-dark) !important;
    border: 2px solid var(--acfbt-primary-dark) !important;
    border-radius: 50px !important;
    padding: 0.7rem 1.75rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s, color 0.2s !important;
    margin-right: 0.75rem !important;
}

.gform_wrapper .gform_previous_button:hover {
    background-color: var(--acfbt-primary-dark) !important;
    color: #fff !important;
}

/* ── Validation errors ───────────────────────────────────── */
.gform_wrapper .gform_validation_errors,
.gform_wrapper .validation_error {
    background: #fff5f5 !important;
    border: 1.5px solid #e53e3e !important;
    border-radius: 0.75rem !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 1.5rem !important;
    color: #c53030 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select {
    border-color: #e53e3e !important;
    background: #fff5f5 !important;
}

.gform_wrapper .gfield_error .gfield_label {
    color: #c53030 !important;
}

.gform_wrapper .validation_message {
    font-size: 0.8rem !important;
    color: #c53030 !important;
    margin-top: 0.3rem !important;
    display: block !important;
}

/* ── Progress bar (multi-step) ───────────────────────────── */
.gform_wrapper .gf_progressbar_wrapper {
    margin-bottom: 2rem !important;
}

.gform_wrapper .gf_progressbar {
    background: #e8eaec !important;
    border-radius: 50px !important;
    height: 8px !important;
    overflow: hidden !important;
}

.gform_wrapper .gf_progressbar_percentage {
    background: var(--acfbt-secondary) !important;
    height: 100% !important;
    border-radius: 50px !important;
    transition: width 0.4s ease !important;
}

.gform_wrapper .gf_step_count {
    font-size: 0.8rem !important;
    color: #888 !important;
    margin-bottom: 0.5rem !important;
}

/* ── Confirmation message ────────────────────────────────── */
.gform_confirmation_wrapper,
.gform_wrapper .gform_confirmation_message {
    background: #f0faf0 !important;
    border: 1.5px solid var(--acfbt-secondary) !important;
    border-radius: 0.75rem !important;
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    color: var(--acfbt-secondary) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

/* ── Spinner / Loading ───────────────────────────────────── */
.gform_ajax_spinner {
    margin-left: 0.75rem !important;
    vertical-align: middle !important;
}

/* ── Two-column grid fields ──────────────────────────────── */
.gform_wrapper .gform_fields.top_label .gfield.gf_left_half,
.gform_wrapper .gform_fields.top_label .gfield.gf_right_half {
    width: calc( 50% - 0.5rem ) !important;
    display: inline-block !important;
    vertical-align: top !important;
}

.gform_wrapper .gform_fields.top_label .gfield.gf_left_half {
    margin-right: 1rem !important;
}

/* ── Description ─────────────────────────────────────────── */
.gform_wrapper .gfield_description {
    font-size: 0.8rem !important;
    color: #888 !important;
    margin-top: 0.3rem !important;
    line-height: 1.5 !important;
}

/* ── Honeypot (hide) ─────────────────────────────────────── */
.gform_wrapper .gform_validation_container,
.gform_wrapper .gfield.gform_hidden {
    display: none !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 575.98px) {
    .gform_wrapper .gform_fields.top_label .gfield.gf_left_half,
    .gform_wrapper .gform_fields.top_label .gfield.gf_right_half {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .gform_wrapper input[type="submit"],
    .gform_wrapper button[type="submit"],
    .gform_wrapper .gform_button {
        width: 100% !important;
    }
}


.gform-theme--foundation .gform_fields {
    row-gap: 10px !important;
}


/* ── Service Single ──────────────────────────────────────── */
.service-single {
    background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.service-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    background-color: var(--acfbt-primary-dark);
    overflow: hidden;
}

.service-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	object-position: 50% 20%;
}

.service-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 47, 70, 0.95) 0%,
        rgba(8, 47, 70, 0.6)  50%,
        rgba(8, 47, 70, 0.2)  100%
    );
    z-index: 1;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 1.75rem;
    padding-top: 7rem;
    padding-bottom: 3rem;
}

/* Icon */
.service-hero__icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur( 8px );
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-hero__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Meta */
.service-hero__meta {
    flex: 1;
    min-width: 0;
}

.service-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--acfbt-accent);
    margin-bottom: 0.5rem;
}

.service-hero__title {
    font-family: var(--acfbt-font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.service-hero__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Body ────────────────────────────────────────────────── */
.service-body {
    padding: 4rem 0 5rem;
}

.service-body__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* ── Main Content ────────────────────────────────────────── */
.service-body__content {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.service-body__content h2,
.service-body__content h3,
.service-body__content h4 {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.service-body__content h2 { font-size: 1.75rem; }
.service-body__content h3 { font-size: 1.375rem; }
.service-body__content h4 { font-size: 1.125rem; }

.service-body__content p  { margin-bottom: 1.25rem; }

.service-body__content ul,
.service-body__content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-body__content li { margin-bottom: 0.4rem; }

.service-body__content a {
    color: var(--acfbt-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.service-body__content a:hover {
    color: var(--acfbt-accent-dark);
}

.service-body__content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

/* ── Prev / Next Nav ─────────────────────────────────────── */
.service-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.service-nav__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    flex: 1;
    transition: border-color 0.2s, background 0.2s;
    max-width: 48%;
}

.service-nav__item:hover {
    border-color: var(--acfbt-primary-dark);
    background: #f8f9fa;
}

.service-nav__item--next, .service-nav__item--prev {
    justify-content: center;
    text-align: center;
}

.service-nav__arrow {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--acfbt-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--acfbt-primary-dark);
    transition: background 0.2s, color 0.2s;
}

.service-nav__item:hover .service-nav__arrow {
    background: var(--acfbt-primary-dark);
    color: #fff;
}

.service-nav__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.service-nav__info--right {
    align-items: flex-end;
}

.service-nav__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    font-weight: 600;
}

.service-nav__title {
    font-size: 0.9375rem;
    
    color: var(--acfbt-primary-dark);
    line-height: 1.3;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.service-body__sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Services list card */
.service-sidebar-card {
    background: var(--acfbt-light);
    border-radius: 1rem;
    padding: 1.5rem;
}

.service-sidebar-card__title {
    font-size: 0.8rem;
    
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-sidebar-list__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-sidebar-list__item:last-child {
    border-bottom: none;
}

.service-sidebar-list__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    text-decoration: none;
    color: var(--acfbt-primary-dark);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s, padding 0.2s;
}

.service-sidebar-list__link:hover {
    background: rgba(8, 47, 70, 0.05);
    padding-left: 0.85rem;
    color: var(--acfbt-accent);
}

.service-sidebar-list__item.is-active .service-sidebar-list__link {
    background: var(--acfbt-primary-dark);
    color: #fff;
    padding-left: 0.85rem;
    border-radius: 0.5rem;
}

.service-sidebar-list__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-sidebar-list__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-sidebar-list__item.is-active .service-sidebar-list__icon img {
    filter: brightness(0) invert(1);
}

/* CTA card */
.service-cta-card {
    background: var(--acfbt-primary-dark);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
}

.service-cta-card__title {
    font-family: var(--acfbt-font-serif);
    font-size: 1.25rem;
    
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-cta-card__text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .service-hero__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 8rem;
        padding-bottom: 2rem;
    }

    .service-body__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-body__sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 575.98px) {
    .service-hero {
        min-height: 320px;
    }

    .service-hero__title {
        font-size: 1.75rem;
    }

    .service-nav {
        flex-direction: column;
    }

    .service-nav__item {
        max-width: 100%;
    }

    .service-nav__item--next {
        justify-content: flex-start;
        text-align: left;
    }

    .service-nav__info--right {
        align-items: flex-start;
    }
}

/* ── Text + Image Under Section ──────────────────────────── */
.tiu-section {
    padding: 5rem 0;
}

.tiu-section--white { background-color: #fff; }
.tiu-section--light { background-color: var(--acfbt-light); }

/* ── Top two columns ─────────────────────────────────────── */
.tiu-section__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* ── Left column ─────────────────────────────────────────── */
.tiu-section__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.tiu-section__lead {
    color: var(--acfbt-primary-dark);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Right column ────────────────────────────────────────── */
.tiu-section__right p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.tiu-section__right p:last-child {
    margin-bottom: 0;
}

/* ── Bottom images row ───────────────────────────────────── */
.tiu-section__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
}

.tiu-section__img {
    border-radius: 1.25rem;
    overflow: hidden;
}

.tiu-section__img--left  img{
	height: 650px;
}

.tiu-section__img--left{
	margin-top: -200px;
}


.tiu-section__img--right  img{
	    height: 420px;
}

.tiu-section__img img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tiu-section__img:hover img {
    transform: scale(1.02);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .tiu-section__top {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .tiu-section__images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tiu-section__img img {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .tiu-section__img img {
        height: 220px;
		margin-bottom:30px;
    }
}


/* ── Mission Vision Section ──────────────────────────────── */
.mv-section {
    position: relative;
    overflow: hidden;
}

/* ── Grid ────────────────────────────────────────────────── */
.mv-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ── Left column ─────────────────────────────────────────── */
.mv-section__left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Mission / Vision block ──────────────────────────────── */
.mv-block {
    padding: 2rem 0;
}

.mv-block:first-child {
    padding-top: 0;
}

.mv-block__heading {
    font-family: var(--acfbt-font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.mv-block__text {
    line-height: 1.8;
    opacity: 0.85;
    max-width: 520px;
    margin: 0;
}

/* ── Dotted divider ──────────────────────────────────────── */
.mv-divider {
    border: none;
    border-top: 2px dotted;
    margin: 0;
    opacity: 0.5;
}

/* ── Right image ─────────────────────────────────────────── */
.mv-section__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mv-section__img-wrap {
    width: 100%;
    max-width: 560px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mv-section__img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mv-section__img-wrap:hover img {
    transform: scale( 1.02 );
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .mv-section__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mv-section__right {
        justify-content: center;
        order: -1;
    }

    .mv-section__img-wrap {
        max-width: 100%;
    }

    .mv-section__img-wrap img {
        height: 360px;
    }

    .mv-block__heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .mv-section__img-wrap img {
        height: 260px;
    }

    .mv-block__heading {
        font-size: 2rem;
    }

    .mv-block {
        padding: 1.5rem 0;
    }
}


/* ── Cards Grid Section ──────────────────────────────────── */
.cg-section {
    padding: 5rem 0;
}

.cg-section--white { background-color: var(--bs-white); }
.cg-section--light { background-color: var(--bs-light); }
.cg-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Section Header (legacy) ─────────────────────────────── */
.cg-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.cg-section__title {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.75rem;
}

.cg-section--navy .cg-section__title {
    color: var(--bs-white);
}

.cg-section__description {
    color: var(--bs-secondary);
    max-width: 600px;
    margin-inline: auto;
}

.cg-section--navy .cg-section__description {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Header ──────────────────────────────────────────────── */
.cg-header {
    margin-bottom: 3rem;
}

/* Split — title left, description right */
.cg-header--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
}

/* Center */
.cg-header--center {
    text-align: center;
}

.cg-header--center .cg-header__desc {
    max-width: 600px;
    margin-inline: auto;
}

/* Left */
.cg-header--left {
    text-align: left;
}

.cg-header__title {
    font-family: var(--acfbt-font-serif);
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 0;
}

.cg-header__desc {
    margin-bottom: 0;
    line-height: 1.75;
    color: var(--bs-secondary);
}

/* ── Grid ────────────────────────────────────────────────── */
.cg-grid {
    display: grid;
    gap: 2rem;
}

.cg-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.cg-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.cg-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Base Card ───────────────────────────────────────────── */
.cg-card {
    border-radius: var(--bs-border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.cg-card--content:hover {
    box-shadow: var(--bs-box-shadow);
    transform: translateY(-2px);
}

/* ── Heading Card ────────────────────────────────────────── */
.cg-card--heading {
    background-color: var(--acfbt-primary-dark) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    padding: 5rem 3rem 3rem;
}

.cg-card__heading-title {
    font-family: var(--acfbt-font-serif);
    
    color: var(--bs-white);
    margin: 0;
}

.card_grid_img_eyebrow {
    top: 5rem;
}

/* ── Content Card ────────────────────────────────────────── */
.cg-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.cg-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cg-card__title {
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.75rem;
}

.cg-card__text {
    color: var(--bs-body-color);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.cg-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    color: var(--acfbt-accent);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}

.cg-card__link:hover {
    gap: 0.5rem;
    color: var(--acfbt-accent-dark);
}

/* ── Testimonial Card ────────────────────────────────────── */
.cg-card--testimonial {
    border-radius: var(--bs-border-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.15s;
}

.cg-card--testimonial:hover {
    box-shadow: var(--bs-box-shadow);
    transform: translateY(-2px);
}

.cg-testi__quote {
    
    color: var(--acfbt-primary-dark);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 0;
}

.cg-testi__body {
    line-height: 1.7;
    margin-bottom: 0;
}

.cg-testi__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.cg-testi__name {
    color: var(--acfbt-primary-dark);
}

.cg-testi__stars {
    display: flex;
    gap: 2px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .cg-header--split {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cg-grid--cols-3,
    .cg-grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .cg-grid--cols-2,
    .cg-grid--cols-3,
    .cg-grid--cols-4 {
        grid-template-columns: 1fr;
    }

    .cg-card--heading {
        min-height: 180px;
    }

    .cg-card {
        padding: 1.75rem;
    }
}

/* ── Card Grid Images Section ────────────────────────────── */
.cgi-section {
    padding: 5rem 0;
}

.cgi-section--white { background-color: var(--bs-white); }
.cgi-section--light { background-color: var(--bs-light); }
.cgi-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Header ──────────────────────────────────────────────── */
.cgi-header {
    margin-bottom: 2.5rem;
}

/* Split header — heading left, description right */
.cgi-header--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Centered header */
.cgi-header--centered {
    text-align: center;
}

.cgi-header--centered h2{
	margin:auto;
}

.cgi-header--centered .cgi-header__right {
    max-width: 600px;
    margin-inline: auto;
}

.cgi-header__heading {
    font-family: var(--acfbt-font-serif);
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 0;
}

.cgi-header__description {
    margin-bottom: 0;
}

/* ── Grid ────────────────────────────────────────────────── */
.cgi-grid {
    display: grid;
    gap: 3rem;
	 align-items: stretch;
}

/* image_side layout */
.cgi-grid--image_side.cgi-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cgi-grid--image_side.cgi-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* image_top layout — always 3 cols */
.cgi-grid--image_top {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-left: 1px solid #e0e0e0;
}

/* ── Card Base ───────────────────────────────────────────── */
.cgi-card {
    border-radius: var(--bs-border-radius-lg);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.cgi-card--white { background-color: var(--bs-white); }
.cgi-card--light {background-color: #e9e8e7;  }

/* image_top cards have no radius — separated by borders */
.cgi-grid--image_top .cgi-card {
    border-radius: 0 !important;
    border-right: 1px solid #e0e0e0;
	margin-bottom:50px;
}

.cgi-card:hover {
    box-shadow: var(--bs-box-shadow);
    transform: translateY(-2px);
}

.cgi-grid--image_top .cgi-card:hover {
    transform: none;
    box-shadow: none;
}

/* ── Image Side Layout ───────────────────────────────────── */
.cgi-card__image--side {
    width: 240px;
    min-height: 160px;
    flex-shrink: 0;
}

.cgi-grid--image_side .cgi-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.cgi-card__image--side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	border-radius:15px;
}

/* ── Image Top Layout ────────────────────────────────────── */
.cgi-card__image--top {
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.cgi-card__image--top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
	border-radius:15px;
}

.cgi-card:hover .cgi-card__image--top img {
    transform: scale(1.03);
}

/* ── Card Body ───────────────────────────────────────────── */
.cgi-card__body {
    padding: 1.25rem 1.25rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cgi-card__body--below {
    padding: 1.5rem 1rem;
    text-align: center;
    align-items: center;
}

/* ── Icon ────────────────────────────────────────────────── */
.cgi-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.cgi-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── Title ───────────────────────────────────────────────── */
.cgi-card__title {
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.5rem;
}

/* ── Text ────────────────────────────────────────────────── */
.cgi-card__text {
    flex-grow: 1;
    margin-bottom: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .cgi-header--split {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cgi-grid--image_side.cgi-grid--cols-2,
    .cgi-grid--image_side.cgi-grid--cols-3,
    .cgi-grid--image_top {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 575.98px) {
    .cgi-grid--image_side.cgi-grid--cols-2,
    .cgi-grid--image_side.cgi-grid--cols-3,
    .cgi-grid--image_top {
        grid-template-columns: 1fr;
    }

    .cgi-card__image--side {
        width: 100%;
        height: 180px;
        min-height: unset;
    }

    .cgi-grid--image_side .cgi-card {
        flex-direction: column;
    }
}

.cgi-grid--image_top .cgi-card{
	padding-top:0px !important;
}


/* ── Team by Department Section ──────────────────────────── */
.tbd-section {
    padding: 5rem 0;
}

.tbd-section--white { background-color: var(--bs-white); }
.tbd-section--light { background-color: var(--bs-light); }
.tbd-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Section Header ──────────────────────────────────────── */
.tbd-section__header {
    margin-bottom: 3rem;
}

.tbd-section__heading {
    font-family: var(--acfbt-font-serif);
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.75rem;
}

.tbd-section__description {
    margin-bottom: 0;
}

/* ── Department Block ────────────────────────────────────── */
.tbd-dept {
    margin-bottom: 3.5rem;
}

.tbd-dept:last-child {
    margin-bottom: 0;
}

/* ── Department Heading Wrap ─────────────────────────────── */
.tbd-dept__heading-wrap {
    margin-bottom: 1.5rem;
}

.tbd-dept__heading-wrap--center { text-align: center; }
.tbd-dept__heading-wrap--left   { text-align: left; }

/* Department Heading — border same width as text ────────── */
.tbd-dept__heading {
    font-family: var(--acfbt-font-serif);
    
    color: var(--acfbt-primary-dark);
    text-decoration: none;
    display: inline-block;
    padding-bottom: 0rem;
    border-bottom: 2px solid var(--acfbt-primary-dark);
    margin-bottom: 60px;
	margin-top: 60px;
}

@media (max-width: 767px) {
	.tbd-dept__heading {
		    margin-bottom: 20px;
	        margin-top: 40px;
	}
}

/* ── Grid ────────────────────────────────────────────────── */
.tbd-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
}

/* Card widths per column setting */
.tbd-grid--cols-2 .tbd-card {
    flex: 0 1 calc( 50% - 0.5rem );
    max-width: calc( 50% - 0.5rem );
    min-width: calc( 50% - 0.5rem );
}

.tbd-grid--cols-3 .tbd-card {
    flex: 0 1 calc( 33.333% - 0.75rem );
    max-width: calc( 33.333% - 0.75rem );
    min-width: calc( 33.333% - 0.75rem );
}

.tbd-grid--cols-4 .tbd-card {
    flex: 0 1 calc( 25% - 0.75rem );
    max-width: calc( 25% - 0.75rem );
    min-width: calc( 25% - 0.75rem );
}

.tbd-dept-row--two .tbd-grid--cols-4 .tbd-card{
	flex: 0 1 calc(100% - 0.5rem );
    max-width: calc( 100% - 0.5rem );
    min-width: calc( 100% - 0.5rem );
}

/* ── Card ────────────────────────────────────────────────── */
.tbd-card {
    border-radius: var(--bs-border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    transition: box-shadow 0.2s, transform 0.15s;
}

.tbd-card:hover {
    box-shadow: var(--bs-box-shadow);
    transform: translateY(-2px);
}

/* ── Photo ───────────────────────────────────────────────── */
.tbd-card__photo {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.tbd-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.3s ease;
}

.tbd-card:hover .tbd-card__photo img {
    transform: scale(1.03);
}

/* ── Body ────────────────────────────────────────────────── */
.tbd-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

/* ── Name ────────────────────────────────────────────────── */
.tbd-card__name {
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.2rem;
}

/* ── Position ────────────────────────────────────────────── */
.tbd-card__position {
    margin-bottom: 0.15rem;
    color: #6c757d;
    font-size: 0.875rem;
}

/* ── Group ───────────────────────────────────────────────── */
.tbd-card__group {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

/* ── Contact block — always at bottom ───────────────────── */
.tbd-card__contact {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tbd-card__ext {
    font-weight: 600;
    color: var(--acfbt-secondary);
    margin: 0;
}

.tbd-card__phone,
.tbd-card__email {
    margin: 0;
}

.tbd-card__phone a,
.tbd-card__email a {
    color: var(--acfbt-primary-dark);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.tbd-card__phone a:hover,
.tbd-card__email a:hover {
    color: var(--acfbt-accent);
    text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .tbd-grid--cols-3 .tbd-card,
    .tbd-grid--cols-4 .tbd-card {
        flex: 0 1 calc( 50% - 0.5rem );
        max-width: calc( 50% - 0.5rem );
        min-width: calc( 50% - 0.5rem );
    }
}

@media (max-width: 575.98px) {
    .tbd-grid--cols-2 .tbd-card,
    .tbd-grid--cols-3 .tbd-card,
    .tbd-grid--cols-4 .tbd-card {
        flex: 0 1 calc( 100% - 0.5rem );
        max-width: calc( 100% - 0.5rem );
        min-width: calc( 100% - 0.5rem );
    }

    .tbd-card__photo {
        height: 140px;
    }
}

/* ── Service Detail Section ──────────────────────────────── */
.sd-section {
    padding: 5rem 0;
}

.sd-section--light { background-color: var(--bs-light); }
.sd-section--white { background-color: var(--bs-white); }
.sd-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Top two-column ──────────────────────────────────────── */
.sd-section__top {
    display: grid;
    gap: 4rem;
/*     align-items: center; */
    margin-bottom: 3rem;
}

.sd-section__top--img-left  { grid-template-columns: 53% 47%; }
.sd-section__top--img-right {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.sd-section__top--img-right > * {
    direction: ltr;
}

/* Image */
.sd-section__image {
    border-radius: 1.25rem;
    overflow: hidden;
	height:100%;
}

.sd-section__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
	height:100%;
}

/* Heading */
.sd-section__heading {
    font-family: var(--acfbt-font-serif);
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 1rem;
}

.sd-section__para {
    margin-bottom: 1rem;
}

/* List heading */
.sd-section__list-heading {
    
    color: var(--acfbt-primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: 0.75rem;
}

/* ── List ────────────────────────────────────────────────── */
.sd-list {
    list-style: disc;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sd-list__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Check marker */
.sd-list__marker--check {
    flex-shrink: 0;
    margin-top: 2px;
}

.sd-list__marker svg{
	width:30px;
}

/* Numbered marker */
.sd-list__marker--num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--acfbt-secondary);
    color: #fff;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Feature Cards ───────────────────────────────────────── */
/* ── Feature Cards grid ──────────────────────────────────── */
.sd-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.sd-cards--cols-1 .sd-card { flex: 0 1 100%; max-width: 100%; }
.sd-cards--cols-2 .sd-card { flex: 0 1 calc( 50% - 0.625rem ); }
.sd-cards--cols-3 .sd-card { flex: 0 1 calc( 33.333% - 0.85rem ); }
.sd-cards--cols-4 .sd-card { flex: 0 1 calc( 25% - 0.95rem ); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .sd-cards--cols-3 .sd-card,
    .sd-cards--cols-4 .sd-card {
        flex: 0 1 calc( 50% - 0.625rem );
    }
}

@media (max-width: 575.98px) {
    .sd-cards--cols-1 .sd-card,
    .sd-cards--cols-2 .sd-card,
    .sd-cards--cols-3 .sd-card,
    .sd-cards--cols-4 .sd-card {
        flex: 0 1 100%;
    }
}

.sd-card {
    border-radius: var(--bs-border-radius-xxl);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: box-shadow 0.2s;
}

.sd-card:hover {
    box-shadow: var(--bs-box-shadow);
}

.sd-card__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.sd-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sd-card__title {
    margin: 0;
}

.sd-card__text {
    margin: 0;
}

/* ── Bottom Feature ──────────────────────────────────────── */
.sd-bottom-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding-top: 1rem;
}

.sd-bottom-feature__icon {
    width: 60px;
    height: 60px;
}

.sd-bottom-feature__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sd-bottom-feature__text {
    margin: 0 auto;
	font-size:
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .sd-section__top--img-left,
    .sd-section__top--img-right {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .sd-section__image img {
        height: 320px;
    }

    .sd-cards--cols-3 .sd-card {
        flex: 0 1 calc(50% - 0.625rem);
    }
}

@media (max-width: 575.98px) {
    .sd-cards--cols-2 .sd-card,
    .sd-cards--cols-3 .sd-card {
        flex: 0 1 100%;
    }

    .sd-section__image img {
        height: 240px;
    }
}


/* ── Text Field Cards Below ──────────────────────────────── */
.tfcb-section {
    padding: 5rem 0;
}

.tfcb-section--white { background-color: var(--bs-white); }
.tfcb-section--light { background-color: var(--bs-light); }
.tfcb-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Text two-column ─────────────────────────────────────── */
.tfcb-section__text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 2rem;
}

.tfcb-section__heading {
    font-family: var(--acfbt-font-serif);
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 1rem;
}

.tfcb-section__lead {
    color: var(--acfbt-primary-dark);
    margin-bottom: 0;
}

.tfcb-section__para {
    margin-bottom: 1rem;
}

.tfcb-section__para:last-child {
    margin-bottom: 0;
}

/* ── Divider ─────────────────────────────────────────────── */
.tfcb-section__divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 2.5rem 0;
    opacity: 1;
	padding-bottom:20px;
}

/* ── Cards Row ───────────────────────────────────────────── */
.tfcb-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.tfcb-card {
	 flex: 0 0 auto;
     display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 1.8rem;
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 20px;
}

.tfcb-card__title {
	flex: 0 1 auto;
    text-align: left;
	max-width:180px;
}

.tfcb-card:last-child {
    border-right: none;
}

.tfcb-card--active,
.tfcb-card:hover {
    background-color: var(--acfbt-primary-dark) !important;
	border-radius:20px;
}

.tfcb-card--active .tfcb-card__title,
.tfcb-card:hover .tfcb-card__title {
    color: #fff !important;
}

.tfcb-card--active .tfcb-tab__icon img,
.tfcb-card:hover img {
    filter: brightness(0) invert(1);
}

.tfcb-card__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
	flex: 0 0 auto;
}

.tfcb-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tfcb-card__title {
    font-weight: 600;
    color: var(--acfbt-primary-dark);
    transition: color 0.2s;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .tfcb-section__text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tfcb-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid #e0e0e0;
        border-radius: var(--bs-border-radius-lg);
        overflow: hidden;
    }

    .tfcb-card {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        flex: unset;
    }
}

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

    .tfcb-card {
        border-right: none;
    }
}


/* ── Class Single ────────────────────────────────────────── */
.class-single {
    background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.class-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    background-color: var(--acfbt-primary-dark);
    overflow: hidden;
}

.class-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.class-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.class-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 47, 70, 0.95) 0%,
        rgba(8, 47, 70, 0.55) 50%,
        rgba(8, 47, 70, 0.15) 100%
    );
    z-index: 1;
}

.class-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 7rem;
    padding-bottom: 3rem;
}

/* Badges */
.class-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.class-hero__cat {
    font-size: 0.7rem;
    
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--acfbt-secondary);
    background: rgba(71, 118, 56, 0.2);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
}

/* Title */
.class-hero__title {
    font-family: var(--acfbt-font-serif);
    
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

/* Description */
.class-hero__desc {
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

/* Pills */
.class-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.class-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    backdrop-filter: blur(4px);
}

/* ── Body ────────────────────────────────────────────────── */
.class-body {
    padding: 4rem 0 5rem;
}

.class-body__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* Content */
.class-body__content {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.class-body__content h2,
.class-body__content h3,
.class-body__content h4 {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.class-body__content p { margin-bottom: 1.25rem; }

/* ── Prev / Next Nav ─────────────────────────────────────── */
.class-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.class-nav__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    flex: 1;
    max-width: 48%;
    transition: border-color 0.2s, background 0.2s;
}

.class-nav__item:hover {
    border-color: var(--acfbt-primary-dark);
    background: #f8f9fa;
}

.class-nav__item--next { justify-content: flex-end; text-align: right; }

.class-nav__arrow {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--acfbt-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--acfbt-primary-dark);
    transition: background 0.2s, color 0.2s;
}

.class-nav__item:hover .class-nav__arrow {
    background: var(--acfbt-primary-dark);
    color: #fff;
}

.class-nav__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.class-nav__info--right { align-items: flex-end; }

.class-nav__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    font-weight: 600;
}

.class-nav__title {
    
    color: var(--acfbt-primary-dark);
}

/* ── Registration Form ───────────────────────────────────── */
.class-reg-form {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e0e0e0;
}

.class-reg-form__title {
    font-family: var(--acfbt-font-serif);
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 1.5rem;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.class-body__sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Details card */
.class-sidebar-card {
    background: var(--acfbt-light);
    border-radius: 1rem;
    padding: 1.75rem;
}

.class-sidebar-card__title {
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.class-sidebar-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.class-sidebar-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.class-sidebar-card__icon {
    width: 2rem;
    height: 2rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--acfbt-primary-dark);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.class-sidebar-card__item strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.2rem;
}

.class-sidebar-card__item p {
    font-size: 0.9375rem;
    color: var(--acfbt-primary-dark);
    margin: 0;
    line-height: 1.5;
}

.class-sidebar-card__item a {
    color: var(--acfbt-primary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.class-sidebar-card__item a:hover {
    color: var(--acfbt-accent);
}

/* Instructor card */
.class-instructor-card {
    background: var(--acfbt-light);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.class-instructor-card__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.class-instructor-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .class-hero { min-height: 360px; }

    .class-hero__content {
        padding-top: 8rem;
        padding-bottom: 2rem;
    }

    .class-body__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .class-body__sidebar { position: static; }
}

@media (max-width: 575.98px) {
    .class-hero { min-height: 280px; }

    .class-nav {
        flex-direction: column;
    }

    .class-nav__item {
        max-width: 100%;
    }

    .class-nav__item--next {
        justify-content: flex-start;
        text-align: left;
    }

    .class-nav__info--right { align-items: flex-start; }
}


/* ── Events Classes Nav ──────────────────────────────────── */
.ect-nav .container {
    border-bottom: 1px solid #e0e0e0;
}

.ect-nav--sticky {
	padding-top:0px !important;
	padding-bottom:0px !important;
}

.ect-nav--white { background-color: #fff; }
.ect-nav--light { background-color: var(--bs-light); }
.ect-nav--green { background-color: var(--acfbt-secondary); }
.ect-nav--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Inner ───────────────────────────────────────────────── */
.ect-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.ect-nav__inner::-webkit-scrollbar { display: none; }

/* ── Button ──────────────────────────────────────────────── */
.ect-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1.2rem 2.5rem 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}

/* Colors per background */
.ect-nav--white .ect-nav__btn,
.ect-nav--light .ect-nav__btn {
    color: var(--acfbt-primary-dark);
}

.ect-nav--green .ect-nav__btn,
.ect-nav--navy  .ect-nav__btn {
    color: rgba(255, 255, 255, 0.8);
}

/* Hover */
.ect-nav--white .ect-nav__btn:hover,
.ect-nav--light .ect-nav__btn:hover {
    opacity: 1;
    background: rgba(8, 47, 70, 0.06);
    color: var(--acfbt-primary-dark);
    text-decoration: none;
}

.ect-nav--green .ect-nav__btn:hover,
.ect-nav--navy  .ect-nav__btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
}

/* Active — white/light bg gets green pill */
.ect-nav--white .ect-nav__btn.is-active,
.ect-nav--light .ect-nav__btn.is-active {
    background: var(--acfbt-secondary);
    color: #fff;
    opacity: 1;
}

/* Active — dark bg gets white pill */
.ect-nav--green .ect-nav__btn.is-active,
.ect-nav--navy  .ect-nav__btn.is-active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    opacity: 1;
}

/* ── Icon ────────────────────────────────────────────────── */
.ect-nav__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ect-nav__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: filter 0.2s;
}

/* White icon when active on white/light */
.ect-nav--white .ect-nav__btn.is-active .ect-nav__icon img,
.ect-nav--light .ect-nav__btn.is-active .ect-nav__icon img {
    filter: brightness(0) invert(1);
}

/* Keep white on dark navbars */
.ect-nav--green .ect-nav__icon img,
.ect-nav--navy  .ect-nav__icon img {
    filter: brightness(0) invert(1);
}


/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 575.98px) {
    .ect-nav__btn {
        padding: 0.6rem 1rem;
    }

    .ect-nav__icon {
        width: 18px;
        height: 18px;
    }
}


/* Events & Classes Cards */


/* Dots */
.acf-events__dots {
    display:flex;
    justify-content:center;
    gap:.75rem;
}

.acf-events__dots span{
    width:14px;
    height:14px;
    border-radius:50%;
}

.acf-events__dots span:nth-child(1){
    background:var(--acfbt-secondary);
}

.acf-events__dots span:nth-child(2){
    background:var(--acfbt-primary);
}

.acf-events__dots span:nth-child(3){
    background:var(--acfbt-accent);
}

/* Heading */
.acf-events__heading{
    font-family:var(--acfbt-font-serif);
    font-size:var(--acfbt-header-fz);
    line-height:1.1;
    color:var(--acfbt-primary);
    margin-bottom:1.5rem;
}

.acf-events__intro{
    max-width:700px;
    margin:auto;
    font-weight:500;
    color:var(--acfbt-primary);
}

/* Date Card */
.acf-events__date-card{
    background:var(--acfbt-primary-dark);
    color:#fff;
    border-radius:1rem;
    text-align:center;
    padding:1.5rem 1rem;
    max-width:170px;
}

.acf-events__date-day{
    line-height:1;
    font-weight:700;
	font-size:var(--acfbt-header-fz); 
}

.acf-events__date-month{
    opacity:.9;
}

/* Meta */
.acf-events__meta{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    align-items:center;
}

.acf-events__meta-divider{
    opacity:.4;
}

/* Title */
.acf-events__title{
    font-family:var(--acfbt-font-heading);
    line-height:1.1;
    font-weight:700;
    color:var(--acfbt-primary);
    margin-bottom:1rem;
}

/* Location */
.acf-events__location{
    color:var(--acfbt-secondary);
    font-weight:700;
    display:flex;
    align-items:center;
    margin-bottom:2rem;
}

.acf-events__location-icon{
    width:24px;
    height:25px;
    border-radius:50%;
    background:var(--acfbt-secondary);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right: 5px;
    flex-shrink:0;
}

.acf-events__location-icon svg{
    width:18px;
    height:18px;
}
/* Description */
.acf-events__description{
    color:var(--acfbt-text);
    line-height:1.7;
}

/* Button */
.acf-events__btn{
    background:var(--acfbt-accent);
    border-color:var(--acfbt-accent);
    color:#fff;
    padding:.9rem 2rem;
    margin-top:1rem;
}

.acf-events__btn:hover{
    background:var(--acfbt-accent-dark);
    border-color:var(--acfbt-accent-dark);
    color:#fff;
}

/* Image */
.acf-events__image img{
    border-radius:2rem;
    width:100%;
    object-fit:cover;
    box-shadow:var(--acfbt-shadow);
	height:450px;
}

.acf-events hr{
    border-color:rgba(25,48,69,.15);
    margin-top:4rem;
}

/* Mobile */
@media (max-width: 991px){

    .acf-events__heading{
    }

    .acf-events__title{
    }

    .acf-events__intro{
    }

    .acf-events__date-card{
        margin-bottom:2rem;
		margin:auto;
    }
	
	.acf-events__meta{
		display:block;
		text-align:center;
	}
	
	.acf-events__description{
		text-align:center;
	}
}


.acf-events__actions{
	margin-top:2rem;
}

.acf-events__btn{
	padding:1rem 2rem;
	border:none;
	color:#fff;
}

.acf-events__btn--orange{
	background:var(--acfbt-accent);
}

.acf-events__btn--orange:hover{
	background:var(--acfbt-accent-dark);
	color:#fff;
}

.acf-events__btn--navy{
	background:var(--acfbt-primary-dark);
}

.acf-events__btn--navy:hover{
	background:var(--acfbt-primary);
	color:#fff;
}

.acf-events__btn--green{
	background:var(--acfbt-secondary);
}

.acf-events__btn--green:hover{
	background:var(--acfbt-secondary);
	color:#fff;
}



/* ==========================================
   Resource Directory
========================================== */

.resource-grid__group{
	margin-bottom:5rem;
}

.resource-grid__heading{
	color:var(--acfbt-primary);
	font-family: var(--acfbt-font-serif);
	max-width:700px;
	margin:auto;
}

.resource-grid__dots img{
	height:auto;
}

/* ==========================================
   Card
========================================== */

.resource-card{
	background:#f4f3f2;
	border-radius:1rem;
	overflow:hidden;
	transition:all .3s ease;
	height:100%;
}

.resource-card:hover{
	transform:translateY(-5px);
	box-shadow:var(--acfbt-shadow);
}

.resource-card__image{
	padding:1rem;
}

.resource-card__image img{
	border-radius:0.75rem;
	width:100%;
	height:180px;
	object-fit:cover;
}

.resource-card__body{
	padding:1.5rem;
}

.resource-card__title{
	font-family:var(--acfbt-font-heading);
	color:var(--acfbt-primary);
	font-weight:700;
	margin-bottom:1rem;
}

.resource-card__description{
	color:var(--acfbt-text);
	line-height:1.7;
	margin-bottom:1rem;

	display:-webkit-box;
	-webkit-line-clamp:4;
	-webkit-box-orient:vertical;
	overflow:hidden;
}

.resource-card__link{
	color:var(--acfbt-accent);
	font-weight:700;
	word-break:break-word;
	text-decoration:none;
}

.resource-card__link:hover{
	color:var(--acfbt-accent-dark);
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 991px){

	.resource-grid__group{
		margin-bottom:5rem;
	}

	.resource-card__image img{
		height:140px;
	}
}


/* ── Accordion Section ───────────────────────────────────── */
.acc-section {
    padding: 5rem 0;
}

.acc-section--white { background-color: var(--bs-white); }
.acc-section--light { background-color: var(--bs-light); }
.acc-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Header ──────────────────────────────────────────────── */
.acc-section__header {
    margin-bottom: 2.5rem;
}

.acc-section__heading {
    font-family: var(--acfbt-font-serif);
    
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.5rem;
}

.acc-section__desc {
    margin-bottom: 0;
}

/* ── Accordion Wrap ──────────────────────────────────────── */
.acc-wrap {
    border: 1px solid #e0e0e0;
    border-radius: var(--bs-border-radius-xl);
    overflow: hidden;
}

/* ── Accordion Item ──────────────────────────────────────── */
.acc-item {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.25s;
}

.acc-item:last-child {
    border-bottom: none;
}

/* Open state */
.acc-item.is-open {
    background-color: var(--acc-active-bg, #082f46);
}

/* ── Trigger ─────────────────────────────────────────────── */
.acc-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.acc-item:not(.is-open) .acc-item__trigger:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* ── Question text ───────────────────────────────────────── */
.acc-item__question {
    font-weight: 600;
    var(--bs-body-font-size);
    color: var(--acfbt-primary-dark);
    transition: color 0.2s;
    line-height: 1.5;
}

.acc-item.is-open .acc-item__question {
    color: var(--acc-active-color, #ffffff);
}

/* ── Icon ────────────────────────────────────────────────── */
.acc-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acfbt-primary-dark);
    transition: color 0.2s;
}

.acc-item.is-open .acc-item__icon {
    color: var(--acc-active-color, #ffffff);
}

/* Show/hide plus and minus */
.acc-item__icon--plus  { display: block; }
.acc-item__icon--minus { display: none; }

.acc-item.is-open .acc-item__icon--plus  { display: none; }
.acc-item.is-open .acc-item__icon--minus { display: block; }

/* ── Body ────────────────────────────────────────────────── */
.acc-item__body {
    overflow: hidden;
}

.acc-item__body[hidden] {
    display: none;
}

.acc-item__answer {
    padding: 0 1.5rem 3rem;
    color: var(--acfbt-primary-dark);
    line-height: 1.75;
}

.acc-item.is-open .acc-item__answer {
    color: var(--acc-active-color, #ffffff);
    opacity: 0.9;
}

.acc-item__answer p { margin-bottom: 0.75rem; }
.acc-item__answer p:last-child { margin-bottom: 0; }

.acc-item__answer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.acc-item__answer a:hover { opacity: 0.75; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 575.98px) {
    .acc-item__trigger {
        padding: 1.1rem 1.1rem;
    }

    .acc-item__answer {
        padding: 0 1.1rem 1.1rem;
    }
}

/* ── Form with Left Info Section ─────────────────────────── */
.fli-section {
    padding: 5rem 0;
}

.fli-section--white { background-color: var(--bs-white); }
.fli-section--light { background-color: var(--bs-light); }
.fli-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Top Header ──────────────────────────────────────────── */
.fli-section__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.fli-section__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    margin-bottom: 0;
}

.fli-section__subheading {
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.5rem;
}

.fli-section__desc {
    margin-bottom: 0;
    line-height: 1.7;
}

/* ── Main Box ────────────────────────────────────────────── */
.fli-box {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    border-radius: 1.25rem;
    overflow: hidden;
}

/* ── Left Panel ──────────────────────────────────────────── */
.fli-box__left {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.fli-box__info-heading {
    font-family: var(--acfbt-font-serif);
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* ── Info List ───────────────────────────────────────────── */
.fli-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fli-info-list__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fli-info-list__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.fli-info-list__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fli-info-list__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-top: 0.5rem;
}

.fli-info-list__text a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.fli-info-list__text a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* ── Right Panel ─────────────────────────────────────────── */
.fli-box__right {
    padding: 3rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
}

.fli-box__form-heading {
    color: #fff;
    margin-bottom: 1.75rem;
    line-height: 1.4;
}

/* ── Gravity Forms overrides inside fli box ──────────────── */
.fli-box__right .gform_wrapper input:not([type="submit"]),
.fli-box__right .gform_wrapper textarea,
.fli-box__right .gform_wrapper select {
    background: #fff !important;
    border: none !important;
    border-radius: 0.6rem !important;
    padding: 1.8rem 1.1rem !important;
    color: var(--acfbt-primary-dark) !important;
    width: 100% !important;
}

.fli-box__right .gform_wrapper .gfield_label {
    display: none !important;
}

.fli-box__right .gform_wrapper input[type="submit"],
.fli-box__right .gform_wrapper button[type="submit"] {
    background-color: var(--acfbt-secondary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 1.8rem 2rem !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.fli-box__right .gform_wrapper input[type="submit"]:hover,
.fli-box__right .gform_wrapper button[type="submit"]:hover {
    background-color: var(--acfbt-primary-dark) !important;
}

.fli-box__right .gform_wrapper .gform_fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.fli-box__right .gform_wrapper .gfield {
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .fli-section__header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fli-box {
        grid-template-columns: 1fr;
    }

    .fli-box__left {
        padding: 2.5rem 2rem;
    }

    .fli-box__right {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .fli-box__left,
    .fli-box__right {
        padding: 2rem 1.5rem;
    }
}


/* ── Service Area Finder Section ─────────────────────────── */
.saf-section {
    padding: 5rem 0;
}

.saf-section h4{
	margin-bottom:2rem;
}

.saf-section--white { background-color: var(--bs-white); }
.saf-section--light { background-color: var(--bs-light); }
.saf-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Split Header ────────────────────────────────────────── */
.saf-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.saf-header__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    margin-bottom: 0;
}

.saf-header__para {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.saf-header__para:last-child {
    margin-bottom: 0;
}

/* ── Finder Box ──────────────────────────────────────────── */
.saf-box {
    border-radius: 1.25rem;
    padding: 4rem 3rem 3rem;
}

/* ── Box Header ──────────────────────────────────────────── */
.saf-box__header {
    margin-bottom: 2rem;
}

.saf-box__heading {
    font-family: var(--acfbt-font-serif);
    color: #fff;
    margin-bottom: 0.75rem;
}

.saf-box__desc {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

/* ── Search Bar ──────────────────────────────────────────── */
.saf-search {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.saf-search__input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    padding: 0 1.25rem;
}

.saf-search__icon {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.saf-search__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    padding: 1.1rem 0;
}

.saf-search__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.saf-search__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1.1rem 2rem;
    background: var(--acfbt-secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9375rem;
    transition: background 0.2s;
}

.saf-search__btn:hover {
    background: #3a6230;
}

/* ── Result Label ────────────────────────────────────────── */
.saf-result__label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.85rem;
}

/* ── Result Card ─────────────────────────────────────────── */
.saf-card {
    background: #fff;
    border-radius: 0.85rem;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.saf-card__icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: var(--acfbt-secondary);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
	align-self: flex-start;
}

.saf-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.saf-card__body {
    flex: 1;
    min-width: 180px;
}

.saf-card__title {
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.3rem;
}

.saf-card__desc {
    margin-bottom: 0;
}

.saf-card__action {
    flex-shrink: 0;
}

/* ── No Result ───────────────────────────────────────────── */
.saf-no-result__msg {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 1.5rem 0;
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .saf-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .saf-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .saf-search {
        flex-direction: column;
    }

    .saf-search__input-wrap {
        padding: 0.75rem 1rem;
    }

    .saf-search__btn {
        justify-content: center;
        padding: 1rem;
    }

    .saf-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .saf-box {
        padding: 2rem 1.25rem;
    }
}


/* ── Animate on Scroll — Keyframe Based ──────────────────── */

/* ── Base state ──────────────────────────────────────────── */
.animate-on-scroll {
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-play-state: paused;
}

/* Play animation when triggered */
.animate-on-scroll.animated {
    animation-play-state: running;
}

/* ── Keyframe Definitions ────────────────────────────────── */
.scale {
    transform: scale( 0.7 );
    opacity: 0;
    animation-name: scale;
}

@keyframes scale {
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    opacity: 0;
    transform: translateY( 2.5rem );
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    opacity: 0;
    transform: translateY( -2.5rem );
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY( 0rem );
    }
}

.fadeInLeft {
    opacity: 0;
    transform: translateX( -2.5rem );
    animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    opacity: 0;
    transform: translateX( 2.5rem );
    animation-name: fadeInRight;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: none;
    }
}

.slideInLeft {
    transform: translateX( -200vw );
    animation-name: slideInLeft;
}

@keyframes slideInLeft {
    to {
        transform: none;
    }
}

.slideInRight {
    transform: translateX( 200vw );
    animation-name: slideInRight;
}

@keyframes slideInRight {
    to {
        transform: none;
    }
}

.grow {
    transform: scale( 0 );
    animation-name: grow;
}

@keyframes grow {
    to {
        transform: scale( 1 );
    }
}

.shrink {
    transform: scale( 5 );
    animation-name: shrink;
}

@keyframes shrink {
    to {
        transform: scale( 1 );
    }
}

/* ── Duration modifiers ──────────────────────────────────── */
.anim-duration-300  { animation-duration: 0.3s !important; }
.anim-duration-600  { animation-duration: 0.6s !important; }
.anim-duration-900  { animation-duration: 0.9s !important; }
.anim-duration-1200 { animation-duration: 1.2s !important; }
.anim-duration-1500 { animation-duration: 1.5s !important; }

/* ── Delay modifiers ─────────────────────────────────────── */
.anim-delay-100  { animation-delay: 0.1s !important; }
.anim-delay-200  { animation-delay: 0.2s !important; }
.anim-delay-300  { animation-delay: 0.3s !important; }
.anim-delay-400  { animation-delay: 0.4s !important; }
.anim-delay-500  { animation-delay: 0.5s !important; }
.anim-delay-600  { animation-delay: 0.6s !important; }
.anim-delay-700  { animation-delay: 0.7s !important; }
.anim-delay-800  { animation-delay: 0.8s !important; }

/* ── Easing modifiers ────────────────────────────────────── */
.anim-ease         { animation-timing-function: ease !important; }
.anim-ease-in      { animation-timing-function: ease-in !important; }
.anim-ease-out     { animation-timing-function: ease-out !important; }
.anim-ease-in-out  { animation-timing-function: ease-in-out !important; }
.anim-linear       { animation-timing-function: linear !important; }
.anim-bounce       { animation-timing-function: cubic-bezier( 0.34, 1.56, 0.64, 1 ) !important; }

/* ── Reduced motion ──────────────────────────────────────── */
@media ( prefers-reduced-motion: reduce ) {
    .animate-on-scroll {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


@media (max-width: 991.98px) {
	.ss-step__top {
      text-align: center;
      justify-content: center;
    }
}

/* ── Mobile Adjustments ──────────────────────────────────────── */
@media (max-width: 767.98px) {
	.card-slider-section .slick-dotted {
       margin-bottom: 0px !important;
    }
	
	.card-slider .slick-dots {
      bottom: 10px;
    }
	
	.hero-full__inner {
		text-align:center;
		justify-content:center
	}
	
	.hero-full__inner .hero-buttons{
		justify-content:center;
		text-align:center;
	}
	
	.card-slick-prev, .card-slick-next {
	   bottom: -20px;
	}
	
	.card-slide__inner {
      margin-bottom: 80px;
    }
	
	.ss-step__top {
      text-align: center;
      justify-content: center;
    }
	
	.nav-link {
		padding:20px !important;
	}
	.tiu-section__img--left {
      margin-top: 0px;
   }
	
	.card_grid_img_eyebrow {
      top: 1rem;
   }
	
	.cgi-grid {
    gap: 1rem;
	}
	
	.cgi-grid--image_top .cgi-card {
    margin-bottom: 0px;
	}
	
	.hero-full {
		background-position: 70% center;
	}
	
		.hero-full::before {
			content: "";
			position: absolute;
			inset: 0;
			background: rgb(255 255 255 / 50%);
			z-index: 1;
		}

		.hero-full > * {
			position: relative;
			z-index: 2;
		}
	
	.ect-nav__inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.75rem 1rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
		display: block;
    }

    .ect-nav__btn {
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: start;
		padding:10px;
    }
	
	.acf-events__date-card {
        margin-bottom: 0px;
    }
	
	.acf-events .col-lg-5{
		margin-top:20px;
		text-align:center;
	}
	
	.acf-events__actions {
    	text-align: center;
    	justify-content: center;
    }
	
	.acf-events__btn{
		margin-bottom:20px;
	}
	
	.acf-events__location{
		margin-bottom:20px;
	}
	
	.cgi-card__body {
       padding: 1.25rem 0px 1.5rem 0px;
    }
}

@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
}

.section-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
    width: 500px;
}

.section-bg-image-left {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
    width: 500px;
}

.dotted-svg{
	width:100px;
	margin-bottom:20px;
}

@media (max-width: 1180px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 95% !important;
    }
}


/* ── Card List Section ───────────────────────────────────── */
.cl-section {
    padding: 5rem 0;
}

.cl-section--white { background-color: var(--bs-white); }
.cl-section--light { background-color: var(--bs-light); }
.cl-section--navy  { background-color: var(--acfbt-primary-dark); }

/* ── Header ──────────────────────────────────────────────── */
.cl-section__header {
    margin-bottom: 3rem;
}

.cl-section__header--center { text-align: center; }
.cl-section__header--left   { text-align: left; }

.cl-section__heading {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    margin-bottom: 0.75rem;
}

.cl-section__desc { margin-bottom: 0; }

/* ── List ────────────────────────────────────────────────── */
.cl-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Card ────────────────────────────────────────────────── */
.cl-card {
    border-radius: var(--bs-border-radius-lg);
    padding: 3em;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.15s;
    border-left: 4px solid var(--acfbt-accent);
}

.cl-card:hover {
    box-shadow: var(--bs-box-shadow);
    transform: translateY( -2px );
}

/* ── Left ────────────────────────────────────────────────── */
.cl-card__left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Badge */
.cl-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--acfbt-accent);
    color: #fff;
    border-radius: 50px;
    padding: 10px 40px;
    text-transform: capitalize;
    width: fit-content;
}

/* Title */
.cl-card__title {
    font-weight: 700;
    color: var(--acfbt-primary-dark);
    margin-bottom: 0;
    line-height: 1.3;
}

.cl-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.cl-card__title a:hover { color: var(--acfbt-accent); }

/* Action */
.cl-card__action { margin-top: 0.5rem; }

/* ── Right ───────────────────────────────────────────────── */
.cl-card__desc {
    color: var(--acfbt-primary-dark);
    line-height: 1.75;
}

.cl-card__desc p { margin-bottom: 0.75rem; }
.cl-card__desc p:last-child { margin-bottom: 0; }

/* ── Embed ───────────────────────────────────────────────── */
.cl-embed {
    background: var(--bs-white);
    border-radius: var(--bs-border-radius-lg);
    padding: 2rem;
}

/* ── Empty ───────────────────────────────────────────────── */
.cl-empty { padding: 3rem 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .cl-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .cl-card {
        padding: 1.5rem;
    }
}


/* ── Career Single ───────────────────────────────────────── */
.career-single {
    background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.career-hero {
    position: relative;
    background-color: var(--acfbt-primary-dark);
    overflow: hidden;
}

.career-hero--has-image {
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.career-hero--no-image {
    padding: 5rem 0 3rem;
}

.career-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.career-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.career-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 47, 70, 0.95) 0%,
        rgba(8, 47, 70, 0.6)  50%,
        rgba(8, 47, 70, 0.2)  100%
    );
    z-index: 1;
}

.career-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

/* Breadcrumb */
.career-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.career-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.career-hero__breadcrumb a:hover {
    color: #fff;
}

/* Badges */
.career-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.career-hero__badge--type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--acfbt-accent);
    color: #fff;
    border-radius: 50px;
    padding: 0.25rem 0.85rem;
}

/* Title */
.career-hero__title {
    font-family: var(--acfbt-font-serif);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* Description */
.career-hero__desc {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

/* Pills */
.career-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.career-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    backdrop-filter: blur(4px);
}

/* ── Body ────────────────────────────────────────────────── */
.career-body {
    padding: 4rem 0 5rem;
}

.career-body__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* Content */
.career-body__content {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 2.5rem;
}

/* Section */
.career-body__section {
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.career-body__section-title {
    font-family: var(--acfbt-font-serif);
    color: var(--acfbt-primary-dark);
    margin-bottom: 1.25rem;
}

.career-body__section-content {
    line-height: 1.8;
    color: #3a3a3a;
}

.career-body__section-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.career-body__section-content li {
    margin-bottom: 0.4rem;
}

/* Apply form */
.career-apply-form {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e0e0e0;
}

.career-apply-form__title {
    font-family: var(--acfbt-font-serif);
    font-weight: 700;
    color: var(--acfbt-primary-dark);
    margin-bottom: 1.5rem;
}

/* ── Prev / Next ─────────────────────────────────────────── */
.career-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.career-nav__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    flex: 1;
    max-width: 48%;
    transition: border-color 0.2s, background 0.2s;
}

.career-nav__item:hover {
    border-color: var(--acfbt-primary-dark);
    background: #f8f9fa;
}

.career-nav__item--next {
    justify-content: flex-end;
    text-align: right;
}

.career-nav__arrow {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--acfbt-primary-dark);
    transition: background 0.2s, color 0.2s;
}

.career-nav__item:hover .career-nav__arrow {
    background: var(--acfbt-primary-dark);
    color: #fff;
}

.career-nav__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.career-nav__info--right { align-items: flex-end; }

.career-nav__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    font-weight: 600;
}

.career-nav__title {
    font-weight: 700;
    color: var(--acfbt-primary-dark);
}

/* ── Sidebar ─────────────────────────────────────────────── */
.career-body__sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.career-sidebar-card {
    background: var(--bs-light);
    border-radius: 1rem;
    padding: 1.75rem;
}

.career-sidebar-card__title {
    font-weight: 700;
    color: var(--acfbt-primary-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.career-sidebar-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.career-sidebar-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.career-sidebar-card__icon {
    width: 2rem;
    height: 2rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--acfbt-primary-dark);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.career-sidebar-card__item strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.2rem;
}

.career-sidebar-card__item p {
    font-size: 0.9375rem;
    color: var(--acfbt-primary-dark);
    margin: 0;
    line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .career-hero--has-image { min-height: 360px; }

    .career-body__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .career-body__sidebar { position: static; }

    .career-nav {
        flex-direction: column;
    }

    .career-nav__item {
        max-width: 100%;
    }

    .career-nav__item--next {
        justify-content: flex-start;
        text-align: left;
    }

    .career-nav__info--right { align-items: flex-start; }
}

@media (max-width: 575.98px) {
    .career-hero__content {
        padding-top: 7rem;
    }
}


#gform_next_button_4_18{
    background-color: var(--acfbt-accent);
    color: var(--acfbt-white);
    border: none;
    border-radius: 50px;
    padding: 1.8rem 5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1;
    transition: background-color 0.2s;
    text-decoration: none;
	font-size:1rem;
}


/* ── Mobile Nav Toggle — hamburger to X ─────────────────── */
.navbar-toggler {
    border: none;
    padding: 0.35rem;
    box-shadow: none !important;
    outline: none;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Hide default Bootstrap icon */
.navbar-toggler .navbar-toggler-icon {
    background-image: none !important;
    width: 24px;
    height: 24px;
    position: relative;
    display: block;
}

/* Three lines using before, after and box-shadow */
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--acfbt-primary-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
}

.navbar-toggler .navbar-toggler-icon::before { top: 4px; }
.navbar-toggler .navbar-toggler-icon::after  { top: 18px; }

/* Middle line via box-shadow */
.navbar-toggler .navbar-toggler-icon {
    transition: box-shadow 0.2s ease;
}

/* ── Open state — X ──────────────────────────────────────── */
.navbar-toggler.is-open .navbar-toggler-icon {
    box-shadow: none; /* hide middle line */
}

.navbar-toggler.is-open .navbar-toggler-icon::before {
    top: 11px;
    transform: rotate( 45deg );
}

.navbar-toggler.is-open .navbar-toggler-icon::after {
    top: 11px;
    transform: rotate( -45deg );
}


@media (max-width: 1025px) {
	.nav-link, .btn-contact {
        font-size: 15px;
    }
	
	.navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 10px;
        padding-left: 10px;
    }
	
	.btn-contact {
        font-size: 15px;
    }
	
	.ss-step__connector {
        left: 65%;
    }
	
	.sd-card {
      padding: 2rem 1.5rem !important;
    }
}

.resource-grid .resource-item:last-child hr,
.resource-grid hr:last-child {
    display: none;
}

.site-banner{
    transition: all .35s ease;
    overflow: hidden;
}

.site-banner__close{
    background: none;
    border: 0;
    color: inherit;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
}

.site-banner.is-hidden{
    max-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
}

.read-more-content .full {
    display: none;
}

.read-more-content.expanded .preview {
    display: none;
}

.read-more-content.expanded .full {
    display: inline;
}

.read-more-toggle {
    display: inline-block;
    margin-top: 10px;
    text-decoration: underline;
    cursor: pointer;
}


.testimonial-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}


/* ── Accordion ───────────────────────────────────────── */
.accordion-item{
   color: var(--acfbt-primary) !important;	
}
.sd-accordion {
    width: 100%;
    max-width: 100%;
	color: var(--acfbt-primary) !important;

    /* Neutralize Bootstrap's defaults via its own variables */
    --bs-accordion-bg: transparent;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: inherit;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-color: inherit;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 22px;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 0;
    --bs-accordion-border-width: 0;      /* we draw our own borders below */
    --bs-accordion-border-radius: 0;
}

/* Your custom top/bottom item borders */
.sd-accordion__item {
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
	border-radius:0px !important;
}

/* Button typography (Bootstrap handles layout, width, reset, flex) */
.sd-accordion__button {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Replace Bootstrap's default chevron with yours */
.sd-accordion__button::after {
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Content padding (kept from your original) */
.sd-accordion__content-inner {
    padding: 0 50px 25px 0;
}
.sd-accordion__content-inner p:last-child {
    margin-bottom: 0;
}

/* ── Dark background ── */
.sd-accordion--dark {
    --bs-accordion-btn-color: #fff;
    --bs-accordion-active-color: #fff;
    --bs-accordion-color: #fff;
}
.sd-accordion--dark .sd-accordion__item {
    border-color: rgba(255, 255, 255, 0.25);
}
.sd-accordion--dark .sd-accordion__button::after {
    /* white chevron for dark bg */
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sd-accordion .accordion-item {
    background-color: transparent;
}
.sd-accordion .accordion-button,
.sd-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    background-image: none;   /* Bootstrap's border-shadow trick */
    box-shadow: none;
}
.sd-accordion .accordion-body {
    background-color: transparent;
}

@supports (-webkit-hyphens: none) {
    /* This block applies to Safari only (WebKit), not Chrome */
    .accordion-item {
        background-color: transparent;
    }
}


.tbd-dept-row--two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
}

@media (max-width: 767px) {
	.tbd-dept-row--two {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.tbd-dept-row--two .tbd-card__body{
	min-height:210px;
}