/* --- GLOBAL RESETS & VARS --- */
:root {
    --primary: #f14902;
    --primary-hover: #db4100;
    --dark-bg: #2b2b2b;
    --dark-footer: #393536;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --font-main: 'Varela Round', sans-serif;
}

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

html,
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

mark {
    background: transparent;
    color: var(--primary);
}

.container {
    max-width: 1245px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- MARQUEE TOP BAR --- */
.top-marquee-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.top-marquee-bar marquee {
    vertical-align: middle;
}

/* --- HEADER NAVIGATION --- */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img,
.site-logo .custom-logo {
    max-height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

.site-logo .logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.dropdown-icon {
    font-size: 12px;
    margin-left: 4px;
}

.header-cta-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.header-cta-btn:hover {
    background-color: var(--primary-hover);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 18, 19, 0.75) 0%, rgba(20, 18, 19, 0.5) 50%, rgba(20, 18, 19, 0.25) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 45px;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Courier Tracking Container */
.tracking-box-container {
    background: var(--white);
    border-radius: 16px;
    padding: 12px 14px 12px 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
    max-width: 540px;
    width: 100%;
}

.tracking-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-family: inherit;
    color: var(--text-dark);
    background: transparent;
    padding: 10px 0;
}

.tracking-input::placeholder {
    color: #94a3b8;
}

.tracking-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 60px;
    height: 54px;
    border-radius: 12px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tracking-btn:hover {
    background: var(--primary-hover);
}

@keyframes slideInRight {
    from {
        transform: translate3d(150px, 0, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.hero-truck-img {
    position: absolute;
    right: 59px;
    bottom: -35px;
    max-width: 450px;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.35));
    animation: slideInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Animation Flow: 1) img1 fades in with slight scale-up, 2) badge slides left-to-right,
           3) img2 fades in with a delay, 4) img3 fades in last */
@keyframes aboutFadeScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

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

@keyframes aboutSlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes aboutFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* --- ABOUT US SECTION --- */
.about-section {
    padding: 60px 0 30px 0;
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) 1fr;
    gap: 60px;
    align-items: center;
}

.about-images-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
    min-height: 600px;
    margin: 0 auto;
}

/* Continuous Orange Outline Frame behind images */
.about-orange-frame {
    position: absolute;
    top: 25px;
    left: 60px;
    right: 15px;
    bottom: 25px;
    border: 2.5px solid #f14902;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

/* 1. Top Left Image (Female Warehouse Worker) */
.about-img-1 {
    position: absolute;
    top: 0;
    left: 10px;
    width: 66%;
    height: 310px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 3;
    animation: aboutFadeScale 0.75s ease forwards;
}

/* 2. Top Right Stat Badge (20k+ Packet Delivered) */
.about-badge-card {
    position: absolute;
    top: 50px;
    left: 330px;
    width: 240px;
    height: 195px;
    z-index: 6;
    background: #f14902;
    color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(241, 73, 2, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    animation: aboutSlideIn 0.8s ease 0.18s backwards;
}

.about-badge-card .about-badge-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-card .about-badge-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.about-badge-card .about-badge-sub {
    font-size: 13.5px;
    font-weight: 600;
    opacity: 0.95;
    white-space: nowrap;
}

/* 3. Middle Right Image (Stockroom Workers Overhead) */
.about-img-2 {
    position: absolute;
    top: 230px;
    right: 0;
    width: 55%;
    height: 290px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 2;
    animation: aboutFadeIn 0.8s ease 0.45s backwards;
}

/* 4. Bottom Left Image (Air Cargo Tarmac Pallets) */
.about-img-3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62%;
    height: 215px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 4;
    animation: aboutFadeIn 0.8s ease 0.7s backwards;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-desc {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(241, 73, 2, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 22px;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- PARTNER NETWORK BANNER (SECTION 3) --- */
.partner-banner {
    background: #ffffff;
    color: #2c2d30;
    padding: 60px 0;
    text-align: left;
}

.partner-banner-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: #2c2d30;
    max-width: 680px;
    margin: 0;
}

.partner-banner-title mark {
    color: #f14902;
    background: transparent;
}

/* --- SERVICES SECTION (SECTION 4) --- */
.services-section {
    padding: 30px 0 45px 0;
    background: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px auto;
}

.services-header .section-subtitle {
    color: #f14902;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-header .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.25;
    margin-bottom: 15px;
}

.services-header .section-title mark {
    color: #f14902;
    background: transparent;
}

.services-header .section-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 680px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 20px;
    border: 2px solid #f14902;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(241, 73, 2, 0.15);
}

.service-card-icon {
    font-size: 56px;
    color: #f14902;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.service-card-title {
    font-size: 21px;
    font-weight: 700;
    color: #f14902;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 14px;
    color: #f14902;
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-card-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 1.5px solid #f14902;
    color: #f14902;
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    background: #f14902;
    color: #ffffff;
}

/* --- WHY CHOOSE US SECTION (SECTION 5) --- */
.why-us-section {
    padding: 45px 0 50px 0;
    background: #ffffff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-section .section-subtitle {
    color: #f14902;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-us-section .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.25;
    margin-bottom: 20px;
}

.why-us-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Progress Bars */
.progress-item {
    margin-bottom: 22px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.progress-title {
    font-size: 15px;
    color: #2c2d30;
}

.progress-percentage {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
}

.progress-track {
    height: 12px;
    background: #f1f5f9;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f14902, #ff7438);
    border-radius: 20px;
    transition: width 1.5s cubic-bezier(0.1, 0.42, 0.85, 1);
    box-shadow: 0 2px 8px rgba(241, 73, 2, 0.3);
}

/* Right Side Layered Showcase */
.why-us-images-wrap {
    position: relative;
    width: 100%;
    height: 480px;
}

.why-us-orange-frame {
    position: absolute;
    top: 40px;
    right: 20px;
    left: 90px;
    bottom: 20px;
    border: 2px solid #f14902;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.why-us-img-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.why-us-img-middle {
    position: absolute;
    top: 170px;
    left: 0;
    width: 330px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.why-us-badge-card {
    position: absolute;
    bottom: 9px;
    right: 0;
    width: 200px;
    height: 190px;
    background: #f14902;
    color: #ffffff;
    border-radius: 16px;
    border: 3px solid #ffffff;
    box-shadow: 0 12px 30px rgba(241, 73, 2, 0.35);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}

.why-us-badge-icon {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 8px;
}

.why-us-badge-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.why-us-badge-text {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
}

/* --- CTA BANNER SECTION --- */
.cta-banner-section {
    background: linear-gradient(rgba(18, 18, 18, 0.78), rgba(18, 18, 18, 0.78)),
        url('../images/stockroom-workers.jpg') no-repeat center center / cover;
    color: #ffffff;
    padding: 65px 0;
    text-align: center;
}

.cta-banner-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    max-width: 850px;
    margin: 0 auto 16px auto;
}

.cta-banner-title mark {
    color: #f14902;
    background: transparent;
}

.cta-banner-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 750px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.cta-banner-btn {
    display: inline-block;
    background: #f14902;
    color: #ffffff;
    padding: 14px 38px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 73, 2, 0.4);
}

/* --- TESTIMONIALS SECTION --- */
.testimonial-section {
    padding: 50px 0 45px 0;
    background: #ffffff;
}

.testimonial-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px auto;
}

.testimonial-header .section-subtitle {
    color: #f14902;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.testimonial-header .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.25;
    margin-bottom: 15px;
}

.testimonial-header .section-title mark {
    color: #f14902;
    background: transparent;
}

.testimonial-header .section-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.testimonial-grid,
.testimonial-slider {
    padding-bottom: 50px !important;
    position: relative;
}

.testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-slider .testimonial-card {
    width: 100%;
    height: 100%;
}

.testimonial-pagination {
    bottom: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 !important;
    cursor: pointer;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 6px;
    background: #f14902;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 25px;
    border: 1px solid #eef0f3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(241, 73, 2, 0.2);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-stars .star-empty {
    color: #e0e0e0;
}

.testimonial-quote {
    font-size: 14.5px;
    font-style: italic;
    color: #555555;
    line-height: 1.65;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    font-size: 15px;
    font-weight: 700;
    color: #f14902;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: #777777;
    font-weight: 500;
}

/* --- STATS COUNTER SECTION --- */
.stats-counter-section {
    padding: 45px 0;
    background: #ffffff url('../images/map-bg.png') no-repeat right center / 55% auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    font-size: 52px;
    color: #f14902;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.stat-icon i {
    color: #f14902;
    font-size: 52px;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #f14902;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #555555;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 45px 0 60px 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.faq-header .section-subtitle {
    color: #f14902;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.faq-header .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.25;
    margin-bottom: 12px;
}

.faq-header .section-title mark {
    color: #f14902;
    background: transparent;
}

.faq-header .section-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-column-title {
    font-size: 22px;
    font-weight: 800;
    color: #2c2d30;
    margin-bottom: 25px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-left: 3px solid #f14902;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 15px;
}

.faq-icon-toggle {
    font-size: 16px;
    font-weight: 700;
    color: #2c2d30;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 600;
    color: #2c2d30;
    line-height: 1.4;
}

.faq-answer {
    padding: 0 20px 18px 55px;
    font-size: 14.5px;
    color: #666666;
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #333132;
    color: #ffffff;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr 1.6fr;
    gap: 40px;
    padding-bottom: 50px;
    align-items: start;
}

.col-brand {
    padding-right: 15px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo-img,
.footer-logo .custom-logo {
    height: 42px;
    max-height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f14902;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-icon-btn:hover {
    background-color: #d83d00;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-menu a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.25s ease;
}

.footer-menu a i {
    color: #f14902;
    font-size: 12px;
    margin-right: 10px;
    transition: transform 0.25s ease;
}

.footer-menu a:hover {
    color: #f14902;
}

.footer-menu a:hover i {
    transform: translateX(3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    color: #f14902;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item.contact-address .contact-icon {
    font-size: 26px;
}

.contact-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.contact-link {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.25s ease;
}

.contact-link:hover {
    color: #f14902;
}

.footer-bottom {
    background-color: #333132;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 16px 0;
    text-align: center;
}

.copyright-text {
    color: #ffffff;
    font-size: 14.5px;
    margin: 0;
    font-weight: 400;
}

.desktop-cta-btn {
    display: inline-flex;
}

.mobile-cta-item {
    display: none;
}

/* --- HEADER RIGHT ACTIONS & MOBILE MENU TOGGLE --- */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary);
    color: #ffffff;
}

.mobile-drawer-header {
    display: none !important;
}

/* Body Lock & Overlay for Mobile Navigation */
body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
    .site-header {
        position: relative;
        z-index: 999999 !important;
    }

    .desktop-cta-btn {
        display: none !important;
    }

    .mobile-cta-item {
        display: block;
        width: 100%;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #e2e8f0;
    }

    .mobile-nav-cta {
        background-color: var(--primary);
        color: #ffffff !important;
        padding: 9px 14px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 13px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        text-align: center;
        box-shadow: 0 3px 10px rgba(241, 73, 2, 0.2);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* 80% Width Left-to-Right Side Drawer */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 82%;
        min-width: 270px;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.25);
        border-right: 3px solid var(--primary);
        padding: 20px 16px;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
        display: flex;
    }

    /* Hide header hamburger when mobile menu drawer is open to prevent duplicate close buttons */
    body.menu-open .mobile-menu-toggle {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Mobile Drawer Header Row */
    .mobile-drawer-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 14px;
        margin-bottom: 14px;
        border-bottom: 1.5px solid #f1f5f9;
    }

    .mobile-drawer-header .drawer-title {
        font-size: 14px;
        font-weight: 800;
        color: var(--primary);
        letter-spacing: 1px;
    }

    .mobile-drawer-header .drawer-close-btn {
        background: #f1f5f9;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #475569;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-drawer-header .drawer-close-btn:hover {
        background: var(--primary);
        color: #ffffff;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    /* Compact Menu Text (No Scrollbar) */
    .main-nav a:not(.mobile-nav-cta) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 11px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        color: #1e293b;
        background: #f8fafc;
        transition: all 0.2s ease;
    }

    .main-nav a:not(.mobile-nav-cta):hover,
    .main-nav a.active:not(.mobile-nav-cta) {
        background: rgba(241, 73, 2, 0.1);
        color: var(--primary);
    }

    /* Services Sub-menu Dropdown on Mobile */
    .main-nav .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-top: none !important;
        border-left: 3px solid var(--primary) !important;
        background: #f1f5f9 !important;
        border-radius: 6px !important;
        padding: 4px 0 !important;
        margin-top: 6px !important;
        display: none;
        z-index: auto !important;
    }

    .main-nav .dropdown-menu li {
        width: 100% !important;
    }

    .main-nav .dropdown-menu a {
        display: block !important;
        padding: 9px 14px 9px 20px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #475569 !important;
        background: transparent !important;
        transition: all 0.2s ease !important;
    }

    .main-nav .dropdown-menu a:hover,
    .main-nav .dropdown-menu a.active {
        background: rgba(241, 73, 2, 0.08) !important;
        color: var(--primary) !important;
        padding-left: 24px !important;
    }

    .main-nav li.has-dropdown.open .dropdown-icon {
        transform: rotate(180deg);
        color: var(--primary);
    }

    /* Hero Section Mobile Reference Parity */
    .hero-section {
        min-height: auto;
        padding: 40px 0 0 0 !important;
        position: relative;
        overflow: visible !important;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
    }

    .tracking-box-container {
        max-width: 480px;
        margin: 0 auto;
        flex-direction: row !important;
        padding: 6px 6px 6px 18px !important;
        border-radius: 14px !important;
        background: #ffffff;
        position: relative !important;
        z-index: 6 !important;
    }

    .tracking-input {
        font-size: 15px !important;
        padding: 6px 0 !important;
        text-align: left !important;
        border-bottom: none !important;
        width: auto !important;
        flex: 1 !important;
    }

    .tracking-btn {
        width: 48px !important;
        height: 44px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }

    .hero-truck-img {
        position: relative !important;
        top: 25px !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0 auto -90px auto !important;
        max-width: 270px !important;
        width: 80% !important;
        display: block !important;
        z-index: 10 !important;
        animation: slideInRightMobile 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    }

    .about-section {
        padding-top: 140px !important;
    }

    .about-grid,
    .why-us-grid,
    .services-grid,
    .testimonial-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .about-images-wrap,
    .why-us-images-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
}

@keyframes slideInRightMobile {
    from {
        transform: translate3d(120px, 0, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0 0 0 !important;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .tracking-box-container {
        max-width: 100%;
        padding: 5px 5px 5px 14px !important;
        border-radius: 12px !important;
    }

    .tracking-input {
        font-size: 13.5px !important;
    }

    .tracking-input::placeholder {
        font-size: 13.5px;
    }

    .tracking-btn {
        width: 42px !important;
        height: 38px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    .hero-truck-img {
        top: 20px !important;
        margin: 0 auto -80px auto !important;
        max-width: 230px !important;
        width: 75% !important;
        animation: slideInRightMobile 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    }

    .about-section {
        padding-top: 110px !important;
    }

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

    .header-cta-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .about-images-wrap {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-height: 320px;
        margin: 0 auto 25px auto;
    }

    .about-orange-frame {
        top: 15px;
        left: 25px;
        right: 10px;
        bottom: 15px;
        border: 2px solid var(--primary);
        border-radius: 14px;
    }

    .about-img-1 {
        top: 0;
        left: 0;
        width: 60%;
        height: 160px;
        border-radius: 12px;
    }

    .about-badge-card {
        top: 15px;
        right: 0;
        left: auto;
        width: 130px;
        height: 110px;
        border-width: 2px;
        border-radius: 12px;
        padding: 6px;
    }

    .about-badge-card .about-badge-title {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .about-badge-card .about-badge-sub {
        font-size: 11px;
    }

    .about-img-2 {
        top: 130px;
        right: 0;
        left: auto;
        width: 52%;
        height: 150px;
        border-radius: 12px;
    }

    .about-img-3 {
        bottom: 0;
        left: 0;
        width: 58%;
        height: 135px;
        border-radius: 12px;
    }
}

/* --- PAGE INNER BANNER SECTION --- */
.page-banner {
    position: relative;
    padding: 55px 0;
    background: linear-gradient(rgba(20, 18, 19, 0.78), rgba(20, 18, 19, 0.78)),
        url('../images/hero-slide-1.jpg') no-repeat center center / cover;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-banner-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list .active {
    color: var(--primary);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.page-banner-accent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 260px;
    background: var(--primary);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.85;
    pointer-events: none;
}

/* --- ABOUT COMPANY SECTION (SITE COLOR SYSTEM & HOMEPAGE PARITY) --- */
.about-company-section {
    padding: 55px 0 40px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-company-grid {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) 1fr;
    gap: 60px;
    align-items: center;
}

.about-company-content .section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-company-content .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-company-content .section-title mark {
    color: var(--primary);
    background: transparent;
}

.about-company-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.mv-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 18px;
    border: 1.5px solid #f14902;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(241, 73, 2, 0.15);
}

.mv-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(241, 73, 2, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.mv-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.mv-text {
    font-size: 13px;
    color: #666666;
    line-height: 1.45;
}

.about-company-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 73, 2, 0.35);
    text-decoration: none;
}

.about-company-btn:hover {
    background: var(--primary-hover);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(241, 73, 2, 0.45);
    transform: translateY(-2px);
}

/* --- OUR GOODNESS / WHAT MAKES US SPECIAL SECTION --- */
.special-section {
    padding: 40px 0 55px 0;
    background: #ffffff;
}

.special-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px auto;
}

.special-header .section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.special-header .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.25;
    margin-bottom: 16px;
}

.special-header .section-title mark {
    color: var(--primary);
    background: transparent;
}

.special-header .section-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.65;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.special-card {
    background: #ffffff;
    border: 2px solid #f14902;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(241, 73, 2, 0.15);
}

.special-card-icon {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.special-card-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.special-card-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

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

    .special-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .page-banner-title {
        font-size: 30px;
    }

    .page-banner {
        padding: 60px 0;
    }
}

/* --- CONTACT PAGE STYLING --- */
.contact-page-section {
    padding: 55px 0 60px 0;
    background: #ffffff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: start;
}

.contact-info-wrap .section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-info-wrap .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-info-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.65;
    margin-bottom: 30px;
}

/* Contact Details List (2x2 Grid) */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 30px;
}

.contact-detail-card {
    background: #ffffff;
    border: 1.5px solid #f14902;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    min-height: 140px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(241, 73, 2, 0.15);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(241, 73, 2, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-label {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    white-space: nowrap;
}

.contact-card-val {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
    word-break: break-word;
}

.contact-card-val a {
    color: #475569;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.contact-card-val a:hover {
    color: var(--primary);
}

/* Embedded Google Map Box */
.map-embed-box {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #f14902;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.map-embed-box iframe {
    display: block;
    width: 100%;
}

/* Contact Form Box (Right Side) */
.contact-form-card {
    background: #ffffff;
    border: 2px solid #f14902;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 12px 35px rgba(241, 73, 2, 0.08);
}

.contact-form-title {
    font-size: 26px;
    font-weight: 800;
    color: #2c2d30;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 28px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #2c2d30;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14.5px;
    color: #2c2d30;
    background: #f8fafc;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(241, 73, 2, 0.12);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-submit-btn {
    grid-column: span 2;
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 15px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 73, 2, 0.35);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(241, 73, 2, 0.45);
    transform: translateY(-2px);
}

/* Contact Form 7 Global Overrides */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-text,
.wpcf7-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14.5px;
    color: #2c2d30;
    background: #f8fafc;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(241, 73, 2, 0.12);
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
    grid-column: span 2;
    width: 100%;
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 15px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 73, 2, 0.35);
    margin-top: 10px;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(241, 73, 2, 0.45);
    transform: translateY(-2px);
}

.wpcf7-spinner {
    margin-left: 10px;
}

@media (max-width: 991px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-form-card {
        padding: 30px 22px;
    }
}

@media (max-width: 576px) {

    .contact-cards-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width,
    .contact-submit-btn {
        grid-column: span 1;
    }
}

/* --- PROHIBITED GOODS PAGE STYLING --- */
.prohibited-section {
    padding: 90px 0;
    background: #ffffff;
}

.prohibited-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px auto;
}

.prohibited-header .section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.prohibited-header .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.25;
    margin-bottom: 16px;
}

.prohibited-header .section-title mark {
    color: var(--primary);
    background: transparent;
}

.prohibited-header .section-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.65;
}

/* Compliance Warning Box */
.prohibited-warning-box {
    background: rgba(241, 73, 2, 0.05);
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.warning-box-icon {
    font-size: 36px;
    color: var(--primary);
    flex-shrink: 0;
}

.warning-box-content h4 {
    font-size: 17px;
    font-weight: 800;
    color: #2c2d30;
    margin-bottom: 4px;
}

.warning-box-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.55;
}

/* 2-Column Prohibited Items Grid */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.prohibited-card {
    background: #ffffff;
    border: 1.5px solid #f14902;
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prohibited-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(241, 73, 2, 0.12);
}

.prohibited-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(241, 73, 2, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.prohibited-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c2d30;
    line-height: 1.45;
}

/* Bottom CTA Box */
.prohibited-cta-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.prohibited-cta-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #2c2d30;
    margin-bottom: 10px;
}

.prohibited-cta-box p {
    font-size: 14.5px;
    color: #666666;
    margin-bottom: 24px;
}

.prohibited-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #ffffff;
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 73, 2, 0.35);
    text-decoration: none;
}

.prohibited-cta-btn:hover {
    background: var(--primary-hover);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(241, 73, 2, 0.45);
    transform: translateY(-2px);
}

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

/* --- NAVIGATION DROPDOWN MENU --- */
@media (min-width: 992px) {
    .main-nav li.has-dropdown {
        position: relative;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .main-nav .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 240px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        border-top: 3px solid var(--primary);
        padding: 10px 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
    }

    .main-nav li.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav .dropdown-menu li {
        width: 100%;
    }

    .main-nav .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 600;
        color: #2c2d30;
        text-transform: none;
        letter-spacing: 0;
        transition: all 0.25s ease;
    }

    .main-nav .dropdown-menu a:hover,
    .main-nav .dropdown-menu a.active {
        background: rgba(241, 73, 2, 0.08);
        color: var(--primary);
        padding-left: 24px;
    }
}

/* --- SERVICE DETAILS PAGE STYLING (REFERENCE PARITY) --- */
.service-details-section {
    padding: 90px 0;
    background: #ffffff;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 110px;
    align-self: start;
}

.service-sidebar-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #2c2d30;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.service-sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.service-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-sidebar-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 15px;
    color: #2c2d30;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-sidebar-menu a:hover,
.service-sidebar-menu a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(241, 73, 2, 0.3);
    transform: translateX(4px);
}

.service-sidebar-menu a .arrow-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-sidebar-menu a:hover .arrow-icon,
.service-sidebar-menu a.active .arrow-icon {
    transform: translateX(4px);
    color: #ffffff;
}

/* Sidebar Help Banner Box */
.sidebar-help-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #ffffff;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-help-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(241, 73, 2, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px auto;
}

.sidebar-help-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.sidebar-help-desc {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sidebar-help-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.sidebar-help-phone:hover {
    background: var(--primary-hover);
}

/* Right Main Content */
.service-main-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Images Grid (1 Main Large + 2 Side Images matching reference) */
.service-gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.service-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-sub-imgs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-sub-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.service-overview-title {
    font-size: 32px;
    font-weight: 800;
    color: #2c2d30;
    margin-top: 10px;
    margin-bottom: 5px;
}

.service-body p,
.service-overview-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-body p:last-child {
    margin-bottom: 0;
}

.service-offer-title {
    font-size: 22px;
    font-weight: 800;
    color: #2c2d30;
    margin-top: 10px;
    margin-bottom: 8px;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 5px 0 10px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: #475569;
}

.service-checklist li i {
    color: var(--primary);
    font-size: 16px;
}

/* We Covered / We Handled Stat Cards (Matching Reference Screenshot) */
.service-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 10px;
}

.service-stat-card {
    background: #ffffff;
    border: 1.5px solid #f14902;
    border-radius: 14px;
    padding: 26px 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 6px 20px rgba(241, 73, 2, 0.08);
    transition: transform 0.3s ease;
}

.service-stat-card:hover {
    transform: translateY(-4px);
}

.service-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(241, 73, 2, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.service-stat-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.service-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #2c2d30;
    line-height: 1.1;
}

.service-stat-subtext {
    font-size: 12.5px;
    color: #64748b;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .service-details-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .service-sidebar {
        display: contents !important;
        position: static;
    }

    .service-sidebar-box {
        order: 1;
    }

    .service-main-content {
        order: 2;
    }

    .sidebar-help-box {
        order: 3;
        margin-top: 10px;
    }

    .service-gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-main-img {
        height: 280px;
    }

    .service-stats-grid,
    .service-checklist {
        grid-template-columns: 1fr;
    }
}

/* --- LEGAL & POLICY PAGES (PRIVACY POLICY & TERMS & CONDITIONS) --- */
.legal-content-section {
    padding: 70px 0 90px 0;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 73, 2, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.legal-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c2d30;
    margin-bottom: 8px;
}

.legal-last-updated {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.legal-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.legal-block h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 10px;
}

.legal-block h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.legal-block p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
}

.legal-list li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

.legal-block a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

.legal-contact-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-contact-card p {
    font-size: 14px;
    color: #334155;
    margin: 0;
}

.legal-contact-card p i {
    color: var(--primary);
    margin-right: 8px;
    width: 18px;
}