/* Base + layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    height: 100%;
    background: #fff;

}

main {
    background: white;
}

body {
    font-family: "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    background: #0b0b0b;
}

section {
    padding: 5% 5% !important;
}

@media (max-width: 992px) {
    section {
        padding: 5% 5% !important;
    }
}

/* Header */


/* Header: dark thin bar with logo left and nav right (responsive) */
.site-header {
    background: #111214;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 2px 8px rgba(2, 6, 23, 0.25);
    position: relative;
}

.site-header2 {
    background: transparent;
    color: #fff;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.04); */
    /* box-shadow: 0 2px 8px rgba(2, 6, 23, 0.25); */
    position: absolute;
    z-index: 9999;
    width: 100%;
}

.header-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    padding: 30px 5%;
}

/* logo */
.logo img.logo-image {
    height: 30px;
    width: auto;
    display: block;
}

/* primary nav (desktop) */
.header-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 6px 4px;
}

.header-nav a:hover,
.header-nav a:focus {
    color: #f7e6c8;
    /* subtle gold accent */
    outline: none;
}

/* menu button (mobile) */
.menu-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    cursor: pointer;
    display: none;
    /* hidden on desktop */
}

/* responsive behavior */
@media (max-width: 900px) {
    .header-inner {
        padding: 12px 14px;
    }

    .header-nav {
        display: none;
    }

    /* hide nav on small screens */
    .menu-btn {
        display: inline-block;
    }

    /* show burger */
}

/* small phones: tighten spacing */
@media (max-width: 420px) {
    .header-inner {
        padding: 10px 12px;
    }

    .logo img.logo-image {
        height: 26px;
    }

    .menu-btn {
        font-size: 18px;
    }
}


/* optional responsive tweak */

/* ...existing code... */

/* overlay + side menu (mobile) */
.side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 6, 10, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 60;
}

.side-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: min(320px, 86vw);
    background: #0b0b0b;
    color: #fff;
    transform: translateX(110%);
    transition: transform .32s cubic-bezier(.22, .9, .35, 1);
    box-shadow: -20px 40px 80px rgba(3, 6, 10, 0.45);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 999999;
}

.side-nav li {
    font-size: 20px;
    margin-bottom: 10px;
}

.side-menu .side-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    align-self: flex-end;
    cursor: pointer;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-nav a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 6px;
}

/* active states */
.side-overlay.show {
    opacity: 1;
    visibility: visible;
}

.side-menu.show {
    transform: translateX(0);
}

/* hide desktop nav on small screens (if not already) */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .menu-btn {
        display: inline-block;
    }
}

/* small tweaks */
@media (max-width: 420px) {
    .side-menu {
        width: 92vw;
        padding: 14px;
    }

    .side-menu .side-close {
        font-size: 18px;
    }
}

.menu-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    transform: translateZ(0);
}

.hero-slider .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: rgb(0 0 0 / 51%); */
    /* tweak */
}

/* Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding: 0% !important;
}

.slides {
    position: relative;
    height: 100%
}

/* Slide */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .9s ease, transform .9s;
    z-index: 0
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10
}

.slide .overlay {
    /* position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, .65) 10%, rgba(8, 8, 8, .55) 45%, rgba(8, 8, 8, .9) 100%);
    mix-blend-mode: multiply */
}

/* Content */
.hero-inner {
    position: relative;
    z-index: 20;
    width: min(1200px, 90%);
    text-align: center;
    padding: 80px 20px
}

.hero-inner h1 {
    font-size: clamp(64px, 4.5vw, 28px);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 18px;
    color: #ffff !important;

    background-color: transparent !important;
    opacity: 1 !important;
}

.lead {
    color: rgba(255, 255, 255, .85);
    max-width: 1080px;
    margin: 0 auto 26px;
    font-size: clamp(24px, 1.6vw, 18px);
    line-height: 1.6
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 14px;
    border: 1px solid rgba(255, 255, 255, .12)
}

.btn.primary {
    background: #C49954;
    color: #fff;
    border: none;

}

.btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 1)
}

/* Arrow controls */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    cursor: pointer
}

.slide-nav.prev {
    left: 24px
}

.slide-nav.next {
    right: 24px
}

/* Pager: numbers above a horizontal line with segmented progress */
.pager {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 30;
    --active-percent: 0%;
    --progress-percent: 0%;
    --progress-duration: 3000ms;
    display: none;
}

.pager-numbers {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px;
    pointer-events: none
}

.pager-item {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .85);
    padding: 0;
    margin: 0;
    font-weight: 700;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-6px);
    font-size: 12px;
    line-height: 1
}

.pager-item span {
    display: inline-block;
    padding: 4px 6px
}

.pager-item.active {
    color: #f6d79b
}

/* line and progress */
.pager-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .12);
    border-radius: 2px;
    position: relative;
    overflow: visible
}

.pager-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress-percent);
    background: linear-gradient(90deg, rgba(246, 215, 155, .95), rgba(196, 138, 63, .95));
    border-radius: 2px;
    transition: width var(--progress-duration) linear;
    z-index: 1;
    pointer-events: none
}

.pager-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: var(--active-percent);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(246, 215, 155, 0.12);
    transition: left 420ms cubic-bezier(.2, .9, .2, 1);
    z-index: 2
}

/* Side menu */
.side-overlay {
    /* position: fixed;
    inset: 0;
    background: rgba(6, 6, 6, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 260ms ease, visibility 260ms;
    z-index: 70;
    pointer-events: none */
}

.whatweoffer {
    background: #fff;
    padding: 100px 30px;
}

.sub_heading {
    font-size: clamp(30px, 4vw, 56px);
    color: #1E242C;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

@media (min-width: 1200px) {
    .logo-image {
        height: 40px;
    }
}

@media(max-width:900px) {
    .pager {
        right: 16px;
        bottom: 18px;
        width: 160px
    }

    .pager-item {
        font-size: 11px;
        transform: translateY(-5px)
    }

    .pager-line::after {
        width: 6px;
        height: 6px
    }

    .hero-inner h1 {
        font-size: clamp(28px, 6vw, 28px);
    }

    .lead {
        font-size: clamp(18px, 3vw, 18px);
    }

    .btn {
        margin-bottom: 20px;
    }
}


/*Offer Section Styles */

/* Offer section: two-column layout — left slider box, right image */
.offerSection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    margin-top: 30px;
}

/* Left boxed slider */
.offer-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-slider {
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
    color: #fff;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* slides */
.offer-slides {
    position: relative;
}

.offer-slide {
    display: none;
    transition: opacity .45s ease, transform .45s ease;

    left: 0;
    right: 0;
}

.offer-slide[aria-hidden="false"],
.offer-slide.active {
    display: block;
    transform: translateY(0);
    position: relative;
}

/* text */
.offer-slide h3 {
    font-size: clamp(20px, 3.2vw, 32px);
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.offer-slide p {
    color: #fff;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.6;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

/* controls */
.offer-controls {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}

.offerarrow {
    width: 18px;

}

.offer-prev,
.offer-next {
    background: #EDEEF0;
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.offer-next {
    background: #C49954;
    color: #111;
}

/* pager (small dots or numbers) */
.offer-pager {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: flex;
    gap: 8px;
}

.offer-pager button {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
}

.offer-pager button.active {
    background: #f6d79b;
}

/* right image */
.offer-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offerImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

/* responsive: stack on small screens */
@media (max-width: 900px) {
    .offerSection {
        grid-template-columns: 1fr;
    }

    .offer-slider {
        min-height: 200px;
        padding: 28px;
    }

    .offerImage {
        max-height: 220px;
        margin-top: 16px;
    }

    .offer-controls {
        bottom: 12px;
        left: 12px;
    }

    .offer-pager {
        bottom: 12px;
        right: 12px;
    }
}



/* How it works — left stacked numbered items + right content box */
.howitworks {
    padding: clamp(28px, 6vw, 56px) 18px;
    background: #FFF;
}

.container.grid-two {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: clamp(18px, 3vw, 36px);
    align-items: center;

    margin: 0 auto;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;

}

.step {
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    position: relative;
    width: 100%;
}

.step:focus {
    /* outline: 3px solid rgba(196, 138, 63, 0.18);
    border-radius: 8px; */
}

.num {
    font-size: clamp(45px, 9vw, 108px);
    color: #000000;
    font-weight: 500;

    flex: 0 0 72px;
    text-align: left;
    line-height: 1;
    opacity: 0.5;
}

.num2 {
    font-size: clamp(45px, 9vw, 108px);
    color: #000000;

    width: 72px;
    flex: 0 0 72px;
    text-align: left;
    line-height: 1;
    opacity: 0.5;
    font-weight: 500;
}

.pill {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0px 10px 6px rgba(22, 34, 56, 0.08);
    color: #0f1720;
    font-weight: 600;
    font-size: clamp(18px, 1.6vw, 20px);
    line-height: 1.2;
    display: inline-block;
    font-weight: 500;
    text-align: center;
}

.pill_cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 34px;
    max-width: 980px;
    margin: 28px auto 0;
    padding: 0;
}

/* pill button wrapper */
.pill_cover .step {
    background: transparent;
    border: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    flex: 0 0 auto;
    min-width: max-content;
}

/* the visible pill */
.pill_cover .pill {}

/* Top centered pill spans full row */
.pill_cover .step:nth-child(1) {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    transform: translateY(-12px);
}

/* Row items - two per row, left/right placement via align-self */

.pill_cover .step:nth-child(2),
.pill_cover .step:nth-child(3),
.pill_cover .step:nth-child(4),
.pill_cover .step:nth-child(5) {}

/* place 2 & 4 on left, 3 & 5 on right visually */
.pill_cover .step:nth-child(2),
.pill_cover .step:nth-child(4) {
    align-self: flex-start;
}

.pill_cover .step:nth-child(3),
.pill_cover .step:nth-child(5) {
    align-self: flex-end;
}

/* make active/pressed state slightly lifted */
.step[aria-pressed="true"] .pill,
.step.active .pill {
    box-shadow: 0 28px 60px rgba(6, 6, 8, 0.5);

}

.how-box {
    background: #0b0b0b;
    color: #fff;
    padding: clamp(20px, 4vw, 60px);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

.how-box h2 {
    font-size: clamp(28px, 3.5vw, 56px);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.how-box p {
    font-size: clamp(20px, 2.2vw, 26px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}

/* Responsive: stack on narrow screens */
@media (max-width: 992px) {

    .pill_cover {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 8px 6px;
        flex-direction: row;
    }

    .pill_cover .step:nth-child(1) {
        transform: none;

    }

    .pill_cover .step {
        flex-basis: 100%;
        max-width: 720px;
        min-width: auto;
    }

    .pill_cover .pill {
        width: 100%;
        min-width: 0;
        padding: 12px 18px;
        font-size: 15px;
    }

    .container.grid-two {
        grid-template-columns: 1fr;
    }

    .step {
        order: 2;
        padding-left: 8px;
        gap: 14px;
        justify-content: center;
    }

    .how-box {
        order: 1;
        margin-bottom: 12px;
        margin-left: 0px;
    }

    .num {
        font-size: clamp(28px, 10vw, 60px);
        width: 56px;
        flex: 0 0 56px;
    }

    .num2 {
        font-size: clamp(28px, 10vw, 60px);
        width: 56px;
        flex: 0 0 56px;
    }

    .pill {
        padding: 10px 14px;
        font-size: 20px;
    }

    .howitworks {
        padding: clamp(18px, 6vw, 34px) 14px;
    }
}



/* Who we work with — responsive cards */
.whowework {
    padding: clamp(28px, 6vw, 56px) 18px;
    background: #fff;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto 0;
    align-items: stretch;
}

.who-card {
    background: #fff;
    border-radius: 12px;
    padding: clamp(18px, 2.6vw, 35px);
    box-shadow: 0px 0px 24px 11px rgba(22, 34, 56, 0.06);
    border: 2px solid transparent;
    text-align: center;
    /* cursor: pointer; */
    transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms, border-color 220ms;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-card p {
    margin: 0;

    text-align: center;
    border-radius: 20px;
    color: #0f1720;
    font-weight: 600;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.2;

    font-weight: 500;
}

/* active / highlighted center card */
.who-card.active {
    /* highlight color */

}

/* keyboard & hover affordances */
.who-card:focus {
    /* outline: none;
    box-shadow: 0 24px 60px rgba(43, 153, 255, 0.12);
    border-color: rgba(43, 153, 255, 0.28); */
}

.who-card:hover {
    /* transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(22, 34, 56, 0.08); */
}

/* Responsive: stack cards */
@media (max-width: 992px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 12px;
    }

    .who-card {
        padding: clamp(14px, 3.5vw, 20px);
        min-height: auto;
        text-align: left;
    }

    .who-card p {
        font-size: clamp(14px, 3.8vw, 16px);
    }
}


/* What we focus on — responsive grid of hero + cards */
.whatwefocus {
    padding: clamp(28px, 6vw, 56px) 18px;

    background-image: url("../assets/bg1.png");
    background-repeat: no-repeat;
    background-position: 85% 10%, center;
    background-size: 100%, cover;
}

.focusSection {

    margin: 0 auto;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 20px;
    align-items: start;
}

/* big dark hero block (spans two columns) */
.focus-hero {
    grid-column: 1 / span 2;

    background: #151316;
    color: #fff;
    padding: clamp(28px, 4.5vw, 48px);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    height: 100%;
}

.focus-hero h3 {
    font-size: clamp(32px, 3.2vw, 56px);
    margin-bottom: 18px;
    font-weight: 700;
}

.focus-list {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    min-width: 50%;
}

.focus-list-cover {
    display: flex;
}

.focus-list li {
    margin-bottom: 12px;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 400;
}

/* small cards */
.focus-card {
    background: #fff;
    border-radius: 12px;
    padding: clamp(18px, 2.6vw, 26px);
    box-shadow: 0 18px 40px rgba(22, 34, 56, 0.06);
    border: 2px solid transparent;
    text-align: left;
    /* cursor: pointer; */
    transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms, border-color 220ms;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 250px;
    height: 100%;
}

.focus-card .num {
    font-size: clamp(56px, 6vw, 100px);
    color: #000000;
    font-weight: 500;
    opacity: 0.5;

}

.focus-card h4 {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 32px);
    color: #0b1220;
    font-weight: 700;
}

.focus-cta {
    font-size: clamp(14px, 2.6vw, 18px);
    color: #111;
    opacity: 0.8;
    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 400;
}

.exploreArrow {
    width: 40px;
}

/* active / highlighted card */
.focus-card.active,
.focus-card:focus {
    border-color: #2b99ff;
    box-shadow: 0 28px 70px rgba(43, 153, 255, 0.12);
    transform: translateY(-6px) scale(1.01);
    outline: none;
}

/* layout order for desktop: ensure first small card sits at top-right */
.focus-grid>.focus-card:nth-of-type(1) {
    grid-column: 3;
    grid-row: 1;
}

/* bottom row cards: flow naturally (they will occupy columns 1..3 on row 2) */

/* Responsive: stack */
@media (max-width: 992px) {
    .focus-list-cover {
        flex-direction: column;
    }

    .focus-list {
        width: 100%;
    }

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

    .focus-hero {
        grid-column: 1 / -1;
    }

    .focus-grid>.focus-card:nth-of-type(1) {
        grid-column: auto;
        grid-row: auto;
    }

    .focus-card {
        text-align: left;
        min-height: 250px;

    }

    .focus-hero {
        padding: clamp(18px, 6vw, 28px);
    }
}

/* small phones tweaks */
@media (max-width: 420px) {
    .focus-hero h3 {
        font-size: clamp(18px, 6.5vw, 24px);
    }

    .focus-card .num {
        font-size: 34px;
    }

    .focus-card {
        padding: 14px;
    }
}

/* Footer - centered logo, links and thin divider (responsive) */
.site-footer {
    background: #0b0b0b;
    color: #fff;
    padding: clamp(20px, 4vw, 40px) 18px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 4px;
}

.footer-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(16px, 1.3vw, 20px);
}

.footer-sep {
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: rgb(255 255 255 / 31%);
    border: none;
    margin: 6px 0;
}

.footer-copy {
    font-size: clamp(11px, 0.9vw, 14px);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive: stack and reduce spacing on small screens */
@media (max-width: 640px) {
    .footer-inner {
        gap: 10px;
        padding: clamp(14px, 4vw, 24px) 12px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 8px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-logo {
        height: 26px;
    }

    .footer-sep {
        max-width: 320px;
    }
}

@media (max-width: 420px) {
    :root {
        font-size: 14px;
    }

    .hero-inner {
        padding: 36px 12px;
    }

    .hero-inner h1 {
        font-size: clamp(20px, 7vw, 34px);
    }

    .whatweoffer,
    .howitworks,
    .whowework,
    .whatwefocus {
        padding-left: 16px;
        padding-right: 16px;
    }

    .focus-grid,
    .who-grid,
    .offerSection {
        gap: 12px;
    }

    .footer-inner {
        gap: 8px;
        padding: 12px;
    }

    .footer-nav {
        gap: 12px;
    }
}




/* Contact section */
.contact-section {
    padding: clamp(28px, 6vw, 56px) 18px;
    background: linear-gradient(180deg, #ffffff, #fbfbfd);
    padding-top: 30px;
    /* background-image: url("../assets/bg1.png"); */
    background-position-x: right;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

.sr-only {
    font-size: clamp(16px, 1.6vw, 22px);
    color: white;
    font-weight: 500;


}

.contact-grid {
    margin: 0 auto;
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    /* 50% / 50% */
    gap: 32px;
    /* align-items: start;
    grid-auto-rows: auto; */
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 50%;

}

.contact-form-inner {
    width: 100%;
    padding: 0% 2%;
}

.contact-form {
    width: 50%;
}

/* place form in right column */
.contact-form {
    grid-column: 2;
    align-self: start;
    margin-top: 0;
}

/* keep the compact multi-field row layout inside the form on wide screens */
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* two columns inside the right column */
    gap: 18px;
    margin-bottom: 18px;
}

.contact-intro {}

.contact-visual {}

/* intro text */
.contact-intro h1 {
    font-size: clamp(30px, 3.2vw, 56px);
    margin: 0 0 12px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 700;

}

.contact-intro p {
    color: #FFFFFF;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
    font-weight: 400;
}

/* visual */
.contact-image-wrap {
    border-radius: 12px;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* form */
.contact-form {
    grid-column: 1 / -1;
    background: #6C5428;
    padding: 100px;
    border-radius: 20px;
    display: flex;
    width: 100%;
    gap: 20px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form-grid label,
.contact-textarea {
    display: block;

}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: none;
    border-bottom: 1px solid #CACACA;
    border-radius: 4px;
    font-size: 15px;
    color: #1E242C;
    transition: border-color .15s ease, box-shadow .15s ease;
    -webkit-text-fill-color: #1E242C;
    font-weight: 400;
    background: #EDEEF0;
    margin-bottom: 20px;
    min-height: 60px;
    border-radius: 20px;
    margin-top: 10px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(196, 149, 82, 0.6);
    box-shadow: 0 6px 24px rgba(196, 149, 82, 0.08);
    outline: none;
}

/* textarea */
.contact-textarea textarea {
    resize: vertical;
    min-height: 150px;
    padding-top: 14px;
    font-family: "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* submit */
.contact-cta {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(180deg, #c49954, #ad7f3a);
    color: #fff;
    border: none;
    padding: 20px 60px;
    border-radius: 15px;
    font-weight: 500;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 12px 30px rgba(196, 149, 82, 0.12);
}

.submit-btn:active {
    transform: translateY(1px);
}

/* Responsive: tablet */
@media (max-width: 992px) {

    .contact-left {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        max-width: 100%;

    }

    .contact-intro p {

        max-width: 100%;
    }

    .contact-intro {
        width: 100%;
    }

    .contact-visual {
        width: 100%;
    }

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

    .contact-form {
        grid-column: 1;
        margin-top: 12px;
        padding: 20px;
        flex-direction: column;
    }

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

    .contact-visual {
        order: -1;
    }
}

/* Responsive: mobile */
@media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        order: -1;
    }

    /* show image above on small screens */
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-image-wrap {
        padding: 12px;
    }

    .contact-intro h1 {
        text-align: left;
    }

    .contact-cta {
        justify-content: flex-start;
    }
}

/* very small screens: reduce paddings */
@media (max-width: 420px) {
    .contact-section {
        padding: clamp(18px, 6vw, 28px) 12px;
    }

    .submit-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* ...existing code... */
/* contact strip (dark band with left heading and right contact columns) */
.contact-strip {
    background: #fff;
    color: #fff;
    padding: clamp(28px, 4.6vw, 48px) 18px;
}

.contact-strip-inner {
    display: flex;
    align-items: center;
}

/* left title */
.contact-strip-left {
    width: 50%;
}

.contact-strip-right h2 {
    margin: 0;
    font-size: clamp(30px, 3.8vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
}

/* right contact blocks */
.contact-strip-right {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}

.contact-label {
    font-size: 22px;
    color: #FFFFFF;
    letter-spacing: 0.6px;
}

.contact-value {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 6px;
    display: inline-block;
    word-break: break-all;
}

.contact-sep {
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 10px 0px;
}

.sucess-message {

    background-color: #8dc890;
    color: black;
    text-align: center;
    padding: 24px;
    border-radius: 10px;
}

/* responsive: stack on small screens */
@media (max-width: 992px) {
    .contact-strip-inner {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 14px;
        flex-direction: column;
    }

    .contact-strip-right {
        justify-content: flex-start;
        gap: 28px;
    }

    .contact-strip-left h2 {
        font-size: clamp(22px, 5.2vw, 30px);
    }

    .contact-strip-left {
        width: 100%;
    }

    .contact-strip-right {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .contact-strip-inner {
        padding-left: 6px;
        padding-right: 6px;
    }

    .contact-strip-right {
        gap: 18px;
        flex-wrap: wrap;
    }

    .contact-item {
        min-width: 140px;
    }

    .contact-strip-left h2 {
        font-size: clamp(18px, 7vw, 24px);
    }
}

.contact-strip {
    /* margin: 36px 0; */
}

.contact-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
}

.contact-card {
    background: #F7E7D0;
    /* warm beige */
    border-radius: 12px;

    width: max-content;
    padding: 0% 5%;
    box-shadow: 0 10px 30px rgba(6, 6, 8, 0.18);
}

.contact-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
    min-height: 100px;
}

.contact-icon {
    flex: 0 0 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon img {
    width: 56px;
    height: auto;
    display: block;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-text h2 {
    margin: 0;
    font-size: clamp(22px, 3.2vw, 26px);
    color: #1f1f1f;
    font-weight: 700;
}

.contact-email {
    display: inline-block;
    color: #1f1f1f;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    padding: 6px 0;
    font-size: clamp(22px, 3.2vw, 26px);
}

/* small screens */
@media (max-width: 600px) {
    .contact-card-inner {
        flex-direction: row;
        gap: 12px;
    }

    .contact-icon {
        flex: 0 0 56px;
    }

    .contact-icon img {
        width: 44px;
    }

    .contact-text h2 {
        font-size: 16px;
    }

    .contact-email {
        font-size: 14px;
    }
}

.services-section {
    padding-top: 0px;
    background: #fff;
    position: relative;
    padding: 2% 0% !important;
}

.services-cover {
    display: flex;
    align-items: center;
}

.services-left {
    width: 50%;
}

.services-right {
    width: 50%;
    padding: 50px;

    position: relative;
}

.services-left img {
    width: 100%;
    height: auto;
    display: block;
}

.services-right span {
    color: #C49954;
    font-size: 130px;
    position: absolute;
    z-index: 0;
    top: -23px;
    opacity: 0.2;
}

.services-right h2 {
    font-size: clamp(22px, 3.2vw, 42px);
    font-weight: 700;
    color: #1E242C;
    z-index: 10;
    position: relative;
    margin-bottom: 20px;
}

.services-right .bottom-link {
    color: #6C5428;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.services-right p {
    font-size: clamp(16px, 3.2vw, 22px);
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 40px;
    color: #1E242C;
}

.services-right a {
    font-size: clamp(16px, 3.2vw, 22px);
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 40px;
    color: #1E242C;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .services-left {
        width: 100%;
    }

    .services-right {
        width: 100%;
        padding: 20px;
    }

    .services-cover {
        flex-direction: column;
    }

    .services-section .sub_heading {
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .services-cover-reverse {
        flex-direction: column-reverse;
    }
}


/* Reasons section (new) */
.reasons-section {
    padding: 72px 0;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    background-image: url("../assets/bg1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.reasons-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Left column (heading) */
.reasons-left {
    flex: 0 0 50%;

}

.reasons-left .sub_heading {
    margin: 0;
    font-size: clamp(24px, 3.8vw, 42px);
    line-height: 1.15;
    font-weight: 700;
    color: #1b1b1b;
    text-align: left;
}

/* Right column (cards + background) */
.reasons-right {
    position: relative;
    flex: 1 1 auto;
    min-height: 240px;
    display: flex;
    align-items: center;
}

/* decorative radial background on the right */
.reasons-right .radial-bg {
    position: absolute;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    height: 360px;
    border-radius: 50%;

    filter: blur(22px);
    pointer-events: none;
    z-index: 0;
}

/* list of cards */
.reason-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-left: 14%;
}

/* single card */
.reason-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 520px;
    box-shadow: 0 6px 18px rgba(20, 20, 20, 0.06);
    font-size: clamp(16px, 1.8vw, 26px);
    line-height: 1.45;
    color: #222;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

/* responsive adjustments */
@media (max-width: 992px) {
    .reasons-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .reasons-left {
        text-align: center;
        max-width: none;
        flex: auto;
    }

    .reason-list {
        margin-left: 0;
        align-items: center;
    }

    .reason-card {
        width: 100%;
        max-width: 720px;
    }

    .reasons-right .radial-bg {
        right: 10%;
        width: 420px;
        height: 260px;
        top: 20%;
        transform: none;
        filter: blur(18px);
        opacity: 0.9;
    }
}

@media (max-width: 480px) {
    .reasons-left .sub_heading {
        font-size: 22px;
    }

    .reason-card {
        padding: 16px;
        font-size: 13px;
    }
}

/* ...existing code... */