/* ===== ROOT & RESET ===== */
:root {
    --navy: #0B1B3B;
    --navy-light: #13275A;
    --gold: #F4B740;
    --gold-dark: #DDA02E;
    --cream: #F7F6F2;
    --white: #FFFFFF;
    --ink: #151C2E;
    --muted: #6B7280;
    --line: #E7E5DF;
    --radius: 16px;
    --shadow-card: 0 18px 34px -18px rgba(11, 27, 59, .28);
    --transition-smooth: cubic-bezier(.16, 1, .3, 1);
    --header-height: 68px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    min-height: 44px;
    min-width: 44px;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* ===== UTILITY ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(11px, 1.2vw, 12.5px);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--gold-dark);
    display: inline-block;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: clamp(12px, 1.5vw, 14px) clamp(20px, 2.5vw, 26px);
    border-radius: 10px;
    font-weight: 600;
    font-size: clamp(14px, 1.2vw, 15px);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
    min-height: 48px;
    min-width: 44px;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(244, 183, 64, .45);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(11, 27, 59, .4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(244, 183, 64, .08);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: clamp(12px, 1vw, 13.5px);
    min-height: 40px;
}

.btn:active {
    transform: scale(.96);
}

.btn-gold:active,
.btn-navy:active {
    transform: scale(.96);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(.9);
        opacity: .55;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s var(--transition-smooth), transform .75s var(--transition-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s var(--transition-smooth), transform .7s var(--transition-smooth);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .7s var(--transition-smooth), transform .7s var(--transition-smooth);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== HEADER / NAV ===== */
header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .3s ease, box-shadow .3s ease;
    height: var(--header-height);
}

header.scrolled {
    background: rgba(11, 27, 59, .96);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 0;
}

/* ----- UPDATED LOGO: "KamOKazi" ----- */
.brand {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
}

.brand-white {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.brand-gold {
    color: #F4B740;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border: 3.7px solid #F4B740;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4B740;
    margin: 0 2.5px;
}

.brand-icon svg {
    width: 22px;
    height: 22px;

}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

.site-logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo .brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 2.8vw, 30px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.2;
}

/* Adjust letter-spacing for mixed case if needed, but we keep it consistent */

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 30px);
}

.nav-links a {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(13px, 1.1vw, 14px);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color .2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 16px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    display: block;
    transition: transform .3s ease, opacity .3s ease;
    border-radius: 2px;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 48;
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

@media(max-width:920px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 80%);
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 12px;
        border-left: 1px solid rgba(255, 255, 255, .06);
        box-shadow: -10px 0 40px rgba(0, 0, 0, .3);
        transform: translateX(100%);
        transition: transform .35s var(--transition-smooth);
        overflow-y: auto;
        align-items: stretch;
        z-index: 49;
        display: flex !important;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: clamp(16px, 2.5vw, 18px);
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        min-height: 52px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active {
        color: var(--gold);
    }

    .burger {
        display: flex;
    }

    .mobile-nav-overlay.active {
        display: block;
    }
}

@media(max-width:480px) {
    .logo .brand-name {
        font-size: 18px;
        letter-spacing: 2px;
    }
}

/* ===== HERO LANDING ===== */
.hero-landing {
    background: var(--navy);
    color: var(--white);
    padding: clamp(30px, 5vw, 60px) 0;
    position: relative;
    overflow: hidden;
    min-height: clamp(70vh, 80vh, 90vh);
    display: flex;
    align-items: center;
    box-shadow: 0 0 40px rgba(244, 183, 64, 0.15), inset 0 0 60px rgba(244, 183, 64, 0.05);
}

.hero-landing::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('./bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: .45;
    pointer-events: none;
    border: 1px solid rgba(244, 183, 64, 0.08);
}

.hero-landing::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(11, 27, 59, .50), rgba(11, 27, 59, .75) 55%, var(--navy) 100%);
    pointer-events: none;
}

.hero-landing>.wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-landing .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
}

@media(max-width:920px) {
    .hero-landing .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-landing .hero-badges {
        justify-content: center;
    }

    .hero-landing .hero-actions {
        justify-content: center;
    }

    .hero-landing .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-landing .hero-badge {
    display: inline-block;
    background: rgba(244, 183, 64, .12);
    color: var(--gold);
    padding: clamp(4px, 0.6vw, 6px) clamp(14px, 2vw, 18px);
    border-radius: 30px;
    font-size: clamp(11px, 1vw, 12px);
    font-weight: 600;
    letter-spacing: .06em;
    margin-bottom: clamp(12px, 2vw, 18px);
    border: 1px solid rgba(244, 183, 64, .15);
    animation: fadeInUp .6s ease both;
}

.hero-landing h1 {
    font-size: clamp(30px, 6vw, 54px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.08;
    animation: fadeInUp .7s ease .08s both;
}

.hero-landing h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-landing .hero-sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255, 255, 255, .72);
    max-width: 520px;
    line-height: 1.7;
    margin: clamp(14px, 2vw, 18px) 0 clamp(8px, 1vw, 12px);
    animation: fadeInUp .7s ease .16s both;
}

/* ----- NEW HERO LOCATION TEXT ----- */
.hero-location {
    font-size: clamp(14px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: clamp(20px, 3vw, 28px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: fadeInUp .7s ease .20s both;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
}

.hero-location span {
    color: var(--gold);
}

@media(max-width:920px) {
    .hero-location {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        width: auto;
    }
}

.hero-landing .hero-actions {
    display: flex;
    gap: clamp(10px, 1.5vw, 14px);
    flex-wrap: wrap;
    animation: fadeInUp .7s ease .24s both;
}

@media(max-width:480px) {
    .hero-landing .hero-actions .btn {
        flex: 1 1 100%;
        white-space: normal;
    }
}

.hero-landing .hero-badges {
    display: flex;
    gap: clamp(16px, 2.5vw, 28px);
    margin-top: clamp(24px, 4vw, 36px);
    flex-wrap: wrap;
    animation: fadeInUp .7s ease .32s both;
}

.hero-landing .hero-badges .badge-item {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    font-size: clamp(12px, 1.1vw, 13.5px);
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.hero-landing .hero-badges .badge-item svg {
    width: clamp(16px, 1.8vw, 20px);
    height: clamp(16px, 1.8vw, 20px);
    color: var(--gold);
    flex-shrink: 0;
}

@media(max-width:480px) {
    .hero-landing .hero-badges {
        gap: 12px;
        justify-content: center;
    }

    .hero-landing .hero-badges .badge-item {
        font-size: 11px;
    }
}
/* ===== HERO CTA CARD ===== */

.hero-landing .hero-cta-card {
    background: linear-gradient(150deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    padding: clamp(24px, 3vw, 34px) clamp(20px, 2.5vw, 32px);
    color: var(--navy);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(60px) scale(0.95);

    transition:
        opacity 2.5s ease,
        transform 2.5s cubic-bezier(.16,1,.3,1),
        box-shadow .3s ease;

    will-change: opacity, transform;
}

.hero-landing .hero-cta-card.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.hero-landing .hero-cta-card:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: 0 24px 44px -18px rgba(11,27,59,.5);
}

.hero-landing .hero-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 44px -18px rgba(11, 27, 59, .5);
}

.hero-landing .hero-cta-card .icon-pill {
    width: clamp(38px, 4vw, 44px);
    height: clamp(38px, 4vw, 44px);
    border-radius: 11px;
    background: rgba(11, 27, 59, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(10px, 1.5vw, 14px);
}

.hero-landing .hero-cta-card .icon-pill svg {
    width: clamp(17px, 1.8vw, 20px);
    height: clamp(17px, 1.8vw, 20px);
}

.hero-landing .hero-cta-card .kicker {
    font-weight: 700;
    font-size: clamp(12px, 1vw, 13px);
    margin-bottom: 4px;
    opacity: .85;
}

.hero-landing .hero-cta-card h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    margin-bottom: clamp(6px, 1vw, 10px);
}

.hero-landing .hero-cta-card .desc {
    font-size: clamp(13px, 1.1vw, 14px);
    opacity: .8;
    margin-bottom: clamp(14px, 2vw, 20px);
    line-height: 1.55;
}

@media(max-width:480px) {
    .hero-landing .hero-cta-card .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ABOUT ===== */
.about-section {
    padding: clamp(40px, 6vw, 70px) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
}

@media(max-width:860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.about-image{
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 16px 40px -16px rgba(11, 27, 59, .2);
    transition: transform .4s var(--transition-smooth); 
    height: clamp(220px, 40vw, 360px);
}
.about-slider{
    position: relative;
    width: 100%;
    height: 100%;
}
.about-slider .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: contain;
    background:#fff;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.about-slider .slide.active{
    opacity: 1;
}


.about-content h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--navy);
    margin: clamp(6px, 1vw, 10px) 0 clamp(10px, 1.5vw, 14px);
}

.about-content h2 em {
    font-style: normal;
    color: var(--gold-dark);
}

.about-content .about-text {
    color: var(--muted);
    font-size: clamp(14px, 1.2vw, 15px);
    line-height: 1.7;
    margin-bottom: clamp(16px, 2vw, 24px);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(8px, 1vw, 12px);
    margin-top: clamp(14px, 2vw, 20px);
}

@media(max-width:500px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.about-features .feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 1.1vw, 14px);
    color: var(--ink);
}

.about-features .feat svg {
    width: clamp(16px, 1.5vw, 18px);
    height: clamp(16px, 1.5vw, 18px);
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.catalogue-head {
    padding: clamp(30px, 5vw, 50px) 0 clamp(16px, 2vw, 24px);
}

.catalogue-head h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--navy);
    margin: clamp(6px, 1vw, 10px) 0 clamp(4px, 0.5vw, 6px);
}

.catalogue-head .sub {
    color: var(--muted);
    font-size: clamp(14px, 1.2vw, 15px);
}

.controls {
    display: flex;
    gap: clamp(10px, 1.5vw, 14px);
    margin-top: clamp(16px, 2.5vw, 24px);
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 6px 0 clamp(12px, 1.5vw, 16px);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.search-box:focus-within {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(244, 183, 64, .16);
}

.search-box input {
    border: none;
    outline: none;
    padding: clamp(10px, 1.2vw, 12px) 8px;
    font-size: clamp(13px, 1.1vw, 14px);
    width: 100%;
    font-family: inherit;
    background: transparent;
    min-height: 44px;
}

.search-box button {
    background: var(--navy);
    color: var(--white);
    width: clamp(36px, 4vw, 40px);
    height: clamp(34px, 4vw, 38px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s ease;
    min-width: 44px;
    min-height: 44px;
}

.search-box button:hover {
    background: var(--navy-light);
}

.search-box button svg {
    width: 16px;
    height: 16px;
}

select#categoryFilter {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 clamp(12px, 1.5vw, 16px);
    font-size: clamp(13px, 1.1vw, 14px);
    font-family: inherit;
    color: var(--ink);
    min-width: 160px;
    height: clamp(44px, 5vw, 48px);
    appearance: auto;
    cursor: pointer;
    flex: 0 1 auto;
}

@media(max-width:480px) {
    .controls {
        flex-direction: column;
    }

    .search-box {
        min-width: 100%;
    }

    select#categoryFilter {
        min-width: 100%;
        width: 100%;
    }
}

.grid-section {
    padding: clamp(4px, 0.5vw, 8px) 0 clamp(30px, 4vw, 40px);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

@media(max-width:1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--transition-smooth), box-shadow .3s var(--transition-smooth);
    animation: cardIn .6s var(--transition-smooth) both;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.card .thumb {
    height: clamp(120px, 20vw, 150px);
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #DDE3EE;
    overflow: hidden;
    transition: transform .5s var(--transition-smooth);
    flex-shrink: 0;
}

.card:hover .thumb {
    transform: scale(1.02);
}

.card .icon-tile {
    position: absolute;
    left: clamp(12px, 1.5vw, 16px);
    bottom: -19px;
    width: clamp(40px, 4.5vw, 46px);
    height: clamp(40px, 4.5vw, 46px);
    border-radius: 11px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px -6px rgba(11, 27, 59, .5);
    transition: transform .35s var(--transition-smooth);
}

.card:hover .icon-tile {
    transform: translateY(-4px) rotate(-6deg);
}

.card .icon-tile svg {
    width: clamp(18px, 2vw, 22px);
    height: clamp(18px, 2vw, 22px);
    color: var(--gold);
}

.card-body {
    padding: clamp(20px, 2.5vw, 30px) clamp(14px, 2vw, 20px) clamp(14px, 1.5vw, 18px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: clamp(16px, 1.6vw, 17.5px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.card-body p.desc {
    font-size: clamp(12.5px, 1.1vw, 13.5px);
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
    min-height: 36px;
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(10px, 1.2vw, 14px);
    padding-top: clamp(10px, 1.2vw, 14px);
    border-top: 1px dashed var(--line);
    flex-wrap: wrap;
    gap: 8px;
}

.price-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: clamp(14px, 1.3vw, 15px);
}

.price-tag small {
    font-weight: 500;
    color: var(--muted);
    font-size: clamp(10px, 0.9vw, 11.5px);
}

.view-link {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: clamp(12px, 1vw, 13px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-link svg {
    width: 13px;
    height: 13px;
}

.book-btn {
    width: 100%;
    margin-top: clamp(10px, 1.2vw, 14px);
    background: var(--navy);
    color: var(--white);
    padding: clamp(10px, 1.2vw, 11px);
    border-radius: 9px;
    font-size: clamp(12.5px, 1.1vw, 13.5px);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
    min-height: 48px;
}

.book-btn:hover {
    background: #0F2149;
    box-shadow: 0 6px 16px -8px rgba(11, 27, 59, .4);
}

.book-btn:active {
    transform: scale(.97);
}

.book-btn svg {
    width: clamp(14px, 1.2vw, 15px);
    height: clamp(14px, 1.2vw, 15px);
    transition: transform .25s var(--transition-smooth);
    flex-shrink: 0;
}

.book-btn:hover svg {
    transform: scale(1.15) rotate(-8deg);
}

.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: clamp(40px, 6vw, 60px) 20px;
    color: var(--muted);
    background: var(--white);
    border-radius: var(--radius);
    border: 1px dashed var(--line);
}

.view-all-wrap {
    text-align: center;
    margin-top: clamp(24px, 4vw, 36px);
}

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: clamp(50px, 7vw, 80px) 0 clamp(60px, 8vw, 90px);
    background: var(--white);
}

.how-section .section-head {
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 48px);
}

.how-section .section-head h2 {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 800;
    color: var(--navy);
    margin: 10px 0 6px;
    letter-spacing: -0.01em;
}

.how-section .section-head h2 em {
    font-style: normal;
    color: var(--gold-dark);
}

.how-section .section-head .sub {
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 17px);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
    counter-reset: step;
}

@media(max-width:820px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}

.how-step {
    background: var(--cream);
    border-radius: var(--radius);
    padding: clamp(20px, 2.5vw, 30px) clamp(16px, 2vw, 24px);
    border: 1px solid var(--line);
    text-align: center;
    position: relative;
    transition: transform .35s var(--transition-smooth), box-shadow .35s var(--transition-smooth);
    animation: cardIn .6s var(--transition-smooth) both;
    counter-increment: step;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.how-step .step-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 56px);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    opacity: 0.3;
    user-select: none;
}

.how-step .step-icon {
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -6px auto 12px;
    color: var(--gold);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    transition: transform .3s var(--transition-smooth);
}

.how-step:hover .step-icon {
    transform: scale(1.08) rotate(-4deg);
}

.how-step h3 {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.how-step p {
    font-size: clamp(13px, 1.1vw, 14px);
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT STRIP ===== */
.strip {
    background: var(--navy);
    padding: clamp(20px, 3vw, 26px) 0;
    margin-top: 0;
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(14px, 2vw, 20px);
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 14px);
    color: var(--white);
}

.strip-item .circle {
    width: clamp(38px, 4vw, 44px);
    height: clamp(38px, 4vw, 44px);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s ease;
}

.strip-item:hover .circle {
    background: rgba(244, 183, 64, .15);
}

.strip-item .circle svg {
    width: clamp(17px, 1.8vw, 19px);
    height: clamp(17px, 1.8vw, 19px);
    color: var(--gold);
}

.strip-item .lbl {
    font-size: clamp(11px, 1vw, 12.5px);
    color: rgba(255, 255, 255, .6);
}

.strip-item .val {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 700;
}

.divider-v {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, .15);
}

@media(max-width:760px) {
    .divider-v {
        display: none;
    }

    .strip-inner {
        justify-content: center;
        text-align: center;
    }

    .strip-item {
        flex: 1 1 100%;
        justify-content: center;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .7);
    padding: clamp(30px, 5vw, 50px) 0 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(20px, 3vw, 36px);
    padding-bottom: clamp(24px, 4vw, 36px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media(max-width:760px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media(max-width:480px) {
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.foot-grid h4 {
    color: var(--gold);
    font-size: clamp(12px, 1.1vw, 13.5px);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: clamp(12px, 1.5vw, 16px);
}

.foot-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 10px);
}

.foot-grid ul li a {
    font-size: clamp(13px, 1.1vw, 14px);
    color: rgba(255, 255, 255, .72);
    transition: color .2s ease;
}

.foot-grid ul li a:hover {
    color: var(--gold);
}

.foot-about p {
    font-size: clamp(13px, 1.1vw, 13.5px);
    line-height: 1.65;
    margin-top: 14px;
    max-width: 280px;
}

/* ----- NEW FOOTER LOCATION TEXT ----- */
.footer-location {
    font-size: clamp(13px, 1.1vw, 14px);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.footer-location span {
    color: var(--gold);
}

.foot-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 1.1vw, 13.5px);
    color: rgba(255, 255, 255, .8);
}

.foot-contact li svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.socials a {
    width: clamp(34px, 3.5vw, 34px);
    height: clamp(34px, 3.5vw, 34px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s ease, background .25s ease, transform .2s ease;
}

.socials a:hover {
    border-color: var(--gold);
    background: rgba(244, 183, 64, .1);
    transform: translateY(-2px);
}

.socials a svg {
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, .7);
    transition: color .25s ease;
}

.socials a:hover svg {
    color: var(--gold);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(16px, 2vw, 20px) 0;
    font-size: clamp(12px, 1vw, 13px);
    flex-wrap: wrap;
    gap: 10px;
}

.foot-bottom .links {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
}

.foot-bottom .links a {
    color: rgba(255, 255, 255, .6);
    transition: color .2s ease;
}

.foot-bottom .links a:hover {
    color: var(--gold);
}

/* ===== BOOKING MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 27, 59, .55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    background: var(--white);
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    padding: clamp(20px, 3vw, 28px);
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(11, 27, 59, .5);
    transform: translateY(28px) scale(.96);
    opacity: 0;
    transition: transform .4s var(--transition-smooth), opacity .35s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .3s ease;
}

.modal-close:hover {
    background: var(--line);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 14px;
    height: 14px;
    color: var(--muted);
}

.modal-card .eyebrow {
    margin-bottom: 8px;
}

.modal-card h3 {
    font-size: clamp(18px, 2.5vw, 20px);
    color: var(--navy);
    margin-bottom: 4px;
}

.modal-service {
    font-size: clamp(13px, 1.1vw, 13.5px);
    color: var(--muted);
    margin-bottom: clamp(14px, 2vw, 18px);
    padding-bottom: clamp(10px, 1.5vw, 14px);
    border-bottom: 1px dashed var(--line);
}

.modal-service b {
    color: var(--navy);
}

.field {
    margin-bottom: clamp(10px, 1.5vw, 14px);
}

.field label {
    display: block;
    font-size: clamp(12px, 1vw, 12.5px);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.field input {
    width: 100%;
    padding: clamp(8px, 1vw, 10px) clamp(10px, 1.2vw, 13px);
    border: 1px solid var(--line);
    border-radius: 9px;
    font-family: inherit;
    font-size: clamp(13px, 1.1vw, 14px);
    outline: none;
    background: var(--cream);
    transition: border-color .2s ease, box-shadow .2s ease;
    min-height: 44px;
}

.field input:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(244, 183, 64, .12);
}

.field-row {
    display: flex;
    gap: clamp(8px, 1.5vw, 12px);
}

.field-row .field {
    flex: 1;
}

@media(max-width:480px) {
    .field-row {
        flex-direction: column;
        gap: 0;
    }
}

.modal-note {
    font-size: clamp(11px, 1vw, 12px);
    color: var(--muted);
    margin: 2px 0 clamp(14px, 2vw, 18px);
    line-height: 1.5;
}

.modal-submit {
    width: 100%;
    justify-content: center;
    min-height: 50px;
}

.field-error {
    font-size: 12px;
    color: #C0392B;
    margin-top: -8px;
    margin-bottom: 12px;
    display: none;
}

.field-error.show {
    display: block;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media(max-width:600px) {
    .hero-landing h1 {
        font-size: 30px;
    }

    .hero-landing .hero-sub {
        font-size: 15px;
    }

    .wrap {
        padding: 0 16px;
    }

    .about-content h2,
    .catalogue-head h2,
    .how-section .section-head h2 {
        font-size: 26px;
    }

    .hero-landing .hero-cta-card {
        padding: 20px 18px;
    }

    .about-image img {
        height: 220px;
    }

    .modal-card {
        padding: 20px;
    }

    .hero-location {
        font-size: 13px;
        padding: 6px 12px;
        white-space: normal;
        text-align: center;
    }
}

@media(max-width:400px) {
    .hero-landing .hero-badges {
        gap: 10px;
    }

    .hero-landing .hero-badges .badge-item {
        font-size: 11px;
    }

    .hero-landing h1 {
        font-size: 26px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: all .3s ease;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

/* =========================================================
   FINAL RESPONSIVE LAYOUT OVERRIDES
   Designed for: 320px → 4K displays
   ========================================================= */

/* Prevent flex/grid children from creating horizontal overflow. */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    min-width: 320px;
}

.wrap {
    width: 100%;
}

/* Better section anchor positioning below the sticky header. */
section[id], .strip[id] {
    scroll-margin-top: calc(var(--header-height) + 14px);
}

/* Images and controls should never escape their containers. */
img, svg, video, canvas {
    max-width: 100%;
}

input, select, textarea, button {
    max-width: 100%;
}

/* ---------- LARGE DESKTOP ---------- */
@media (min-width: 1440px) {
    .wrap {
        max-width: 1320px;
    }

    .hero-landing h1 {
        max-width: 820px;
    }

    .hero-landing .hero-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(360px, .75fr);
        gap: 72px;
    }

    .cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ---------- TABLET / SMALL LAPTOP ---------- */
@media (max-width: 1100px) {
    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-landing .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
        gap: 28px;
    }

    .about-grid {
        gap: 30px;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ---------- MOBILE NAV ---------- */
@media (max-width: 920px) {
    :root {
        --header-height: 64px;
    }

    header {
        height: var(--header-height);
    }

    .nav {
        height: var(--header-height);
        padding: 0 clamp(12px, 3vw, 20px);
    }

    .logo {
        min-width: 0;
    }

    .brand-white,
    .brand-gold {
        font-size: clamp(19px, 4vw, 24px);
        letter-spacing: 1.5px;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }

    .brand-icon svg {
        width: 19px;
        height: 19px;
    }

    .nav-right .btn-sm {
        display: none;
    }

    .nav-links {
        top: var(--header-height);
        width: min(340px, 88vw);
        height: calc(100dvh - var(--header-height));
        padding: 18px 24px 28px;
        gap: 4px;
        border-left: 1px solid rgba(255,255,255,.08);
    }

    .nav-links a {
        min-height: 54px;
        padding: 14px 4px;
        font-size: 16px;
    }

    .hero-landing {
        min-height: auto;
        padding: clamp(46px, 8vw, 76px) 0 clamp(42px, 7vw, 64px);
    }

    .hero-landing .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-landing .hero-grid > * {
        min-width: 0;
    }

    .hero-landing h1 {
        max-width: 760px;
        margin-inline: auto;
    }

    .hero-landing .hero-sub {
        max-width: 650px;
    }

    .hero-location {
        max-width: 100%;
        justify-content: center;
        margin-inline: auto;
        white-space: normal;
        text-align: center;
        line-height: 1.45;
    }

    .hero-landing .hero-actions {
        justify-content: center;
    }

    .hero-landing .hero-cta-card {
        width: min(100%, 520px);
        margin-inline: auto;
    }

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

    .about-image {
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 240px;
    }

    .about-slider {
        position: absolute;
        inset: 0;
    }

    .controls {
        width: 100%;
    }

    .search-box {
        min-width: 0;
    }

    .strip-inner {
        justify-content: center;
    }
}

/* ---------- TABLET ---------- */
@media (min-width: 601px) and (max-width: 920px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .foot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .strip-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .strip-inner > .btn {
        grid-column: 1 / -1;
        width: fit-content;
        margin-inline: auto;
    }
}

/* ---------- PHONE ---------- */
@media (max-width: 600px) {
    .wrap {
        padding-inline: 16px;
    }

    .hero-landing {
        text-align: center;
    }

    .hero-landing .hero-badge {
        max-width: 100%;
        line-height: 1.4;
    }

    .hero-landing h1 {
        font-size: clamp(29px, 8.5vw, 38px);
        line-height: 1.08;
    }

    .hero-landing .hero-sub {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .hero-location {
        width: 100%;
        padding: 9px 12px;
        font-size: 12.5px;
        border-radius: 14px;
    }

    .hero-landing .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-landing .hero-actions .btn {
        width: 100%;
        min-height: 50px;
    }

    .hero-landing .hero-badges {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        justify-items: center;
        margin-top: 26px;
    }

    .hero-landing .hero-badges .badge-item {
        font-size: 12px;
    }

    .hero-landing .hero-cta-card {
        border-radius: 16px;
        padding: 22px 18px;
        text-align: left;
    }

    .about-section {
        padding-block: 44px;
    }

    .about-image {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .about-content h2,
    .catalogue-head h2,
    .how-section .section-head h2 {
        font-size: clamp(25px, 7vw, 31px);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .catalogue-head {
        padding-top: 36px;
    }

    .catalogue-head .sub {
        line-height: 1.55;
    }

    .controls {
        flex-direction: column;
        gap: 10px;
    }

    .search-box,
    select#categoryFilter {
        width: 100%;
        min-width: 0;
    }

    .search-box {
        min-height: 48px;
    }

    select#categoryFilter {
        height: 48px;
    }

    .grid-section {
        padding-bottom: 38px;
        margin-top: 12px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        min-width: 0;
    }

    .card .thumb {
        height: 170px;
    }

    .card-body {
        padding: 18px 16px 16px;
    }

    .card-body h3 {
        font-size: 17px;
        line-height: 1.3;
    }

    .card-body p.desc {
        line-height: 1.55;
    }

    .card-foot {
        align-items: flex-end;
        gap: 10px;
    }

    .view-link {
        max-width: 58%;
        text-align: right;
        overflow-wrap: anywhere;
    }

    .book-btn {
        width: 100%;
        min-height: 48px;
    }

    .view-all-wrap {
        margin-top: 18px;
    }

    .view-all-wrap .btn {
        width: 100%;
    }

    .how-section {
        padding-block: 44px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .how-step {
        min-height: 0;
        padding: 20px 18px;
    }

    .strip {
        padding-block: 26px;
    }

    .strip-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .strip-item {
        width: 100%;
        justify-content: flex-start;
    }

    .strip-inner > .btn {
        width: 100%;
        margin-top: 2px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .foot-about p {
        max-width: none;
    }

    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }

    .foot-bottom .links {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .modal-card {
        width: 100%;
        max-width: none;
        max-height: min(92dvh, 760px);
        border-radius: 18px 18px 12px 12px;
        padding: 22px 18px calc(18px + env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .modal-card .eyebrow {
        padding-right: 42px;
    }

    .modal-card h3 {
        font-size: 21px;
        padding-right: 36px;
    }

    .field-row {
        flex-direction: column;
        gap: 0;
    }

    .field input {
        min-height: 48px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    .modal-submit {
        min-height: 52px;
        position: sticky;
        bottom: 0;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: max(14px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ---------- VERY SMALL PHONES ---------- */
@media (max-width: 360px) {
    .wrap {
        padding-inline: 13px;
    }

    .brand-white,
    .brand-gold {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .brand-icon {
        width: 27px;
        height: 27px;
        margin-inline: 1px;
    }

    .brand-icon svg {
        width: 17px;
        height: 17px;
    }

    .hero-landing h1 {
        font-size: 27px;
    }

    .hero-landing .hero-sub {
        font-size: 14px;
    }

    .hero-location {
        font-size: 11.5px;
    }

    .hero-landing .hero-cta-card {
        padding: 20px 15px;
        
    }

    .card .thumb {
        height: 155px;
    }

    .modal-card {
        padding-inline: 15px;
    }
}

/* ---------- LANDSCAPE PHONES ---------- */
@media (max-height: 520px) and (orientation: landscape) {
    .nav-links {
        padding-top: 10px;
        padding-bottom: 12px;
    }

    .nav-links a {
        min-height: 42px;
        padding-block: 8px;
    }

    .hero-landing {
        padding-block: 34px;
    }

    .modal-card {
        max-height: 94dvh;
    }
}

/* ---------- TOUCH / HOVER BEHAVIOUR ---------- */
@media (hover: none) and (pointer: coarse) {
    .card:hover,
    .hero-landing .hero-cta-card:hover,
    .btn:hover,
    .whatsapp-float:hover {
        transform: none;
        box-shadow: none;
    }

    .nav-links a,
    .btn,
    .book-btn,
    .burger,
    .modal-close {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ---------- SAFE AREA ---------- */
@supports (padding: max(0px)) {
    header .nav {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

body.menu-open { overflow: hidden; }
@media (min-width: 921px) { body.menu-open { overflow: auto; } }


/* =========================================================
   FINAL RESPONSIVE FIX
   Preserves the original design.
   Supports: 320px -> 4K
   Background: ./bg.jpg
   ========================================================= */

/* ---------- GLOBAL SAFETY ---------- */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-width: 320px;
}

.wrap {
    width: 100%;
}

/* Prevent grid/flex children from forcing horizontal overflow */
.hero-landing .hero-grid > *,
.about-grid > *,
.cards > *,
.how-grid > *,
.foot-grid > * {
    min-width: 0;
}

/* ---------- HERO BACKGROUND ---------- */
.hero-landing {
    isolation: isolate;
}

.hero-landing::before {
    z-index: 0;
    background-image: url('./bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .45;
}

.hero-landing::after {
    z-index: 1;
}

.hero-landing > .wrap {
    z-index: 2;
}

/* ---------- LARGE DESKTOP ---------- */
@media (min-width: 1440px) {
    .wrap {
        max-width: 1320px;
    }

    .hero-landing .hero-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(360px, .75fr);
        gap: 72px;
    }

    .hero-landing h1 {
        max-width: 820px;
    }

    .cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ---------- TABLET / SMALL LAPTOP ---------- */
@media (max-width: 1100px) {
    .nav-links {
        gap: 14px;
    }

    .hero-landing .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
        gap: 28px;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ---------- MOBILE NAV ---------- */
@media (max-width: 920px) {
    :root {
        --header-height: 64px;
    }

    header {
        height: var(--header-height);
    }

    .nav {
        height: var(--header-height);
        padding-inline: clamp(12px, 3vw, 20px);
    }

    .logo {
        min-width: 0;
        max-width: calc(100% - 55px);
    }

    .brand-white,
    .brand-gold {
        font-size: clamp(19px, 4vw, 24px);
        letter-spacing: 1.5px;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
        border-width: 3px;
        flex-shrink: 0;
    }

    .brand-icon svg {
        width: 19px;
        height: 19px;
    }

    .nav-right .btn-sm {
        display: none;
    }

    .burger {
        display: flex;
        position: relative;
        z-index: 110;
        flex-shrink: 0;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: 0;
        width: min(340px, 88vw);
        height: calc(100dvh - var(--header-height));
        padding: 18px 24px 28px;
        gap: 4px;
        background: var(--navy);
        border-left: 1px solid rgba(255,255,255,.08);
        box-shadow: -10px 0 40px rgba(0,0,0,.3);
        transform: translateX(100%);
        transition: transform .35s var(--transition-smooth);
        overflow-y: auto;
        align-items: stretch;
        z-index: 100;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        min-height: 54px;
        padding: 14px 4px;
        font-size: 16px;
    }

    .hero-landing {
        min-height: auto;
        padding: clamp(46px, 8vw, 76px) 0 clamp(42px, 7vw, 64px);
    }

    /* Keep the same background image on tablets/phones */
    .hero-landing::before {
        background-position: center center;
        background-size: cover;
        opacity: .48;
    }

    .hero-landing .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .hero-landing h1 {
        max-width: 760px;
        margin-inline: auto;
    }

    .hero-landing .hero-sub {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-location {
        max-width: 100%;
        width: fit-content;
        justify-content: center;
        margin-inline: auto;
        white-space: normal;
        text-align: center;
        line-height: 1.45;
    }

    .hero-landing .hero-actions {
        justify-content: center;
    }

    .hero-landing .hero-badges {
        justify-content: center;
    }

    .hero-landing .hero-cta-card {
        width: min(100%, 520px);
        margin-inline: auto;
    }

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

    .about-image {
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 240px;
    }

    .about-slider {
        position: absolute;
        inset: 0;
    }

    .controls {
        width: 100%;
    }

    .search-box {
        min-width: 0;
    }
}

/* ---------- TABLET ---------- */
@media (min-width: 601px) and (max-width: 920px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .foot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .strip-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .strip-inner > .btn {
        grid-column: 1 / -1;
        width: fit-content;
        margin-inline: auto;
    }
}

/* ---------- PHONE ---------- */
@media (max-width: 600px) {
    .wrap {
        padding-inline: 16px;
    }

    .hero-landing {
        text-align: center;
    }

    .hero-landing::before {
        background-position: center center;
        background-size: cover;
        opacity: .52;
    }

    .hero-landing::after {
        background:
            linear-gradient(
                180deg,
                rgba(11, 27, 59, .42),
                rgba(11, 27, 59, .72) 60%,
                var(--navy) 100%
            );
    }

    .hero-landing h1 {
        font-size: clamp(29px, 8.5vw, 38px);
        line-height: 1.08;
    }

    .hero-landing .hero-sub {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .hero-location {
        width: 100%;
        padding: 9px 12px;
        font-size: 12.5px;
        border-radius: 14px;
    }

    .hero-landing .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-landing .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        white-space: normal;
    }

    .hero-landing .hero-badges {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        justify-items: center;
        margin-top: 26px;
    }

    .hero-landing .hero-badges .badge-item {
        font-size: 12px;
    }

    .hero-landing .hero-cta-card {
        border-radius: 16px;
        padding: 22px 18px;
        text-align: left;
    }

    .about-section {
        padding-block: 44px;
    }

    .about-image {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .about-content h2,
    .catalogue-head h2,
    .how-section .section-head h2 {
        font-size: clamp(25px, 7vw, 31px);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .catalogue-head {
        padding-top: 36px;
    }

    .catalogue-head .sub {
        line-height: 1.55;
    }

    .controls {
        flex-direction: column;
        gap: 10px;
    }

    .search-box,
    select#categoryFilter {
        width: 100%;
        min-width: 0;
    }

    .search-box {
        min-height: 48px;
    }

    select#categoryFilter {
        height: 48px;
    }

    .grid-section {
        padding-bottom: 38px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        min-width: 0;
    }

    .card .thumb {
        height: 170px;
    }

    .card-body {
        padding: 18px 16px 16px;
    }

    .card-body h3 {
        font-size: 17px;
        line-height: 1.3;
    }

    .card-body p.desc {
        line-height: 1.55;
    }

    .card-foot {
        align-items: flex-end;
        gap: 10px;
    }

    .view-link {
        max-width: 58%;
        text-align: right;
        overflow-wrap: anywhere;
    }

    .book-btn {
        width: 100%;
        min-height: 48px;
    }

    .view-all-wrap {
        margin-top: 18px;
    }

    .view-all-wrap .btn {
        width: 100%;
    }

    .how-section {
        padding-block: 44px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .how-step {
        min-height: 0;
        padding: 20px 18px;
    }

    .strip {
        padding-block: 26px;
    }

    .strip-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .strip-item {
        width: 100%;
        justify-content: flex-start;
    }

    .strip-inner > .btn {
        width: 100%;
        margin-top: 2px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .foot-about p {
        max-width: none;
    }

    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }

    .foot-bottom .links {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .modal-card {
        width: 100%;
        max-width: none;
        max-height: min(92dvh, 760px);
        border-radius: 18px 18px 12px 12px;
        padding: 22px 18px calc(18px + env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .modal-card .eyebrow {
        padding-right: 42px;
    }

    .modal-card h3 {
        font-size: 21px;
        padding-right: 36px;
    }

    .field-row {
        flex-direction: column;
        gap: 0;
    }

    .field input {
        min-height: 48px;
        font-size: 16px;
    }

    .modal-submit {
        min-height: 52px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: max(14px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ---------- VERY SMALL PHONES ---------- */
@media (max-width: 360px) {
    .wrap {
        padding-inline: 13px;
    }

    .brand-white,
    .brand-gold {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .brand-icon {
        width: 27px;
        height: 27px;
        margin-inline: 1px;
    }

    .brand-icon svg {
        width: 17px;
        height: 17px;
    }

    .hero-landing h1 {
        font-size: 27px;
    }

    .hero-landing .hero-sub {
        font-size: 14px;
    }

    .hero-location {
        font-size: 11.5px;
    }

    .hero-landing .hero-cta-card {
        padding: 20px 15px;
    }

    .card .thumb {
        height: 155px;
    }

    .modal-card {
        padding-inline: 15px;
    }
}

/* ---------- LANDSCAPE PHONES ---------- */
@media (max-height: 520px) and (orientation: landscape) {
    .nav-links {
        padding-top: 10px;
        padding-bottom: 12px;
    }

    .nav-links a {
        min-height: 42px;
        padding-block: 8px;
    }

    .hero-landing {
        padding-block: 34px;
    }

    .hero-landing::before {
        background-position: center center;
        background-size: cover;
    }

    .modal-card {
        max-height: 94dvh;
    }
}

/* ---------- TOUCH ---------- */
@media (hover: none) and (pointer: coarse) {
    .card:hover,
    .hero-landing .hero-cta-card:hover,
    .btn:hover,
    .whatsapp-float:hover {
        transform: none;
    }

    .nav-links a,
    .btn,
    .book-btn,
    .burger,
    .modal-close {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ---------- SAFE AREA ---------- */
@supports (padding: max(0px)) {
    header .nav {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

body.menu-open {
    overflow: hidden;
}

@media (min-width: 921px) {
    body.menu-open {
        overflow: auto;
    }
}
/* =========================================================
   KAAMOKAZI - MOBILE BG FIX
   ========================================================= */

.hero-landing {
    position: relative;
    overflow: hidden;
    background: #0B1B3B;
}

.hero-landing::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("./bg.jpg");
    background-repeat: no-repeat;

    /* Desktop */
    background-size: cover;
    background-position: center center;

    opacity: 0.45;

    z-index: 0;
    pointer-events: none;
}

.hero-landing::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(11, 27, 59, 0.25) 0%,
        rgba(11, 27, 59, 0.55) 55%,
        rgba(11, 27, 59, 0.95) 100%
    );

    z-index: 1;
    pointer-events: none;
}

.hero-landing > .wrap {
    position: relative;
    z-index: 2;
}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 600px) {

    .hero-landing {
        min-height: auto;
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .hero-landing::before {

        /*
         * IMPORTANT:
         * Don't use cover on mobile.
         * It crops the image.
         */

        background-size: 100% auto;

        background-position:
            center top;

        background-repeat:
            no-repeat;

        opacity:
            0.55;
    }

    .hero-landing::after {

        background:
            linear-gradient(
                180deg,
                rgba(11, 27, 59, 0.05) 0%,
                rgba(11, 27, 59, 0.30) 30%,
                rgba(11, 27, 59, 0.72) 65%,
                #0B1B3B 100%
            );
    }
}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 400px) {

    .hero-landing::before {

        background-size:
            100% auto;

        background-position:
            center top;

        opacity:
            0.52;
    }
}


/* =========================================================
   LANDSCAPE PHONE
   ========================================================= */

@media (
    max-width: 900px
) and (
    orientation: landscape
) {

    .hero-landing::before {

        background-size:
            cover;

        background-position:
            center center;
    }
}
