/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}




/* --- Main Header / Navbar --- */

/* --- Navbar Alignment & Styling --- */

:root {
    --primary-yellow: #FFC107;
    --dark-bg: rgba(0, 0, 0, 0.9);
    --text-white: #ffffff;
}

/* Top Bar Styling */
.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 15px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.top-left span {
    margin-right: 20px;
    opacity: 0.9;
    position: relative;
}

.top-left i {
    color: #f1b400;
    margin-right: 5px;
}

.top-left a {
    color: #ffffff;
    opacity: 0.8;
}


.top-left span::before {
    content: "";
    height: 55px;
    width: 1px;
    background-color: rgba(0, 0, 0, .1);
    position: absolute;
    right: -15px;
    display: none;
}

.top-right a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    opacity: 0.8;
}

/* Main Header */
.site-header {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 0;
    position: relative;
}

.brand-logo img {
    height: 50px;
    display: block;
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
    position: relative;
    padding: 10px 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #f1b400;
}

.nav-menu li a i {
    font-size: 10px;
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.dropdown-trigger:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    padding: 8px 20px;
    margin: 0;
}

.dropdown-content li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    align-items: center;
    color: white;
}

.call-icon {
    background: #f1b400;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin-right: 12px;
    font-size: 18px;
}

.call-text span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.call-text strong {
    font-size: 18px;
    white-space: nowrap;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* --- Responsive Adjustments (The Fix) --- */

/* 1. Desktop Fix: Ensure menu is visible on big screens */
@media (min-width: 993px) {
    .main-navigation {
        display: block !important;
    }

    .mobile-toggle {
        display: none !important;
    }
}

/* 2. Mobile Fix: Styles for screen sizes 992px and below */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .site-header {
        position: relative;
    }

    .header-container {
        padding: 10px 15px;
    }

    .brand-logo img {
        height: 35px;
    }

    .contact-info {
        margin-left: auto;
        margin-right: 15px;
    }

    .call-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-right: 8px;
    }

    .call-text span {
        font-size: 10px;
    }

    .call-text strong {
        font-size: 14px;
    }

    .mobile-toggle {
        display: block !important;
    }

    /* Mobile Navigation Box Hidden by Default */
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111 !important;
        padding: 20px 0;
        z-index: 9999;
        border-top: 2px solid #f1b400;
    }

    /* Navigation List inside Mobile Menu */
    .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        padding: 0 20px;
    }

    /* List Items visibility */
    .nav-menu li {
        margin: 10px 0 !important;
        width: 100%;
        display: block !important;
        padding: 0;
    }

    .nav-menu li a {
        color: #ffffff !important;
        font-size: 16px !important;
        display: block !important;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Dropdown inside Mobile */
    .dropdown-content {
        position: static !important;
        display: none;
        background: transparent !important;
        box-shadow: none !important;
        padding-left: 20px !important;
    }

    /* Triggered by active class in JS */
    .main-navigation.active {
        display: block !important;
    }
}


/* --- Navbar end --- */

/* Hero Section */
.hero-viewport {
    padding: 150px 0;
    background: url('../img/water-home-slider-img-1-2.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-center-content {
    position: relative;
    z-index: 2;
    margin-bottom: 150px;
    /* Push text up from the bottom bar */
}

.hero-main-title {
    color: white;
    font-size: 57px;
    /* Large and Bold */
    line-height: 0.95;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 30px;
}

.hero-main-discription {
    text-align: left;
    line-height: 26px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    margin-top: 20px;
}

/* Bottom Split Bar */
.bottom-split-container {
    position: absolute;
    bottom: 0;
    width: 1140px;
    display: flex;
    height: 200px;
    overflow: hidden;
}

/* Dark Side */
.info-dark-segment {
    background: #1a1a1a;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-inner-flex {
    display: flex;
    gap: 60px;
}

.info-unit {
    display: flex;
    gap: 12px;
    color: #ffffff;
}

.info-unit i {
    font-size: 30px;
    color: #979797;
}

.unit-icon {
    font-size: 40px;
    opacity: 0.5;
}

.unit-text span {
    display: block;
}

.unit-label {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
    font-family: "Sarabun";
}

.unit-desc {
    font-size: 15px;
    color: #888;
    margin-bottom: 5px;
    font-family: "Sarabun";
}

.unit-number a,
.unit-addr a {
    font-size: 18px;
    font-weight: 500;
    font-family: "Sarabun";
    color: #ffffff;
}

/* Yellow Side */
.tracking-yellow-segment {
    background: #f1b400;
    /* Bright Yellow */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.tracking-bar {
    display: flex;
    width: 100%;
    height: 70px;
}

.tracking-input {
    border: 1px solid #1b1b1b !important;
    font-size: 16px !important;
    height: 59px !important;
    margin: 0 !important;
    padding: 0 39px !important;
    background-color: transparent;
}

.tracking-btn {
    font-family: Sarabun, sans-serif;
    font-weight: 700;
    letter-spacing: -.01em;
    font-size: 16px;
    line-height: 1.294em;
    position: relative;
    display: inline-flex;
    align-items: center;
    width: auto;
    margin: 0;
    text-decoration: none;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
    padding: 18px 36px;
    border: 1px solid transparent;
    cursor: pointer;
    height: 59px;
    background-color: #1b1b1b !important;
    color: #fff !important;
    flex-shrink: 0 !important;
    margin: 0 0 0 20px !important;
}

.tracking-btn i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .bottom-split-container {
        flex-direction: column;
        height: auto;
        position: relative;
    }

    .info-dark-segment,
    .tracking-yellow-segment {
        width: 100%;
        padding: 50px 20px;
    }
}


/* Hide radios */
.zx-tabs-wrapper input[type="radio"] {
    display: none;
}

/* NAVIGATION */
.zx-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
}

.zx-tabs-nav label {
    cursor: pointer;
    font-weight: 600;
    color: #1b1b1b;
    position: relative;
    padding: 5px 0;
}

/* Active tab */
#zx-tab-quote:checked~.zx-tabs-nav label[for="zx-tab-quote"],
#zx-tab-track:checked~.zx-tabs-nav label[for="zx-tab-track"],
#zx-tab-ship:checked~.zx-tabs-nav label[for="zx-tab-ship"],
#zx-tab-pickup:checked~.zx-tabs-nav label[for="zx-tab-pickup"] {

    color: #1b1b1b;
}

/* Underline animation */
.zx-tabs-nav label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0%;
    height: 2px;
    background: #1b1b1b;
    ;
    transition: 0.3s;
}

#zx-tab-quote:checked~.zx-tabs-nav label[for="zx-tab-quote"]::after,
#zx-tab-track:checked~.zx-tabs-nav label[for="zx-tab-track"]::after,
#zx-tab-ship:checked~.zx-tabs-nav label[for="zx-tab-ship"]::after,
#zx-tab-pickup:checked~.zx-tabs-nav label[for="zx-tab-pickup"]::after {
    width: 100%;
}

/* CONTENT BOX */
.zx-tabs-content {
    margin: auto;
}

.zx-tab-panel {
    display: none;
    background: #f1b400;
    color: #fff;
}

/* Show active panel */
#zx-tab-quote:checked~.zx-tabs-content .zx-panel-quote,
#zx-tab-track:checked~.zx-tabs-content .zx-panel-track,
#zx-tab-ship:checked~.zx-tabs-content .zx-panel-ship,
#zx-tab-pickup:checked~.zx-tabs-content .zx-panel-pickup {
    display: block;
}

.zx-tab-arrow {
    display: inline-block;
    margin-left: 6px;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    position: relative;
    top: -2px;
    transition: transform 0.3s ease, top 0.3s ease;
}

#zx-tab-quote:checked~.zx-tabs-nav label[for="zx-tab-quote"] .zx-tab-arrow,
#zx-tab-track:checked~.zx-tabs-nav label[for="zx-tab-track"] .zx-tab-arrow,
#zx-tab-ship:checked~.zx-tabs-nav label[for="zx-tab-ship"] .zx-tab-arrow,
#zx-tab-pickup:checked~.zx-tabs-nav label[for="zx-tab-pickup"] .zx-tab-arrow {
    transform: rotate(225deg);
    top: 2px;
}

/* Title */
.zx-title {
    text-align: center;
    margin-bottom: 20px;
    font-family: Sarabun, sans-serif;
}

/* FORM */
.zx-form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.zx-form-row input {
    flex: 1;
    min-width: 160px;
    border: 1px solid #1b1b1b !important;
    font-size: 15px !important;
    height: 56px !important;
    margin: 0 !important;
    padding: 0 20px !important;
    background: transparent;
    color: #1b1b1b;
    font-family: Sarabun, sans-serif;
}

.order-tracking-input {
    width: 685px;
}

.zx-form-row button {
    font-family: Sarabun, sans-serif;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 0;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
    padding: 15px 40px;
    background-color: #1b1b1b !important;
    color: #fff !important;
    margin: 0 0 0 20px !important;
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: -.01em;
    line-height: 24px;
}



/* Note */
.zx-note {
    margin-top: 10px;
    font-size: 12px;
    color: #1b1b1b;
    font-family: Sarabun, sans-serif;
}

/* ---------------- */
/* 📱 RESPONSIVE */
/* ---------------- */

/* Tablet */
@media (max-width: 768px) {
    .zx-form-row {
        flex-direction: column;
    }

    .zx-form-row button {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .zx-tabs-nav {
        gap: 15px;
        font-size: 14px;
    }

    .zx-tab-panel {
        padding: 18px;
    }

    .zx-title {
        font-size: 16px;
    }
}



/* SERVICES SECTION START */

/* Container for the whole section */
.services-overview {
    padding: 80px 0;
    background-color: #DFDFDF;
}

.services-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for desktop */
    gap: 40px;
    padding: 0 20px;
}

/* Individual Card Styling */
.service-card {
    text-align: left;
}

.service-icon {
    position: relative;
    font-size: 40px;
    color: #1b1b1b;
    margin-bottom: 25px;
    display: inline-block;
}

/* The Yellow Dot for the Active item */
.active-icon {
    position: relative;
}

.active-dot {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 10px;
    height: 10px;
    background-color: #f1b400;
    /* Matching your theme yellow */
    border-radius: 50%;
}

.service-title {
    font-size: 20px;
    font-weight: 900;
    /* Ultra bold like previous sections */
    color: #1b1b1b;
    margin-bottom: 15px;
    font-family: "Sarabun";
}

.service-description {
    font-size: 16px;
    color: #5b5b5b;
    line-height: 1.444em;
    font-family: "Sarabun";
}

/* --- Responsiveness --- */

/* Tablet View (2 columns) */
@media (max-width: 991px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View (1 column) */
@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-card {
        text-align: center;
    }
}

/* SERVICES SECTION END */

/** About Start **/
/* Unique Moving Partner Section Styles */
.mp-moving-section {
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.mp-main-flex {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Image Collage - Keeping your 654px height */
.mp-image-collage {
    flex: 1;
    display: flex;
    position: relative;
    min-width: 450px;
}

.mp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mp-img-left {
    width: 50%;
    height: 508px;
    z-index: 1;
    margin-right: 20px;
}

.mp-img-right {
    width: 50%;
    height: 508px;
    z-index: 2;
}

.mp-circular-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 130px;
    height: 130px;
}

/* Right Content Area */
.mp-content-area {
    flex: 1;
    min-width: 450px;
}

.mp-tagline {
    display: inline-block;
    background: #f4f4f4;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #1a2b3c;
    margin-bottom: 20px;
    font-family: "Sarabun";
}

.mp-heading {
    font-size: 48px;
    line-height: 1.1;
    color: #1b1b1b;
    margin-bottom: 20px;
    letter-spacing: -3px;
    font-weight: 600;
    font-family: "Sarabun";
}


.mp-description {
    font-size: 15px;
    color: #5b5b5b;
    margin-bottom: 25px;
    line-height: 1.6;
    font-family: "Sarabun";
}

/* Features Row */
.mp-features-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.mp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mp-feature-list li {
    font-size: 14px;
    font-weight: 500;
    color: #1b1b1b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 5px 5px 5px 5px;
    background-color: #F5EFE9;
    border-radius: 30px 30px 30px 30px;
    font-family: "Sarabun";
}

.mp-check {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 10px 0px 0px;
    background-color: #FFF;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    font-weight: 900;
    color: #ffb800;
}

.mp-side-image-wrapper {
    flex: 1;
}

.mp-side-img {
    width: 100%;
    max-width: 210px;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-left: 45px;
}

/* Button */
.mp-btn-primary {
    display: inline-flex;
    align-items: center;
    background: #ffb800;
    color: #1b1b1b;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.mp-arrow {
    margin-left: 10px;
    background: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

/* --- Responsiveness for iPad and Small Screens --- */

/* 1. iPad Pro / Large Tablets (up to 1024px) */
@media (max-width: 1200px) {
    .mp-main-flex {
        gap: 40px;
    }

    .mp-heading {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .mp-img-left,
    .mp-img-right {
        height: 500px;
        /* Height thodi kam ki taki screen me fit aaye */
    }
}

/* 2. iPad / Tablets (up to 991px) */
@media (max-width: 991px) {
    .mp-main-flex {
        flex-direction: column;
        /* Stack content vertically */
        gap: 50px;
    }

    .mp-content-area,
    .mp-image-collage {
        min-width: 100%;
        width: 100%;
    }

    .mp-content-area {
        order: 1;
        /* Text pehle aayega */
    }

    .mp-image-collage {
        order: 2;
        /* Images niche aayengi */
    }

    .mp-img-left,
    .mp-img-right {
        height: 450px;
    }

    .mp-features-row {
        gap: 20px;
    }
}

/* 3. Mobile Screens (up to 767px) */
@media (max-width: 767px) {
    .mp-moving-section {
        padding: 40px 0;
    }

    .mp-heading {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .mp-features-row {
        flex-direction: column;
        /* List aur side-image ko stack kar diya */
        align-items: flex-start;
    }

    .mp-side-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        /* Mobile pe image center ho jayegi */
        margin-top: 10px;
    }

    .mp-side-img {
        max-width: 100%;
        height: 200px;
        /* Mobile pe thoda bada rakha layout balance ke liye */
    }

    .mp-img-left,
    .mp-img-right {
        height: 350px;
        /* Mobile pe height aur kam ki */
    }

    .mp-img-left {
        margin-right: 10px;
        /* Gap kam kiya */
    }
}

/* 4. Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .mp-heading {
        font-size: 28px;
    }

    .mp-img-left,
    .mp-img-right {
        height: 280px;
        border-radius: 10px;
    }

    .mp-feature-list li {
        font-size: 14px;
        padding: 8px 12px;
    }

    .mp-btn-primary,
    .bc-discover-btn {
        width: 100%;
        /* Button full width on very small screens */
        justify-content: center;
    }
}

/** About end **/

/** STATS SECTION START **/

.stats-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.stats-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 15px;
}

.stats-column {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.counter-card {
    background: #ffffff;
    border: 1px solid #cecece;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 180px;
    position: relative;
}

.counter-box,
.counter-box-left {
    position: relative;
}

.counter-box:before {
    content: "";
    width: 50px;
    height: 50px;
    background: #f1b400;
    position: absolute;
    right: 0;
    bottom: -70px;
}

.counter-box-left::before {
    content: "";
    width: 50px;
    height: 50px;
    background: #f1b400;
    position: absolute;
    left: 0;
    bottom: -70px;
}

/* Precise Staggering Logic based on Image Structure */
.stagger-down {
    margin-top: 60px;
}

.stagger-up {
    margin-top: 20px;
}

.stagger-mid {
    margin-top: 40px;
}

.counter-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 70px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1;
    font-family: "Sarabun";
}

.stat-symbol {
    font-size: 28px;
    font-weight: 700;
    margin-left: 5px;
    color: #111111;
}

.stat-label {
    font-size: 15px;
    color: #5b5b5b;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
    font-family: "Sarabun";
}

/* Responsiveness */
@media (max-width: 991px) {
    .stats-column {
        flex: 0 0 calc(50% - 30px);
    }

    .stagger-down,
    .stagger-up,
    .stagger-mid {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .stats-column {
        flex: 0 0 100%;
    }

    .stat-number {
        font-size: 50px;
    }
}

/** STATS SECTIONS ENDS **/

/* FLEETS SECTIONS START */

/* Fleet Section Styling */
.fleet-section {
    background-color: #12171B;
    overflow: hidden;
}

.fleet-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleet-text {
    flex: 0 0 50%;
}

.fleet-heading {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #E5E5E5;
    font-family: "Sarabun";
}

.fleet-points {
    list-style: none;
    padding: 0;
}

.fleet-points li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #B7B7B7;
    font-family: "Sarabun";
}

.fleet-points li i {
    color: #f1b400;
    margin-top: 5px;
}

.fleet-visual {
    flex: 0 0 42%;
    text-align: right;
}

.fleet-visual img {
    max-width: 100%;
    height: auto;
    /* Image ko thoda bahar nikalne ke liye (optional) */
    transform: translateY(0);
}

/* Brand Grid */
.brand-grid-section {
    background-color: #12171B;
    border-top: 1px solid #FFFFFF26;
}

.brand-flex {
    display: flex;
    width: 100%;
}

.brand-box {
    flex: 1;
    border-right: 1px solid #FFFFFF26;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-box:last-child {
    border-right: none;
}

.brand-box img {
    opacity: 0.6;
}

@media (max-width: 991px) {
    .fleet-row {
        flex-direction: column;
        text-align: center;
    }

    .fleet-text,
    .fleet-visual {
        flex: 0 0 100%;
    }

    .fleet-visual img {
        transform: none;
        margin-top: 40px;
    }

    .brand-flex {
        flex-wrap: wrap;
    }

    .brand-box {
        flex: 0 0 33.33%;
        border-bottom: 1px solid #FFFFFF26;
    }
}

/* FLEETS SECTION END */


/* SMOOTH LAUNCH START */
.process-flow {
    padding: 80px 0;
    background-color: #f9f7ef;
    text-align: center;
    border-bottom: 1px solid #a6a6a6;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    /* Increased gap for arrows */
    margin-bottom: 80px;
    position: relative;
}

.step-item {
    flex: 0 0 355px;
    position: relative;
    /* Base for arrow positioning */
}

.icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.number-badge {
    position: absolute;
    top: 0;
    left: -5px;
    background: #12171B;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 5;
    border: 3px solid #FFFFFF26;
    /* Blends badge into background */
}

.main-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    background-color: #f1b400;
    /* Yellow from image */
}

.main-circle img {
    width: 60px;
    height: auto;
    transition: all 0.4s ease;
}

/* HOVER LOGIC: Circle turns dark, Image turns white */
.step-item:hover .main-circle {
    background-color: #12171B !important;
    transform: translateY(-5px);
}

.step-item:hover .main-circle img {
    filter: brightness(0) invert(1);
    /* Turns icon white on dark background */
}

.step-item h3 {
    font-size: 20px;
    font-weight: 900;
    color: #1b1b1b;
    margin-bottom: 15px;
    font-family: "Sarabun";
}

.step-item p {
    font-size: 16px;
    color: #5b5b5b;
    line-height: 1.444em;
    font-family: "Sarabun";
}

/* ARROW ALIGNMENT */
.arrow-wrap {
    position: absolute;
    top: 50px;
    /* Aligns with circle center */
    right: -100px;
    width: 160px;
    z-index: 1;
    pointer-events: none;
}

.arrow-wrap img {
    width: 100%;
}

/* CTA Bar Styling */
.cta-bar {
    background: white;
    padding: 10px 10px 10px 40px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #11111124;
}

.cta-bar span {
    font-weight: 800;
    color: #1b1b1b;
    font-size: 20px;
    font-family: "Sarabun";
}

.cta-btn {
    background: #f1b400;
    color: #12171B;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-family: "Sarabun";
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #12171B;
    color: #ffffff;
}


/* RESPONSIVE */
@media (max-width: 1100px) {
    .arrow-wrap {
        width: 100px;
        right: -60px;
    }
}

@media (max-width: 991px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .arrow-wrap {
        display: none;
    }

    .cta-bar {
        flex-direction: column;
        border-radius: 30px;
        padding: 30px;
        gap: 25px;
    }
}

/*  SMOOTH LAUNCH END */

/* Testimonials Section Start */

/* Section Background */
.bsh-testimonial-section {
    padding: 80px 0;
}

.testimonial-heading {
    font-size: 48px;
    line-height: 1.1;
    color: #1b1b1b;
    margin-bottom: 20px;
    letter-spacing: -3px;
    font-weight: 600;
    font-family: "Sarabun";
    text-align: center;
}

/* Card Styling */
.bsh-testi-card {
    margin: 15px;
    background: #ffffff;
    border: 1px solid #cecece;
    padding: 30px;
}

.bsh-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.bsh-user-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bsh-name {
    font-family: "Sarabun";
    font-weight: 700;
    letter-spacing: -.01em;
    color: #1b1b1b;
    font-size: 22px;
    line-height: 1.181em;
    word-wrap: break-word;
}

.bsh-title {
    font-size: 15px;
    color: #5b5b5b;
    font-weight: 400;
    text-transform: capitalize;
    font-family: "Sarabun";
}

.bsh-quote-mark {
    font-size: 50px;
    color: #f1b400;
    /* Faint quote */
}

.bsh-text {
    font-size: 17px;
    color: #5b5b5b;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 25px;
    font-family: "Sarabun";
}

/* FIXED CUSTOM DOTS (LONG LINES) */
.bsh-owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 50px;
    gap: 12px;
    width: 100%;
}

.bsh-dot {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: inline-block;
}

/* Default Black Dots */
.bsh-dot span {
    width: 60px !important;
    /* Long lines */
    height: 5px !important;
    background: #000000 !important;
    /* Pure Black for inactive dots */
    border-radius: 2px !important;
    display: block;
    transition: all 0.3s ease;
    opacity: 1 !important;
    /* Visibility fix */
}

/* Active Yellow Dot */
.bsh-dot.active span {
    background: #f1b400 !important;
    /* Gold/Yellow color */
}

/* Owl Default dots ko hide hi rakhein */
.owl-theme .owl-dots {
    display: none !important;
}

/* Testimonials Section Ends */

/* CALL TO ACTION START */

.cta-section {
    width: 100%;
    padding: 140px 0;
    background: url('../img/cta-image.png') no-repeat center center/cover;
}

.cta-heading {
    font-family: Sarabun, sans-serif;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #ffffff;
    font-size: 65px;
    line-height: 1.107em;
    margin: 25px 0;
    word-wrap: break-word;
}

/* CALL TO ACTION END */

/* BLOGS SECTION STARTS HERE */

/* SECTION */
.zx-blog-section {
    padding: 60px 0;
}

/* GRID */
.zx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.zx-blog-card {
    background: #fff;
}

/* IMAGE */
.zx-blog-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.zx-blog-content {
    display: flex;
    padding: 25px 0;
    gap: 20px;
}

/* DATE */
.zx-date-box {
    min-width: 70px;
    text-align: center;
    border-right: 1px solid #ddd;
    padding-right: 15px;
    text-transform: capitalize;
    font-family: "Sarabun";
}

.zx-date-box h2 {
    font-size: 36px;
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Sarabun";
}

.zx-date-box span {
    font-size: 14px;
    color: #555;
    text-transform: capitalize;
    font-family: "Sarabun";
}

/* TEXT */
.zx-blog-text {
    flex: 1;
}

.zx-category {
    font-size: 13px;
    color: #777;
    text-transform: capitalize;
    font-family: "Sarabun";
}

.zx-heading-bl {
    margin: 5px 0 10px;
    display: block;
    font-size: 26px;
    font-weight: 900;
    text-transform: capitalize;
    font-family: "Sarabun";
    color: #1b1b1b;
}

.zx-blog-text p {
    font-size: 16px;
    color: #5b5b5b;
    text-transform: capitalize;
    font-family: "Sarabun";
    line-height: 1.5;
    font-weight: 400;
}

/* READ MORE */
.zx-readmore {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    text-transform: capitalize;
    font-family: "Sarabun";
}

.zx-readmore-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.zx-plus {
    width: 45px;
    height: 45px;
    background: #f2b705;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1b1b1b;
}

.zx-readmore span {
    font-size: 16px;
    font-weight: 900;
    text-transform: capitalize;
    font-family: "Sarabun";
    color: #1b1b1b;
}

/* ---------------- */
/* 📱 RESPONSIVE */
/* ---------------- */

/* Tablet */
@media (max-width: 992px) {
    .zx-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .zx-blog-grid {
        grid-template-columns: 1fr;
    }

    .zx-blog-section {
        padding: 40px 20px;
    }

    .zx-blog-img img {
        height: 200px;
    }

    .zx-blog-content {
        flex-direction: row;
        gap: 15px;
    }

    .zx-date-box {
        min-width: 60px;
    }

    .zx-date-box h2 {
        font-size: 28px;
    }
}

.blog-heading {
    font-family: Sarabun, sans-serif;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #1b1b1b;
    font-size: 65px;
    line-height: 1.107em;
    margin: 25px 0;
    word-wrap: break-word;
}

.blog-content {
    font-size: 16px;
    color: #5b5b5b;
    text-transform: capitalize;
    font-family: "Sarabun";
    line-height: 1.5;
    font-weight: 400;
}

/* BLOGS SECTION ENDS HERE */

/* Get In Touch */

.bsh-contact-area {
    padding: 80px 0;
    background-color: #F9F9F9;
    border-top: 1px solid #959494;
}

.bsh-flex-box {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

/* Info Side Styling */
.bsh-info-side {
    flex: 1;
}

.bsh-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1b1b1b;
}

.bsh-para {
    font-size: 16px;
    color: #5b5b5b;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 450px;
}

.bsh-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.bsh-number a {
    font-size: 42px;
    font-weight: 800;
    color: #1b1b1b;
    margin-bottom: 40px;
    display: block;
}

.bsh-loc-write {
    display: flex;
    gap: 60px;
}

.bsh-detail strong {
    font-size: 15px;
    color: #1b1b1b;
}

.bsh-detail strong a {
    font-size: 15px;
    color: #1b1b1b;
    line-height: 1.5;
}

/* Form Side Styling */
.bsh-form-side {
    flex: 1;
}

.bsh-field {
    margin-bottom: 35px;
}

.bsh-field label {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.bsh-field input,
.bsh-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    /* Bottom border only as per screenshot */
    padding: 10px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    transition: 0.3s;
}

.bsh-field input:focus,
.bsh-field textarea:focus {
    border-bottom-color: #f1b400;
    /* Yellow focus */
}

.bsh-send-btn {
    background: #f1b400;
    /* Theme Yellow */
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.bsh-send-btn span {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .bsh-flex-box {
        flex-direction: column;
        gap: 50px;
    }

    .bsh-number {
        font-size: 32px;
    }

    .bsh-heading {
        font-size: 36px;
    }
}

/* Get In Touch */

.footer {
    padding: 80px 0 30px;
    font-family: "Sarabun";
}

.widget-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.footer-details a {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 0px;
}

.footer-email a {
    display: block;
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.footer-address a {
    font-size: 17px;
    font-weight: 400;
    color: #B7B7B7;
    margin-top: 20px;
    margin-bottom: 0px;
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #bbbbbb;
    /* Link color from screenshot */
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Arrow indicator as per screenshot */
.footer-menu li a::before {
    content: '›';
    margin-right: 10px;
    font-size: 20px;
    color: #666;
    line-height: 1;
}

.footer-menu li a:hover {
    color: #f1b400;
    /* Theme yellow on hover */
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 50px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
    font-family: "Sarabun";
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}



.footer-logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.footer-logo img {
    width: 200px;
}

/* ABOUT US SECTION STARTS */

.about-viewport {
    background-color: #1a1a1a;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
}

.about-center-content {
    position: relative;
    z-index: 2;
    padding: 0 6%;
    margin-top: 80px;
}

.breadcrumb .breadcrumb-item a {
    color: #fff;
}

.breadcrumb .breadcrumb-item.active {
    font-weight: 700;
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

.about-icon img {
    width: 164px;
    height: auto;
    transition: all 0.4s ease;
}

.section-title {
    position: relative;
    padding-left: 60px;
}

.section-title::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    width: 45px;
    height: 3px;
    background: #DFB163;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.icon-shipping i {
    font-size: 35px;
    margin-right: 10px;
    margin-top: -10px;
    color: #f1b400;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 900 !important;
    line-height: 1.2;
    font-family: "Sarabun";

}

.years-heading {
    font-size: 48px;
    font-weight: 500;
    color: #1b1b1b;
    letter-spacing: -3px;
    line-height: 1;
    font-family: "Sarabun";
}

/* ABOUT US SECTION ENDS */

/* SERVICES SECTION START */

.logistics-grid {
    width: 100%;
    background-color: #FFFCEE;
}

.logistics-card__details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logistics-card__title {
    font-size: 100px;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #888;
    /* The "outline" effect */
    text-transform: capitalize;
    font-family: "Sarabun";
    letter-spacing: -3px;
}

.logistics-card__description {
    font-size: 15px;
    color: #5b5b5b;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 20px;
    font-family: "Sarabun";
}

.logistics-card__link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
}

.logistics-card__icon {
    background: var(--brand-yellow);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: -10px;
    /* Pulls it slightly inside the button pill */
}

.pr-0 {
    padding-right: 0;
}

.pl-0 {
    padding-left: 0;
}

/* SERVICES SECTION END */

/* FAQ PAGE START */

.faq-section {
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Sarabun";
}

.faq-heading {
    font-size: 48px;
    line-height: 1.1;
    color: #1b1b1b;
    margin-bottom: 80px;
    letter-spacing: -3px;
    font-weight: 600;
    font-family: "Sarabun";
    text-align: center;
}

.faq-item {
    border-top: 1px solid #cecece;
    display: grid;
    grid-template-rows: auto 0fr;
    /* Animation magic */
}

/* Last item line */
.faq-item:last-child {
    border-bottom: 1px solid #cecece;
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 28px;
    font-weight: 900;
    color: #1b1b1b;
    font-family: "Sarabun";
}

/* Arrow Icon */
.arrow-icon {
    width: 14px;
    height: 14px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    transform: rotate(45deg);
    /* Points Right Like → */
    margin-right: 10px;
}

/* Open State (Target) */
.faq-item:target {
    grid-template-rows: auto 1fr;
}

.faq-item:target .arrow-icon {
    /* Rotates to point Down-Right like in your image */
    transform: rotate(135deg);
}

.faq-content {
    overflow: hidden;
}

.content-inner {
    padding-bottom: 24px;
    line-height: 1.6;
    font-size: 18px;
    color: #5b5b5b;
    font-family: "Sarabun";
}

/* Accessibility: Remove default link highlight */
.faq-trigger:focus {
    outline: none;
}

/* FAQ PAGE END */

.contact-section {
    width: 100%;
}


.btn-error {
    background: #f1b400;
    color: #12171B;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-family: "Sarabun";
    transition: 0.3s;
    display: table;
    margin: 50px auto 0;
}

.btn-error:hover {
    background: #12171B;
    color: #f1b400;
}

/* GET A QUOTE */

.quote-section {
    width: 100%;
    padding: 80px 0 0;
}

.package-section {
    width: 100%;
    padding: 80px 0;
}

.quote-heading {
    font-size: 34px;
    line-height: 1.1;
    color: #ffffff;
    background-color: #1b1b1b;
    margin-bottom: 0;
    padding: 10px 15px;
    letter-spacing: -3px;
    font-weight: 600;
    font-family: "Sarabun";
}



.from-box {
    background: #f3f3f3;
    padding: 30px;
    position: relative;
    height: 100%;
}

.from-box h3 {
    background: #111;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
}

/* FORM */
.cargo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ROW */
.form-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* GROUP */
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* FULL WIDTH FIELD */
.form-group.full {
    width: 100%;
}

/* INPUT STYLE */
.form-group input {
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    padding: 8px 0;
    outline: none;
}

/* LABEL */
.quote-label {
    font-size: 18px;
    color: #5b5b5b;
    margin-bottom: 5px;
    font-family: "Sarabun";
}

.consignee-options {
    display: flex;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* ye remove karo agar kahin laga ho */
.radio-item input {
    margin: 6px 0 0;
}


/* MOBILE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

.quote-send-btn {
    background: #f1b400;
    /* Theme Yellow */
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-top: 10px;
}

.quote-send-btn span {
    font-size: 20px;
}

.quote-box {
    background: #f3f3f3;
    padding: 20px;
}

/* ROW 1 */


.field.small {
    width: 160px;
}

/* ROW 2 (MAIN FIX) */
.row-bottom {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

/* fields */
.field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* input */
.field input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    padding: 8px 0;
    background: transparent;
    outline: none;
}

/* + button */
.plus-btn {
    width: 40px;
    height: 40px;
    background: #1b1b1b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

/* full width */
.field.full {
    width: 100%;
    margin-top: 20px;
}

/* SAME BOX STYLE */
.quote-box {
    background: #f3f3f3;
    padding: 20px;
    height: 100%;
}

/* heading */
.heading {
    background: #111;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 20px;
}

/* rows */
.row-top,
.row-bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* fields */
.field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* input + select */
.field input,
.field select {
    border: none;
    border-bottom: 1px solid #999;
    padding: 8px 0;
    background: transparent;
    outline: none;
}

/* promo input + button */
.promo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-box input {
    flex: 1;
}

/* button */
.promo-box button {
    background: #1b1b1b;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-family: "Sarabun";
}

/* full width */
.field.full {
    width: 100%;
    margin-top: 40px;
}

/* checkbox */
.checkbox-field {
    margin-top: 15px;
    font-size: 14px;
}

.pull-quote-section
{
    width: 100%;
    padding: 80px 0;
}

/* main box */
.pickup-section {
  margin-top: 20px;
}

/* heading */
.pickup-heading {
  margin-bottom: 15px;
  font-size: 18px;
  color: #5b5b5b;
  font-family: "Sarabun";
}

/* row */
.pickup-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* time */
.pickup-time {
  font-size: 12px;
}

.pickup-time strong {
  display: block;
  font-size: 13px;
}

/* slider */
.pickup-slider {
  flex: 1;
  height: 6px;
  background: #1b1b1b;
  border-radius: 5px;
  outline: none;
  appearance: none;
}

/* thumb */
.pickup-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: #f1b400;
  border-radius: 50%;
  cursor: pointer;
}

.pickup-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #f1b400;
  border-radius: 50%;
  cursor: pointer;
}

/* note */
.pickup-text {
  margin-top: 10px;
  font-size: 15px;
  color: #5b5b5b;
  font-family: "Sarabun";
}

/* GET A QUOTE */