html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
    background-color: var(--shade-dark);
    padding-top: 5.25rem;
}

:root {
    /* Softflip palette */
    --blue-50: #D2ECFE;
    --blue-100: #7ECBFD;
    --blue-200: #1CA0EC;
    --blue-300: #1483BB;
    --blue-400: #0B5E89;
    --blue-500: #043A55;
    --blue-600: #011827;

    --lime-50: #BAF80D;
    --lime-100: #99CD09;
    --lime-200: #7AA405;
    --lime-300: #5E8003;
    --lime-400: #425A02;
    --lime-500: #253501;
    --lime-600: #0B1300;

    --teal-50: #BEFCFC;
    --teal-100: #55DFDF;
    --teal-200: #43B5B5;
    --teal-300: #349090;
    --teal-400: #246A6A;
    --teal-500: #144343;
    --teal-600: #061F1F;

    --moss-50: #E7FFC3;
    --moss-100: #ADE325;
    --moss-200: #8DB91C;
    --moss-300: #709414;
    --moss-400: #526E0C;
    --moss-500: #344705;
    --moss-600: #182301;

    --gray-50: #EDEFE0;
    --gray-100: #C2C9CC;
    --gray-200: #9BA3A8;
    --gray-300: #7B8285;
    --gray-400: #595F61;
    --gray-500: #3B3B3D;
    --gray-600: #191B1C;

    --shade-dark: var(--blue-600);
    --shade-light: var(--blue-50);
    --shade-ink: var(--blue-500);
    --shade-muted: var(--gray-400);
    --shade-cream: var(--gray-50);
    --shade-gold: var(--lime-100);
    --brand-blue: var(--blue-200);
    --brand-green: var(--lime-100);
    --brand-blue-deep: var(--blue-300);
    --brand-navy: var(--blue-500);
    --accent-green: var(--lime-100);
    --accent-green-bright: var(--lime-50);
    --accent-green-deep: var(--lime-200);
}

/* Independence Day Modal */
.iday-modal {
    position: relative;
    background:
        linear-gradient(165deg,
            #ff9933 0%,
            #ffb347 18%,
            #fff8f0 38%,
            #ffffff 50%,
            #e8f5e9 62%,
            #138808 100%);
    color: #1a1a1a;
}

.iday-modal__flag {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(#ff9933 0 33.33%, #ffffff 33.33% 66.66%, #138808 66.66% 100%);
    opacity: 0.12;
}

.iday-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    opacity: 0.85;
}

.iday-modal__body {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .iday-modal__body {
        padding: 2.5rem 2.5rem 2rem;
    }
}

.iday-modal__kicker {
    margin: 0 0 0.5rem;
    color: #0b3d1b !important;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.iday-modal__title {
    margin: 0 0 0.65rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.7rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1b140f;
}

.iday-modal__lead {
    margin: 0 auto 1.25rem;
    max-width: 34rem;
    color: #3d342c !important;
    font-size: 1.02rem;
    line-height: 1.5;
    font-weight: 500;
}

.iday-modal__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.65rem 1rem;
    margin-bottom: 0.55rem;
}

.iday-modal__price-old {
    color: #6b625a;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.iday-modal__price-now {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    color: #0b3d1b;
}

.iday-modal__save {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #ff9933;
    color: #1b140f;
    font-size: 0.85rem;
    font-weight: 800;
}

.iday-modal__value {
    margin: 0 auto 1.15rem;
    max-width: 28rem;
    color: #3d342c !important;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 500;
}

.iday-modal__value strong {
    color: #0b3d1b;
    font-weight: 800;
}

.iday-modal__value-sep {
    margin: 0 0.35rem;
    color: #9a8f84;
}

.iday-modal__value-note {
    display: block;
    margin-top: 0.2rem;
    color: #6b625a;
    font-size: 0.82rem;
    font-weight: 500;
}

.iday-modal__features {
    margin: 0 auto 1.35rem;
    max-width: 36rem;
    color: #2c2620 !important;
    font-size: 1.05rem;
    line-height: 1.55;
    font-weight: 500;
}

.iday-feature {
    background: linear-gradient(180deg, rgba(255, 153, 51, 0.35), rgba(19, 136, 8, 0.18));
    color: #0b3d1b;
    padding: 0.05rem 0.35rem;
    border-radius: 0.35rem;
    font-weight: 800;
}

.iday-clock {
    margin: 0 auto 1.4rem;
    max-width: 34rem;
    padding: 1rem 0.85rem 0.9rem;
    border-radius: 1.1rem;
    background: rgba(15, 20, 18, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 153, 51, 0.15);
}

.iday-clock__label {
    margin: 0 0 0.65rem;
    color: rgba(255, 248, 240, 0.75) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.iday-clock__digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.iday-clock__unit {
    min-width: 3.6rem;
    padding: 0.45rem 0.35rem;
    border-radius: 0.55rem;
    background: linear-gradient(180deg, #1c2420, #0d1210);
    border: 1px solid rgba(255, 153, 51, 0.35);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.35);
}

.iday-clock__value {
    display: block;
    font-family: "Courier New", Courier, monospace;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffd9a8;
    text-shadow: 0 0 12px rgba(255, 153, 51, 0.45);
}

.iday-clock__unit-label {
    display: block;
    margin-top: 0.15rem;
    color: rgba(255, 248, 240, 0.55);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.iday-clock__sep {
    font-family: "Courier New", Courier, monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9933;
    padding-bottom: 1rem;
}

.iday-modal__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.iday-modal__cta {
    background: linear-gradient(135deg, #0b3d1b, #138808);
    color: #fff !important;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    box-shadow: 0 10px 24px rgba(11, 61, 27, 0.28);
}

.iday-modal__cta:hover {
    filter: brightness(1.08);
    color: #fff !important;
}

.iday-modal__direct {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.iday-modal__call,
.iday-modal__whatsapp {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.55rem 1.15rem;
    color: #fff !important;
}

.iday-modal__call {
    background: #ff9933;
    color: #1b140f !important;
}

.iday-modal__call:hover {
    background: #e88820;
    color: #1b140f !important;
}

.iday-modal__whatsapp {
    background: #25d366;
}

.iday-modal__whatsapp:hover {
    background: #1ebe57;
    color: #fff !important;
}

.iday-modal__note {
    margin: 1rem 0 0;
    color: #3d342c !important;
    font-size: 0.82rem;
}

@media (max-width: 420px) {
    .iday-clock__unit {
        min-width: 2.9rem;
        padding: 0.35rem 0.2rem;
    }

    .iday-clock__value {
        font-size: 1.15rem;
    }

    .iday-clock__sep {
        font-size: 1.1rem;
        padding-bottom: 0.85rem;
    }
}

/* Keep legacy modal utility classes from older CTAs */
.modal-btn {
    background-color: #1483BB;
    color: #faf2f0;
}

/* Navbar — fixed to top of page */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 0.85rem 1rem;
    background-color: var(--blue-600);
}

.navbar {
    background-color: var(--blue-50);
}

.navbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--shade-ink) !important;
    font-size: clamp(0.92rem, 1.5vw, 1.12rem);
    letter-spacing: 0.01em;
    min-width: 0;
    flex: 1 1 auto;
    margin-right: 0;
    max-width: none;
    order: 1;
}

.navbar-brand__logo {
    height: 2.45rem;
    width: auto;
    max-width: 7.5rem;
    display: block;
    flex-shrink: 0;
    border-radius: 0.4rem;
    object-fit: contain;
}

.navbar-brand__text {
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    margin-left: auto;
    order: 2;
}

.navbar-toggler {
    padding: 0.35rem 0.5rem;
    border-width: 1px;
}

.navbar-collapse {
    flex-basis: 100%;
    order: 3;
}

@media (min-width: 992px) {
    .navbar-inner {
        flex-wrap: nowrap;
        position: relative;
    }

    .navbar-brand {
        flex: 0 1 auto;
        order: 1;
    }

    .navbar-collapse {
        flex-basis: auto;
        flex-grow: 1;
        order: 2;
    }

    .navbar-actions {
        order: 3;
        margin-left: 0;
    }

    .navbar-toggler {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 0.55rem 0.65rem;
    }

    .navbar-inner {
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }

    .navbar-brand {
        gap: 0.35rem;
        font-size: 0.9rem;
    }

    .navbar-brand__logo {
        height: 2rem;
        max-width: 5.5rem;
    }

    .navbar-demo-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand__text {
        max-width: 7.5rem;
    }

    .navbar-demo-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 399.98px) {
    .navbar-brand__text {
        display: none;
    }

    .navbar-brand__logo {
        height: 2.15rem;
        max-width: 6.25rem;
    }

    .navbar-demo-btn {
        padding: 0.32rem 0.55rem;
        font-size: 0.74rem;
    }

    .navbar-actions {
        gap: 0.3rem;
    }
}


@media (min-width: 1200px) {
    .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-nav {
        margin-left: 1rem;
    }
}

.navbar .nav-link {
    color: #0B5E89;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar .nav-link:hover {
    color: var(--lime-300);
    background-color: rgba(153, 205, 9, 0.12);
}

.navbar .nav-link.active {
    background: linear-gradient(145deg, var(--lime-100), var(--lime-200));
    color: var(--blue-600) !important;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    box-shadow: 0 6px 14px rgba(122, 164, 5, 0.28);
}

.navbar a,
ul {
    color: #0B5E89;
}

@media (min-width: 992px) {
    .navbar .nav-link.active {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.navbar button {
    border-color: var(--brand-green);
}

.navbar button:hover {
    background-color: var(--accent-green-deep);
    color: white;
}

.navbar-demo-btn {
    background: linear-gradient(145deg, var(--blue-200), var(--blue-300));
    color: var(--lime-50) !important;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.5rem 1.15rem;
    box-shadow: 0 8px 18px rgba(20, 131, 187, 0.28);
    transition: transform 0.2s ease, filter 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.navbar-demo-btn:hover {
    color: var(--lime-50) !important;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* ---------- Hero section ---------- */

.hero-section {
    --hero-ink: var(--gray-50);
    --hero-accent: var(--blue-300);
    --hero-gold: var(--lime-100);
    --hero-cream: var(--gray-50);
    --hero-sand: var(--teal-50);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    /* Pull under fixed header so one continuous background */
    margin-top: -5.25rem;
    padding: calc(5.25rem + 1.5rem) 0 2.75rem;
    font-family: "Manrope", sans-serif;
    background: linear-gradient(
        180deg,
        var(--blue-600) 0%,
        var(--blue-600) 22%,
        var(--blue-500) 55%,
        var(--blue-600) 100%
    );
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 48% at 14% 52%, rgba(28, 160, 236, 0.28), transparent 70%),
        radial-gradient(ellipse 42% 45% at 88% 82%, rgba(153, 205, 9, 0.12), transparent 70%),
        radial-gradient(ellipse 40% 40% at 72% 62%, rgba(85, 223, 223, 0.08), transparent 65%);
}

.hero-shell {
    position: relative;
    z-index: 1;
    padding-inline: 1rem;
}

@media (min-width: 992px) {
    body {
        padding-top: 5.75rem;
    }

    .site-header {
        padding: 1rem 1.5rem;
    }

    .hero-section {
        margin-top: -5.75rem;
        padding: calc(5.75rem + 1.75rem) 0 3.25rem;
    }

    .hero-shell {
        padding-inline: 2rem;
    }
}

.hero-brand {
    margin-bottom: 1.1rem;
    max-width: 36rem;
    animation: hero-in 0.7s ease both;
}

.hero-brand__name {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--hero-cream);
}

.hero-brand__tag {
    margin: 0.55rem 0 0;
    color: rgba(237, 239, 224, 0.78) !important;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 500;
    line-height: 1.4;
}

/* Image stage */
.erp-image-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    perspective: 1400px;
    animation: hero-in 0.8s ease 0.08s both;
}

.erp-flip {
    flex: 1 1 100%;
    width: 100%;
    cursor: pointer;
    outline: none;
    transform-style: preserve-3d;
    animation: erp-float 4.5s ease-in-out infinite;
}

#home,
#about,
#testimonials,
#clients,
#faqs,
#contact,
#enquiry {
    scroll-margin-top: 6rem;
}

.erp-flip:focus-visible {
    box-shadow: 0 0 0 3px rgba(20, 131, 187, 0.35);
    border-radius: 1.2rem;
}

.erp-flip__inner {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.85s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.erp-flip.is-flipped .erp-flip__inner {
    transform: rotateY(180deg);
}

.erp-flip__face {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 1.2rem;
    overflow: hidden;
}

.erp-flip__front {
    position: relative;
    border: 1px solid rgba(20, 131, 187, 0.12);
    box-shadow:
        0 24px 50px rgba(1, 24, 39, 0.2),
        0 8px 18px rgba(1, 24, 39, 0.1);
}

.erp-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(1, 24, 39, 0.25);
}

.erp-carousel__sizer {
    display: block;
    width: 100%;
    visibility: hidden;
    pointer-events: none;
}

.erp-carousel__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.erp-carousel__slide.is-active {
    opacity: 1;
}

.erp-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 3;
}

.erp-carousel__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(237, 239, 224, 0.45);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.erp-carousel__dot.is-active {
    width: 1.25rem;
    background: #EDEFE0;
}

.erp-carousel__dot:focus-visible {
    outline: 2px solid #EDEFE0;
    outline-offset: 2px;
}

.erp-image {
    width: 100%;
    display: block;
    vertical-align: middle;
}

.erp-flip__hint {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(1, 24, 39, 0.75);
    color: var(--hero-cream);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.erp-flip__back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 85% 15%, rgba(28, 160, 236, 0.14), transparent 42%),
        radial-gradient(circle at 12% 80%, rgba(20, 131, 187, 0.08), transparent 45%),
        linear-gradient(160deg, #BEFCFC 0%, #D2ECFE 48%, #7ECBFD 100%);
    color: #043A55;
    border: 1px solid rgba(20, 131, 187, 0.12);
    box-shadow: 0 24px 50px rgba(1, 24, 39, 0.2);
}

.erp-flip__back-content {
    text-align: center;
    max-width: 22rem;
}

.erp-flip__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(20, 131, 187, 0.08);
    color: #1483BB;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.erp-flip__quote {
    color: #043A55 !important;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.85rem;
    font-style: italic;
}

.erp-flip__desc {
    color: #4d6475 !important;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.erp-flip__cta {
    background: linear-gradient(145deg, #1483BB, #043A55);
    color: #EDEFE0 !important;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    box-shadow: 0 8px 18px rgba(20, 131, 187, 0.28);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.erp-flip__cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Enquiry */
.form.hero-enquiry,
.hero-enquiry {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(186, 248, 13, 0.14), transparent 42%),
        radial-gradient(circle at 8% 90%, rgba(85, 223, 223, 0.16), transparent 45%),
        linear-gradient(165deg, var(--gray-50) 0%, var(--blue-50) 55%, var(--teal-50) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(28, 160, 236, 0.22);
    box-shadow:
        0 24px 50px rgba(1, 24, 39, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    padding: 1.5rem 1.35rem 1.4rem !important;
    animation: hero-in 0.85s ease 0.14s both;
}

.hero-enquiry::before,
.hero-enquiry::after {
    display: none;
}

.hero-enquiry__top {
    position: relative;
    z-index: 1;
    margin-bottom: 0.65rem;
}

.hero-enquiry__heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hero-enquiry__heading-text {
    min-width: 0;
    flex: 1;
}

.hero-enquiry__badge {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--lime-100), var(--lime-200));
    color: var(--blue-600);
    font-size: 1.15rem;
    box-shadow: 0 8px 18px rgba(122, 164, 5, 0.28);
}

.hero-enquiry__kicker {
    margin: 0 0 0.15rem;
    color: var(--blue-300) !important;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-enquiry__title-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.hero-enquiry__title {
    margin: 0;
    color: var(--blue-600) !important;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    line-height: 1.15;
}

.hero-enquiry__direct {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-enquiry__icon-btn {
    display: inline-grid;
    place-items: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    color: #fff !important;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-enquiry__icon-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    color: #fff !important;
}

.hero-enquiry__call {
    background-color: #1CA0EC;
}

.hero-enquiry__whatsapp {
    background-color: #25d366;
}

.hero-enquiry__note {
    position: relative;
    z-index: 1;
    margin: 0 0 1.15rem;
    color: var(--gray-400) !important;
    font-size: 0.86rem;
    line-height: 1.45;
    font-weight: 500;
}

.hero-enquiry__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-enquiry__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.hero-enquiry__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hero-enquiry__label {
    color: var(--blue-500);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-enquiry__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-enquiry__input-wrap > i {
    position: absolute;
    left: 0.85rem;
    color: var(--lime-200);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.hero-enquiry__input-wrap--area {
    align-items: flex-start;
}

.hero-enquiry__input-wrap--area > i {
    top: 0.9rem;
}

.hero-enquiry .form-control {
    border: 1px solid rgba(20, 131, 187, 0.22);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.72);
    color: var(--blue-600);
    padding: 0.75rem 0.95rem 0.75rem 2.55rem;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-enquiry .form-control::placeholder {
    color: rgba(89, 95, 97, 0.65);
}

.hero-enquiry .form-control:hover {
    border-color: rgba(20, 131, 187, 0.4);
    background: #fff;
}

.hero-enquiry .form-control:focus {
    background: #fff;
    border-color: var(--blue-200);
    color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(28, 160, 236, 0.2);
}

.hero-enquiry textarea.form-control {
    min-height: 100px;
    resize: vertical;
    padding-top: 0.85rem;
}

.hero-enquiry .form-control.is-invalid {
    border-color: #c23b3b;
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(194, 59, 59, 0.16);
}

.hero-enquiry__error {
    margin: 0;
    color: #b42318;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero-enquiry__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.25rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-200) 0%, var(--blue-300) 100%);
    color: #fff;
    font-weight: 700;
    padding: 0.8rem 1.25rem;
    box-shadow: 0 10px 22px rgba(20, 131, 187, 0.28);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.hero-enquiry__btn i {
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.hero-enquiry__btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 14px 28px rgba(20, 131, 187, 0.35);
}

.hero-enquiry__btn:hover i {
    transform: translateX(3px);
}

@keyframes erp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-enquiry {
        max-width: 520px;
        margin-inline: auto;
        padding: 1.75rem 1.6rem !important;
    }

    .hero-enquiry__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 399.98px) {
    .erp-flip__back {
        padding: 1rem;
    }

    .erp-flip__desc {
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .erp-image-wrapper {
        display: block;
        margin-bottom: 1.5rem;
    }

    .erp-flip {
        width: 100%;
        flex: none;
        position: relative;
        z-index: 1;
    }

    .hero-enquiry {
        margin-top: 2.75rem;
        margin-left: 0.35rem;
        padding: 2rem 1.75rem !important;
    }

    .hero-enquiry__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1400px) {
    .hero-shell {
        padding-inline: 3rem;
    }
}

.erp-flip.is-flipped {
    animation-play-state: paused;
}

.form p {
    font-weight: 500;
    letter-spacing: 0.02em;
}

p {
    color: #f4ecdc;
}

/* ---------- About us (light) ---------- */
.about-body {
    background-color: var(--shade-light);
}

.about-title {
    color: var(--shade-ink);
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 1rem;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--accent-green);
}

.about-subtitle {
    max-width: 36rem;
    margin: 0 auto 0.85rem;
    color: var(--shade-ink) !important;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
}

.section-subtitle {
    max-width: 34rem;
    color: var(--shade-muted) !important;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.4;
    font-weight: 650;
}

.section-subtitle--light {
    color: rgba(237, 239, 224, 0.78) !important;
}

.about-lead {
    max-width: 42rem;
    margin: 0 auto;
    color: var(--shade-muted) !important;
    font-size: 1.02rem;
    line-height: 1.65;
    font-weight: 500;
}

.about-block__head {
    margin-bottom: 1.1rem;
}

.about-block__head--split {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 0.5rem 1.25rem;
}

.about-block__title {
    margin: 0;
    color: var(--shade-ink);
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 800;
}

.about-block__accent {
    color: #6b7fd7;
    font-weight: 700;
}

.about-block__desc {
    margin: 0.35rem 0 0;
    color: var(--shade-muted) !important;
    font-size: 0.92rem;
    font-weight: 500;
}

.about-block__head--split .about-block__desc {
    margin: 0;
    max-width: 18rem;
    text-align: right;
}

.about-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-slider__viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    padding: 0.35rem 0.15rem 0.85rem;
}

.about-slider__track {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.4, 0.2, 0.2, 1);
    will-change: transform;
}

.about-slider__nav {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid rgba(153, 205, 9, 0.35);
    background: #fff;
    color: var(--lime-200);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px rgba(1, 24, 39, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-slider__nav:hover {
    background: var(--lime-100);
    color: var(--blue-600);
    border-color: var(--lime-100);
}

.about-slider__nav:disabled {
    opacity: 0.35;
    pointer-events: none;
}

.feature-tile {
    flex: 0 0 calc((100% - 3rem) / 4);
    min-width: 0;
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.15rem 1rem 1.2rem;
    box-shadow: 0 10px 28px rgba(1, 24, 39, 0.08);
    border: 1px solid rgba(20, 131, 187, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-tile__icon {
    display: inline-grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.7rem;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.feature-tile__icon--blue { background: #4c7dff; }
.feature-tile__icon--green { background: #22c55e; }
.feature-tile__icon--orange { background: #f59e0b; }
.feature-tile__icon--purple { background: #8b5cf6; }
.feature-tile__icon--cyan { background: #06b6d4; }
.feature-tile__icon--magenta { background: #ec4899; }

.feature-tile__title {
    margin: 0 0 0.35rem;
    color: #1f1a16;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.feature-tile__text {
    margin: 0;
    color: #8a8178 !important;
    font-size: 0.86rem;
    line-height: 1.45;
    font-weight: 500;
}

.module-tile {
    flex: 0 0 calc((100% - 4rem) / 5);
    min-width: 0;
    background: #fff;
    border-radius: 0.95rem;
    border: 1px solid rgba(20, 131, 187, 0.08);
    box-shadow: 0 8px 20px rgba(1, 24, 39, 0.06);
    padding: 1.1rem 0.7rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.module-tile i {
    font-size: 1.45rem;
    color: var(--lime-100);
}

.module-tile span {
    color: #043A55;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
}

@media (max-width: 1199.98px) {
    .feature-tile {
        flex-basis: calc((100% - 2rem) / 3);
    }

    .module-tile {
        flex-basis: calc((100% - 3rem) / 4);
    }
}

@media (max-width: 767.98px) {
    .feature-tile {
        flex-basis: calc((100% - 1rem) / 2);
    }

    .module-tile {
        flex-basis: calc((100% - 1rem) / 2);
    }

    .about-block__head--split .about-block__desc {
        text-align: left;
        max-width: none;
    }

    .about-slider {
        gap: 0.35rem;
    }

    .about-slider__nav {
        width: 2.15rem;
        height: 2.15rem;
        display: grid;
    }
}

@media (max-width: 420px) {
    .feature-tile,
    .module-tile {
        flex-basis: 85%;
    }
}

.card-body {
    min-height: 150px;
    border-color: black;
    background-color: #D2ECFE;
}

.card-text {
    margin-top: 7px;
    color: #4d6475;
}

@media (max-width: 767.98px) {
    .card {
        width: 100%;
        margin: auto;
    }
}

/* Why Us (dark) */
.why-section {
    background-color: var(--shade-dark);
}

.why-section .about-title {
    color: var(--shade-cream);
}

.why-section .about-title::after {
    background-color: var(--shade-gold);
}

.why-item {
    height: 100%;
    text-align: center;
    padding: 0.35rem 0.5rem 0.5rem;
}

.why-item__icon {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.9rem;
    border-radius: 0.85rem;
    background: rgba(153, 205, 9, 0.18);
    color: var(--lime-50);
    font-size: 1.25rem;
}

.why-item__title {
    margin: 0 0 0.45rem;
    color: var(--shade-cream);
    font-size: 1.08rem;
    font-weight: 750;
    line-height: 1.3;
}

.why-item__text {
    margin: 0;
    color: rgba(237, 239, 224, 0.72) !important;
    font-size: 0.94rem;
    line-height: 1.55;
    font-weight: 500;
}

/* Client testimonials (light) */
.testimonials-section {
    background-color: var(--shade-light);
    overflow: hidden;
}

.testimonials-section .about-title {
    color: var(--shade-ink);
}

.testimonials-section .about-title::after {
    background-color: var(--shade-gold);
}

.t-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 0 2rem;
}

.t-viewport {
    position: relative;
    flex: 1;
    min-height: 380px;
    overflow: hidden;
}

.t-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(300px, 78%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -46%) scale(0.82);
    transition:
        transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1),
        opacity 0.45s ease,
        visibility 0.45s ease;
    z-index: 1;
}

.t-card.is-prev,
.t-card.is-active,
.t-card.is-next {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.t-card.is-prev {
    transform: translate(calc(-50% - 112%), -46%) scale(0.86);
    z-index: 2;
}

.t-card.is-next {
    transform: translate(calc(-50% + 112%), -46%) scale(0.86);
    z-index: 2;
}

.t-card.is-active {
    transform: translate(-50%, -48%) scale(1.05);
    z-index: 4;
}

.t-card__avatar {
    display: block;
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto -43px;
    position: relative;
    z-index: 2;
    border: 4px solid #D2ECFE;
    box-shadow: 0 8px 18px rgba(1, 24, 39, 0.18);
    transition: width 0.45s ease, height 0.45s ease, margin-bottom 0.45s ease;
}

.t-card.is-active .t-card__avatar {
    width: 102px;
    height: 102px;
    margin-bottom: -51px;
}

.t-card__panel {
    position: relative;
    background: #D2ECFE;
    border-radius: 1.1rem;
    padding: 3.6rem 1.35rem 1.6rem;
    text-align: center;
    border: 1px solid rgba(20, 131, 187, 0.1);
    box-shadow: 0 8px 22px rgba(1, 24, 39, 0.08);
    min-height: 250px;
    transition: box-shadow 0.45s ease, transform 0.45s ease;
}

.t-card.is-active .t-card__panel {
    box-shadow: 0 18px 40px rgba(1, 24, 39, 0.16);
    background: #BEFCFC;
}

.t-card__name {
    margin: 0 0 0.7rem;
    color: #043A55;
    font-size: 1.15rem;
    font-weight: 700;
}

.t-card__quote-block {
    position: relative;
    margin: 0;
    padding: 0.2rem 1.25rem 0.55rem;
}

.t-card__quote-block::before,
.t-card__quote-block::after {
    position: absolute;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--lime-100);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    opacity: 0.95;
    pointer-events: none;
}

.t-card__quote-block::before {
    content: "“";
    top: -0.15rem;
    left: 0;
}

.t-card__quote-block::after {
    content: "”";
    right: 0;
    bottom: -0.2rem;
}

.t-card__text {
    margin: 0;
    color: #4d6475 !important;
    font-size: 0.9rem;
    line-height: 1.55;
}

.t-nav {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(153, 205, 9, 0.35);
    background: var(--moss-50);
    color: var(--lime-200);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(1, 24, 39, 0.1);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    z-index: 5;
}

.t-nav:hover {
    background: var(--lime-100);
    color: var(--blue-600);
    border-color: var(--lime-100);
    transform: scale(1.05);
}

.t-nav:focus-visible {
    outline: 3px solid rgba(153, 205, 9, 0.4);
    outline-offset: 2px;
}

@media (max-width: 991.98px) {
    .t-card.is-prev,
    .t-card.is-next {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .t-card.is-active {
        transform: translate(-50%, -48%) scale(1);
        width: min(320px, 86%);
    }

    .t-viewport {
        min-height: 360px;
    }
}

@media (max-width: 575.98px) {
    .t-slider {
        gap: 0.35rem;
        padding-inline: 0.15rem;
    }

    .t-nav {
        width: 40px;
        height: 40px;
    }

    .t-card.is-active {
        width: min(300px, 82%);
    }

    .t-card__panel {
        padding: 3.3rem 1.1rem 1.4rem;
        min-height: 230px;
    }

    .t-card__text {
        font-size: 0.84rem;
    }
}

/* Clients Served (dark) */
.clients-body {
    background-color: var(--shade-dark);
}

.clients-body .about-title {
    color: var(--shade-cream);
}

.clients-body .about-title::after {
    background-color: var(--shade-gold);
}

.clients-track {
    width: max-content;
    animation: scroll-logos 28s linear infinite;
}

.clients-track-wrapper:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    color: rgba(237, 239, 224, 0.55);
    filter: grayscale(100%);
    transition: opacity 0.25s ease, filter 0.25s ease, color 0.25s ease;
}

.client-logo i {
    color: var(--shade-gold);
}

.client-logo:hover {
    opacity: 1 !important;
    filter: grayscale(0%);
    color: var(--shade-cream) !important;
}

@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .clients-track {
        animation-duration: 20s;
    }
}

@media (max-width: 399.98px) {
    .clients-track {
        animation-duration: 16s;
    }
}

/* Respect users who've asked for less motion */
@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }

    .clients-track-wrapper {
        overflow-x: auto;
    }
}

/* FAQs (light) */
.faqs-section {
    background-color: var(--shade-light);
}

.faqs-section .about-title {
    color: var(--shade-ink);
}

.faqs-section .about-title::after {
    background-color: var(--shade-gold);
}

.faq-list {
    max-width: 46rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item.accordion-item {
    border: 1px solid rgba(20, 131, 187, 0.12);
    border-radius: 14px;
    overflow: hidden;
    background-color: #fff;
}

.faq-item .accordion-button {
    font-family: "Manrope", sans-serif;
    font-weight: 650;
    font-size: 1.02rem;
    line-height: 1.45;
    padding: 1.05rem 1.2rem;
    background-color: transparent;
    color: var(--shade-ink);
    box-shadow: none;
}

.faq-item .accordion-button::after {
    filter: none;
    margin-left: auto;
    flex-shrink: 0;
}

.faq-item .accordion-button:not(.collapsed) {
    background-color: rgba(28, 160, 236, 0.12);
    color: var(--shade-ink);
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-item .accordion-body {
    padding: 0.15rem 1.2rem 1.15rem;
    background-color: transparent;
    color: var(--shade-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 450;
}

.faq-item .accordion-collapse {
    border-top: 0;
}

@media (max-width: 575.98px) {
    .faq-item .accordion-button {
        font-size: 0.96rem;
        padding: 0.95rem 1rem;
    }

    .faq-item .accordion-body {
        padding: 0.1rem 1rem 1rem;
        font-size: 0.94rem;
    }
}

/* Contact Us (dark) */
.contact-body {
    background-color: var(--shade-dark);
}

.contact-body .about-title {
    color: var(--shade-cream);
}

.contact-body .about-title::after {
    background-color: var(--shade-gold);
}

.contact-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 58rem;
    margin: 0 auto;
    border: 1px solid rgba(126, 203, 253, 0.18);
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(11, 94, 137, 0.28), rgba(1, 24, 39, 0.55));
}

.contact-channel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.15rem;
    align-items: start;
    padding: 1.45rem 1.35rem;
    border-bottom: 1px solid rgba(126, 203, 253, 0.14);
    transition: background-color 0.2s ease;
}

.contact-channel:last-child {
    border-bottom: 0;
}

.contact-channel:hover {
    background: rgba(28, 160, 236, 0.08);
}

.contact-channel__icon {
    display: grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.9rem;
    background: rgba(153, 205, 9, 0.16);
    color: var(--lime-50);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-channel__label {
    margin: 0 0 0.35rem;
    color: var(--blue-100);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-channel__value {
    margin: 0;
    color: var(--gray-50) !important;
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 550;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.contact-channel__value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(126, 203, 253, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
    display: inline;
    white-space: nowrap;
}

.contact-channel__value a:hover {
    color: var(--lime-50);
    border-bottom-color: var(--lime-50);
}

.contact-channel__meta {
    margin: 0.4rem 0 0;
    color: rgba(237, 239, 224, 0.62) !important;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Mid screens: full-width stacked rows so long text stays readable */
@media (min-width: 768px) and (max-width: 991.98px) {
    .contact-board {
        grid-template-columns: 1fr;
        max-width: 40rem;
    }

    .contact-channel {
        grid-template-columns: auto 1fr;
        justify-items: start;
        text-align: left;
        align-items: start;
        padding: 1.35rem 1.5rem;
        border-bottom: 1px solid rgba(126, 203, 253, 0.14);
        border-right: 0;
    }

    .contact-channel:last-child {
        border-bottom: 0;
    }

    .contact-channel__body {
        max-width: none;
        min-width: 0;
    }

    .contact-channel__value {
        font-size: 0.98rem;
    }

    .contact-channel__value br {
        display: none;
    }
}

/* Large screens: three equal columns */
@media (min-width: 992px) {
    .contact-board {
        grid-template-columns: repeat(3, 1fr);
        max-width: 64rem;
    }

    .contact-channel {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 1.75rem 1.1rem 1.85rem;
        border-bottom: 0;
        border-right: 1px solid rgba(126, 203, 253, 0.14);
        min-height: 100%;
    }

    .contact-channel:last-child {
        border-right: 0;
    }

    .contact-channel__body {
        max-width: none;
        width: 100%;
        min-width: 0;
    }

    .contact-channel__value {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .contact-channel__value a {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .contact-channel__meta {
        font-size: 0.82rem;
    }
}

@media (max-width: 575.98px) {
    .contact-channel {
        padding: 1.25rem 1.1rem;
    }

    .contact-channel__value {
        font-size: 0.95rem;
    }

    .contact-channel__value a {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

.footer {
    background-color: var(--shade-light);
    color: #043A55;
}

.footer h2 {
    color: #011827;
}

.footer h2 .border-bottom {
    border-color: var(--shade-gold) !important;
}

.footer p,
.footer .small {
    color: #043A55;
}

.footer-link {
    color: #011827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #1483BB;
}

.footer-social {
    color: #011827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social:hover {
    color: #1483BB;
}

.footer-divider {
    border-color: rgba(20, 131, 187, 0.22);
    opacity: 1;
    margin: 2rem 0 1.25rem;
}

.footer-copy {
    color: #043A55;
    font-size: 0.95rem;
}

/* Center footer columns on mid screens (2-column layout) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .footer .row > [class*="col-"] {
        text-align: center;
    }

    .footer h2 .border-bottom {
        display: inline-block;
        padding-inline: 0.35rem 0.35rem !important;
    }

    .footer .list-unstyled {
        padding-left: 0;
    }
}