/* ============================================================
   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;
}

@media (max-width: 767px) {
    .top-bar .container {
        justify-content: center !important;
        text-align: center;
    }

    .top-bar-left {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .top-bar-right {
        display: none;
    }
}

/* ---------- 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-logo {
    display: block;
    width: 200px;
    height: auto;
}

.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 {
    position: relative;
    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);
    isolation: isolate;
    animation: fab-flash 1.9s ease-in-out infinite;
}

.fab::before {
    content: '';
    position: absolute;
    inset: -7px;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.82);
    animation: fab-ring 1.9s ease-out infinite;
}

.fab i {
    animation: fab-icon-pop 1.9s ease-in-out infinite;
}

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

.fab-call::before {
    background: rgba(11, 36, 71, 0.28);
    border: 1px solid rgba(242, 167, 59, 0.35);
}

.fab-whatsapp {
    background: #25D366;
    animation-delay: .28s;
}

.fab-whatsapp::before {
    background: rgba(37, 211, 102, 0.24);
    border: 1px solid rgba(37, 211, 102, 0.42);
    animation-delay: .28s;
}

.fab-whatsapp i {
    animation-delay: .28s;
}

@keyframes fab-flash {
    0%,
    100% {
        filter: brightness(1);
        transform: translateY(0) scale(1);
    }

    45% {
        filter: brightness(1.22);
        transform: translateY(-1px) scale(1.04);
    }

    58% {
        filter: brightness(1);
        transform: translateY(0) scale(1);
    }
}

@keyframes fab-ring {
    0% {
        opacity: 0.72;
        transform: scale(0.82);
    }

    72%,
    100% {
        opacity: 0;
        transform: scale(1.42);
    }
}

@keyframes fab-icon-pop {
    0%,
    100% {
        transform: scale(1);
    }

    48% {
        transform: scale(1.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fab,
    .fab::before,
    .fab i {
        animation: none;
    }
}

/* ---------- Breadcrumb bar ---------- */
.breadcrumb-bar {
    background: var(--bg-off);
    padding: 8px 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;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.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 {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.08;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    color: #fff;
    margin-bottom: 18px;
}

.hero-title-main,
.hero-title-loc,
.hero-title-accent {
    display: block;
}

.hero-title-loc {
    margin-top: 2px;
}

.hero-title-accent {
    margin-top: 12px;
    color: var(--gold-500);
    font-size: 0.78em;
    line-height: 1.12;
}

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

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

.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;
    justify-content: center;
    gap: 12px;
}

.hero-cta-group .btn {
    margin: 0;
    padding: 10px 22px;
    font-size: 0.95rem;
    min-height: 44px;
}

.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: 170px;
}

.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);
        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%;
        text-align: center;
    }

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

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

    .hero-service-points {
        margin-bottom: 22px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-cta-group {
        max-width: min(380px, calc(100vw - 72px));
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .hero-form-wrap {
        margin-top: 22px;
        margin-bottom: 10px;
    }

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

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

    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050;
        transition: transform 0.25s ease;
    }

    .top-bar.is-hidden {
        transform: translateY(-100%);
    }

    .site-header {
        position: fixed;
        top: var(--mobile-topbar-height, 0px);
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1060;
        box-shadow: 0 8px 24px rgba(11, 36, 71, 0.12);
        transition: top 0.25s ease;
    }

    .site-header.is-topbar-hidden {
        top: 0;
    }

    main {
        padding-top: calc(var(--mobile-topbar-height, 0px) + var(--mobile-header-height, 0px));
    }

    body.is-topbar-hidden main {
        padding-top: var(--mobile-header-height, 0px);
    }

    .navbar {
        padding: 10px 0;
    }

    .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: static;
        z-index: 1;
        margin-left: auto;
        background: #fff;
        box-shadow: 0 8px 22px rgba(11, 36, 71, 0.12);
    }

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

    .brand-logo {
        width: 175px;
    }

    .hero-slide {
        min-height: 390px;
        align-items: center;
    }

    .hero-slider .carousel-item {
        transition-duration: .32s;
    }

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

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

    .hero-badge {
        max-width: 100%;
        font-size: 0.7rem;
        line-height: 1.25;
        padding: 6px 10px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: 1.46rem;
        line-height: 1.12;
        max-width: 315px;
        margin-bottom: 0;
    }

    .hero-title-accent {
        margin-top: 8px;
        font-size: 0.76em;
        line-height: 1.2;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-service-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        max-width: 310px;
        margin: 15px auto 0;
    }

    .hero-service-points li {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
        padding: 7px 8px;
        font-size: 0.7rem;
        line-height: 1.25;
        background: rgba(8, 26, 51, 0.54);
        border-color: rgba(242, 167, 59, 0.28);
        backdrop-filter: blur(4px);
    }

    .hero-service-points li:last-child {
        grid-column: 1 / -1;
        max-width: 180px;
        margin: 0 auto;
    }

    .hero-service-points i {
        font-size: 0.78rem;
    }

    .hero-cta-group {
        max-width: min(180px, calc(100vw - 72px));
        margin-top: 14px;
    }

    .hero-cta-group .btn {
        min-height: 42px;
        padding: 9px 16px;
        font-size: 0.9rem;
    }

    .hero-cta-group .btn-outline-light {
        display: none;
    }

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

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

    .gallery-item {
        margin-bottom: 14px;
        border-radius: 10px;
    }

    .gallery-item img {
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

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

    .hero-quote-card {
        box-shadow: 0 14px 34px rgba(11, 36, 71, 0.12);
    }

    .hero-quote-card h3,
    .page-top-form h3 {
        font-size: 1.08rem;
        line-height: 1.28;
    }

    .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;
}

.contact-layout {
    align-items: flex-start;
}

.contact-quote-form {
    padding: 30px;
    border: 1px solid rgba(231, 233, 238, 0.9);
    border-top: 5px solid var(--gold-500);
    box-shadow: 0 18px 45px rgba(11, 36, 71, 0.12);
}

.contact-form-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-form-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    background: var(--gold-500);
    box-shadow: 0 10px 24px rgba(242, 167, 59, 0.22);
}

.contact-form-heading h3 {
    margin-bottom: 4px;
    font-size: 1.35rem;
}

.contact-form-heading p {
    margin: 0;
    color: var(--ink-400);
    font-size: 0.92rem;
}

.contact-quote-form .enquiry-form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.contact-quote-form .enquiry-form .row>.col-md-6,
.contact-quote-form .enquiry-form .captcha-field,
.contact-quote-form .enquiry-form .form-submit-col {
    width: 50%;
}

.contact-quote-form .enquiry-form .form-control,
.contact-quote-form .enquiry-form .form-select {
    min-height: 46px;
    padding: 10px 13px;
}

.contact-quote-form .captcha-question {
    min-height: 46px;
    padding: 10px 12px;
}

.contact-quote-form .captcha-control .form-control {
    min-width: 112px;
}

.contact-quote-form .enquiry-form .form-submit-col {
    align-items: end;
}

.contact-quote-form .enquiry-form .form-submit-col .btn {
    min-height: 46px;
    padding: 11px 18px;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .contact-quote-form {
        padding: 22px 18px;
    }

    .contact-form-heading {
        gap: 12px;
        margin-bottom: 18px;
    }

    .contact-form-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-quote-form .enquiry-form .row>.col-md-6,
    .contact-quote-form .enquiry-form .captcha-field,
    .contact-quote-form .enquiry-form .form-submit-col {
        width: 100%;
    }

    .contact-quote-form .captcha-control {
        align-items: stretch;
    }

    .contact-quote-form .captcha-question {
        display: inline-flex;
        align-items: center;
    }

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

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

.page-hero--with-form {
    padding-bottom: 130px;
}

.page-hero--with-form + .container .page-top-form {
    margin-top: -70px;
}

.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%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    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 img {
        min-height: 0;
        object-position: center top;
    }

    .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;
    font-weight: 800;
}

.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-section {
    scroll-margin-top: 120px;
    padding-top: 86px;
}

.process-section .section-lead {
    margin-left: auto;
    margin-right: auto;
}

.process-timeline {
    position: relative;
    padding-left: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 18px;
    align-items: center;
    position: relative;
    padding: 16px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

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

.process-step:hover {
    border-color: rgba(242, 167, 59, 0.45);
    box-shadow: var(--shadow-strong);
    transform: translateY(-3px);
}

.process-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    background: var(--bg-off);
}

.process-num {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    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;
    box-shadow: 0 8px 18px rgba(8, 26, 51, 0.18);
}

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

.process-step:hover .process-image img {
    transform: scale(1.04);
}

.process-step h3 {
    margin-bottom: 6px;
    font-size: 1.08rem;
}

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

@media (min-width: 992px) {
    .process-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 18px;
        align-items: stretch;
        margin-top: 28px;
    }

    .process-grid::before {
        content: '';
        position: absolute;
        left: 8%;
        right: 8%;
        top: -15px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(242, 167, 59, 0.55), transparent);
    }

    .process-grid .process-step {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 12px 10px 13px;
        min-width: 0;
        overflow: visible;
    }

    .process-grid .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: -21px;
        right: -14px;
        z-index: 5;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gold-500);
        box-shadow: 0 0 0 5px rgba(242, 167, 59, 0.12);
    }

    .process-grid .process-image {
        width: 100%;
        border-radius: 8px;
    }

    .process-grid .process-num {
        top: 8px;
        left: 8px;
        width: 34px;
        height: 34px;
        min-width: 34px;
        border: 2px solid #fff;
        font-size: 0.82rem;
    }

    .process-grid .process-step h3 {
        color: var(--navy-900);
        font-size: 0.9rem;
        line-height: 1.3;
        margin: 10px 0 5px;
    }

    .process-grid .process-step p {
        font-size: 0.76rem;
        line-height: 1.45;
    }
}

@media (max-width: 575px) {
    .process-section {
        padding-top: 48px;
    }

    .process-grid {
        display: grid;
        gap: 14px;
    }

    .process-step {
        grid-template-columns: 88px 1fr;
        gap: 12px;
        padding: 10px;
    }

    .process-num {
        top: 6px;
        left: 6px;
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.82rem;
    }

    .process-step h3 {
        font-size: 0.98rem;
        margin-bottom: 4px;
    }

    .process-step p {
        font-size: 0.82rem;
        line-height: 1.45;
    }
}

/* ============================================================
   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;
    cursor: zoom-in;
    background: var(--bg-off);
}

.gallery-item img {
    width: 100%;
    transition: transform .4s ease;
    display: block;
}

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

.gallery-caption {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(5, 16, 31, 0.92);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__image {
    max-width: min(1100px, 100%);
    max-height: calc(100vh - 96px);
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__button {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.25rem;
    transition: background .2s ease, transform .2s ease;
}

.gallery-lightbox__button:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-1px);
}

.gallery-lightbox__close {
    top: 20px;
    right: 20px;
}

.gallery-lightbox__prev {
    left: 20px;
}

.gallery-lightbox__next {
    right: 20px;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox__image {
        max-height: calc(100vh - 132px);
    }

    .gallery-lightbox__button {
        width: 42px;
        height: 42px;
    }

    .gallery-lightbox__prev {
        left: 14px;
        bottom: 22px;
    }

    .gallery-lightbox__next {
        right: 14px;
        bottom: 22px;
    }
}

.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;
}

/* ============================================================
   BUSINESS INFORMATION
   ============================================================ */
.business-info-section {
    background: #fff;
}

.business-info-shell {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.business-info-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(11, 36, 71, 0.96), rgba(18, 59, 107, 0.92)),
        var(--navy-800);
}

.business-info-main h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.business-info-main p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 18px;
}

.business-info-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    background: var(--gold-500);
    font-size: 1.55rem;
    box-shadow: 0 14px 30px rgba(242, 167, 59, 0.24);
}

.business-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.business-info-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.86rem;
    font-weight: 600;
}

.business-info-tags i {
    color: var(--gold-500);
}

.business-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--border-soft);
}

.business-info-item {
    min-height: 156px;
    padding: 22px;
    background: #fff;
}

.business-info-item > i {
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-600);
    background: var(--bg-warm);
    font-size: 1.1rem;
}

.business-info-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--ink-400);
    font-size: 0.78rem;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.business-info-item strong {
    display: block;
    color: var(--navy-800);
    font-size: 0.95rem;
    line-height: 1.55;
}

.business-info-item a {
    overflow-wrap: anywhere;
}

@media (max-width: 1199px) {
    .business-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .business-info-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .business-info-section .row.mb-4 {
        margin-bottom: 18px !important;
    }

    .business-info-section .section-title {
        font-size: 1.55rem;
        margin-bottom: 8px;
    }

    .business-info-section .section-lead {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .business-info-section .btn-cta {
        min-height: 42px;
        padding: 9px 18px;
        font-size: 0.9rem;
    }

    .business-info-shell {
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(11, 36, 71, 0.08);
    }

    .business-info-main {
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 16px;
    }

    .business-info-icon {
        width: 42px;
        height: 42px;
        font-size: 1.16rem;
        border-radius: 10px;
    }

    .business-info-main h3 {
        font-size: 1.05rem;
        margin-bottom: 5px;
    }

    .business-info-main p {
        font-size: 0.82rem;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .business-info-tags {
        gap: 6px;
    }

    .business-info-tags span {
        padding: 5px 8px;
        gap: 5px;
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .business-info-grid {
        gap: 8px;
        padding: 8px;
        background: var(--bg-off);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-info-item {
        min-height: 118px;
        padding: 13px 11px;
        border: 1px solid var(--border-soft);
        border-radius: 10px;
    }

    .business-info-item > i {
        width: 34px;
        height: 34px;
        margin-bottom: 9px;
        border-radius: 10px;
        font-size: 0.96rem;
    }

    .business-info-item span {
        margin-bottom: 3px;
        font-size: 0.66rem;
        line-height: 1.2;
    }

    .business-info-item strong {
        font-size: 0.79rem;
        line-height: 1.35;
    }

    .business-info-item:nth-child(n+5) {
        grid-column: 1 / -1;
        min-height: 0;
        display: grid;
        grid-template-columns: 34px 1fr;
        column-gap: 10px;
        align-items: center;
        padding: 12px;
    }

    .business-info-item:nth-child(n+5) > i {
        grid-row: span 2;
        margin-bottom: 0;
    }

    .business-info-item:nth-child(3) strong,
    .business-info-item:nth-child(7) strong {
        font-size: 0.86rem;
    }
}

/* ============================================================
   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);
}

/* ============================================================
   MOVING GUIDE SECTION
   ============================================================ */
.move-guide-section {
    background:
        linear-gradient(180deg, #fff 0%, var(--bg-off) 54%, #fff 100%);
}

.move-guide-intro {
    position: sticky;
    top: 110px;
}

.move-guide-highlight {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(242, 167, 59, 0.28);
    border-radius: var(--radius-sm);
    background: var(--bg-warm);
    box-shadow: var(--shadow-soft);
}

.move-guide-highlight i {
    color: var(--gold-600);
    font-size: 1.45rem;
    line-height: 1;
}

.move-guide-highlight strong,
.move-guide-highlight span {
    display: block;
}

.move-guide-highlight strong {
    color: var(--navy-800);
    font-family: var(--font-head);
    margin-bottom: 4px;
}

.move-guide-highlight span {
    color: var(--ink-600);
    font-size: 0.94rem;
}

.move-guide-highlight-image {
    margin-top: 18px;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    background: #fff;
    height: 210px;
}

.move-guide-highlight-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.move-guide-panel,
.move-guide-quote-box {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

.move-guide-panel {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border-soft);
    background: #fff;
}

.move-guide-panel h3,
.move-guide-quote-box h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.move-guide-checks {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.move-guide-checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-600);
}

.move-guide-checks i {
    color: var(--success);
    margin-top: 4px;
}

.move-guide-quote-box {
    height: 100%;
    padding: 30px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.move-guide-quote-box h3,
.move-guide-quote-box p {
    color: #fff;
}

.move-guide-quote-box p {
    color: rgba(255, 255, 255, 0.72);
}

.quote-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.quote-detail-grid span {
    min-height: 78px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
}

.quote-detail-grid strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
}

.move-guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.move-guide-actions .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(242, 167, 59, 0.08), transparent 26%),
        linear-gradient(180deg, #fafafa 0%, #f4f1ef 100%);
    padding-top: 18px;
    padding-bottom: 18px;
}

.pricing-layout {
    align-items: stretch;
    --bs-gutter-x: 24px;
}

.pricing-panel {
    height: 100%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: none;
    border: 1px solid rgba(23, 38, 63, 0.05);
}

.local-pricing-panel {
    padding: 12px 0 0;
    border: 0;
    background: transparent;
}

.pricing-header-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 20px;
}

.pricing-pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #f29a10;
    color: #ef9708;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(11, 36, 71, 0.08);
}

.pricing-title {
    margin: 0;
    font-size: clamp(1.75rem, 2.7vw, 2.65rem);
    line-height: 1.02;
    font-family: var(--font-head);
    font-weight: 900;
    letter-spacing: 0;
    color: var(--navy-900);
}

.pricing-title span {
    display: block;
    margin-top: 4px;
    font-size: 0.5em;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px 18px;
}

.price-card {
    position: relative;
    grid-column: span 2;
    padding: 0 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(25, 34, 50, 0.05);
    background: rgba(255, 255, 255, 0.76);
    overflow: visible;
    box-shadow: 0 18px 44px rgba(8, 26, 51, 0.06);
}

.price-card:nth-child(n + 4) {
    grid-column: span 3;
}

.price-card-media {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 12px;
    border-bottom: 1px solid rgba(25, 34, 50, 0.06);
    background: #e8e0d5;
}

.price-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: -17px 0 12px 20px;
    padding: 6px 13px;
    border-radius: 4px;
    background: linear-gradient(135deg, #ffac12, #ee8d00);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: 0 7px 16px rgba(238, 141, 0, 0.26);
}

.price-header {
    margin: 0 20px 8px;
}

.price-header strong {
    color: var(--navy-900);
    display: block;
    font-size: clamp(1.08rem, 1.28vw, 1.32rem);
    font-family: var(--font-head);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
    white-space: nowrap;
}

.price-card p {
    margin: 0 20px 16px;
    color: var(--navy-900);
    line-height: 1.5;
    font-size: 0.9rem;
    min-height: 48px;
}

.price-divider {
    height: 2px;
    width: 48px;
    margin: 0 auto;
    background: var(--navy-900);
    opacity: 0.85;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 22px;
    padding: 0;
    border-top: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
    color: var(--navy-900);
    min-height: 64px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: var(--navy-900);
    font-size: 1.75rem;
    line-height: 1;
    flex: 0 0 auto;
}

.feature-item > div {
    min-width: 0;
}

.feature-item strong {
    display: block;
    margin: 0 0 3px;
    color: var(--navy-900);
    font-size: 0.78rem;
    line-height: 1.25;
    font-family: var(--font-head);
    font-weight: 900;
    text-transform: uppercase;
}

.feature-item span:not(.feature-icon) {
    display: block;
    color: var(--navy-900);
    font-size: 0.76rem;
    line-height: 1.35;
    font-weight: 500;
}

.accent-panel {
    background:
        radial-gradient(circle at 80% 0%, rgba(18, 59, 107, 0.75), transparent 42%),
        linear-gradient(180deg, #06182f 0%, #0a2748 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 32px 24px 16px;
    color: #fff;
    min-height: 100%;
    box-shadow: 0 18px 50px rgba(8, 26, 51, 0.18);
}

.accent-panel .pricing-header {
    margin-bottom: 22px;
}

.accent-panel .pricing-header h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
    line-height: 1.1;
    font-family: var(--font-head);
    font-weight: 900;
    letter-spacing: 0;
}

.accent-panel .pricing-header::after {
    content: '';
    display: block;
    width: 58px;
    height: 3px;
    margin-top: 14px;
    background: #f29a10;
}

.extra-charge-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}

.extra-charge-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.9);
}

.charge-item-main {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    flex: 1;
}

.charge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy-900);
    font-size: 1.18rem;
    flex-shrink: 0;
}

.extra-charge-list span {
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 700;
}

.extra-charge-list strong {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    flex: 0 0 118px;
}

.extra-charge-visual {
    margin-top: 16px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    height: 210px;
}

.extra-charge-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

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

    .price-card,
    .price-card:nth-child(n + 4) {
        grid-column: auto;
    }

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

    .move-guide-intro {
        position: static;
    }
}

@media (max-width: 767px) {
    .pricing-layout {
        display: block;
    }

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

    .pricing-header-top {
        align-items: flex-start;
        gap: 12px;
    }

    .pricing-pin {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .pricing-title {
        font-size: 1.55rem;
    }

    .pricing-title span {
        letter-spacing: 0.06em;
    }

    .price-card-media {
        height: 210px;
    }

    .price-card p {
        min-height: 0;
    }

    .pricing-features {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .extra-charge-list li {
        align-items: center;
    }

    .extra-charge-list strong {
        white-space: normal;
        text-align: right;
        font-size: 1rem;
        flex-basis: 120px;
    }

    .extra-charge-visual {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .move-guide-panel,
    .move-guide-quote-box {
        padding: 22px;
    }

    .quote-detail-grid span {
        min-height: 0;
    }
}

/* ============================================================
   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-logo {
    display: block;
    width: 220px;
    height: auto;
    padding: 5px 8px;
    background: #fff;
    border-radius: 6px;
}

.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;
    }

    .final-cta-strip .btn {
        width: auto;
        min-height: 40px;
        padding: 9px 18px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .final-cta-strip .btn:last-child {
        margin-bottom: 0;
    }

    .final-cta-strip .btn-cta {
        max-width: 230px;
        line-height: 1.25;
    }

    .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;
}
