:root {
    --navy: #101D33;
    /* --gold: #3898f4; */
    --orang: #ff7a00;
    --gold-light: #67b1f8;
    --light-bg: #F4F7F9;
    --white: #ffffff;
    --border: #e0e6ed;
    --text-muted: #6b7a8d;
    --success: #27ae60;
    --error: #e74c3c;
    --gold: #0082ff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--navy);
}

.logo img {
    max-height: 50px;
}

.logo i {
    font-size: 2.5rem;
    margin-right: 10px;
    color: var(--gold);
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-link {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(165deg, var(--gold) 65%, var(--white) 65.1%);
    padding: 50px 0;
    color: var(--white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-list {
    list-style: none;
    margin-bottom: 30px;
}

.hero-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hero-list i {
    color: var(--white);
    margin-right: 10px;
}
a.btn-primary.btn-fast-order {
    padding: 0 31px;
    font-size: 0.8rem;
    height: 36px;
    display: flex;
    align-items: center;
    border-radius: 21px;
    border: 2px var(--orang) solid;
    background: #fff;
    background-color: #fff;
    color: var(--orang);
}
.btn-primary {
    background: var(--orang);
    color: white;
    padding: 10px 45px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 370px;
    min-width: 370px;
}

.service-card-title {
    min-height: 390px;
    background-image: url('img/block-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    text-align: left;
    background-position-y: bottom;
}
.service-card-title-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 110px;
    justify-content: space-between;
    position: relative;
}
.service-card-title-content p{
    position: relative;
    display: block;
    z-index: 1;
    width: 100%;
}
.hero-image {
    position: relative;
}
.hero-image::before{ 
 content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: white;
    /* background-image: url('img/block-1.png'); */
    background-size: cover;
    background-position: center;
    filter: blur(125px);
    z-index: 0;   
}
.service-card-title-content p::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: white;
    /* background-image: url('img/block-1.png'); */
    background-size: cover;
    background-position: center;
    filter: blur(25px);
    z-index: -1;
}

.service-card-content {
    padding: 25px 25px;
}

.container.services-grid .service-card:nth-of-type(2) .service-card-title {
    background-image: url('img/block-3.png');
}

.container.services-grid .service-card:nth-of-type(3) .service-card-title {
    background-image: url('img/block-2.png');
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    color: #fff;
    width: 100%;
    padding: 15px 15px;
}

.service-card img {
    width: 100%;
    border-radius: 5px;
    margin: 20px 0;
}

.rubbish-table {
    margin: 20px 0;
    text-align: left;
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
/* .btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    background-color: var(--white);
    margin: 15px 0 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
} */
.btn-outline {
    border: 2px solid var(--orang);
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    background-color: var(--orang);
    margin: 15px 0 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

.btn-outline:hover {
    box-shadow: rgb(255 122 0 / 45%) 0px 5px 10px;
    transform: scale(1.015);
    /* color: #ffffff;
    background-color: var(--gold); */
}

.btn-primary:hover,
.buttons-order:hover{    
    box-shadow: rgb(255 122 0 / 45%) 0px 5px 10px;
    transform: scale(1.015);
}

.why-us,
.order-block {
    margin-bottom: 65px;
}

.why-us .container:nth-of-type(1),
.order-block .container:nth-of-type(1) {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.why-us .container:nth-of-type(1) h2,
.order-block .container:nth-of-type(1) h2 {
    font-size: 2.5rem;
}

.why-us .container:nth-of-type(2),
.order-block .container:nth-of-type(2) {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.benefits,
.buttons-order {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 25px;
    border-radius: 10px;
    width: calc(100vw / 5.5);
    margin-bottom: 25px;
}

.benefits {
    min-width: 270px;
}

.buttons-order {
    box-shadow: none;
    border: var(--orang) solid 2px;
    border-radius: 40px;
    padding: 15px 30px;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    background-color: var(--orang);
}


span.order-icon {
    margin-right: 20px;
    display: none;
}

.buttons-order img {
    max-width: 30px;
    display: flex;
    align-items: center;

}

.fa-solid,
.fa-check-circle {
    color: var(--gold);
    font-size: 30px;
    margin-right: 20px;
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 30px 0 15px;
    margin-top: 50px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reserved {
    display: flex;
    justify-content: center;
    width: 100%;
    /* padding-top: 10px; */
    font-size: 12px;
}

.reserved a {
    color: #ffffff;
    text-align: left;
}

.social img {
    max-width: 45px;
}

header .social img {
    max-width: 35px;
}

.social a {
    margin-right: 10px;
    cursor: pointer;
}

.social a:last-of-type {
    margin-right: 0;
}
@media (min-width: 1240px) and (max-width: 1700px) {
    .benefits, .buttons-order {
      width: calc(100vw / 4.5);
    }
}
/* Responsive */
@media (max-width: 1240px) {
    .benefits, .buttons-order {
      width: calc(100vw / 3.5);    
    }
}
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        background: var(--navy);
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    nav {
        display: none;
    }
    .benefits, .buttons-order {
      width: calc(100vw / 3.5);    
    }
    .benefits{
      width: calc(100vw / 2.5);    
    }
}

@media (max-width: 667px) {
    .header-flex {
        flex-wrap: wrap;
    }
    .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}
.benefits, .buttons-order {
    flex-wrap: wrap;
    width: 100%;   
}
    header .social {
        display: none;
    }

    .phone-link {
        font-size: 14px;
    }

    .benefits {
        width: 100%;
    }

    footer .container {
        justify-content: center;
    }

    footer .container {
        flex-wrap: wrap;
    }

    footer .container .logo {
        width: 100%;
        margin-bottom: 25px;
        justify-content: center;

    }

    footer .container .social {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* ===== BOOKING PAGE STYLES ===== */

.booking-page {
    background: var(--light-bg);
    min-height: calc(100vh - 80px);
    padding: 30px 0 80px;
}

.booking-header {
    text-align: center;
    margin-bottom: 10px;
}

.booking-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0;
}

.booking-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== STEP INDICATOR ===== */
.steps-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
  
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.3s;
    margin-bottom: 8px;
}

.step-item.completed .step-circle {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step-item.active .step-circle {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 154, 76, 0.2);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.step-item.active .step-label {
    color: var(--gold);
}

.step-item.completed .step-label {
    color: var(--navy);
}

/* ===== FORM CARD ===== */
.form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

.step-panel h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-panel .step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* ===== VAN SELECTOR ===== */
.van-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 50px;
}

.van-option {
    border: 2px solid var(--border);
    border-radius: 4px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    position: relative;
}

.van-option:hover:not(.disabled) {
    border-color: var(--orang);
}

.van-option.selected {
    border-color: var(--orang);
    /* background: rgb(33 150 243 / 17%); */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 13px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.van-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 12px;
    color: var(--orang);
    font-size: 0.85rem;
}

.van-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.van-option .icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.van-option h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 4px;
    text-transform: capitalize;
}

.van-option .van-rate {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.van-option .van-rate.no-rate {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== MOVER SELECTOR (Delivery Only / 1 / 2 / 3 Movers) ===== */
.mover-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-bottom: 50px;
}

.mover-option {
    border: 2px solid var(--border);
    border-radius: 4px;
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 65px;
}

.mover-option:hover {
    border-color: var(--orang);
}

.mover-option.selected {
    background: var(--orang);
    border-color: var(--orang);
}

.mover-option h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    margin: 0;
}

.mover-option.selected h4 {
    color: var(--white);
}

.mover-option .mover-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.mover-option.selected .mover-sub {
    color: rgba(255,255,255,0.85);
}

.delivery-only-note {
    display: none;
    align-items: flex-start;
    gap: 10px;
    background: #eaf3ff;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: #274a73;
    line-height: 1.5;
}

.delivery-only-note.visible {
    display: flex;
}

.delivery-only-note i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===== ADDRESS SECTION ===== */
.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.address-block {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    background: rgb(103 177 248 / 10%);
}

.address-block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.address-block-title h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.floor-access {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    margin-top: 16px;
    /* background: #fafbfc;
    background: rgb(103 177 248 / 10%); */
}

.floor-access h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 14px;
}

/* ===== FORM FIELDS ===== */
.field-group {
    margin-bottom: 16px;
}

.field-group label {
    display: block;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: #333;
    transition: border-color 0.2s;
    background: var(--white);
    outline: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--gold);
}

.field-group input::placeholder {
    color: #aab;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
    min-width: 18px;
}

.checkbox-group span {
    font-size: 0.88rem;
    color: #444;
}

.lift-note {
    font-size: 0.78rem;
    color: var(--success);
    display: none;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.lift-note.visible {
    display: flex;
}

/* Search input */
.search-input-wrap {
    position: relative;
    margin-bottom: 8px;
}

.search-input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.search-input-wrap input {
    padding-left: 34px;
    padding-right: 56px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-input-wrap input:focus {
    border-color: var(--gold);
}

.or-divider {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 12px 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.tip-box {
    background: #f0f7ff;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.tip-box i {
    color: var(--gold);
}

/* ===== DATE PICKER ===== */
.date-time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

input[type="date"],
input[type="time"] {
    appearance: none;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.time-slot {
    padding: 8px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    text-align: center;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--navy);
    font-weight: 600;
}

.time-slot:hover {
    border-color: var(--orang);
}

.time-slot.selected {
    border-color: var(--orang);
    background: rgba(103 177 248 / 10%);
    color: var(--orang);
}

/* ===== DURATION CONTROL (step 3) ===== */
.duration-control {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 22px;
}

.duration-control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
}

.duration-control-header span:last-child {
    color: var(--gold);
}

.duration-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--gold) 0%, var(--gold) 0%, var(--border) 0%, var(--border) 100%);
    outline: none;
    cursor: pointer;
    margin: 10px 0 6px;
}

.duration-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    border: 3px solid var(--white);
}

.duration-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    border: 3px solid var(--white);
}

.duration-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.duration-note {
    display: none;
    align-items: flex-start;
    gap: 8px;
    background: #eaf3ff;
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 12px;
    font-size: 0.78rem;
    color: #274a73;
}

.duration-note i {
    color: var(--gold);
    margin-top: 1px;
    flex-shrink: 0;
}

.duration-distance-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ===== ESTIMATE BOX ===== */
.estimate-box {
    color: #030303;
    border-radius: 10px;
    margin-bottom: 20px;
}

.estimate-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.estimate-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(29 27 27 / 13%);
    font-weight: 600;
    min-height: 50px;
    align-items: start;
}

.estimate-row small {
    display: block;
    color: #030303;
    font-size: 0.8rem;
    margin-top: 2px;
    font-weight: 500;
}

.estimate-row:last-child {
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    font-weight: 700;
}

.estimate-row span:last-child {
    color: var(--orang);
    font-size: 0.9rem;
}
.estimate-row.total-price span:last-child{
font-size: 1.1rem;
}

.estimate-loading,
.estimate-error {
    text-align: center;
    padding: 30px 10px;
    color: var(--text-muted);
}

.estimate-error {
    color: var(--error);
}
.additional-charges {
    font-size: 0.88rem;
    background:#fffbf2;
    border:1.5px solid var(--gold);
    border-radius:8px;
    padding:16px;
    margin-bottom:24px;
}
.additional-charges ul {
    margin: 10px 30px;
    font-size: 0.88rem;
}
/* ===== REVIEW ===== */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.review-block {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
}

.review-block h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    margin-bottom: 10px;
}

.review-block p {
    font-size: 0.88rem;
    color: #333;
    margin-bottom: 6px;
}

.review-block p strong {
    color: var(--navy);
}

.terms-check {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

/* ===== NAVIGATION BUTTONS ===== */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-back {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-next {
    background: var(--orang);
    border: none;
    color: var(--white);
    padding: 13px 32px;
    border-radius: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-next:hover {
    box-shadow: rgb(255 122 0 / 45%) 0px 5px 10px;
    transform: scale(1.015);
}

.btn-submit {
    background: var(--success);
    border: none;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: #1a2d4e;
}

/* ===== AUTOCOMPLETE ===== */
.autocomplete-wrap {
    position: relative;
    margin-bottom: 4px;
}

.ac-clear {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: none;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 50%;
    transition: color 0.15s;
}

.ac-clear:hover {
    color: var(--error);
}

.ac-clear.visible {
    display: block;
}

.ac-confirmed {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success);
    font-size: 1rem;
    display: none;
}

.ac-confirmed.visible {
    display: block;
}

.ac-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}

.ac-dropdown.open {
    display: block;
}

.ac-item {
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: background 0.15s;
}

.ac-item:last-child {
    border-bottom: none;
}

.ac-item:hover,
.ac-item.highlighted {
    background: #fff8ee;
}

.ac-item i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.ac-item .ac-main {
    font-weight: 600;
    color: var(--navy);
}

.ac-item .ac-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.ac-loading {
    padding: 12px 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

/* Manual fields now ALWAYS stay visible & get filled in from autocomplete — never hidden */
.address-block.is-valid .search-input-wrap input {
    border-color: var(--success);
}

.address-block.is-error .search-input-wrap input,
.address-block.is-error input[id$="Postcode"] {
    border-color: var(--error);
}

/* ===== VALIDATION ERROR ===== */
.field-error {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 8px;
    display: none;
    align-items: center;
    gap: 6px;
}

.field-error::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.field-error.visible {
    display: flex;
}

.field-group.has-error input,
.field-group.has-error select {
    border-color: var(--error);
}

.field-group.has-error label {
    color: var(--error);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .form-card {
        padding: 24px 20px;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .date-time-grid {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .field-row,
    .field-row-3 {
        grid-template-columns: 1fr;
    }

    .booking-header h1 {
        font-size: 1.2rem;
    }
.booking-header p {
    color: var(--text-muted);
    font-size: 0.88rem;
}
    .steps-wrapper {
        padding: 20px 15px;
        left: 0;
    }
.booking-header {
  
    padding: 12px 0;
}
    .step-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .van-options {
        grid-template-columns: 1fr 1fr;
    }
    .btn-submit {
    background: var(--success);
    padding: 14px 14px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

}

.van-option .icon {
    width: 100%;
    /* або фіксована ширина, наприклад 120px */
    height: 100px;
    /* фіксована висота для вирівнювання */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.van-option .van-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Картинка масштабується без спотворень та обрізань */
}

  .success-page {
            background: var(--light-bg);
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
        }

        .success-card {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.1);
            padding: 60px 50px;
            text-align: center;
            max-width: 560px;
            width: 100%;
            animation: fadeUp 0.5s ease both;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .success-icon {
            width: 90px;
            height: 90px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            font-size: 2.2rem;
            color: var(--white);
            box-shadow: 0 0 0 12px rgba(39,174,96,0.12);
            animation: popIn 0.5s 0.3s ease both;
        }

        @keyframes popIn {
            from { transform: scale(0.6); opacity: 0; }
            to   { transform: scale(1); opacity: 1; }
        }

        .success-card h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.9rem;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .success-card .subtitle {
            color: #6b7a8d;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .booking-ref-box {
            background: var(--light-bg);
            border: 2px dashed var(--gold);
            border-radius: 10px;
            padding: 18px 24px;
            margin-bottom: 32px;
            display: inline-block;
            width: 100%;
        }

        .booking-ref-box .ref-label {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6b7a8d;
            margin-bottom: 6px;
        }

        .booking-ref-box .ref-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: 2px;
        }

        .what-next {
            text-align: left;
            background: #f8fafc;
            border-radius: 10px;
            padding: 20px 24px;
            margin-bottom: 32px;
        }

        .what-next h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: var(--navy);
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .what-next-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .what-next-item:last-child { margin-bottom: 0; }

        .step-dot {
            width: 26px;
            height: 26px;
            min-width: 26px;
            border-radius: 50%;
            background: var(--gold);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
        }

        .what-next-item p {
            font-size: 0.85rem;
            color: #444;
            line-height: 1.5;
            padding-top: 3px;
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-call {
            background: var(--gold);
            color: white;
            padding: 13px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s;
        }

        .btn-call:hover { background: #b88640; }

        .btn-home {
            background: transparent;
            color: var(--navy);
            padding: 13px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            border: 2px solid var(--navy);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }

        .btn-home:hover { background: var(--navy); color: white; }

        @media (max-width: 480px) {
            .success-card { padding: 40px 24px; }
            .success-card h1 { font-size: 1.5rem; }
            .cta-buttons { flex-direction: column; }
            .btn-call, .btn-home { justify-content: center; }
        }
