.hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%),
            url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80') center / cover no-repeat;
}


.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.hero-h6 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}


@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 80px 0 60px;
    }
}






/* ── ODOO EXPERT CTA – scoped under .oec-section ────
   Requires: Bootstrap Icons, Manrope + Source Sans 3
   and your existing :root CSS variables.
   ─────────────────────────────────────────────────── */

.oec-section {
    padding: 88px 0;
    background: var(--bg);
}

/* Two-column layout */
.oec-section .oec-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── LEFT: Image ─────────────────────────────────── */
.oec-section .oec-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

.oec-section .oec-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.oec-section .oec-img-wrap:hover .oec-img {
    transform: scale(1.03);
}

/* Gradient overlay on image */
.oec-section .oec-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(0, 20, 60, .6) 100%);
    z-index: 1;
    pointer-events: none;
}






/* ── RIGHT: Content ──────────────────────────────── */
.oec-section .oec-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.oec-section .oec-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.oec-section .oec-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
    font-weight: 300;
}

/* Perks list */
.oec-section .oec-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oec-section .oec-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--mid);
}

.oec-section .oec-perk-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(22, 163, 74, .12);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA button */
.oec-section .oec-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 15px 28px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    margin-bottom: 16px;
    width: fit-content;
}

.oec-section .oec-btn:hover {
    background: var(--blue-mid);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 74, 153, .28);
}

.oec-section .oec-btn i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Privacy note */
.oec-section .oec-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--muted);
    margin: 0;
}

.oec-section .oec-note i {
    font-size: .75rem;
    color: var(--green);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
    .oec-section .oec-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .oec-section .oec-img {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .oec-section {
        padding: 56px 0;
    }

    .oec-section .oec-img {
        height: 280px;
    }
}

@media (max-width: 575px) {
    .oec-section .oec-btn {
        width: 100%;
        justify-content: center;
    }
}






/* ── CONTACT FORM – scoped under .cf-section ────────
   Requires: Bootstrap Icons, Manrope + Source Sans 3
   and your existing :root CSS variables.
   ─────────────────────────────────────────────────── */

.cf-section {
    padding: 88px 0;
    background: var(--bg);
}

/* Outer wrapper: info panel + form side by side */
.cf-section .cf-wrap {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

/* ── LEFT: Info panel ────────────────────────────── */
.cf-section .cf-info {
    background: linear-gradient(140deg, #001e4a 0%, #004a99 60%, #0061c2 100%);
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Dot grid texture */
.cf-section .cf-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* Override eyebrow color on dark bg */
.cf-section .cf-info .eyebrow {
    color: rgba(255, 255, 255, .55);
    position: relative;
    z-index: 2;
}

.cf-section .cf-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.cf-section .cf-desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* Contact details list */
.cf-section .cf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.cf-section .cf-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cf-section .cf-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    color: #fff;
    flex-shrink: 0;
}

.cf-section .cf-contact-list strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cf-section .cf-contact-list a,
.cf-section .cf-contact-list span {
    font-size: .875rem;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    line-height: 1.5;
    transition: color .18s;
}

.cf-section .cf-contact-list a:hover {
    color: #fff;
}

/* Decorative bottom circle */
.cf-section .cf-info-deco {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

/* ── RIGHT: Form ─────────────────────────────────── */
.cf-section .cf-form-wrap {
    background: var(--white);
    padding: 52px 48px;
}

.cf-section .cf-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Two-column row */
.cf-section .cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Field wrapper */
.cf-section .cf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cf-section .cf-field-full {
    grid-column: 1 / -1;
}

/* Label */
.cf-section .cf-field label {
    font-family: 'Manrope', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .02em;
}

.cf-section .cf-field label span {
    color: #ef4444;
    margin-left: 2px;
}

/* Input wrapper with icon */
.cf-section .cf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cf-section .cf-input-wrap>i {
    position: absolute;
    left: 14px;
    font-size: .88rem;
    color: var(--muted);
    pointer-events: none;
    z-index: 1;
    transition: color .2s;
}

/* Textarea icon sits at top */
.cf-section .cf-textarea-wrap>i {
    top: 14px;
    align-self: flex-start;
}

/* Input + Textarea shared styles */
.cf-section .cf-input-wrap input,
.cf-section .cf-input-wrap textarea {
    width: 100%;
    padding: 12px 14px 12px 40px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: .9rem;
    color: var(--dark);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    line-height: 1.6;
    -webkit-appearance: none;
}

.cf-section .cf-input-wrap input::placeholder,
.cf-section .cf-input-wrap textarea::placeholder {
    color: #b0b8c4;
    font-weight: 300;
}

/* Focus state */
.cf-section .cf-input-wrap input:focus,
.cf-section .cf-input-wrap textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 74, 153, .08);
}

.cf-section .cf-input-wrap input:focus+i,
.cf-section .cf-input-wrap:focus-within>i {
    color: var(--blue);
}

/* Textarea */
.cf-section .cf-input-wrap textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit row */
.cf-section .cf-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* Submit button */
.cf-section .cf-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 9px;
    font-family: 'Manrope', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    white-space: nowrap;
}

.cf-section .cf-submit-btn:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 74, 153, .28);
}

.cf-section .cf-submit-btn i {
    font-size: .88rem;
}

/* Privacy note */
.cf-section .cf-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--muted);
    margin: 0;
}

.cf-section .cf-privacy i {
    font-size: .75rem;
    color: var(--green);
    flex-shrink: 0;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1199px) {
    .cf-section .cf-wrap {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 991px) {
    .cf-section .cf-wrap {
        grid-template-columns: 1fr;
    }

    .cf-section .cf-info {
        padding: 40px 36px;
    }

    .cf-section .cf-contact-list {
        margin-top: 32px;
    }

    .cf-section .cf-form-wrap {
        padding: 40px 36px;
    }
}

@media (max-width: 767px) {
    .cf-section {
        padding: 56px 0;
    }

    .cf-section .cf-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .cf-section .cf-info {
        padding: 32px 24px;
    }

    .cf-section .cf-form-wrap {
        padding: 32px 24px;
    }

    .cf-section .cf-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .cf-section .cf-submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}









/* ── FAQ INFO – scoped under .fqi-section ───────────
   Requires: Bootstrap Icons, Manrope + Source Sans 3
   and your existing :root CSS variables.
   ─────────────────────────────────────────────────── */

.fqi-section {
    padding: 88px 0;
    background: var(--bg);
}

/* Two-column layout */
.fqi-section .fqi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── LEFT ────────────────────────────────────────── */
.fqi-section .fqi-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 28px;
}

.fqi-section .fqi-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    background: var(--blue);
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 9px;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.fqi-section .fqi-faq-link:hover {
    background: var(--blue-mid);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 153, .28);
}

/* ── RIGHT: cards ────────────────────────────────── */
.fqi-section .fqi-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fqi-section .fqi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

/* Left accent bar */
.fqi-section .fqi-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
    border-radius: 3px 0 0 3px;
}

.fqi-section .fqi-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: transparent;
}

.fqi-section .fqi-card:hover::before {
    transform: scaleY(1);
}

/* Icon */
.fqi-section .fqi-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background .22s, color .22s;
}

.fqi-section .fqi-card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.fqi-section .fqi-card:hover .fqi-card-icon {
    background: var(--blue);
    color: var(--white);
}

/* Card text */
.fqi-section .fqi-card-body {
    flex: 1;
    min-width: 0;
}

.fqi-section .fqi-card-body h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.fqi-section .fqi-card-body p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 12px;
}

/* Hours pill */
.fqi-section .fqi-hours {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue-pale);
    border: 1px solid rgba(0, 74, 153, .12);
    border-radius: 100px;
    padding: 5px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--blue);
}

.fqi-section .fqi-hours i {
    font-size: .85rem;
    color: #f59e0b;
}

/* Map link */
.fqi-section .fqi-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    transition: gap .18s, color .18s;
}

.fqi-section .fqi-card-link:hover {
    gap: 10px;
    color: var(--blue-mid);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
    .fqi-section .fqi-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .fqi-section {
        padding: 56px 0;
    }

    .fqi-section .fqi-card {
        padding: 22px 20px;
    }
}

@media (max-width: 575px) {
    .fqi-section .fqi-faq-link {
        width: 100%;
        justify-content: center;
    }
}