/* ============================================================
   KAJARIYA PACKERS AND MOVERS — MAIN STYLESHEET
   Palette: Deep Navy #0B2447 | Gold/Amber #F2A73B | Off-white #F7F8FA
   Fonts: Sora (headings) / Inter (body)
   ============================================================ */

:root {
    --navy-900: #081A33;
    --navy-800: #0B2447;
    --navy-700: #123B6B;
    --navy-100: #E7EDF5;
    --gold-500: #F2A73B;
    --gold-600: #DB9226;
    --ink-900: #1B2430;
    --ink-600: #4A5568;
    --ink-400: #7C8798;
    --bg-off: #F7F8FA;
    --bg-warm: #FFF8EE;
    --border-soft: #E7E9EE;
    --success: #2E9E5B;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 30px rgba(11, 36, 71, 0.08);
    --shadow-strong: 0 20px 45px rgba(11, 36, 71, 0.16);
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- Base ---------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink-900);
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--navy-800);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--ink-600);
}

a {
    color: var(--navy-700);
    text-decoration: none;
}

a:hover {
    color: var(--gold-600);
}

.section-pad {
    padding: 72px 0;
}

@media (max-width: 767px) {
    .section-pad {
        padding: 48px 0;
    }
}

.bg-off {
    background: var(--bg-off);
}

.bg-warm {
    background: var(--bg-warm);
}

.bg-navy {
    background: var(--navy-800);
}

.text-gold {
    color: var(--gold-500) !important;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy-800);
    color: #fff;
    padding: 10px 16px;
    z-index: 2000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    left: 0;
}

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 12px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold-500);
    display: inline-block;
}

.section-title {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    margin-bottom: 14px;
}

.section-lead {
    color: var(--ink-600);
    max-width: 680px;
}

/* ---------- Buttons ---------- */
.btn {
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 600;
    padding: 12px 26px;
    transition: all .25s ease;
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--navy-900);
    border: none;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-cta-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-outline-navy {
    border: 2px solid var(--navy-700);
    color: var(--navy-800);
    background: transparent;
}

.btn-outline-navy:hover {
    background: var(--navy-800);
    color: #fff;
}

.btn-light {
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 600;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--navy-900);
    color: #cfd9ea;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a {
    color: #cfd9ea;
}

.top-bar a:hover {
    color: var(--gold-500);
}

.top-bar-left .divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 16px;
}

.top-bar i {
    color: var(--gold-500);
    margin-right: 4px;
}

/* ---------- Header / Nav ---------- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 18px rgba(11, 36, 71, 0.06);
    z-index: 1030;
}

.navbar {
    padding: 14px 0;
}

.navbar>.container {
    gap: 14px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--navy-800);
    font-size: 1.15rem;
}

.brand-sub {
    font-size: 0.72rem;
    color: var(--ink-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-collapse {
    min-width: 0;
}

.navbar-nav {
    align-items: center;
    gap: 2px;
}

.navbar-nav .nav-link {
    color: var(--ink-900);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 10px !important;
    white-space: nowrap;
}

.header-call-btn {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 22px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-600);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-strong);
    border-radius: var(--radius-md);
    padding: 10px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--bg-warm);
    color: var(--navy-800);
}

.dropdown-action {
    background: var(--navy-800);
    color: #fff;
    margin-bottom: 2px;
}

.dropdown-action:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

.dropdown-menu-scroll {
    max-height: min(440px, calc(100vh - 170px));
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 280px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-500) var(--bg-off);
}

.dropdown-menu-scroll::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu-scroll::-webkit-scrollbar-track {
    background: var(--bg-off);
    border-radius: 999px;
}

.dropdown-menu-scroll::-webkit-scrollbar-thumb {
    background: var(--gold-500);
    border-radius: 999px;
}

/* ---------- Floating mobile buttons ---------- */
.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.fab-call {
    background: var(--navy-800);
}

.fab-whatsapp {
    background: #25D366;
}

/* ---------- Breadcrumb bar ---------- */
.breadcrumb-bar {
    background: var(--bg-off);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
}

.breadcrumb {
    font-size: 0.86rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    color: var(--ink-400);
}

.breadcrumb-item.active {
    color: var(--ink-400);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

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

.hero-slide {
    position: relative;
    height: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(8, 26, 51, 0.74) 0%, rgba(8, 26, 51, 0.56) 45%, rgba(8, 26, 51, 0.32) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 48px 0 230px;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 167, 59, 0.15);
    border: 1px solid rgba(242, 167, 59, 0.4);
    color: var(--gold-500);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    color: #fff;
    margin-bottom: 18px;
}

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

.hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin-bottom: 18px;
}

.hero-service-points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
}

.hero-service-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-service-points i {
    color: var(--gold-500);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cta-group .btn {
    margin: 0;
}

.hero-highlight-strip {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.hero-highlight-strip .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
}

.hero-highlight-strip i {
    color: var(--gold-500);
    font-size: 1.2rem;
}

.hero-form-wrap {
    position: relative;
    z-index: 3;
    margin-top: -170px;
}

.hero-quote-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    padding: 22px 24px;
    border-top: 5px solid var(--gold-500);
}

.hero-quote-card h3 {
    font-size: 1.18rem;
    margin-bottom: 2px;
}

.hero-quote-card .subtitle {
    color: var(--ink-400);
    font-size: 0.84rem;
    margin-bottom: 12px;
}

.hero-quote-card .enquiry-form .row {
    --bs-gutter-y: 0.85rem;
    --bs-gutter-x: 0.85rem;
    align-items: end;
}

.hero-quote-card .enquiry-form .form-label {
    font-size: 0.78rem;
}

.hero-quote-card .enquiry-form .form-control,
.hero-quote-card .enquiry-form .form-select {
    padding: 8px 12px;
    min-height: 40px;
}

.hero-quote-card .enquiry-form .btn {
    padding: 9px 14px;
    min-height: 40px;
}

.hero-quote-card .enquiry-form .form-note {
    font-size: 0.78rem;
}

.hero-slider .carousel-indicators {
    z-index: 3;
    bottom: 194px;
}

.hero-slider .carousel-indicators [data-bs-target] {
    background-color: var(--gold-500);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    z-index: 3;
    width: 6%;
    opacity: 0.7;
}

@media (max-width: 1199px) {
    .site-header .container {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .navbar-toggler {
        width: 46px;
        height: 42px;
        padding: 0;
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid var(--border-soft);
        border-radius: 8px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        margin-top: 14px;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
    }

    .navbar-nav {
        align-items: stretch;
        gap: 4px;
    }

    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        border-radius: var(--radius-sm);
        white-space: normal;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: var(--bg-warm);
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin: 8px 0 14px;
        box-shadow: var(--shadow-soft);
    }

    .dropdown-menu-scroll {
        max-height: 42vh;
        min-width: 0;
    }
}

@media (max-width: 991px) {
    .hero-slider .container,
    .hero-form-wrap,
    .section-pad>.container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-slide,
    .hero-slider {
        height: auto;
        min-height: auto;
    }

    .hero-slide-content {
        padding: 46px 0 44px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.16;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .hero-service-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 22px;
        max-width: min(340px, calc(100vw - 72px));
    }

    .hero-service-points li {
        border-radius: var(--radius-sm);
        font-size: 0.84rem;
        padding: 8px 10px;
    }

    .hero-cta-group {
        display: grid;
        grid-template-columns: 1fr;
        max-width: min(310px, calc(100vw - 72px));
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-form-wrap {
        margin-top: 0;
    }

    .hero-slider .carousel-indicators {
        display: none;
    }
}

@media (max-width: 575px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-header .container,
    .hero-slider .container,
    .hero-form-wrap,
    .section-pad>.container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar>.container {
        width: 100%;
        max-width: 100%;
        gap: 10px;
        position: static;
    }

    .navbar {
        position: relative;
    }

    .navbar-toggler {
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 1060;
        transform: none;
        margin-left: 0;
        background: #fff;
        box-shadow: 0 8px 22px rgba(11, 36, 71, 0.12);
    }

    .navbar-brand {
        min-width: 0;
        gap: 8px;
        padding-right: 62px;
        max-width: calc(100% - 62px);
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-sub {
        font-size: 0.67rem;
    }

    .hero-slide {
        min-height: 610px;
        align-items: flex-start;
    }

    .hero-slide-content {
        padding-top: 50px;
        padding-bottom: 36px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

    .hero-badge {
        max-width: 100%;
        font-size: 0.76rem;
        line-height: 1.35;
        padding: 7px 12px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 1.72rem;
        max-width: 330px;
    }

    .hero-subtitle {
        font-size: 0.94rem;
        max-width: 330px;
    }

    .link-pill-group {
        grid-template-columns: 1fr;
    }

    .link-pill {
        min-height: 48px;
        padding: 11px 12px;
    }

    .hero-quote-card,
    .page-top-form {
        padding: 18px;
        border-radius: var(--radius-md);
    }

    .listing-card-grid {
        --bs-gutter-y: 0.85rem;
    }

    .listing-card {
        min-height: auto;
        padding: 18px;
    }

    .listing-card .icon-wrap {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
}

@media (min-width: 992px) {
    .hero-quote-card .enquiry-form .row>.col-md-6 {
        width: 25%;
    }

    .hero-quote-card .enquiry-form .captcha-field {
        width: 25%;
    }

    .hero-quote-card .enquiry-form .form-submit-col {
        width: 25%;
    }

    .hero-quote-card .enquiry-form .form-submit-col .btn {
        width: 100%;
        white-space: nowrap;
    }

    .hero-quote-card .captcha-question {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .hero-quote-card .captcha-control .form-control {
        min-width: 82px;
    }

    .page-top-form .enquiry-form .row>.col-md-6 {
        width: 25%;
    }

    .page-top-form .enquiry-form .captcha-field {
        width: 25%;
    }

    .page-top-form .enquiry-form .form-submit-col {
        width: 25%;
    }

    .page-top-form .enquiry-form .form-submit-col .btn {
        width: 100%;
        white-space: nowrap;
    }
}

/* ---------- Form styling ---------- */
.enquiry-form .form-label {
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-soft);
    padding: 11px 14px;
    font-size: 0.94rem;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(242, 167, 59, 0.18);
}

.enquiry-form .form-note {
    font-size: 0.84rem;
    color: var(--ink-400);
}

.enquiry-form .form-note a {
    color: var(--navy-800);
}

.captcha-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-question {
    min-height: 42px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-warm);
    border: 1.5px solid rgba(242, 167, 59, 0.35);
    color: var(--navy-800);
    font-family: var(--font-head);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.captcha-control .form-control {
    min-width: 96px;
}

.form-submit-col {
    display: flex;
    align-items: end;
}

.form-submit-col .btn {
    width: 100%;
}

.form-error-msg {
    display: none;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: #FFF1F1;
    border: 1px solid #F1B9B9;
    color: #9B1C1C;
    font-size: 0.86rem;
    font-weight: 600;
}

.form-error-msg.is-visible {
    display: block;
}

.enquiry-form--compact .form-control,
.enquiry-form--compact .form-select {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.bg-navy .enquiry-form .form-label,
.enquiry-form--compact .form-label {
    color: rgba(255, 255, 255, 0.92);
}

.bg-navy .enquiry-form .form-note,
.enquiry-form--compact .form-note {
    color: rgba(255, 255, 255, 0.68);
}

.bg-navy .enquiry-form .form-note a,
.enquiry-form--compact .form-note a {
    color: #fff;
}

.bg-navy .enquiry-form .form-control,
.bg-navy .enquiry-form .form-select {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--ink-900);
}

.bg-navy .enquiry-form .form-control::placeholder {
    color: #7C8798;
    opacity: 1;
}

.bg-navy .captcha-question {
    background: rgba(242, 167, 59, 0.14);
    border-color: rgba(242, 167, 59, 0.45);
    color: #fff;
}

.bg-navy .enquiry-form .form-select option,
.enquiry-form--compact .form-select option {
    color: var(--ink-900);
    background: #fff;
}

.site-footer .enquiry-form .form-label {
    color: #fff;
}

.site-footer .enquiry-form--compact ::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer .enquiry-form .form-note {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer .enquiry-form .form-note a {
    color: var(--gold-500);
}

.form-success-msg {
    display: none;
    background: #E9F8EF;
    border: 1px solid #BFE8CE;
    color: #1E7A44;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
}

.form-success-msg.is-visible {
    display: block;
}

/* Compact quote card used below service/locality/route page heroes */
.page-top-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-top: -70px;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-strong);
    border-top: 5px solid var(--gold-500);
}

.page-top-form h3 {
    color: var(--navy-800);
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.page-top-form .enquiry-form .row {
    --bs-gutter-y: 0.85rem;
    --bs-gutter-x: 0.85rem;
    align-items: end;
}

.page-top-form .enquiry-form .form-label {
    color: var(--navy-800);
    font-size: 0.78rem;
}

.page-top-form .enquiry-form .form-control,
.page-top-form .enquiry-form .form-select {
    background: #fff;
    border-color: var(--border-soft);
    color: var(--ink-900);
    min-height: 40px;
    padding: 8px 12px;
}

.page-top-form .enquiry-form .btn {
    min-height: 40px;
    padding: 9px 14px;
}

.page-top-form .captcha-question {
    min-height: 40px;
    padding: 8px 10px;
    background: var(--bg-warm);
    border-color: rgba(242, 167, 59, 0.35);
    color: var(--navy-800);
    font-size: 0.8rem;
}

.page-top-form .captcha-control .form-control {
    min-width: 82px;
}

.page-hero {
    background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
    padding: 70px 0 130px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 167, 59, 0.16), transparent 70%);
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    margin-bottom: 14px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    font-size: 1.02rem;
}

.page-hero .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.4);
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

/* @media (max-width: 767px) {

    .page-top-form {
        margin-top: 24px;
    }
} */

/* ============================================================
   ABOUT / SPLIT SECTIONS
   ============================================================ */
.split-section {
    display: flex;
    align-items: center;
}

.split-media {
    position: relative;
}

.split-media img {
    border-radius: var(--radius-lg);
    width: 100%;
    box-shadow: var(--shadow-soft);
}

.split-media-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 12px;
}

.split-media-badge .num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--navy-800);
}

.split-media-badge .label {
    font-size: 0.78rem;
    color: var(--ink-400);
    line-height: 1.2;
}

@media (max-width: 767px) {
    .split-media-badge {
        left: 12px;
        bottom: -16px;
        padding: 12px 16px;
    }
}

.mission-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 28px;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.mission-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--navy-800);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mission-card p {
    margin-bottom: 0;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--ink-900);
    font-weight: 500;
}

.checklist i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-row {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-soft);
    transition: transform .2s ease;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    transform: translateX(4px);
}

.service-row .icon-wrap {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-800);
    font-size: 1.6rem;
}

.service-row:hover .icon-wrap {
    background: var(--gold-500);
    color: #fff;
}

.service-row h4 {
    font-size: 1.08rem;
    margin-bottom: 6px;
}

.service-row p {
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.service-row .service-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy-800);
}

.service-row .service-link i {
    transition: transform .2s ease;
}

.service-row:hover .service-link i {
    transform: translateX(4px);
}

.service-mini-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 16px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .25s ease;
}

.service-mini-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: transparent;
    transform: translateY(-4px);
}

.service-mini-card .icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--bg-warm);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(5, 33, 66, .12);
}

.service-card-media + .icon-wrap {
    margin: -28px 0 14px 16px;
}

.service-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    margin: -16px -16px 0;
    overflow: hidden;
    background: var(--bg-off);
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.service-mini-card:hover .service-card-media img {
    transform: scale(1.04);
}

.service-mini-card h4 {
    margin-bottom: 9px;
}

.service-mini-card h4 a {
    color: var(--navy-900);
    text-decoration: none;
}

.service-mini-card h4 a:hover {
    color: var(--gold-700);
}

.service-mini-card p {
    color: var(--ink-500);
    font-size: .94rem;
    line-height: 1.55;
}

.listing-card-grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.listing-card {
    padding: 22px;
    min-height: 158px;
    overflow: visible;
}

.listing-card .icon-wrap {
    margin: 0 0 16px;
}

.listing-card h4 {
    line-height: 1.35;
}

.listing-card p {
    color: var(--ink-400);
    line-height: 1.5;
}

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process-timeline {
    position: relative;
    padding-left: 0;
}

.process-step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 52px;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--border-soft) 0 6px, transparent 6px 12px);
}

.process-step:last-child::before {
    display: none;
}

.process-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
}

.process-step h5 {
    margin-bottom: 6px;
}

.process-step p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

@media (min-width: 992px) {
    .process-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 40px;
    }

    .process-grid .process-step::before {
        display: none;
    }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.why-item .icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: var(--navy-800);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.why-item h6 {
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   LOCALITIES / ROUTES LINK CLUSTER
   ============================================================ */
.link-pill-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.link-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-soft);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-800);
    background: #fff;
    transition: all .2s ease;
    line-height: 1.35;
}

.link-pill:hover {
    background: var(--navy-800);
    color: #fff;
    border-color: var(--navy-800);
}

.link-pill i {
    color: var(--gold-500);
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
}

.locality-strip-section {
    background: var(--bg-off);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px;
    color: #fff;
    background: linear-gradient(to top, rgba(8, 26, 51, 0.85), transparent);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-filters button {
    border: 1.5px solid var(--border-soft);
    background: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--ink-600);
}

.gallery-filters button.active,
.gallery-filters button:hover {
    background: var(--navy-800);
    color: #fff;
    border-color: var(--navy-800);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 26px;
    height: 100%;
}

.testimonial-stars i {
    color: var(--gold-500);
    font-size: 0.95rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--ink-900);
    margin: 14px 0;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-head);
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy-800);
    margin: 0;
}

.testimonial-meta {
    font-size: 0.78rem;
    color: var(--ink-400);
    margin: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
    background: transparent;
}

.faq-accordion .accordion-button {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--navy-800);
    background: transparent;
    padding: 18px 4px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold-600);
    background: transparent;
}

.faq-accordion .accordion-button::after {
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 0 4px 20px;
    color: var(--ink-600);
}

/* ============================================================
   FINAL CTA STRIP
   ============================================================ */
.final-cta-strip {
    background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
    padding: 50px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-900);
    padding: 54px 0 22px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(150px, 1fr));
    gap: 32px;
    align-items: start;
}

.footer-about-col {
    max-width: 340px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 800;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.footer-brand i {
    color: var(--gold-500);
}

.footer-brand span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-left: 4px;
}

.footer-about {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.footer-contact-list i {
    color: var(--gold-500);
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social a:hover {
    color: var(--navy-900);
    background: var(--gold-500);
    border-color: var(--gold-500);
}

.footer-heading {
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

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

.footer-links-grid {
    columns: 2;
    column-gap: 24px;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.footer-links-inline li {
    margin-bottom: 0;
}

.footer-route-block {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 28px 0 18px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.82rem;
    margin: 0;
}

.footer-credit {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.footer-credit a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

.footer-credit a:hover,
.footer-legal a:hover {
    color: var(--gold-500);
}

@media (max-width: 991px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 24px;
    }

    .footer-about-col {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding-top: 42px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-links-grid {
        columns: 1;
    }

    .footer-links-inline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ============================================================
   MISC PAGE ELEMENTS
   ============================================================ */
.related-block {
    padding: 60px 0;
    border-top: 1px solid var(--border-soft);
}

.info-banner {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 34px;
    border-left: 5px solid var(--gold-500);
}

.content-panel {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.content-panel h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    color: var(--navy-800);
}

.content-panel p {
    margin-bottom: 0;
    color: var(--ink-600);
}

.stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-strip .stat {
    text-align: left;
}

.stat-strip .stat .num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2rem;
    color: var(--navy-800);
}

.stat-strip .stat .label {
    font-size: 0.84rem;
    color: var(--ink-400);
}

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-page .code {
    font-family: var(--font-head);
    font-size: 6rem;
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

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

/* Utility */
.rounded-xl {
    border-radius: var(--radius-lg) !important;
}

.shadow-soft {
    box-shadow: var(--shadow-soft) !important;
}
