:root {
    --primary-color: #FFD700; /* Vibrant Yellow */
    --secondary-color: #000000;
    --text-dark: #001d3d;
    --light-color: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   GLOBAL BUTTON STYLE
   ============================================= */
.btn-primary,
.btn-primary-custom,
.btn-yellow,
.btn-signup,
.btn-login,
.btn-explore,
.btn-service,
.btn-calculate,
.btn-payment,
.payment-btn,
.apply-btn,
.popup-btn,
.btn-save,
.btn-add-advocate,
.btn-outline-custom,
.btn-yellow-custom,
.send-btn {
    background: #1a1a2e !important;
    color: #fff !important;
    border: none !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 12px 26px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, transform 0.15s !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary-custom:hover,
.btn-yellow:hover,
.btn-signup:hover,
.btn-login:hover,
.btn-explore:hover,
.btn-service:hover,
.btn-calculate:hover,
.btn-payment:hover,
.payment-btn:hover,
.apply-btn:hover,
.popup-btn:hover,
.btn-save:hover,
.btn-add-advocate:hover,
.btn-outline-custom:hover,
.btn-yellow-custom:hover,
.send-btn:hover {
    background: var(--primary-color) !important;
    color: #1a1a2e !important;
    transform: translateY(-2px);
}

/* Inverted variant - gold bg, navy text */
.btn-outline-yellow-custom,
.btn-explore-alt {
    background: var(--primary-color) !important;
    color: #1a1a2e !important;
    border: none !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 12px 26px !important;
    border-radius: 50px !important;
    transition: background 0.2s, color 0.2s, transform 0.15s !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-yellow-custom:hover,
.btn-explore-alt:hover {
    background: #1a1a2e !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Global section rhythm */
.section-wrapper {
    padding: 24px 0 60px;
}

.section-muted {
    background: linear-gradient(180deg, #e8f0f7, #f0f5fa);
}

.section-header {
    margin-bottom: 24px;
}

.eyebrow {
    display: inline-block;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
    color: #6b7280;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 6px 0 8px;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    color: #6b7280;
    max-width: 720px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background-color: #1a1a2e !important;
    color: #b0b0cc !important;
    font-size: 0.80rem;
    padding: 7px 0;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    z-index: 1032;
}

.top-bar a,
.top-bar-link {
    color: #b0b0cc !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.top-bar a:hover,
.top-bar-link:hover { color: var(--primary-color) !important; }

.top-bar-divider { color: #3a3a5c; }

.top-bar-social {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10) !important;
    color: #b0b0cc !important;
    font-size: 0.72rem;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
}

.top-bar-social:hover {
    background: var(--primary-color) !important;
    color: #1a1a2e !important;
}

/* =============================================
   MAIN NAVBAR - fresh build
   ============================================= */

/* Nav wrapper */
.sitenav.navbar {
    background: #ffffff !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: none;
    transition: box-shadow 0.3s;
    z-index: 1031;
}

.sitenav.navbar-scrolled {
    box-shadow: 0 4px 22px rgba(0,0,0,0.09) !important;
    border-bottom-color: transparent;
}

/* Inner row */
.sitenav__inner {
    position: relative;
    min-height: 60px;
    align-items: stretch !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}

/* Logo - left */
.sitenav__brand {
    display: flex;
    align-items: center;
    padding: 10px 0;
    text-decoration: none !important;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.sitenav__brand img {
    height: 90px;
    width: auto;
    transition: opacity 0.2s;
}

.sitenav__brand:hover img { opacity: 0.82; }

/* Collapse area */
.sitenav .navbar-collapse {
    align-self: stretch;
    align-items: stretch !important;
}

/* Nav links - absolutely centred in the full navbar width */
.sitenav__links {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    height: 100% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.sitenav__links .nav-item {
    display: flex;
    align-items: stretch;
}

/* Individual link */
.sitenav__link {
    display: flex !important;
    align-items: center;
    padding: 0 1.1rem !important;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #2c2c3e !important;
    text-decoration: none !important;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    background: transparent;
    line-height: 1;
}

.sitenav__link:hover {
    color: #b8860b !important;
    border-bottom-color: var(--primary-color);
}

.sitenav__link--active {
    color: #b8860b !important;
    border-bottom-color: var(--primary-color);
}

/* Dropdown toggle - hide Bootstrap arrow, rotate our chevron */
.sitenav__link--drop::after { display: none !important; }
.sitenav__chevron { font-size: 0.60rem; margin-left: 5px; transition: transform 0.2s; }
.nav-item.dropdown.show .sitenav__chevron { transform: rotate(180deg); }

/* Dropdown panel */
.sitenav__dropdown {
    display: none;
    list-style: none;
    padding: 0.65rem;
    margin: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
    min-width: 240px;
}

/* Desktop: absolute below the link */
@media (min-width: 992px) {
    .sitenav__dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1050;
        margin-top: 0;
        padding-top: 8px;
        animation: sitenavDrop 0.16s ease;
    }
}

.nav-item.dropdown.is-open .sitenav__dropdown {
    display: block;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .sitenav__dropdown {
        display: block;
    }
    .nav-item.dropdown:hover .sitenav__chevron {
        transform: rotate(180deg);
    }
}

/* Dropdown toggle chevron rotation */
.nav-item.dropdown.is-open .sitenav__chevron {
    transform: rotate(180deg);
}

@keyframes sitenavDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sitenav__drop-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    padding: 0.62rem 1rem !important;
    font-size: 0.86rem;
    font-weight: 500;
    color: #2c2c3e !important;
    text-decoration: none !important;
    transition: background 0.15s;
}

.sitenav__drop-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.sitenav__drop-item:hover { background: #fffbea; }
.sitenav__drop-item.active { background: #fff8cc; font-weight: 700; }

/* Dashboard nav button (shown when logged in) */
.btn-dashboard-nav {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #1a1a2e !important;
    color: #fff !important;
    border: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 6px 16px !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none !important;
}
.btn-dashboard-nav:hover {
    background: #FFD700 !important;
    color: #000 !important;
}

/* CTA / Login button */
.sitenav__cta,
.btn-signup {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: #1a1a2e !important;
    border: none;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none !important;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(255,215,0,0.38);
}

.sitenav__cta:hover,
.btn-signup:hover {
    background: #1a1a2e !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: none;
}

/* Hamburger toggle */
.sitenav__toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1.5px solid rgba(0,0,0,0.14) !important;
    border-radius: 8px;
    color: #2c2c3e;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    outline: none;
    box-shadow: none !important;
}

.sitenav__toggler:hover { background: #f5f5f5; }

/* ---- Tablet & Mobile (< 992px) ---- */
@media (max-width: 991.98px) {
    /* Grid: [logo | LOGIN | toggler] on row 1, collapse on row 2 */
    .sitenav__inner {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: minmax(60px, auto) auto;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        align-items: center;
    }

    .sitenav__brand          { grid-column: 1; grid-row: 1; justify-self: start;  align-self: center; padding: 0; }
    .sitenav__cta--mobile,
    #mobileAuthBtn.btn-dashboard-nav { grid-column: 2; grid-row: 1; justify-self: center; align-self: center; }
    .sitenav__toggler        { grid-column: 3; grid-row: 1; justify-self: end;    align-self: center; }
    .navbar-collapse         { grid-column: 1 / -1; grid-row: 2; }

    .sitenav__brand img {
        width: 140px;
        height: auto;
    }

    /* Smaller button so it doesn't dominate */
    .sitenav__cta--mobile {
        font-size: 0.72rem !important;
        padding: 5px 14px !important;
        box-shadow: none !important;
        white-space: nowrap;
    }

    /* Reset absolute centering - stack links vertically */
    .sitenav__links {
        position: static !important;
        transform: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        height: auto !important;
        padding: 0.25rem 0 0.5rem !important;
    }

    .sitenav__links .nav-item { width: 100%; display: block; }

    .sitenav__link {
        border-bottom: none !important;
        border-left: 3px solid transparent;
        padding: 0.75rem 1rem !important;
        width: 100%;
        justify-content: space-between;
        letter-spacing: 0.04em;
        font-size: 0.85rem;
    }

    .sitenav__link:hover,
    .sitenav__link--active {
        border-bottom: none !important;
        border-left-color: var(--primary-color);
        background: #fffbea;
    }

    /* Mobile dropdown - inline, no shadow */
    .sitenav__dropdown {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.09);
        border-radius: 8px;
        margin: 0 0 0.5rem 0.75rem;
        animation: none;
    }

    /* Mobile CTA button in nav - full width */
    .sitenav .navbar-collapse .sitenav__cta {
        display: inline-flex;
        margin: 0.5rem 1rem 0.75rem;
        width: calc(100% - 2rem);
        justify-content: center;
    }

    /* Hide desktop CTA */
    #authButtons { display: none !important; }
}

/* ---- Small phones (< 576px) ---- */
@media (max-width: 575.98px) {
    .top-bar { font-size: 0.70rem; padding: 5px 0; }
    .top-bar-social { width: 22px; height: 22px; font-size: 0.62rem; }
    .top-bar .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .sitenav__inner { min-height: 75px; }
    .sitenav__brand img { width: 125px; height: auto; }
    .sitenav__toggler { width: 34px; height: 34px; font-size: 0.9rem; }
}

/* Wakili Info Section */
.wakili-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.wakili-info .section-header { position: relative; z-index: 1; }

.wakili-info::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.wakili-info h2 {
    color: #000;
}

.wakili-info .text-warning {
    color: var(--primary-color) !important;
}

.phone-mockup {
    position: relative;
    text-align: center;
}

.phone-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 8px solid #fff;
}

.feature-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.feature-badge i {
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-1 {
    top: 10%;
    right: 0;
}

.badge-2 {
    top: 40%;
    right: -5%;
}

.badge-3 {
    bottom: 25%;
    right: 0;
}

.download-badge {
    position: absolute;
    bottom: 8%;
    left: 5%;
    background: white;
    padding: 14px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    font-weight: 600;
    font-size: 0.8rem;
}

.download-badge i {
    color: #000;
}

.dropdown-menu {
    border-radius: 0;
    margin-top: 10px;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Simple, modern hero slider */
.hero-slider { position: relative; }
.hero-slider .carousel-item {
    height: 80vh;
    min-height: 520px;
    background-size: cover;
    background-position: center;
}

/* Softer dual overlay for better contrast */
.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0,0,0,.3), rgba(0,0,0,.65) 60%);
}

/* Centered content with subtle card effect */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 860px;
    padding: 16px 22px;
}

.carousel-caption h1, .carousel-caption h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: clamp(1rem, 1.7vw, 1.125rem);
    color: #e5e7eb;
    margin-bottom: 22px;
}

/* Minimal nav controls */
.carousel-control-prev, .carousel-control-next { width: 10%; }
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

/* Refined indicators */
.carousel-indicators { gap: 6px; margin-bottom: 14px; }
.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,.45);
}
.carousel-indicators .active { background: var(--primary-color); }

/* CTA on slides */
.hero-slider .btn.btn-yellow { padding: 10px 28px; border-radius: 999px; }

@media (max-width: 575px) {
    .hero-slider .carousel-item { height: 68vh; }
    .carousel-indicators { margin-bottom: 8px; gap: 6px; }
    .carousel-indicators [data-bs-target] { width: 12px; height: 2px; border-radius: 2px; }
}

/* Global Button Styles with Gold Gradient */
button:not(.navbar-toggler):not(.carousel-control-prev):not(.carousel-control-next):not(.btn-close):not(.btn-danger):not(.btn-success):not(.btn-warning):not(.btn-outline-warning):not(.btn-pass-toggle):not(.btn-dashboard-nav):not(.btn-card-play),
.btn:not(.btn-outline-light):not(.btn-link):not(.btn-danger):not(.btn-success):not(.btn-warning):not(.btn-outline-warning):not(.btn-pass-toggle):not(.btn-dashboard-nav),
input[type="submit"],
input[type="button"],
a.btn:not(.btn-outline-light):not(.btn-link):not(.btn-danger):not(.btn-success):not(.btn-warning):not(.btn-outline-warning):not(.btn-pass-toggle):not(.btn-dashboard-nav),
.btn-primary, .btn-secondary, .btn-info, .btn-dark {
    background: #1a1a2e !important;
    color: #fff !important;
    border: none !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    padding: 12px 26px !important;
    transition: background 0.2s, color 0.2s, transform 0.15s !important;
}

button:not(.navbar-toggler):not(.carousel-control-prev):not(.carousel-control-next):not(.btn-close):not(.btn-danger):not(.btn-success):not(.btn-warning):not(.btn-outline-warning):not(.btn-pass-toggle):hover,
.btn:not(.btn-outline-light):not(.btn-link):not(.btn-danger):not(.btn-success):not(.btn-warning):not(.btn-outline-warning):not(.btn-pass-toggle):hover,
input[type="submit"]:hover,
input[type="button"]:hover,
a.btn:not(.btn-outline-light):not(.btn-link):not(.btn-danger):not(.btn-success):not(.btn-warning):not(.btn-outline-warning):not(.btn-pass-toggle):hover,
.btn-primary:hover, .btn-secondary:hover, .btn-info:hover, .btn-dark:hover {
    background: var(--primary-color) !important;
    color: #1a1a2e !important;
    transform: translateY(-2px);
}

/* btn-outline-warning - gold border, transparent bg; active/checked = navy fill */
.btn-outline-warning {
    background: transparent !important;
    color: #001d3d !important;
    border: 2px solid #FFD700 !important;
    font-weight: 600 !important;
}
.btn-outline-warning:hover,
.btn-check:checked + .btn-outline-warning {
    background: #001d3d !important;
    color: #FFD700 !important;
    border-color: #001d3d !important;
}

/* Yellow Buttons - now use navy style */
.btn-yellow {
    background: #1a1a2e !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 26px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-yellow:hover {
    background: var(--primary-color) !important;
    color: #1a1a2e !important;
    transform: translateY(-2px);
}

/* Wakili Calculator Button */
.btn-calculator {
    background: #FFD700;
    color: #000;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 32px;
    transition: all .25s ease;
}

.btn-calculator:hover {
    background: #FFA500;
    color: #000;
}

/* Modern Dropdown Menu with Glassmorphism */
.dropdown-menu {
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    animation: dropdownSlide 0.3s ease-out;
    overflow: hidden;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Feature cards */
.feature-card {
    background: #e8f0f7;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 24px rgba(16, 24, 40, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.09);
    background: #fff;
}

.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 215, 0, 0.15);
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.feature-card h4 { font-weight: 600; margin-bottom: 8px; font-size: 1.1rem; }
.feature-card p { color: #6b7280; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover i { transform: translateX(3px); }

/* Media frame */
.media-frame {
    position: relative;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 24, 40, 0.08);
}

.media-frame::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,215,0,.25), rgba(0,0,0,.05));
    z-index: -1;
}

/* App Banner */
.app-banner {
    padding: 0;
    position: relative;
}

.app-banner img {
    width: 100%;
    height: auto;
    display: block;
}

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

.banner-list li {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-list li i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Value Proposition Section */
.value-prop {
    background: #f7f6f2;
    padding: 90px 0;
}

.value-prop .section-title { color: #1a1a2e; }
.value-prop .section-title span { color: var(--primary-color); }

.vp-intro {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    margin-bottom: 0;
}

.vp-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px 24px;
    transition: background 0.25s, transform 0.25s;
}

.vp-card:hover {
    background: rgba(255,215,0,0.06);
    transform: translateX(4px);
}

.vp-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vp-card__text {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.vp-closing {
    text-align: center;
    max-width: 780px;
    margin: 36px auto 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

@media (max-width: 991px) {
    .value-prop { padding: 70px 0; }
}

@media (max-width: 767px) {
    .value-prop { padding: 52px 0; }
    .vp-closing { font-size: 0.88rem; margin-top: 28px; }
    /* Stack the two inner columns in the value prop card */
    .value-prop .svc-points-box { padding: 28px 20px; }
    .value-prop .svc-points-box .row { flex-direction: column; }
    .value-prop .svc-points-box__list--right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 4px;
        margin-top: 4px;
    }
}

/* Clients & Stakeholders Section */
.clients-section {
    background: #ffffff;
    padding: 90px 0;
}

.clients-serves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.clients-serves::before,
.clients-serves::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.clients-serves span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.04em;
}

.client-card {
    background: #f7f6f2;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    height: 100%;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.client-card:hover {
    background: #1a1a2e;
    border-color: #1a1a2e;
    transform: translateY(-4px);
}

.client-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #1a1a2e;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
    transition: background 0.25s;
}

.client-card:hover .client-card__icon {
    background: var(--primary-color);
    color: #1a1a2e;
}

.client-card__label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    transition: color 0.25s;
}

.client-card:hover .client-card__label {
    color: #fff;
}

@media (max-width: 991px) {
    .clients-section { padding: 70px 0; }
    .client-card { padding: 28px 16px; }
}

@media (max-width: 767px) {
    .clients-section { padding: 52px 0; }
    .client-card { padding: 22px 14px; border-radius: 12px; }
    .client-card__icon { width: 44px; height: 44px; font-size: 1rem; border-radius: 10px; }
    .client-card__label { font-size: 0.8rem; }
    .clients-serves span { font-size: 0.88rem; }
}

@media (max-width: 767px) {
    .clients-section .col-6 { width: 100%; }
}

/* Our Commitment Section */
.commitment-section {
    background: #f7f6f2;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18rem;
    font-family: Georgia, serif;
    color: rgba(26,26,46,0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.commitment-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.commitment-body {
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
    margin-top: 28px;
    margin-bottom: 0;
    text-align: justify;
}

.commitment-tagline {
    margin-top: 44px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.5;
    padding-top: 32px;
    border-top: 2px solid var(--primary-color);
    display: inline-block;
}

.commitment-tagline span {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .commitment-section { padding: 70px 0; }
    .commitment-inner { max-width: 100%; }
}

@media (max-width: 767px) {
    .commitment-section { padding: 52px 0; }
    .commitment-section::before { font-size: 10rem; top: -20px; }
    .commitment-body { font-size: 0.92rem; line-height: 1.8; text-align: left; }
    .commitment-tagline { font-size: 0.9rem; margin-top: 28px; padding-top: 20px; }
}

/* Contact Cards */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #000;
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: #6b7280;
    margin: 0;
}

.contact-form-wrapper {
    background: #f9fafb;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form .form-control, .contact-form .form-select {
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all .3s ease;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

/* Footer */
.footer {
    background: #000000;
    position: relative;
}

.footer .row {
    position: relative;
}

.footer h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 500px;
}

.footer h5 {
    font-weight: 600;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color .3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 40px;
}

.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .3s ease, opacity .3s ease;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    color: #000;
}

@media (max-width: 991px) {
    .footer { padding-top: 60px; }
    .footer-info { padding-right: 0; margin-bottom: 50px; }
    .footer-bottom-links { justify-content: center; margin-top: 20px; flex-wrap: wrap; }
    .footer-heading { margin-bottom: 25px; font-size: 1.1rem; }
    .footer .row::after { display: none; }
    .social-links { justify-content: center; }
    .footer-description { text-align: center; }
    .app-download-btn { margin: 0 auto; }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-brand img { height: 58px; }
    .navbar-toggler { padding: 4px 8px; }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,26,46,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .nav-link::after { display: none; }
    .dropdown-menu { box-shadow: none !important; border: 1px solid #eee !important; margin-top: 0 !important; }
    .section-title { font-size: 1.75rem; }
    .hero-slider .carousel-item { height: 60vh; min-height: 400px; }
    .carousel-caption h1, .carousel-caption h2 { font-size: 2rem; }
    .phone-img { max-width: 80%; margin: 0 auto; display: block; }
    .download-badge { left: 50%; transform: translateX(-50%); }
    .footer .row::after { display: none; }
    .footer h3 { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    .section-wrapper { padding: 16px 0 40px; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.95rem; }
    .wakili-info .col-lg-6 { text-align: center !important; }
    .wakili-info .section-header { text-align: center !important; }
    .wakili-info .section-title { text-align: center !important; }
    .wakili-info .d-flex { justify-content: center !important; }
    #services .position-relative { min-height: 300px !important; }
    #services .position-relative img:first-child { width: 50% !important; left: 5% !important; }
    #services .position-relative img:last-child { width: 50% !important; right: 5% !important; bottom: -20px !important; }
    .hero-slider .carousel-item { height: 50vh; min-height: 350px; }
    .carousel-caption { padding: 15px; max-width: 90%; top: 50%; transform: translate(-50%, -50%); }
    .carousel-caption h1, .carousel-caption h2 { font-size: 1.4rem; }
    .carousel-caption p { display: none; }
    .hero-slider .btn.btn-yellow { padding: 8px 20px; font-size: 0.9rem; margin-top: 15px; }
    .carousel-indicators { display: none; }
    .btn-yellow, .btn-calculator { padding: 10px 24px; font-size: 0.95rem; }
    .phone-img { border: 4px solid #fff; }
    .feature-card { padding: 20px; }
    .feature-card h4 { font-size: 1rem; }
    .icon-wrap { width: 50px; height: 50px; font-size: 1rem; }
    .contact-card { padding: 24px 20px; }
    .contact-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .contact-form-wrapper { padding: 30px 20px; }
    .footer { padding-top: 50px; }
    .footer-heading { font-size: 1.1rem; margin-bottom: 20px; }
    .footer-description { font-size: 0.95rem; text-align: center; }
    .footer-links li a { font-size: 0.95rem; }
    .footer-bottom p { font-size: 0.9rem; text-align: center; }
    .footer-bottom-links { justify-content: center; gap: 20px; }
    .footer-bottom-links a { font-size: 0.9rem; }
    .social-link { width: 42px; height: 42px; }
    .app-download-btn { max-width: 150px; margin: 0 auto; }
    .footer .col-lg-6 { margin-bottom: 30px; }
    .scroll-top { width: 45px; height: 45px; bottom: 85px; right: 20px; }
}

@media (max-width: 575px) {
    .section-title { font-size: 1.35rem; }
    .hero-slider .carousel-item { height: 45vh; min-height: 300px; }
    .carousel-caption { padding: 10px; max-width: 95%; top: 50%; transform: translate(-50%, -50%); }
    .carousel-caption h1, .carousel-caption h2 { font-size: 1.2rem; }
    .carousel-caption p { display: none; }
    .hero-slider .btn.btn-yellow { padding: 6px 16px; font-size: 0.85rem; margin-top: 12px; }
    .carousel-indicators { display: none; }
    .btn-yellow, .btn-calculator { padding: 8px 20px; font-size: 0.9rem; }
    .store-badges img { height: 40px; }
    .feature-card h4 { font-size: 0.95rem; }
    .contact-form .form-control { padding: 12px 16px; font-size: 0.95rem; }
    .footer { padding-top: 40px; }
    .footer-heading { font-size: 1rem; margin-bottom: 18px; }
    .footer-description { font-size: 0.9rem; }
    .footer-links li a { font-size: 0.9rem; }
    .footer-bottom p { font-size: 0.85rem; }
    .footer-bottom-links a { font-size: 0.85rem; }
    .social-link { width: 40px; height: 40px; }
    .app-download-btn { max-width: 140px; }
    .footer .btn { padding: 10px 20px; font-size: 0.9rem; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-slider-v2 {
    height: 95vh;
    min-height: 650px;
    position: relative;
}

.hero-slider-v2 .carousel-inner,
.hero-slider-v2 .carousel-item {
    height: 100%;
}

.hero-slider-v2 .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
}

/* Gradient overlay - darker centre for centered text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.35) 100%
    );
    z-index: 1;
}

.hero-slider-v2 .container { z-index: 2; height: 100%; }

/* Hero content - centred */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    max-width: 680px;
}

/* Badge label above title */
.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #1a1a2e;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(20px);
}

/* Typography */
.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 520px;
    opacity: 0;
    transform: translateY(25px);
    font-weight: 400;
    line-height: 1.65;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.btn-explore {
    opacity: 0;
    transform: translateY(20px);
}

/* Animate when slide is active */
.carousel-item.active .hero-badge {
    animation: heroFadeUp 0.55s cubic-bezier(.22,.68,0,1.2) forwards 0.15s;
}
.carousel-item.active .hero-title {
    animation: heroFadeUp 0.65s cubic-bezier(.22,.68,0,1.2) forwards 0.35s;
}
.carousel-item.active .hero-subtitle {
    animation: heroFadeUp 0.65s ease forwards 0.55s;
}
.carousel-item.active .btn-explore {
    animation: heroFadeUp 0.55s ease forwards 0.75s;
}

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

/* CTA button */
.btn-explore {
    background: #1a1a2e;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    transition: background 0.2s, transform 0.15s;
}
.btn-explore:hover {
    background: var(--primary-color);
    color: #1a1a2e !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Arrow nav */
.btn-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.btn-hero-nav:hover { background: rgba(255,255,255,0.28); }
.carousel-control-prev.btn-hero-nav { left: 24px; }
.carousel-control-next.btn-hero-nav { right: 24px; }

/* ---- Frosted glass bottom bar ---- */
.hero-bottom-bar {
    z-index: 15;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.10);
}

/* Progress bar */
.hero-progress-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-progress-item {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: height 0.2s;
}

.hero-progress-item:hover { height: 5px; }

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    border-radius: 3px;
}

.hero-progress-fill.active-fill {
    animation: heroProgress 6000ms linear forwards;
}

@keyframes heroProgress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* Mobile hero */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; letter-spacing: -1px; }
    .hero-slider-v2 { height: 80vh; }
    .hero-content { max-width: 100%; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-slider-v2 { height: 70vh; min-height: 480px; }
    .hero-content { gap: 0.9rem; }
    .btn-hero-nav { display: none; }
    .btn-explore { padding: 10px 24px !important; font-size: 0.82rem; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.88rem; }
    .hero-slider-v2 { height: 65vh; min-height: 420px; }
}

/* =============================================
   SHARED SECTION UTILITIES
   ============================================= */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b0b0cc;
    background: #1a1a2e;
    padding: 5px 16px;
    border-radius: 50px;
    border: 1px solid rgba(176,176,204,0.2);
}

.title-rule {
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* =============================================
   ABOUT WAKILI 101 SECTION
   ============================================= */
.about-w101--bg {
    position: relative;
    background: url('../img/Wak.png') center center / cover no-repeat fixed;
}

.about-w101--bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

.about-w101--bg > .container {
    position: relative;
    z-index: 1;
}

.about-w101__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-w101__img-wrap img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.about-w101__badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,215,0,0.4);
}

.about-w101__lead {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #1a1a2e;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-w101__body {
    font-size: 0.96rem;
    line-height: 1.85;
    color: #1a1a2e;
    font-weight: 500;
    margin-bottom: 1.1rem;
}

.about-w101__accreditation {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    margin-top: 0.5rem;
}

@media (max-width: 767px) {
    .about-w101__lead {
        font-size: 1rem;
        padding-left: 1rem;
    }
    .about-w101__accreditation {
        font-size: 0.72rem;
        padding: 8px 16px;
    }
}

/* =============================================
   VISION / MISSION SECTION
   ============================================= */
.vision-mission {
    background: #1a1a2e;
    padding: 80px 0;
}

.vm-tagline {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    margin: 0;
}

.vm-tagline span {
    color: var(--primary-color);
}

.vm-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vm-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.vm-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.vm-card__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin: 0;
    text-align: left;
}

@media (max-width: 991px) {
    .vision-mission { padding: 60px 0; }
}

@media (max-width: 767px) {
    .vision-mission { padding: 50px 0; }
    .vm-tagline { font-size: 1.2rem; }
    .vm-card { padding: 28px 22px; }
}

@media (max-width: 575px) {
    .vision-mission { padding: 40px 0; }
    .vm-tagline { font-size: 1rem; }
    .vm-card { padding: 24px 18px; border-radius: 12px; }
    .vm-card__text { font-size: 0.88rem; }
}

/* =============================================
   OUR SERVICES - ALTERNATING ROWS
   ============================================= */
.our-services-header { padding: 72px 0 36px !important; background: #f7f6f2; }
.our-services-header + .svc-row--light { padding-top: 36px; }

.svc-row { padding: 72px 0; }
.svc-row--light  { background: #f7f6f2; }
.svc-row--white  { background: #ffffff; }

/* Styled points box (replaces image for services 1 & 2) */
.svc-points-box {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 48px 40px;
    height: 100%;
}

.svc-points-box--gold {
    background: var(--primary-color);
}

.svc-points-box__heading {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    text-align: center;
}

.svc-points-box .svc-points-box__heading { color: var(--primary-color); }
.svc-points-box--gold .svc-points-box__heading { color: #1a1a2e; }

.svc-points-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 20px;
}

.svc-points-box__list--right {
    column-count: 1;
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.svc-points-box .row .svc-points-box__list {
    column-count: 1;
}

.svc-points-box__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
    line-height: 1.5;
    break-inside: avoid;
}

.svc-points-box--gold .svc-points-box__list li {
    border-bottom-color: rgba(0,0,0,0.1);
}

.svc-points-box__list li:last-child { border-bottom: none; }

.svc-points-box .svc-points-box__list li { color: rgba(255,255,255,0.88); }
.svc-points-box--gold .svc-points-box__list li { color: #1a1a2e; }

.svc-points-box__list li i {
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.svc-points-box .svc-points-box__list li i { color: var(--primary-color); }
.svc-points-box--gold .svc-points-box__list li i { color: #1a1a2e; }

.svc-row__img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}


.svc-row__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.35;
}

.svc-row__desc {
    font-size: 0.93rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.svc-row__sub {
    font-size: 0.88rem;
    font-weight: 600;
    color: #2c2c3e;
    margin-bottom: 8px;
}

.svc-row__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.svc-row__list li {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #555;
    padding: 3px 0 3px 18px;
    position: relative;
}

.svc-row__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.svc-row__btn {
    display: table;
    margin: 8px auto 0;
    align-items: center;
    background: #1a1a2e;
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.svc-row__btn:hover {
    background: var(--primary-color);
    color: #1a1a2e !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .svc-row { padding: 52px 0; }
    .svc-row__img { max-height: 320px; }
    .svc-points-box { padding: 28px 24px; }
    .svc-points-box__list { column-count: 2; }
    .our-services-header { padding: 52px 0 28px !important; }
}

@media (max-width: 767px) {
    .svc-row { padding: 36px 0; }
    .svc-row__title { font-size: 1.1rem; text-align: center; }
    .svc-row__desc { font-size: 0.88rem; }
    .svc-row__img { max-height: 240px; border-radius: 12px; }
    .svc-points-box { padding: 24px 18px; border-radius: 12px; }
    .svc-points-box__list { column-count: 1; }
    .svc-points-box__list li { font-size: 0.82rem; padding: 8px 0; }
    .svc-row__btn { margin: 12px auto 0; }
    .our-services-header { padding: 40px 0 20px !important; }
    /* Stack reversed rows correctly on mobile */
    .flex-lg-row-reverse { flex-direction: column !important; }
}

/* Page Breadcrumb */
.page-breadcrumb {
    margin-top: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.page-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: #FFA500;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #555;
    font-size: 0.875rem;
    font-weight: 500;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #aaa;
}
