/* ============================================================
   JMTC - Johal Motor Transport Corporation
   Main Stylesheet
   Font: Rajdhani (headings) + Barlow (body)
   Colors: #02223F, #064a75, #064b76, #dc2626
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --navy: #02223F;
    --blue: #064a75;
    --blue-mid: #064b76;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --white: #ffffff;
    --light-bg: #f4f7fb;
    --light-bg2: #eef2f7;
    --text-dark: #0f172a;
    --text-body: #374151;
    --text-muted: #6b7280;
    --border: #e2e8f0;
    --grad-main: linear-gradient(90deg, #02223F 0%, #064a75 100%);
    --grad-red: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --shadow-sm: 0 2px 12px rgba(6, 74, 117, .10);
    --shadow-md: 0 8px 32px rgba(6, 74, 117, .15);
    --shadow-lg: 0 20px 60px rgba(2, 34, 63, .18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-cond: 'Barlow Condensed', sans-serif;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 0;
    margin: 0;
    position: relative !important;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100% !important;
    height: auto !important;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.section-pad-sm {
    padding: 60px 0;
}

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

.text-accent {
    color: #f59e0b;
}

.text-green {
    color: #16a34a;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   TOP HEADER BAR
   ============================================================ */
.top-header-bar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1031;
    overflow-x: hidden !important;
}

.top-header-bar a {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 20px;
    transition: var(--transition);
}

.top-header-bar a i {
    margin-right: 5px;
    /* color: var(--red); */
}

.top-header-bar a:hover {
    color: var(--white);
}

.top-social a {
    color: rgba(255, 255, 255, 0.7);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    margin-left: 5px;
}

.top-social a:hover {
    /* background: var(--red); */
    border-color: var(--red);
    color: white;
}

/* ============================================================
   MAIN NAVBAR
   ============================================================ */
.main-navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 20px rgba(2, 34, 63, 0.12);
    padding: 10px 0;
    transition: var(--transition);
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    overflow-x: hidden !important;
}

.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(2, 34, 63, 0.18);
}

/* Logo Styles */
.jmtc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Nav Links */
.main-navbar .navbar-nav {
    gap: 0.5rem;
}

.main-navbar .nav-link {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy) !important;
    padding: 8px 16px !important;
    position: relative;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--red) !important;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 10px;
    min-width: 220px;
    border-top: 3px solid var(--red);
    margin-top: 8px !important;
}

.nav-dropdown-menu .dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
}

.nav-dropdown-menu .dropdown-item:hover {
    background: var(--light-bg);
    color: var(--red);
    padding-left: 20px;
}

.nav-dropdown-menu .dropdown-divider {
    margin: 8px 0;
    border-color: var(--border);
}

/* Book Now Button */
.btn-book-now {
    background: var(--grad-red);
    color: white !important;
    border-radius: 8px;
    padding: 10px 22px !important;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
    transition: var(--transition);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.45);
    color: white !important;
}

.btn-book-now::after {
    display: none !important;
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.hamburger-btn {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 1100;
    position: relative;
}

.hamburger-btn:hover {
    background: var(--light-bg);
}

.ham-line {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger-btn.is-active .ham-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.is-active .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.is-active .ham-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   SIDEBAR (MOBILE)
   ============================================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 34, 63, 0.6);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    transition: all 0.35s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1300;
    overflow-y: auto;
    box-shadow: 10px 0 40px rgba(2, 34, 63, 0.2);
    transition: left 0.4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.sidebar.sidebar-open {
    left: 0;
}

.sidebar-header {
    background: var(--grad-main);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.logo-icon-wrap {
    width: 60px;
    height: 48px;
    /* background: rgba(255, 255, 255, 0.15); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
}

.sidebar-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.logo-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
}

.sidebar-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.sidebar-close-btn:hover {
    background: var(--red);
}

.sidebar-nav {
    padding: 15px 0;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.sidebar-link i {
    width: 20px;
    text-align: center;
    color: var(--blue);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--light-bg);
    color: var(--red);
    border-left-color: var(--red);
}

.sidebar-link:hover i,
.sidebar-link.active i {
    color: var(--red);
}

.sidebar-dropdown-toggle {
    cursor: pointer;
}

.sidebar-dropdown-toggle .fa-chevron-down {
    margin-left: auto;
    transition: var(--transition);
}

.sidebar-dropdown.open .fa-chevron-down {
    transform: rotate(180deg);
}

.sidebar-submenu {
    background: var(--light-bg);
    display: none;
    padding: 5px 0;
}

.sidebar-dropdown.open .sidebar-submenu {
    display: block;
}

.sidebar-submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 50px;
    font-size: 14px;
    color: var(--text-body);
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-submenu li a:hover {
    color: var(--red);
    padding-left: 55px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: var(--grad-main);
    color: white;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.sidebar-contact-btn:hover {
    opacity: 0.9;
    color: white;
    transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 0;
    overflow-x: hidden !important;
}

.hero-slide {
    padding-top: 100px;
    min-height: 72vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow-x: hidden !important;
}

/* Hero Slide Background Images */
.slide-schoolbus {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../img/banner/11.jpg');
}

.slide-officestaff {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../img/banner/22.jpg');
}

.slide-govt {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../img/banner/33.jpg');
}

.slide-truck {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../img/banner/44.jpg');
}

.slide-combined {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../img/banner/55.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 70%) 60%, rgba(6, 74, 117, 0.3) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.hero-content {
    max-width: 680px;
    animation: heroFadeIn 0.8s ease;
    position: relative;
    z-index: 2;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #fca5a5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: var(--red);
}

.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 560px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: var(--red);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    border: 2px solid var(--red);
    transition: var(--transition);
    white-space: normal !important;
    word-break: break-word !important;
}

.btn-hero-primary:hover {
    background: var(--red-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    white-space: normal !important;
    word-break: break-word !important;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--navy);
    border-color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

/* Carousel Controls */
.hero-ctrl {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50% !important;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1020;
}

.hero-ctrl:hover {
    background: var(--red) !important;
    border-color: var(--red);
}

.carousel-control-prev.hero-ctrl {
    left: 20px;
}

.carousel-control-next.hero-ctrl {
    right: 20px;
}

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

.carousel-indicators {
    z-index: 15;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--red);
    width: 28px;
    border-radius: 5px;
}

/* Quick Book Bar */
.quick-book-bar {
    background: white;
    box-shadow: 0 -4px 40px rgba(2, 34, 63, 0.15), 0 10px 40px rgba(2, 34, 63, 0.1);
    padding: 25px 0;
    position: relative;
    z-index: 15;
    margin-top: -2px;
    overflow-x: hidden !important;
}

.quick-book-form label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 6px;
    display: block;
}

.qb-input-wrap {
    position: relative;
}

.qb-input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: 13px;
    z-index: 1;
}

.qb-input-wrap .form-control {
    padding-left: 35px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    height: 44px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.qb-input-wrap .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(6, 74, 117, 0.1);
}

.btn-book-search {
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 8px;
    height: 44px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(6, 74, 117, 0.3);
}

.btn-book-search:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: white;
}

/* ============================================================
   SECTION TAGS & TITLES
   ============================================================ */
.section-tag {
    display: inline-block;
    background: rgba(220, 38, 38, 0.08);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-bottom: 12px;
}

.tag-white {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--white);
}

.about-img-block {
    position: relative;
    padding: 20px 20px 60px 0;
}

.about-img-main img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 450px;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 5px solid white;
}

.about-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    left: -10px;
    background: var(--grad-red);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-num {
    display: block;
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
}

.about-feat-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(6, 74, 117, 0.1), rgba(6, 74, 117, 0.05));
    border: 1.5px solid rgba(6, 74, 117, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-feat-item:hover .feat-icon {
    background: var(--blue);
    color: white;
}

.about-feat-item h6 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.about-feat-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.btn-primary-jmtc {
    background: var(--grad-main);
    color: white;
    padding: 13px 28px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    white-space: normal !important;
    word-break: break-word !important;
}

.btn-primary-jmtc:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ============================================================
   BOOK TRANSPORT SECTION
   ============================================================ */
.book-truck-section {
    overflow: hidden;
}

.book-truck-bg {
    background: var(--grad-main);
    padding: 90px 0;
    position: relative;
}

.book-truck-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.book-truck-bg::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 50%;
}

.book-truck-bg .container {
    position: relative;
    z-index: 2;
}

.book-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.book-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.step-num {
    font-family: var(--font-cond);
    font-size: 36px;
    font-weight: 800;
    color: rgba(220, 38, 38, 0.5);
    line-height: 1;
    min-width: 50px;
}

.step-content h6 {
    font-family: var(--font-head);
    font-size: 16px;
    color: white;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.btn-accent {
    background: var(--red);
    color: white;
    padding: 13px 28px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
    white-space: normal !important;
    word-break: break-word !important;
}

.btn-accent:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.45);
}

.book-truck-imgs {
    position: relative;
}

.book-img-main img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 400px;
}

.book-img-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.book-img-float img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(2, 34, 63, 0.25);
    animation: floatAnim 3s ease-in-out infinite;
    z-index: 5;
}

.floating-card i {
    font-size: 22px;
}

.floating-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.floating-card small {
    font-size: 11px;
    color: var(--text-muted);
}

.fc-1 {
    top: 20px;
    right: -20px;
}

.fc-2 {
    bottom: 60px;
    right: 20px;
    animation-delay: 1.5s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: var(--light-bg);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 34, 63, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.btn-white-outline {
    border: 2px solid white;
    color: white;
    border-radius: 6px;
    padding: 8px 20px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-white-outline:hover {
    background: white;
    color: var(--navy);
}

.service-card-body {
    padding: 25px;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--grad-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(6, 74, 117, 0.3);
}

.service-card-body h5 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-link {
    color: var(--red);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--red-dark);
}

/* ============================================================
   WHY CHOOSE US SECTION (TIPS)
   ============================================================ */
.tips-section {
    background: var(--white);
}

.tips-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.tips-img-wrap .rounded-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.tips-badge {
    position: absolute;
    bottom: 25px;
    right: -15px;
    background: var(--grad-main);
    color: white;
    padding: 14px 18px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.tips-badge i {
    font-size: 20px;
    color: #f59e0b;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
}

.tip-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.tip-item:hover {
    background: var(--light-bg);
    border-color: rgba(6, 74, 117, 0.1);
    transform: translateX(5px);
}

.tip-icon-wrap {
    width: 46px;
    height: 46px;
    background: var(--grad-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    flex-shrink: 0;
}

.tip-content h6 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.tip-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    overflow: hidden;
}

.testimonials-bg {
    background: linear-gradient(135deg, #02223F 0%, #064a75 50%, #064b76 100%);
    padding: 90px 0;
    position: relative;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.testimonials-bg .container {
    position: relative;
    z-index: 2;
}

.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(10px);
    height: 100%;
    transition: var(--transition);
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testi-card-featured {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.testi-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-text::before {
    content: '\201C';
    font-size: 40px;
    color: var(--red);
    line-height: 0;
    vertical-align: -15px;
    margin-right: 4px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    color: white;
}

.testi-author span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testi-ctrl-btn {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testi-ctrl-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.testi-indicators {
    position: static !important;
    margin: 0;
}

.testi-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 4px;
}

.testi-indicators button.active {
    background: var(--red);
    width: 22px;
    border-radius: 4px;
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-section {
    background: var(--light-bg);
    overflow: hidden;
}

.clients-marquee-wrap {
    overflow: hidden;
    position: relative;
}

.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.clients-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}

.clients-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bbg), transparent);
}

.clients-track {
    display: flex;
    gap: 20px;
    animation: marqueeLeft 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 24px;
    min-width: 150px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.client-logo-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.client-abbr {
    width: 50px;
    height: 50px;
    background: var(--grad-main);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
}

.client-logo-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

/* ============================================================
   CITIES SECTION
   ============================================================ */
.cities-section {
    background: var(--white);
    overflow: hidden;
}

.cities-marquee-wrap {
    overflow: hidden;
    position: relative;
}

.cities-marquee-wrap::before,
.cities-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.cities-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.cities-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.cities-track {
    display: flex;
    gap: 12px;
    animation: marqueeLeft 40s linear infinite;
    width: max-content;
    padding: 5px 0;
}

.cities-track-reverse {
    display: flex;
    gap: 12px;
    animation: marqueeRight 40s linear infinite;
    width: max-content;
    padding: 5px 0;
}

.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    white-space: nowrap;
    transition: var(--transition);
}

.city-pill i {
    color: var(--red);
    font-size: 11px;
}

.city-pill:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.city-pill:hover i {
    color: rgba(255, 255, 255, 0.7);
}

.city-pill-alt {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.15);
}

.city-pill-alt i {
    color: var(--red);
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 50px 0;
    background: var(--light-bg);
}

.cta-box {
    background: var(--grad-main);
    border-radius: var(--radius-lg);
    padding: 50px 50px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '\f0d1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.cta-box h3 {
    font-family: var(--font-head);
    font-size: 28px;
    color: white;
    margin-bottom: 8px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin: 0;
}

.btn-cta-white {
    background: white;
    color: var(--navy);
    padding: 13px 28px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    white-space: normal !important;
    word-break: break-word !important;
}

.btn-cta-white:hover {
    background: var(--red);
    color: white;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    white-space: normal !important;
    word-break: break-word !important;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: var(--navy);
    overflow-x: hidden !important;
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.footer-logo-name {
    display: block;
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.footer-logo-tagline {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.footer-widget-title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a i {
    font-size: 10px;
    color: var(--red);
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

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

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--red);
    font-size: 14px;
    margin-top: 2px;
    min-width: 16px;
}

.footer-contact-list span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

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

.footer-contact-list a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--red);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--grad-main);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--red);
    color: white;
    transform: translateY(-3px);
}

/* ============================================================
   ROUNDED HELPERS
   ============================================================ */
.rounded-main {
    border-radius: var(--radius-lg) !important;
}

.rounded-sec {
    border-radius: var(--radius) !important;
}

/* ============================================================
   FIX FOR ROW AND COLUMN OVERFLOW
   ============================================================ */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

[class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Fix for all elements that might cause horizontal scroll */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .hero-slide {
        min-height: 75vh;
    }

    .about-img-secondary {
        right: 0;
    }

    .fc-1 {
        right: 0;
    }

    .book-img-float {
        left: 0;
        bottom: 0;
    }
}

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

    .hero-slide {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-secondary {
        display: none;
    }

    .about-experience-badge {
        left: 10px;
    }

    .book-truck-bg {
        padding: 60px 0;
    }

    .book-truck-imgs {
        margin-top: 30px;
    }

    .book-img-float {
        display: none;
    }

    .fc-1,
    .fc-2 {
        display: none;
    }

    .tips-img-wrap .rounded-main {
        height: 380px;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .testimonials-section .carousel-item .row .col-lg-4:last-child {
        display: none;
    }
}

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

    .section-pad-sm {
        padding: 40px 0;
    }

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

    .hero-slide {
        min-height: 70vh;
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-num {
        font-size: 24px;
    }

    .stat-divider {
        display: none !important;
    }

    .hero-ctrl {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-control-prev.hero-ctrl {
        left: 10px;
    }

    .carousel-control-next.hero-ctrl {
        right: 10px;
    }

    .quick-book-bar {
        padding: 20px 0;
    }

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

    .about-experience-badge {
        padding: 10px 14px;
    }

    .exp-num {
        font-size: 24px;
    }

    .book-img-main img {
        height: 300px;
    }

    .tips-img-wrap .rounded-main {
        height: 280px;
    }

    .tips-badge {
        display: none;
    }

    .cta-box {
        padding: 30px 20px;
        text-align: center;
    }

    .cta-box h3 {
        font-size: 22px;
    }

    .testi-card-featured {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .testimonials-section .carousel-item .row .col-md-6:nth-child(2) {
        display: none;
    }

    .logo-sub {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .main-navbar .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hero-content {
        padding-right: 15px !important;
    }

    .clients-marquee-wrap,
    .cities-marquee-wrap {
        overflow-x: hidden !important;
    }

    .client-logo-card {
        min-width: 120px !important;
        padding: 12px 16px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 11px;
    }

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

    .quick-book-form .col-lg-2:nth-child(3) {
        display: none;
    }

    .hero-stats {
        gap: 16px;
    }

    .logo-main {
        font-size: 22px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }
}