/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", system-ui, sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
}

:root {
    --gold: #dacd99;
    --hover-gold: #885935;
    --navy: #1e2028;
    --blue: #4e78c7;
    --white: #ffffff;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 28, 38, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}
.logo-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.06em;
}
.logo-tagline {
    font-size: 0.52rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links li a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.18s;
    white-space: nowrap;
}
.nav-links li a:hover {
    color: var(--white);
}

/* DROPDOWN MENU */
.nav-item-dropdown {
    position: relative;
}
.nav-link-dropdown {
    display: block;
    padding: 0.5rem 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.18s;
    white-space: nowrap;
    cursor: pointer;
}
.nav-link-dropdown:hover {
    color: var(--white);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 28, 38, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity 0.25s,
        visibility 0.25s,
        transform 0.25s;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: block;
    padding: 0.65rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    transition:
        color 0.15s,
        background 0.15s;
    white-space: nowrap;
}
.dropdown-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* SUBMENU */
.dropdown-item-wrapper {
    position: relative;
}
.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: rgba(26, 28, 38, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition:
        opacity 0.25s,
        visibility 0.25s,
        transform 0.25s;
    padding: 0.75rem 0;
    margin-left: 0.5rem;
    z-index: 1001;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.dropdown-item-wrapper:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.submenu-item {
    display: block;
    padding: 0.65rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    transition:
        color 0.15s,
        background 0.15s;
    white-space: nowrap;
}
.submenu-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 1.25rem;
    background: var(--blue);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
    transition:
        background 0.18s,
        transform 0.15s;
    flex-shrink: 0;
}
.btn-nav:hover {
    background: #3a68bc;
    transform: translateY(-1px);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition:
        transform 0.28s,
        opacity 0.28s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(20, 22, 32, 0.98);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    display: block;
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu a:hover {
    color: var(--white);
}
.mobile-menu .btn-nav-mobile {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background: var(--blue);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: background 0.18s;
}
.mobile-menu .btn-nav-mobile:hover {
    background: #3a68bc;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("/build/assets/asian-business-team-discussing-project.jpg");
    background-size: cover;
    background-position: 65% center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(16, 23, 38, 0.92) 0%,
        rgba(16, 23, 38, 0.88) 30%,
        rgba(16, 23, 38, 0.5) 58%,
        rgba(16, 23, 38, 0.15) 80%,
        rgba(16, 23, 38, 0.05) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 72px 2rem 0;
}
.hero-heading {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 1.25rem;
    max-width: 640px;
}
.hero-heading .brand-name {
    color: var(--gold);
}
.hero-desc {
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.84);
    max-width: 520px;
    margin-bottom: 2.2rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.6rem;
    background: #3a5270;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #3a5270;
    transition:
        background 0.18s,
        transform 0.15s,
        box-shadow 0.18s;
    min-width: 160px;
    justify-content: center;
}
.btn-primary:hover {
    background: #2c3f58;
    border-color: #2c3f58;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition:
        background 0.18s,
        border-color 0.18s,
        transform 0.15s,
        box-shadow 0.18s;
    min-width: 160px;
    justify-content: center;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* PARTNERS SECTION */
.partners {
    background: #f5f6f8;
    padding: 3rem 2rem;
}
.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.partners-inner img {
    height: 80px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(1);
    transition:
        opacity 0.22s,
        filter 0.22s;
    padding: 0 3.5rem;
    border-right: 1px solid #d0d3da;
}
.partners-inner img:last-child {
    border-right: none;
}
.partners-inner img:hover {
    opacity: 0.85;
    filter: grayscale(0);
}

/* WHO WE ARE */
.who-we-are {
    background: #ffffff;
    padding: 15rem 2rem;
}
.wwa-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}
.wwa-image-wrap {
    position: relative;
    flex: 0 0 44%;
    max-width: 44%;
}
.wwa-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
}
.wwa-content {
    flex: 1;
}
.wwa-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7b3020;
    margin-bottom: 1rem;
}
.wwa-label::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: #7b3020;
    flex-shrink: 0;
}
.wwa-heading {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #1a1f36;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}
.wwa-heading strong {
    font-weight: 800;
    color: #1a1f36;
}
.wwa-desc {
    font-size: 0.95rem;
    line-height: 1.78;
    color: #555f70;
    margin-bottom: 2rem;
    max-width: 500px;
}
.btn-wwa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 2.2rem;
    background: #dacd99;
    color: #1a1f36;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    transition:
        background 0.18s,
        color 0.18s,
        transform 0.15s;
}
.btn-wwa:hover {
    background: var(--hover-gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* WHAT WE DO */
.what-we-do {
    background: #f5f6f8;
    padding: 15rem 2rem;
}
.wwd-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}
.wwd-content {
    flex: 1;
}
.wwd-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7b3020;
    margin-bottom: 1rem;
}
.wwd-label::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: #7b3020;
    flex-shrink: 0;
}
.wwd-heading {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #1a1f36;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}
.wwd-highlight {
    color: #c9974a;
    font-weight: 800;
}
.wwd-desc {
    font-size: 0.95rem;
    line-height: 1.78;
    color: #555f70;
    margin-bottom: 2rem;
    max-width: 500px;
}
.btn-wwd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 2.2rem;
    background: #dacd99;
    color: #1a1f36;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    transition:
        background 0.18s,
        color 0.18s,
        transform 0.15s;
}
.btn-wwd:hover {
    background: var(--hover-gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.wwd-image-wrap {
    position: relative;
    flex: 0 0 44%;
    max-width: 44%;
}
.wwd-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
}

/* TAGLINE BANNER */
.tagline-banner {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.tagline-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url("/build/assets/glowing-molecular-structure-futuristic-galaxy-backdrop-generated-by-ai.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.55) saturate(1.2);
}
.tagline-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 12, 28, 0.72) 0%,
        rgba(8, 18, 40, 0.6) 50%,
        rgba(5, 12, 28, 0.72) 100%
    );
}
.tagline-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}
.tagline-banner-text {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

/* WHAT WE OFFER */
.what-we-offer {
    background: #ffffff;
    padding: 8rem 2rem;
}
.wwo-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.wwo-header {
    text-align: center;
    margin-bottom: 4rem;
}
.wwo-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7b3020;
    margin-bottom: 1.1rem;
}
.wwo-label::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: #7b3020;
    flex-shrink: 0;
}
.wwo-heading {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #1a1f36;
    line-height: 1.3;
}
.wwo-gold {
    color: #c9974a;
}
.wwo-blue {
    color: #4e78c7;
}
.wwo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    margin-bottom: 3.5rem;
}
.wwo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
}
.wwo-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
    background: #eceef3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.wwo-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wwo-card-title {
    font-size: 0.975rem;
    font-weight: 700;
    color: #1a1f36;
    line-height: 1.4;
    margin-bottom: 0.85rem;
}
.wwo-card-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #6a7280;
    flex: 1;
    margin-bottom: 1.25rem;
    max-width: 280px;
}
.wwo-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1f36;
    transition: color 0.18s;
    margin-top: auto;
    align-self: flex-end;
}
.wwo-card-link:hover {
    color: var(--blue);
}
.wwo-arrow {
    transition: transform 0.18s;
    display: inline-block;
}
.wwo-card-link:hover .wwo-arrow {
    transform: translateX(4px);
}
.wwo-cta {
    text-align: center;
}

/* CONTACT / GET IN TOUCH */
.contact {
    background: #ffffff;
    padding: 7rem 2rem;
}
.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.contact-info {
    flex: 1;
    min-width: 0;
}
.contact-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7b3020;
    margin-bottom: 1.1rem;
}
.contact-label::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: #7b3020;
    flex-shrink: 0;
}
.contact-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #1a1f36;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}
.contact-gold {
    color: #c9974a;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
}
.contact-item a {
    color: #444;
    transition: color 0.18s;
}
.contact-item a:hover {
    color: #c9974a;
}
.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f5f7;
    border-radius: 50%;
    color: #1a1f36;
}
.contact-map-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
}
.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ENGAGE / CONTACT FORM */
.engage-form {
    background: #f5f3ee;
    padding: 4rem 2rem;
}
.engage-form-outer {
    max-width: 920px;
    margin: 0 auto;
    background: #fdf9f0;
    border-radius: 18px;
    padding: 2.5rem 2.5rem 3rem;
}
.engage-form-inner {
    display: flex;
    align-items: flex-start;
    gap: 3.5rem;
}

/* ---- Left: white form card ---- */
.engage-form-card {
    flex: 0 0 50%;
    max-width: 50%;
    background: #ffffff;
    border: 1px solid #e9e6df;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}
.engage-form-row {
    display: flex;
    gap: 0.75rem;
}
.engage-form-row .engage-form-group {
    flex: 1;
}
.engage-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.engage-form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1f36;
}
.engage-form-input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #d5d8e0;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1a1f36;
    font-family: inherit;
    background: #fff;
    outline: none;
    transition:
        border-color 0.18s,
        box-shadow 0.18s;
}
.engage-form-input::placeholder {
    color: #b5bac5;
}
.engage-form-input:focus {
    border-color: #4e78c7;
    box-shadow: 0 0 0 3px rgba(78, 120, 199, 0.12);
}
.engage-form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.6;
}
.btn-engage {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: #3a5270;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    margin-top: 0.5rem;
    transition:
        background 0.18s,
        transform 0.15s,
        box-shadow 0.18s;
}
.btn-engage:hover {
    background: #2c3f58;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 82, 112, 0.3);
}

/* ---- Right: info + image ---- */
.engage-form-info {
    flex: 1;
    min-width: 0;
    padding-top: 0;
}
.engage-form-heading {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: #1a1f36;
    line-height: 1.18;
    margin-bottom: 0.6rem;
}
.engage-form-gold {
    color: #c9974a;
}
.engage-form-desc {
    font-family: "Inter", system-ui, sans-serif;
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #6a7280;
    margin-bottom: 1.5rem;
}
.engage-form-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.engage-form-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }
    .btn-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}
@media (max-width: 860px) {
    .wwo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
    .wwa-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .wwa-image-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .wwa-image {
        height: 280px;
    }
    .wwd-inner {
        flex-direction: column-reverse;
        gap: 2.5rem;
    }
    .wwd-image-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .wwd-image {
        height: 280px;
    }
    .contact-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .contact-map-wrap {
        flex: 0 0 100%;
        max-width: 100%;
        height: 320px;
    }
    .engage-form-outer {
        padding: 1.5rem;
    }
    .engage-form-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .engage-form-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .engage-form-image-wrap {
        max-width: 100%;
    }
    .engage-form-image {
        height: 220px;
    }
}
@media (max-width: 520px) {
    .wwo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .what-we-offer {
        padding: 4rem 1.25rem;
    }
    .navbar-inner {
        padding: 0 1rem;
    }
    .hero-content {
        padding: 72px 1.25rem 0;
    }
    .hero {
        padding-bottom: 0;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .partners-inner {
        gap: 2rem;
    }
    .partners-inner img {
        height: 60px;
        padding: 0 2rem;
    }
    .who-we-are {
        padding: 4rem 1.25rem;
    }
    .wwa-image {
        height: 220px;
    }
    .what-we-do {
        padding: 4rem 1.25rem;
    }
    .wwd-image {
        height: 220px;
    }
    .engage-form {
        padding: 2.5rem 1rem;
    }
    .engage-form-outer {
        padding: 1.25rem;
    }
    .engage-form-row {
        flex-direction: column;
        gap: 1rem;
    }
    .engage-form-card-body {
        padding: 0 1.25rem 1.5rem;
    }
}

/* ── FOOTER ── */
.site-footer {
    background: #e4e5e7;
    color: #3a3d47;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 3rem;
}

/* Brand column */
.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo-icon {
    width: 90px;
    height: auto;
}
.footer-about {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #525560;
    margin-bottom: 1.5rem;
}
.footer-socials {
    display: flex;
    gap: 0.6rem;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #3a5270;
    color: var(--white);
    transition:
        background 0.2s,
        transform 0.15s;
}
.footer-social:hover {
    background: #2c3f58;
    transform: translateY(-2px);
}

/* Headings */
.footer-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #23252d;
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #c0c2c8;
}

/* Sitemap column */
.footer-links-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.75rem;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    font-size: 0.88rem;
    color: #3a5270;
    font-weight: 500;
    transition: color 0.18s;
}
.footer-links a:hover {
    color: #1e2028;
    text-decoration: underline;
}

/* Subscribe column */
.footer-subscribe-desc {
    font-size: 0.88rem;
    color: #525560;
    margin: 0.75rem 0 1rem;
}
.footer-subscribe-form {
    display: flex;
    gap: 0;
}
.footer-subscribe-input {
    flex: 1;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    border: 1px solid #bfc2ca;
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: var(--white);
    color: #23252d;
    outline: none;
    transition: border-color 0.18s;
}
.footer-subscribe-input::placeholder {
    color: #999;
}
.footer-subscribe-input:focus {
    border-color: #3a5270;
}
.footer-subscribe-btn {
    padding: 0.6rem 1.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: #3a5270;
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s;
}
.footer-subscribe-btn:hover {
    background: #2c3f58;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #c8cacd;
    text-align: center;
    padding: 1.1rem 2rem;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: #6b6e78;
}

/* Footer responsive */
@media (max-width: 860px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 520px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.25rem 2rem;
    }
}
