/* Font Face Definitions */
@font-face {
    font-family: 'Uber Move Text';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uber Move Text';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uber Move Text';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uber Move Text';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Uber Move Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #28a745 !important;
}

.btn-download-app {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.btn-download-app:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* 
.btn-download-app:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.2);
} */

/* Services Dropdown Styles */

.services-dropdown .dropdown-menu {
    display: none !important;
}

.services-dropdown .dropdown-toggle::after {
    display: none !important;
}

.services-dropdown .dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.services-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.services-dropdown {
    cursor: pointer;
}

.services-dropdown .dropdown-toggle {
    pointer-events: auto !important;
}

.services-dropdown:hover .services-fullscreen-menu {
    display: block !important;
    transform: translateY(0) !important;
}

.services-fullscreen-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    min-height: 60vh;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    z-index: 99999;
    display: none;
    overflow-y: auto;
    padding: 40px 0 30px;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-fullscreen-menu.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.services-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.services-close-btn:hover {
    background: white;
    color: #28a745;
    transform: scale(1.1);
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-grid {
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    color: #28a745;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.85rem;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    /* padding-top: 80px; */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 750px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-icon img {
    width: 34px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    margin: 2rem 0;
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Uber-Style Form Design */
.uber-style {
    position: relative;
    margin-bottom: 0;
}

.form-group:first-of-type .uber-style::after {
    content: '';
    position: absolute;
    left: 19.7px;
    top: 72%;
    width: 1px;
    height: 61px;
    background: #000;
    z-index: 5;
}

.input-icon-wrapper {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.input-icon-start {
    color: #000;
    font-size: 0.6rem;
}

.input-icon-end {
    color: #000;
    font-size: 0.6rem;
}

.uber-label {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
    background: transparent;
    padding: 0 5px;
    margin: 0;
}

.uber-input {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 40px 12px 35px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.uber-input:focus {
    outline: none;
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

.uber-input:focus+.uber-label,
.uber-input:not(:placeholder-shown)+.uber-label,
.uber-input.has-value+.uber-label,
.uber-label.floating {
    top: 0;
    font-size: 0.75rem;
    color: #28a745;
    transform: translateY(-50%);
    background: white;
    padding: 0 8px;
}

.uber-input::placeholder {
    color: #666;
    font-weight: 400;
}

.uber-location-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 5px;
}

.uber-location-btn:hover {
    color: #28a745;
    transform: translateY(-50%) scale(1.1);
}

.uber-location-btn i {
    font-size: 1rem;
}

.uber-submit-btn {
    background: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.uber-submit-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.uber-submit-btn:active {
    transform: translateY(0);
}

.booking-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: #666;
    font-size: 1rem;
}

.booking-form {
    margin-bottom: 1.5rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #28a745;
    font-size: 1rem;
    z-index: 2;
}

#bookingForm .form-control {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Uber Move Text', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.location-btn {
    position: absolute;
    right: 10px;
    border: none;
    color: #333;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Uber Move Text', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Uber Move Text', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-block {
    width: 100%;
}

.booking-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.trust-item i {
    color: #28a745;
    font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.how-it-works-section .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.how-it-works-section .row {
    align-items: center;
    height: 100%;
}

.how-it-works-content {
    padding-right: 2rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.4;
    max-width: 600px;
}

.steps-container {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.6;
    min-height: 120px;
}

.step-item.active {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateX(10px);
}

.step-item:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.step-item.active:hover {
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p {
    color: #666;
    line-height: 1.4;
    font-size: 1rem;
    margin: 0;
}

.step-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-btn:hover {
    background: #28a745;
    border-color: #28a745;
    color: white;
    transform: scale(1.05);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.step-dots {
    display: flex;
    gap: 0.8rem;
}

.step-dots .dot {
    width: 12px;
    height: 12px;
    background: #e9ecef;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dots .dot.active {
    background: #28a745;
    transform: scale(1.3);
}

.step-dots .dot:hover {
    background: #20c997;
    transform: scale(1.2);
}

/* Mobile Screens Container */
.mobile-screens-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0;
    justify-content: center;
    height: 100%;
}

.mobile-frame {
    position: relative;
    width: 310px;
    height: 648px;
    background: #333;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.mobile-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.screen-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen-image.active {
    opacity: 1;
}

.screen-indicator {
    text-align: center;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.current-step {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* Apple-Style Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu-logo {
    flex: 1;
}

.mobile-logo-img {
    height: 35px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-content {
    flex: 1;
    padding: 20px 0;
}

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

.mobile-menu-item {
    border-bottom: 1px solid #f8f9fa;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    background: #f8f9fa;
    color: #28a745;
}

.mobile-menu-arrow {
    font-size: 0.9rem;
    color: #666;
    transition: transform 0.2s ease;
}

.mobile-menu-item-with-submenu .mobile-menu-link:hover .mobile-menu-arrow {
    transform: translateX(3px);
}

.mobile-menu-footer {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
}

.download-apps-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
}

.app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
    border-color: #dee2e6;
}

/* Icon left */
.store-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 26px;
}

/* Android style */
.store-icon-android {
    background: #e8f5e9;
    color: #34a853;
    /* Google Play green */
    border: 2px solid #cde9d5;
}

/* iOS style */
.store-icon-ios {
    background: #ffffff;
    color: #6c757d;
    border: 2px solid #d9d9d9;
}

/* Text right */
.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-text-small {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #6c757d;
    letter-spacing: 0.06em;
}

.store-text-large {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2d3e50;
}

/* Hide old image-based badge if present in DOM */
.app-store-img {
    display: none;
}

/* Services Submenu */
.mobile-menu-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-submenu.active {
    transform: translateX(0);
}

.mobile-submenu-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu-back,
.mobile-submenu-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-submenu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.mobile-submenu-content {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-submenu-item {
    padding: 0 20px;
    margin-bottom: 15px;
}

.mobile-submenu-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-submenu-card:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-submenu-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.mobile-submenu-icon i {
    font-size: 1.2rem;
    color: white;
}

.mobile-submenu-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.mobile-submenu-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Custom Hamburger Menu */
.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: none;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Services Menu - Simple List */
@media (max-width: 992px) {

    /* Show custom hamburger menu on mobile */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide Bootstrap navbar collapse on mobile */
    .navbar-collapse {
        display: none !important;
    }

    /* Hide old services dropdown on mobile */
    .services-fullscreen-menu {
        display: none !important;
    }

    /* Completely disable hover effects on mobile */
    .services-dropdown:hover .services-fullscreen-menu {
        display: none !important;
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /* Disable all hover effects on services dropdown for mobile */
    .services-dropdown:hover {
        background: none !important;
    }

    .services-dropdown .dropdown-toggle:hover {
        color: #333 !important;
    }

    .services-fullscreen-menu {
        position: static;
        width: 100%;
        min-height: auto;
        background: #f8f9fa;
        padding: 20px 0;
        transform: none;
        box-shadow: none;
        border-top: 1px solid #e9ecef;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .services-fullscreen-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .services-fullscreen-menu .container {
        padding: 0 20px;
    }

    .services-header {
        display: none;
    }

    .services-grid {
        margin-top: 0;
    }

    .services-grid .row {
        flex-direction: column;
    }

    .service-card {
        background: white;
        padding: 15px 20px;
        margin-bottom: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        /* display: flex; */
        align-items: center;
        text-align: left;
    }

    .service-icon {
        /* width: 40px;
        height: 40px; */
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .service-icon i {
        font-size: 1rem;
    }

    .service-card h4 {
        font-size: 1rem;
        margin-bottom: 0;
        color: #333;
    }

    /* .service-card p,
    .service-card ul {
        display: none;
    } */

    .service-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* ========================================
   TRUCK JOURNEY SECTION STYLES
   ======================================== */

/* Creative Truck Journey Section */
.truck-journey-section {
    padding: 60px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.truck-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="truck-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20 Q20 10 40 20 T80 20" stroke="%2328a745" stroke-width="1" fill="none" opacity="0.05"/><circle cx="10" cy="20" r="2" fill="%2328a745" opacity="0.1"/><circle cx="30" cy="20" r="2" fill="%2328a745" opacity="0.1"/><circle cx="50" cy="20" r="2" fill="%2328a745" opacity="0.1"/><circle cx="70" cy="20" r="2" fill="%2328a745" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23truck-pattern)"/></svg>');
    opacity: 0.3;
}

.journey-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Content */
.journey-content {
    padding-right: 2rem;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.journey-badge i {
    font-size: 1rem;
}

.journey-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-start {
    color: #28a745;
    position: relative;
}

.highlight-start::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, transparent);
    border-radius: 2px;
}

.highlight-end {
    color: #20c997;
    position: relative;
}

.highlight-end::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #20c997, transparent);
    border-radius: 2px;
}

.journey-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.journey-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

.stat-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #F5F7F8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-stats .stat-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #28a745;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.journey-actions {
    display: flex;
    gap: 1rem;
}

.btn-journey-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.btn-journey-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    color: white;
}

.btn-journey-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #28a745;
    padding: 1rem 2rem;
    border: 2px solid #28a745;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-journey-secondary:hover {
    background: #28a745;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

/* Right Side - Visual Elements */
.journey-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.truck-animation {
    position: relative;
    width: 100%;
    height: 200px;
}

.road-path {
    position: relative;
    width: 100%;
    height: 100%;
}

.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997, #28a745);
    border-radius: 2px;
    transform: translateY(-50%);
}

.road-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 20px, white 20px, white 40px);
    border-radius: 2px;
}

.truck-icon {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: truckMove 8s ease-in-out infinite;
}

.truck-icon i {
    font-size: 2rem;
    color: white;
}

.pickup-point {
    position: absolute;
    top: 20%;
    left: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pickup-point i {
    font-size: 2rem;
    color: #28a745;
    animation: pulse 2s ease-in-out infinite;
}

.pickup-point span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #28a745;
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.delivery-point {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.delivery-point i {
    font-size: 2rem;
    color: #20c997;
    animation: pulse 2s ease-in-out infinite 1s;
}

.delivery-point span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #20c997;
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: #28a745;
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    top: 15%;
    right: 15%;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

/* Truck Journey Animations */
@keyframes truckMove {

    0%,
    100% {
        left: 20%;
    }

    50% {
        left: 70%;
    }
}

/* Truck Journey Responsive Design */
@media (max-width: 991px) {
    .journey-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .journey-content {
        padding-right: 0;
        text-align: center;
    }

    .journey-title {
        font-size: 2.2rem;
    }

    .journey-stats {
        align-items: center;
    }

    .stat-item {
        max-width: 300px;
        margin: 0 auto;
    }

    .journey-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .truck-journey-section {
        padding: 40px 0;
        min-height: auto;
    }

    .journey-title {
        font-size: 1.8rem;
    }

    .journey-description {
        font-size: 1rem;
    }

    .journey-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-journey-primary,
    .btn-journey-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .journey-visual {
        height: 250px;
    }

    .truck-icon {
        width: 50px;
        height: 50px;
    }

    .truck-icon i {
        font-size: 1.5rem;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon i {
        font-size: 1.2rem;
    }
}

/* ========================================
   END TRUCK JOURNEY SECTION STYLES
   ======================================== */

/* ========================================
   FAQ SECTION STYLES
   ======================================== */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%2328a745" opacity="0.05"/><circle cx="10" cy="30" r="1" fill="%2328a745" opacity="0.03"/><circle cx="30" cy="10" r="1" fill="%2328a745" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.3;
}

/* Section Header */
.faq-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.faq-badge i {
    font-size: 1rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-faq {
    color: #28a745;
    position: relative;
}

.highlight-faq::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* FAQ Content */
.faq-content {
    position: relative;
    z-index: 2;
}

/* FAQ Accordion */
.faq-accordion {
    padding-right: 2rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.faq-item.active {
    border-color: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(40, 167, 69, 0.02);
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    opacity: 0;
    display: none;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
    display: block;
}

.faq-answer p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #28a745;
    font-weight: 600;
}

/* FAQ Visual */
.faq-visual {
    padding-left: 2rem;
}

.faq-illustration {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.illustration-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.illustration-circle i {
    font-size: 3rem;
    color: white;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* FAQ Stats */
.faq-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

.stat-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
}


/* FAQ CTA */
.faq-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #28a745;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #28a745;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: #28a745;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FAQ Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

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

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

/* FAQ Responsive Design */
@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-accordion {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .faq-visual {
        padding-left: 0;
    }

    .faq-illustration {
        height: 250px;
    }

    .illustration-circle {
        width: 100px;
        height: 100px;
    }

    .illustration-circle i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
    }

    .faq-icon i {
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }

    .faq-illustration {
        height: 200px;
    }
}

/* FAQ Section - Mobile Layout 320px to 480px */
@media (max-width: 480px) {
    .faq-section {
        padding: 2rem 0 !important;
    }

    .faq-header {
        margin-bottom: 2rem !important;
    }

    .faq-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    .faq-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .faq-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .faq-content {
        margin-bottom: 2rem !important;
    }

    .faq-accordion {
        padding-right: 0 !important;
    }

    .faq-item {
        margin-bottom: 0.8rem !important;
        border-radius: 12px !important;
    }

    .faq-question {
        padding: 1rem !important;
    }

    .faq-question h4 {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
    }

    .faq-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }

    .faq-answer {
        padding: 0 1rem 1rem !important;
    }

    .faq-answer p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
    }

    .faq-answer ul {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        padding-left: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .faq-answer li {
        margin-bottom: 0.3rem !important;
    }

    .faq-cta {
        padding: 1.5rem 0 !important;
    }

    .cta-content h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .cta-content p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: center !important;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100% !important;
        max-width: 250px !important;
        font-size: 0.85rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}

/* FAQ Section - Mobile Layout 481px to 580px */
@media (min-width: 481px) and (max-width: 580px) {
    .faq-section {
        padding: 2.5rem 0 !important;
    }

    .faq-header {
        margin-bottom: 2.5rem !important;
    }

    .faq-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }

    .faq-title {
        font-size: 1.7rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .faq-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .faq-content {
        margin-bottom: 2.5rem !important;
    }

    .faq-accordion {
        padding-right: 0 !important;
    }

    .faq-item {
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
    }

    .faq-question {
        padding: 1.2rem !important;
    }

    .faq-question h4 {
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
    }

    .faq-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem !important;
    }

    .faq-answer p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
    }

    .faq-answer ul {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        padding-left: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }

    .faq-answer li {
        margin-bottom: 0.4rem !important;
    }

    .faq-cta {
        padding: 2rem 0 !important;
    }

    .cta-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }

    .cta-content p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }

    .cta-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100% !important;
        max-width: 280px !important;
        font-size: 0.9rem !important;
        padding: 0.9rem 1.8rem !important;
    }
}

/* FAQ Section - Mobile Layout 581px to 767px */
@media (min-width: 581px) and (max-width: 767px) {
    .faq-section {
        padding: 3rem 0 !important;
    }

    .faq-header {
        margin-bottom: 3rem !important;
    }

    .faq-badge {
        font-size: 0.9rem !important;
        padding: 0.6rem 1.2rem !important;
        margin-bottom: 1rem !important;
    }

    .faq-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .faq-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 2rem !important;
    }

    .faq-content {
        margin-bottom: 3rem !important;
    }

    .faq-accordion {
        padding-right: 0 !important;
    }

    .faq-item {
        margin-bottom: 1rem !important;
        border-radius: 15px !important;
    }

    .faq-question {
        padding: 1.3rem !important;
    }

    .faq-question h4 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .faq-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }

    .faq-answer {
        padding: 0 1.3rem 1.3rem !important;
    }

    .faq-answer p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }

    .faq-answer ul {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        padding-left: 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    .faq-answer li {
        margin-bottom: 0.5rem !important;
    }

    .faq-cta {
        padding: 2.5rem 0 !important;
    }

    .cta-content h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .cta-content p {
        font-size: 0.95rem !important;
        margin-bottom: 1.2rem !important;
    }

    .cta-buttons {
        flex-direction: row !important;
        gap: 1rem !important;
        justify-content: center !important;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        flex: 1 !important;
        max-width: 200px !important;
        font-size: 0.95rem !important;
        padding: 1rem 1.5rem !important;
    }
}

/* FAQ Section - Tablet Layout 768px to 990px */
@media (min-width: 768px) and (max-width: 990px) {
    .faq-section {
        padding: 3.5rem 0 !important;
    }

    .faq-header {
        margin-bottom: 3rem !important;
    }

    .faq-badge {
        font-size: 0.95rem !important;
        padding: 0.7rem 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    .faq-title {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .faq-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
    }

    .faq-content {
        margin-bottom: 3rem !important;
    }

    .faq-accordion {
        padding-right: 1rem !important;
    }

    .faq-item {
        margin-bottom: 1rem !important;
        border-radius: 15px !important;
    }

    .faq-question {
        padding: 1.4rem !important;
    }

    .faq-question h4 {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
    }

    .faq-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }

    .faq-answer {
        padding: 0 1.4rem 1.4rem !important;
    }

    .faq-answer p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }

    .faq-answer ul {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding-left: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .faq-answer li {
        margin-bottom: 0.5rem !important;
    }

    .faq-cta {
        padding: 3rem 0 !important;
    }

    .cta-content h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .cta-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .cta-buttons {
        flex-direction: row !important;
        gap: 1.2rem !important;
        justify-content: center !important;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        flex: 1 !important;
        max-width: 220px !important;
        font-size: 1rem !important;
        padding: 1.1rem 1.8rem !important;
    }
}

/* FAQ Section - Desktop Layout 991px to 1199px */
@media (min-width: 991px) and (max-width: 1199px) {
    .faq-section {
        padding: 4rem 0 !important;
    }

    .faq-header {
        margin-bottom: 3.5rem !important;
    }

    .faq-badge {
        font-size: 1rem !important;
        padding: 0.8rem 1.6rem !important;
        margin-bottom: 1rem !important;
    }

    .faq-title {
        font-size: 2.4rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .faq-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2.5rem !important;
    }

    .faq-content {
        margin-bottom: 3.5rem !important;
    }

    .faq-accordion {
        padding-right: 1.5rem !important;
    }

    .faq-item {
        margin-bottom: 1rem !important;
        border-radius: 15px !important;
    }

    .faq-question {
        padding: 1.5rem !important;
    }

    .faq-question h4 {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
    }

    .faq-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem !important;
    }

    .faq-answer p {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }

    .faq-answer ul {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding-left: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .faq-answer li {
        margin-bottom: 0.5rem !important;
    }

    .faq-cta {
        padding: 3.5rem 0 !important;
    }

    .cta-content h3 {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
    }

    .cta-content p {
        font-size: 1.05rem !important;
        margin-bottom: 1.5rem !important;
    }

    .cta-buttons {
        flex-direction: row !important;
        gap: 1.5rem !important;
        justify-content: center !important;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        flex: 1 !important;
        max-width: 250px !important;
        font-size: 1.05rem !important;
        padding: 1.2rem 2rem !important;
    }
}

.illustration-circle {
    width: 80px;
    height: 80px;
}

.illustration-circle i {
    font-size: 2rem;
}

.floating-icon {
    width: 40px;
    height: 40px;
}

.floating-icon i {
    font-size: 1.2rem;
}

.stat-card {
    padding: 0.8rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
}

.stat-icon i {
    font-size: 1.2rem;
}

.stat-number {
    font-size: 1.3rem;
}

.faq-cta {
    padding: 2rem 1rem;
}

.cta-content h3 {
    font-size: 1.5rem;
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    width: 100%;
    max-width: 250px;
    justify-content: center;
}


/* ========================================
   END FAQ SECTION STYLES
   ======================================== */

/* ========================================
   VEHICLES SECTION STYLES
   ======================================== */

/* Vehicles We Offer Section */
.vehicles-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.vehicles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="vehicle-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%2328a745" opacity="0.05"/><circle cx="5" cy="25" r="1" fill="%2328a745" opacity="0.03"/><circle cx="25" cy="5" r="1" fill="%2328a745" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23vehicle-pattern)"/></svg>');
    opacity: 0.3;
}

/* Section Header */
.vehicles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.vehicles-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.highlight-offer {
    color: #28a745;
    position: relative;
}

.highlight-offer::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Navigation Buttons */
.vehicles-navigation {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.prev-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.prev-btn:hover {
    background: #e9ecef;
    color: #333;
    transform: translateX(-2px);
}

.next-btn {
    background: #28a745;
    color: white;
    border: 1px solid #28a745;
}

.next-btn:hover {
    background: #20c997;
    border-color: #20c997;
    transform: translateX(2px);
}

.next-btn.active {
    background: #28a745;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Vehicles Carousel */
.vehicles-carousel {
    position: relative;
    margin-bottom: 2rem;
}

.vehicles-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.vehicle-card {
    min-width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
    position: relative;
    cursor: pointer;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.05), transparent);
    transition: left 0.6s ease;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.vehicle-card:hover::before {
    left: 100%;
}

.vehicle-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.vehicle-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.vehicle-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.spec-item {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    width: fit-content;
}

/* Vehicle Indicators */
.vehicle-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator:hover {
    background: #28a745;
    transform: scale(1.2);
}

.indicator.active {
    background: #28a745;
    transform: scale(1.3);
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Vehicles Responsive Design */
@media (max-width: 991px) {
    .vehicles-section {
        padding: 60px 0;
    }

    .vehicles-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .vehicles-title h2 {
        font-size: 2rem;
    }

    .vehicle-card {
        min-width: 280px;
    }

    .vehicle-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .vehicles-section {
        padding: 40px 0;
    }

    .vehicles-title h2 {
        font-size: 1.8rem;
    }

    .vehicles-track {
        gap: 1.5rem;
    }

    .vehicle-card {
        min-width: 250px;
    }

    .vehicle-image {
        height: 160px;
    }

    .vehicle-info {
        padding: 1.2rem;
    }

    .vehicle-name {
        font-size: 1.2rem;
    }

    .vehicle-description {
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .vehicle-indicators {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .vehicles-track {
        gap: 1rem;
    }

    .vehicle-card {
        min-width: 220px;
    }

    .vehicle-image {
        height: 140px;
    }
}

/* Vehicles We Offer Section - Mobile Layout 320px to 480px */
@media (max-width: 480px) {
    .vehicles-section {
        padding: 2rem 0 !important;
    }

    .vehicles-header {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
    }

    .vehicles-title h2 {
        font-size: 1.5rem !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }

    .vehicles-navigation {
        justify-content: center !important;
        gap: 1rem !important;
    }

    .nav-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.8rem !important;
    }

    .vehicles-carousel {
        margin-bottom: 1.5rem !important;
    }

    .vehicle-card {
        min-width: 200px !important;
        margin: 0 0.5rem !important;
    }

    .vehicle-image {
        height: 120px !important;
    }

    .vehicle-info {
        padding: 1rem !important;
    }

    .vehicle-name {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
    }

    .vehicle-description {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }

    .vehicle-specs {
        margin-top: 0.5rem !important;
    }

    .spec-item {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.5rem !important;
    }
}

/* Vehicles We Offer Section - Mobile Layout 481px to 580px */
@media (min-width: 481px) and (max-width: 580px) {
    .vehicles-section {
        padding: 2.5rem 0 !important;
    }

    .vehicles-header {
        flex-direction: column !important;
        gap: 1.2rem !important;
        margin-bottom: 2.5rem !important;
        text-align: center !important;
    }

    .vehicles-title h2 {
        font-size: 1.7rem !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }

    .vehicles-navigation {
        justify-content: center !important;
        gap: 1.2rem !important;
    }

    .nav-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 0.9rem !important;
    }

    .vehicles-carousel {
        margin-bottom: 2rem !important;
    }

    .vehicle-card {
        min-width: 220px !important;
        margin: 0 0.8rem !important;
    }

    .vehicle-image {
        height: 140px !important;
    }

    .vehicle-info {
        padding: 1.2rem !important;
    }

    .vehicle-name {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }

    .vehicle-description {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.6rem !important;
    }

    .vehicle-specs {
        margin-top: 0.6rem !important;
    }

    .spec-item {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.6rem !important;
    }
}

/* Vehicles We Offer Section - Mobile Layout 581px to 767px */
@media (min-width: 581px) and (max-width: 767px) {
    .vehicles-section {
        padding: 3rem 0 !important;
    }

    .vehicles-header {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-bottom: 3rem !important;
        text-align: center !important;
    }

    .vehicles-title h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }

    .vehicles-navigation {
        justify-content: center !important;
        gap: 1.5rem !important;
    }

    .nav-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 1rem !important;
    }

    .vehicles-carousel {
        margin-bottom: 2rem !important;
    }

    .vehicle-card {
        min-width: 250px !important;
        margin: 0 1rem !important;
    }

    .vehicle-image {
        height: 160px !important;
    }

    .vehicle-info {
        padding: 1.3rem !important;
    }

    .vehicle-name {
        font-size: 1.1rem !important;
        margin-bottom: 0.4rem !important;
    }

    .vehicle-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.6rem !important;
    }

    .vehicle-specs {
        margin-top: 0.6rem !important;
    }

    .spec-item {
        font-size: 0.8rem !important;
        padding: 0.3rem 0.7rem !important;
    }
}

/* Vehicles We Offer Section - Tablet Layout 768px to 990px */
@media (min-width: 768px) and (max-width: 990px) {
    .vehicles-section {
        padding: 3.5rem 0 !important;
    }

    .vehicles-header {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-bottom: 3rem !important;
        text-align: center !important;
    }

    .vehicles-title h2 {
        font-size: 2rem !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }

    .vehicles-navigation {
        justify-content: center !important;
        gap: 1.5rem !important;
    }

    .nav-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.1rem !important;
    }

    .vehicles-carousel {
        margin-bottom: 2.5rem !important;
    }

    .vehicle-card {
        min-width: 280px !important;
        margin: 0 1.2rem !important;
    }

    .vehicle-image {
        height: 180px !important;
    }

    .vehicle-info {
        padding: 1.5rem !important;
    }

    .vehicle-name {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .vehicle-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.8rem !important;
    }

    .vehicle-specs {
        margin-top: 0.8rem !important;
    }

    .spec-item {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}

/* Vehicles We Offer Section - Desktop Layout 991px to 1199px */
@media (min-width: 991px) and (max-width: 1199px) {
    .vehicles-section {
        padding: 4rem 0 !important;
    }

    .vehicles-header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 3rem !important;
    }

    .vehicles-title h2 {
        font-size: 2.2rem !important;
        text-align: left !important;
        margin-bottom: 0 !important;
    }

    .vehicles-navigation {
        justify-content: flex-end !important;
        gap: 0.5rem !important;
    }

    .nav-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.1rem !important;
    }

    .vehicles-carousel {
        margin-bottom: 3rem !important;
    }

    .vehicle-card {
        min-width: 300px !important;
        margin: 0 1.5rem !important;
    }

    .vehicle-image {
        height: 200px !important;
    }

    .vehicle-info {
        padding: 1.8rem !important;
    }

    .vehicle-name {
        font-size: 1.3rem !important;
        margin-bottom: 0.6rem !important;
    }

    .vehicle-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }

    .vehicle-specs {
        margin-top: 1rem !important;
    }

    .spec-item {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
    }
}

.vehicle-name {
    font-size: 1.1rem;
}

.vehicle-description {
    font-size: 0.85rem;
}

.spec-item {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
}


/* ========================================
   END VEHICLES SECTION STYLES
   ======================================== */

/* ========================================
   CUSTOMER REVIEWS SECTION STYLES
   ======================================== */

/* Customer Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="reviews-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%2328a745" opacity="0.05"/><circle cx="10" cy="40" r="1" fill="%2328a745" opacity="0.03"/><circle cx="40" cy="10" r="1" fill="%2328a745" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23reviews-pattern)"/></svg>');
    opacity: 0.3;
}

/* Section Header */
.reviews-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.reviews-badge i {
    font-size: 1rem;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-reviews {
    color: #28a745;
    position: relative;
}

.highlight-reviews::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Reviews Slider */
.reviews-slider-container {
    position: relative;
    margin-bottom: 4rem;
}

.reviews-slider {
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.review-card {
    min-width: 400px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.05), transparent);
    transition: left 0.6s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.review-card:hover::before {
    left: 100%;
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(40, 167, 69, 0.2);
    flex-shrink: 0;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
}

.customer-location {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.customer-location::before {
    content: '📍';
    font-size: 0.8rem;
}

/* Review Rating */
.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    font-size: 1rem;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #28a745;
}

/* Review Content */
.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 3rem;
    color: rgba(40, 167, 69, 0.2);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.review-content p::after {
    content: '"';
    font-size: 3rem;
    color: rgba(40, 167, 69, 0.2);
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: serif;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.review-date,
.review-service {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.review-date i,
.review-service i {
    color: #28a745;
    font-size: 0.9rem;
}

/* Slider Navigation */
.reviews-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.reviews-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #28a745;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-nav-btn:hover {
    background: #28a745;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.reviews-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Slider Indicators */
.reviews-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.reviews-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.reviews-indicator:hover {
    background: #28a745;
    transform: scale(1.2);
}

.reviews-indicator.active {
    background: #28a745;
    transform: scale(1.3);
}

.reviews-indicator.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}


/* Reviews Responsive Design */
@media (max-width: 991px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: 2.2rem;
    }

    .review-card {
        min-width: 350px;
    }


    .reviews-navigation {
        display: none;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-title {
        font-size: 1.8rem;
    }

    .reviews-subtitle {
        font-size: 1rem;
    }

    .review-card {
        min-width: 300px;
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .review-rating {
        align-items: flex-start;
    }

    .customer-info {
        width: 100%;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

}

@media (max-width: 576px) {
    .review-card {
        min-width: 280px;
        padding: 1.2rem;
    }

    .customer-avatar {
        width: 50px;
        height: 50px;
    }

    .customer-details h4 {
        font-size: 1.1rem;
    }

    .review-content p {
        font-size: 0.95rem;
    }

}

/* Customer Reviews Section - Mobile Layout 320px to 480px */
@media (max-width: 480px) {
    .reviews-section {
        padding: 2rem 0 !important;
    }

    .reviews-header {
        margin-bottom: 2rem !important;
    }

    .reviews-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    .reviews-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .reviews-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .reviews-slider-container {
        margin-bottom: 2rem !important;
    }

    .reviews-track {
        gap: 1rem !important;
    }

    .review-card {
        min-width: 100% !important;
        width: 100% !important;
        padding: 1rem !important;
        margin: 0 !important;
    }

    .review-header {
        margin-bottom: 1rem !important;
    }

    .customer-avatar {
        width: 45px !important;
        height: 45px !important;
    }

    .customer-details h4 {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }

    .customer-details p {
        font-size: 0.8rem !important;
    }

    .review-rating {
        gap: 0.3rem !important;
    }

    .stars i {
        font-size: 0.8rem !important;
    }

    .rating-text {
        font-size: 0.8rem !important;
    }

    .review-content p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }

    .review-footer {
        gap: 0.5rem !important;
    }

    .review-date,
    .review-service {
        font-size: 0.7rem !important;
    }

    .reviews-navigation {
        margin-top: 1.5rem !important;
    }

    .reviews-nav-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.8rem !important;
    }

    .reviews-indicators {
        margin-top: 1rem !important;
    }

    .reviews-indicator {
        width: 8px !important;
        height: 8px !important;
    }
}

/* Customer Reviews Section - Mobile Layout 481px to 580px */
@media (min-width: 481px) and (max-width: 580px) {
    .reviews-section {
        padding: 2.5rem 0 !important;
    }

    .reviews-header {
        margin-bottom: 2.5rem !important;
    }

    .reviews-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }

    .reviews-title {
        font-size: 1.7rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .reviews-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .reviews-slider-container {
        margin-bottom: 2.5rem !important;
    }

    .reviews-track {
        gap: 1.2rem !important;
    }

    .review-card {
        min-width: 100% !important;
        width: 100% !important;
        padding: 1.2rem !important;
        margin: 0 !important;
    }

    .review-header {
        margin-bottom: 1rem !important;
    }

    .customer-avatar {
        width: 50px !important;
        height: 50px !important;
    }

    .customer-details h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.3rem !important;
    }

    .customer-details p {
        font-size: 0.85rem !important;
    }

    .review-rating {
        gap: 0.4rem !important;
    }

    .stars i {
        font-size: 0.9rem !important;
    }

    .rating-text {
        font-size: 0.9rem !important;
    }

    .review-content p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }

    .review-footer {
        gap: 0.6rem !important;
    }

    .review-date,
    .review-service {
        font-size: 0.75rem !important;
    }

    .reviews-navigation {
        margin-top: 2rem !important;
    }

    .reviews-nav-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 0.9rem !important;
    }

    .reviews-indicators {
        margin-top: 1.2rem !important;
    }

    .reviews-indicator {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Customer Reviews Section - Mobile Layout 581px to 767px */
@media (min-width: 581px) and (max-width: 767px) {
    .reviews-section {
        padding: 3rem 0 !important;
    }

    .reviews-header {
        margin-bottom: 3rem !important;
    }

    .reviews-badge {
        font-size: 0.9rem !important;
        padding: 0.6rem 1.2rem !important;
        margin-bottom: 1rem !important;
    }

    .reviews-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .reviews-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 2rem !important;
    }

    .reviews-slider-container {
        margin-bottom: 3rem !important;
    }

    .reviews-track {
        gap: 1.5rem !important;
    }

    .review-card {
        min-width: calc(50% - 0.75rem) !important;
        width: calc(50% - 0.75rem) !important;
        padding: 1.5rem !important;
        margin: 0 !important;
    }

    .review-header {
        margin-bottom: 1.2rem !important;
    }

    .customer-avatar {
        width: 55px !important;
        height: 55px !important;
    }

    .customer-details h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }

    .customer-details p {
        font-size: 0.9rem !important;
    }

    .review-rating {
        gap: 0.5rem !important;
    }

    .stars i {
        font-size: 1rem !important;
    }

    .rating-text {
        font-size: 1rem !important;
    }

    .review-content p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.2rem !important;
    }

    .review-footer {
        gap: 0.8rem !important;
    }

    .review-date,
    .review-service {
        font-size: 0.8rem !important;
    }

    .reviews-navigation {
        margin-top: 2rem !important;
    }

    .reviews-nav-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 1rem !important;
    }

    .reviews-indicators {
        margin-top: 1.5rem !important;
    }

    .reviews-indicator {
        width: 12px !important;
        height: 12px !important;
    }
}

/* Customer Reviews Section - Tablet Layout 768px to 990px */
@media (min-width: 768px) and (max-width: 990px) {
    .reviews-section {
        padding: 3.5rem 0 !important;
    }

    .reviews-header {
        margin-bottom: 3rem !important;
    }

    .reviews-badge {
        font-size: 0.95rem !important;
        padding: 0.7rem 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    .reviews-title {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .reviews-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
    }

    .reviews-slider-container {
        margin-bottom: 3rem !important;
    }

    .reviews-track {
        gap: 2rem !important;
    }

    .review-card {
        min-width: calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        padding: 1.8rem !important;
        margin: 0 !important;
    }

    .review-header {
        margin-bottom: 1.5rem !important;
    }

    .customer-avatar {
        width: 60px !important;
        height: 60px !important;
    }

    .customer-details h4 {
        font-size: 1.3rem !important;
        margin-bottom: 0.4rem !important;
    }

    .customer-details p {
        font-size: 0.95rem !important;
    }

    .review-rating {
        gap: 0.6rem !important;
    }

    .stars i {
        font-size: 1.1rem !important;
    }

    .rating-text {
        font-size: 1.1rem !important;
    }

    .review-content p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }

    .review-footer {
        gap: 1rem !important;
    }

    .review-date,
    .review-service {
        font-size: 0.85rem !important;
    }

    .reviews-navigation {
        margin-top: 2.5rem !important;
    }

    .reviews-nav-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.1rem !important;
    }

    .reviews-indicators {
        margin-top: 1.5rem !important;
    }

    .reviews-indicator {
        width: 12px !important;
        height: 12px !important;
    }
}

/* Customer Reviews Section - Desktop Layout 991px to 1199px */
@media (min-width: 991px) and (max-width: 1199px) {
    .reviews-section {
        padding: 4rem 0 !important;
    }

    .reviews-header {
        margin-bottom: 3.5rem !important;
    }

    .reviews-badge {
        font-size: 1rem !important;
        padding: 0.8rem 1.6rem !important;
        margin-bottom: 1rem !important;
    }

    .reviews-title {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .reviews-subtitle {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2.5rem !important;
    }

    .reviews-slider-container {
        margin-bottom: 3.5rem !important;
    }

    .reviews-track {
        gap: 2.5rem !important;
    }

    .review-card {
        min-width: 400px !important;
        padding: 2rem !important;
    }

    .review-header {
        margin-bottom: 1.5rem !important;
    }

    .customer-avatar {
        width: 65px !important;
        height: 65px !important;
    }

    .customer-details h4 {
        font-size: 1.4rem !important;
        margin-bottom: 0.4rem !important;
    }

    .customer-details p {
        font-size: 1rem !important;
    }

    .review-rating {
        gap: 0.7rem !important;
    }

    .stars i {
        font-size: 1.2rem !important;
    }

    .rating-text {
        font-size: 1.2rem !important;
    }

    .review-content p {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }

    .review-footer {
        gap: 1.2rem !important;
    }

    .review-date,
    .review-service {
        font-size: 0.9rem !important;
    }

    .reviews-navigation {
        margin-top: 3rem !important;
    }

    .reviews-nav-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.2rem !important;
    }

    .reviews-indicators {
        margin-top: 2rem !important;
    }

    .reviews-indicator {
        width: 14px !important;
        height: 14px !important;
    }
}

/* ========================================
   END CUSTOMER REVIEWS SECTION STYLES
   ======================================== */

/* ========================================
   DOWNLOAD MOBILE APP SECTION STYLES
   ======================================== */

/* Download App Section */
.download-app-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
    position: relative;
    overflow: hidden;
}

.download-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="download-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%2328a745" opacity="0.05"/><circle cx="15" cy="45" r="1" fill="%2328a745" opacity="0.03"/><circle cx="45" cy="15" r="1" fill="%2328a745" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23download-pattern)"/></svg>');
    opacity: 0.3;
}

/* Download Container */
.download-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Download Content */
.download-content {
    padding-right: 2rem;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.download-badge i {
    font-size: 1rem;
}

.download-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-download {
    color: #28a745;
    position: relative;
}


.download-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* App Download Buttons */
.app-download-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.app-download-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.app-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.store-badge-img {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.app-download-btn:hover .store-badge-img {
    transform: scale(1.05);
}

/* Download Visual */
.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockups {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 600px;
}

.phone-mockup {
    position: absolute;
    width: 300px;
    height: 580px;
    transition: all 0.3s ease;
}

.phone-left {
    left: -52px;
    top: 10px;
    z-index: 1;
    transform: rotate(-15deg) scale(0.8);
    opacity: 0.7;
}

.phone-center {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 3;
    width: 280px;
    height: 580px;
}

.phone-right {
    right: -52px;
    top: 10px;
    z-index: 1;
    transform: rotate(15deg) scale(0.8);
    opacity: 0.7;
}

.phone-frame {
    width: 100%;
    /* height: 100%; */
    background: #1a1a1a;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}



/* Download App Responsive Design */
@media (max-width: 991px) {
    .download-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .download-content {
        padding-right: 0;
        order: 2;
    }

    .download-visual {
        order: 1;
    }

    .phone-mockups {
        max-width: 300px;
        height: 500px;
    }

    .phone-center {
        width: 180px;
        height: 360px;
    }

    .phone-left,
    .phone-right {
        width: 160px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .download-app-section {
        padding: 60px 0;
    }

    .download-title {
        font-size: 2.2rem;
    }

    .download-subtitle {
        font-size: 1rem;
    }

    .app-download-buttons {
        align-items: center;
        display: unset;
    }



    .phone-mockups {
        max-width: 250px;
        height: 400px;
    }

    .phone-center {
        width: 150px;
        height: 300px;
    }

    .phone-left,
    .phone-right {
        width: 130px;
        height: 260px;
        opacity: 0.5;
    }

    .phone-left {
        transform: rotate(-10deg) scale(0.7);
    }

    .phone-right {
        transform: rotate(10deg) scale(0.7);
    }

}

@media (max-width: 576px) {
    .download-title {
        font-size: 1.8rem;
    }

    .phone-mockups {
        max-width: 200px;
        height: 350px;
    }

    .phone-center {
        width: 120px;
        height: 240px;
    }


    .store-text-small {
        font-size: 0.7rem;
    }
}

/* Download Mobile Application Section - Mobile Layout 320px to 480px */
@media (max-width: 480px) {
    .download-app-section {
        padding: 2rem 0 !important;
    }

    .download-container {
        grid-template-columns: 1fr !important;
        gap: 10rem !important;
        text-align: center !important;
    }

    .download-content {
        padding-right: 0 !important;
        order: 2 !important;
    }

    .download-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    .download-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .download-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }




    .store-badge-img {
        width: 100% !important;
        height: auto !important;
        max-width: 180px !important;
    }

    .download-visual {
        order: 1 !important;
        margin-bottom: 1rem !important;
    }

    .phone-mockups {
        height: 200px !important;
        gap: 0.5rem !important;
    }

    .phone-mockup {
        width: 150px !important;
        height: auto !important;
        border-radius: 12px !important;
    }

    .phone-left,
    .phone-right {
        width: 171px !important;
    }

    .phone-mockup img {
        border-radius: 8px !important;
    }
}

/* Download Mobile Application Section - Mobile Layout 481px to 580px */
@media (min-width: 481px) and (max-width: 580px) {
    .download-app-section {
        padding: 2.5rem 0 !important;
    }

    .download-container {
        grid-template-columns: 1fr !important;
        gap: 10rem !important;
        text-align: center !important;
    }

    .download-content {
        padding-right: 0 !important;
        order: 2 !important;
    }

    .download-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }

    .download-title {
        font-size: 1.7rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .download-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }


    .store-badge-img {
        width: 100% !important;
        height: auto !important;
        max-width: 200px !important;
    }

    .download-visual {
        order: 1 !important;
        margin-bottom: 1.5rem !important;
    }

    .phone-mockups {
        height: 220px !important;
        gap: 0.8rem !important;
    }

    .phone-mockup {
        width: 160px !important;
        height: 180px !important;
        border-radius: 14px !important;
    }

    .phone-left,
    .phone-right {
        width: 203px !important;
    }

    .phone-left {
        transform: rotate(-14deg) scale(0.7);
        left: -40% !important;
    }

    .phone-right {
        transform: rotate(14deg) scale(0.7);
        right: -40% !important;
    }

    .phone-mockup img {
        border-radius: 10px !important;
    }
}

/* Download Mobile Application Section - Mobile Layout 581px to 767px */
@media (min-width: 581px) and (max-width: 767px) {
    .download-app-section {
        padding: 3rem 0 !important;
    }

    .download-container {
        grid-template-columns: 1fr !important;
        gap: 10rem !important;
        text-align: center !important;
    }

    .download-content {
        padding-right: 0 !important;
        order: 2 !important;
    }

    .download-badge {
        font-size: 0.9rem !important;
        padding: 0.6rem 1.2rem !important;
        margin-bottom: 1rem !important;
    }

    .download-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .download-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .app-download-buttons {
        flex-direction: row !important;
        gap: 1rem !important;
        justify-content: center !important;
    }

    .app-download-btn {
        flex: 1 !important;
        max-width: 180px !important;
    }

    .store-badge-img {
        width: 100% !important;
        height: auto !important;
        max-width: 160px !important;
    }

    .download-visual {
        order: 1 !important;
        margin-bottom: 2rem !important;
    }

    .phone-mockups {
        height: 240px !important;
        gap: 1rem !important;
    }

    .phone-mockup {
        width: 170px !important;
        height: 200px !important;
        border-radius: 16px !important;
    }

    .phone-left,
    .phone-right {
        width: 214px !important;
    }

    .phone-left {
        transform: rotate(-13deg) scale(0.7);
        left: -25%;
    }

    .phone-right {
        transform: rotate(13deg) scale(0.7);
        right: -25%;
    }


    .phone-mockup img {
        border-radius: 12px !important;
    }
}

/* Download Mobile Application Section - Tablet Layout 768px to 990px */
@media (min-width: 768px) and (max-width: 990px) {
    .download-app-section {
        padding: 3.5rem 0 !important;
    }

    .download-container {
        grid-template-columns: 1fr !important;
        gap: 10rem !important;
        text-align: center !important;
    }

    .download-content {
        padding-right: 0 !important;
        order: 2 !important;
    }

    .download-badge {
        font-size: 0.95rem !important;
        padding: 0.7rem 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    .download-title {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .download-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .app-download-buttons {
        flex-direction: row !important;
        gap: 1.5rem !important;
        justify-content: center !important;
    }

    .store-badge-img {
        width: 100% !important;
        height: auto !important;
        max-width: 180px !important;
    }

    .download-visual {
        order: 1 !important;
        margin-bottom: 2rem !important;
    }

    .phone-mockups {
        height: 260px !important;
        gap: 1.2rem !important;
    }

    .phone-mockup {
        width: 180px !important;
        height: 220px !important;
        border-radius: 18px !important;
    }

    .phone-left,
    .phone-right {
        width: 210px !important;
    }

    .phone-mockup img {
        border-radius: 14px !important;
    }
}

/* Download Mobile Application Section - Desktop Layout 991px to 1199px */
@media (min-width: 991px) and (max-width: 1199px) {
    .download-app-section {
        padding: 4rem 0 !important;
    }

    .download-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        align-items: center !important;
    }

    .download-content {
        padding-right: 1.5rem !important;
        order: 1 !important;
        text-align: left !important;
    }

    .download-badge {
        font-size: 1rem !important;
        padding: 0.8rem 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    .download-title {
        font-size: 2.4rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .download-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }

    .app-download-buttons {
        flex-direction: row !important;
        gap: 1.5rem !important;
        justify-content: flex-start !important;
    }


    .store-badge-img {
        width: 100% !important;
        height: auto !important;
        max-width: 180px !important;
    }

    .download-visual {
        order: 2 !important;
        margin-bottom: 0 !important;
    }

    .phone-mockups {
        height: 280px !important;
        gap: 1.5rem !important;
    }

    .phone-mockup {
        width: 150px !important;
        height: 240px !important;
        border-radius: 20px !important;
    }

    .phone-left,
    .phone-right {
        width: 170px !important;
    }

    .phone-left {
        left: 29px;

    }

    .phone-right {
        right: 29px;

    }

    .phone-mockup img {
        border-radius: 16px !important;
    }
}

.store-text-large {
    font-size: 1rem;
}


/* ========================================
   END DOWNLOAD MOBILE APP SECTION STYLES
   ======================================== */

/* ========================================
   FOOTER SECTION STYLES
   ======================================== */

/* Responsive Design */
@media (max-width: 991px) {
    .hero-banner {
        padding-top: 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }

    .booking-card {
        margin: 1rem 0;
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* How It Works Section Responsive */
    .how-it-works-section {
        padding: 40px 0;
        min-height: auto;
    }

    .how-it-works-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        margin: 0 auto 1.5rem;
        font-size: 0.9rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .step-item {
        padding: 0.8rem;
        gap: 0.8rem;
        min-height: 100px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .step-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .mobile-frame {
        width: 250px;
        height: 500px;
        padding: 12px;
    }

    /* App Store buttons responsive */
    .app-store-btn {
        max-width: 100%;
    }

    .app-store-img {
        max-height: 50px;
    }

    .download-apps-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .navbar-brand .logo-text {
        font-size: 1.5rem;
    }

    .btn-download-app {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .slide-text h1 {
        font-size: 1.8rem;
    }

    /* .booking-form {
        padding: 1.5rem;
    } */

    .form-title {
        font-size: 1.5rem;
    }
}

/* Mobile Layout - 320px to 480px */
@media (max-width: 480px) {
    .how-it-works-section {
        padding: 2rem 0 0 !important;
        min-height: auto !important;
    }

    .how-it-works-content {
        padding-right: 0 !important;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    /* Hide mobile screen for small screens */
    .mobile-screens-container {
        display: none !important;
    }

    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        text-align: center !important;
    }

    .section-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        text-align: center !important;
    }

    .steps-container {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .step-item {
        padding: 0.8rem !important;
        gap: 0.8rem;
        min-height: auto !important;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .step-item.active {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    }

    .step-item:hover {
        transform: none !important;
    }

    .step-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }

    .step-content h4 {
        font-size: 1rem !important;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .step-content p {
        font-size: 0.85rem !important;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .mobile-frame {
        width: 200px !important;
        height: 400px !important;
        padding: 8px;
        margin: 0 auto;
    }

    .mobile-screen {
        border-radius: 15px;
    }

    .screen-image {
        border-radius: 12px;
    }

    .screen-indicator {
        margin-top: 1rem;
        text-align: center;
    }

    .current-step {
        font-size: 0.8rem;
        color: #666;
    }
}

/* Mobile Layout - 481px to 580px */
@media (min-width: 481px) and (max-width: 580px) {
    .how-it-works-section {
        padding: 2.5rem 0 0 !important;
        min-height: auto !important;
    }

    .how-it-works-content {
        padding-right: 0 !important;
        margin-bottom: 2rem;
        text-align: left;
    }

    /* Hide mobile screen for medium mobile screens */
    .mobile-screens-container {
        display: none !important;
    }

    .section-title {
        font-size: 1.7rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        text-align: center !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        text-align: center !important;
    }

    .steps-container {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .step-item {
        padding: 1rem !important;
        gap: 1rem;
        min-height: auto !important;
        margin-bottom: 0.5rem;
        border-radius: 10px;
        background: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .step-item.active {
        transform: none !important;
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.2);
    }

    .step-item:hover {
        transform: none !important;
    }

    .step-number {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }

    .step-content h4 {
        font-size: 1rem !important;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .step-content p {
        font-size: 0.8rem !important;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .mobile-frame {
        width: 220px !important;
        height: 450px !important;
        padding: 10px;
        margin: 0 auto;
    }

    .mobile-screen {
        border-radius: 18px;
    }

    .screen-image {
        border-radius: 15px;
    }

    .screen-indicator {
        margin-top: 1.2rem;
        text-align: center;
    }

    .current-step {
        font-size: 0.85rem;
        color: #666;
    }
}

/* Mobile Layout - 581px to 767px */
@media (min-width: 581px) and (max-width: 767px) {
    .how-it-works-section {
        padding: 3rem 0 0 !important;
        min-height: auto !important;
    }

    .how-it-works-content {
        padding-right: 0 !important;
        margin-bottom: 2rem;
        text-align: left;
    }

    /* Hide mobile screen for large mobile screens */
    .mobile-screens-container {
        display: none !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        text-align: left !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        text-align: left !important;
    }

    .steps-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .step-item {
        padding: 1rem !important;
        gap: 0.8rem;
        min-height: 110px !important;
        margin-bottom: 0.5rem;
        border-radius: 10px;
        background: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .step-item.active {
        transform: none !important;
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.2);
    }

    .step-item:hover {
        transform: none !important;
    }

    .step-number {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }

    .step-content h4 {
        font-size: 1rem !important;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .step-content p {
        font-size: 0.8rem !important;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .mobile-frame {
        width: 240px !important;
        height: 480px !important;
        padding: 12px;
        margin: 0 auto;
    }

    .mobile-screen {
        border-radius: 20px;
    }

    .screen-image {
        border-radius: 18px;
    }

    .screen-indicator {
        margin-top: 1.5rem;
        text-align: center;
    }

    .current-step {
        font-size: 0.9rem;
        color: #666;
    }
}

/* Tablet Layout - 768px to 990px */
@media (min-width: 768px) and (max-width: 990px) {
    .how-it-works-section {
        padding: 2.5rem 0 0 !important;
        min-height: auto !important;
    }

    .how-it-works-content {
        padding-right: 1rem !important;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.9rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .steps-container {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .step-item {
        padding: 1.2rem !important;
        gap: 1rem;
        min-height: 120px !important;
        margin-bottom: 0.5rem;
        border-radius: 12px;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        flex-direction: row;
        text-align: left;
    }

    .step-item.active {
        transform: translateX(5px) !important;
        box-shadow: 0 6px 25px rgba(40, 167, 69, 0.2);
    }

    .step-item:hover {
        transform: translateX(3px) !important;
    }

    .step-number {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }

    .step-content h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.4rem;
        line-height: 1.3;
        text-align: left;
    }

    .step-content p {
        font-size: 0.85rem !important;
        line-height: 1.4;
        margin-bottom: 0;
        text-align: left;
    }

    .mobile-frame {
        width: 260px !important;
        height: 520px !important;
        padding: 15px;
    }

    .mobile-screen {
        border-radius: 22px;
    }

    .screen-image {
        border-radius: 20px;
    }

    .screen-indicator {
        margin-top: 1.5rem;
        text-align: center;
    }

    .current-step {
        font-size: 0.9rem;
        color: #666;
    }
}

/* Desktop Layout - 991px to 1199px */
@media (min-width: 991px) and (max-width: 1199px) {
    .how-it-works-section {
        padding: 3rem 0 !important;
        min-height: unset !important;
    }

    .how-it-works-content {
        padding-right: 1.5rem !important;
    }

    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .steps-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .step-item {
        padding: 1.3rem !important;
        gap: 1.2rem;
        min-height: 130px !important;
        margin-bottom: 0.5rem;
        border-radius: 12px;
    }

    .step-item.active {
        transform: translateX(8px) !important;
        box-shadow: 0 8px 30px rgba(40, 167, 69, 0.2);
    }

    .step-item:hover {
        transform: translateX(4px) !important;
    }

    .step-number {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.1rem !important;
    }

    .step-content h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .step-content p {
        font-size: 0.9rem !important;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .mobile-frame {
        width: 280px !important;
        height: 560px !important;
        padding: 18px;
    }

    .mobile-screen {
        border-radius: 25px;
    }

    .screen-image {
        border-radius: 22px;
    }

    .screen-indicator {
        margin-top: 1.5rem;
        text-align: center;
    }

    .current-step {
        font-size: 0.95rem;
        color: #666;
    }
}

/* From Pickup to Delivery Section - Mobile Layout 320px to 480px */
@media (max-width: 480px) {
    .truck-journey-section {
        padding: 2rem 0 !important;
        min-height: auto !important;
    }

    .journey-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .journey-content {
        padding-right: 0 !important;
        text-align: center !important;
    }

    .journey-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    .journey-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .journey-description {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
    }

    /* Hide feature cards for mobile */
    .journey-stats {
        display: none !important;
    }

    /* Hide CTA buttons for mobile */
    .journey-actions {
        display: none !important;
    }

    .journey-visual {
        height: 200px !important;
        margin-top: 1rem;
    }

    .truck-animation {
        transform: scale(0.8);
    }

    .icon-2 {
        top: -7%;
    }

    .icon-3 {
        bottom: 6%;
    }

    .pickup-point {
        left: 0%;
    }

    .delivery-point {
        right: 0%;
    }
}

/* From Pickup to Delivery Section - Mobile Layout 481px to 580px */
@media (min-width: 481px) and (max-width: 580px) {
    .truck-journey-section {
        padding: 2.5rem 0 0 !important;
        min-height: auto !important;
    }

    .journey-container {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .journey-content {
        padding-right: 0 !important;
        text-align: center !important;
    }

    .journey-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }

    .journey-title {
        font-size: 1.7rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .journey-description {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
    }

    /* Hide feature cards for medium mobile */
    .journey-stats {
        display: none !important;
    }

    /* Hide CTA buttons for medium mobile */
    .journey-actions {
        display: none !important;
    }

    .journey-visual {
        height: 220px !important;
        margin-top: 0;
    }

    .truck-animation {
        transform: scale(0.85);
    }


}

/* From Pickup to Delivery Section - Mobile Layout 581px to 767px */
@media (min-width: 581px) and (max-width: 767px) {
    .truck-journey-section {
        padding: 3rem 0 0 !important;
        min-height: auto !important;
    }

    .journey-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .journey-content {
        padding-right: 0 !important;
        text-align: left !important;
    }

    .journey-badge {
        font-size: 0.9rem !important;
        padding: 0.6rem 1.2rem !important;
        margin-bottom: 1rem !important;
    }

    .journey-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .journey-description {
        font-size: 0.95rem !important;
        margin-bottom: 0px !important;
        line-height: 1.4 !important;
    }

    /* Hide feature cards for large mobile */
    .journey-stats {
        display: none !important;
    }

    /* Hide CTA buttons for large mobile */
    .journey-actions {
        display: none !important;
    }

    .journey-visual {
        height: 250px !important;
        margin-top: 0px;
    }

    .truck-animation {
        transform: scale(0.9);
    }


}

/* From Pickup to Delivery Section - Tablet Layout 768px to 990px */
@media (min-width: 768px) and (max-width: 990px) {
    .truck-journey-section {
        padding: 3.5rem 0 0 !important;
        min-height: auto !important;
    }

    .journey-container {
        grid-template-columns: 1fr !important;
        gap: 3.5rem !important;
    }

    .journey-content {
        padding-right: 0 !important;
        text-align: left !important;
    }

    .journey-badge {
        font-size: 0.95rem !important;
        padding: 0.7rem 1.4rem !important;
        margin-bottom: 1.5rem !important;
    }

    .journey-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .journey-description {
        font-size: 1rem !important;
        margin-bottom: 0px !important;
        line-height: 1.5 !important;
    }

    /* Hide feature cards for tablet */
    .journey-stats {
        display: none !important;
    }

    /* Hide CTA buttons for tablet */
    .journey-actions {
        display: none !important;
    }

    .journey-visual {
        height: 280px !important;
        margin-top: 0px;
    }

    .truck-animation {
        transform: scale(0.95);
    }

    .floating-elements {
        display: block !important;
    }
}

/* From Pickup to Delivery Section - Desktop Layout 991px to 1199px */
@media (min-width: 991px) and (max-width: 1199px) {
    .truck-journey-section {
        padding: 4rem 0 !important;
        min-height: auto !important;
    }

    .journey-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
    }

    .journey-content {
        padding-right: 1.5rem !important;
        text-align: left !important;
    }

    .journey-badge {
        font-size: 1rem !important;
        padding: 0.8rem 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    .journey-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .journey-description {
        font-size: 1.05rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
    }

    /* Show feature cards for desktop */
    .journey-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        margin-bottom: 2rem !important;
    }

    .stat-item {
        padding: 1.2rem !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .stat-item:hover {
        transform: translateX(8px) !important;
        box-shadow: 0 6px 25px rgba(40, 167, 69, 0.15) !important;
    }

    /* Show CTA buttons for desktop */
    .journey-actions {
        display: flex !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .btn-journey-primary,
    .btn-journey-secondary {
        flex: 1 !important;
        font-size: 0.8rem;
        max-width: none !important;
    }

    .journey-visual {
        height: 350px !important;
    }

    .truck-animation {
        transform: scale(1);
    }

    .floating-elements {
        display: block !important;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.hero-stats .stat-number {
    margin-bottom: 0px;
}

/* Desktop Layout - Two Column */
@media (min-width: 992px) {
    .hero-banner .row {
        display: flex;
        align-items: center;
    }

    .hero-banner .col-12 {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .hero-banner .hero-content {
        flex: 1;
    }

    .hero-banner .booking-card {
        flex: 0 0 400px;
        max-width: 400px;
    }
}

/* Mobile Layout - 320px to 480px */
@media (max-width: 480px) {
    .logo-img {
        height: 36px;
    }

    .hero-banner {
        padding: 1rem 0;
        min-height: auto;
    }

    .hero-banner .container {
        padding: 0 1rem;
    }

    .hero-banner .row {
        flex-direction: column;
    }

    .hero-banner .col-lg-8,
    .hero-banner .col-lg-4,
    .hero-banner .col-md-8,
    .hero-banner .col-md-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Hide stats and features on mobile */
    .hero-stats,
    .hero-features {
        display: none !important;
    }

    /* Form positioning - full width and on top */
    .hero-banner .booking-card {
        order: -1;
        margin-bottom: 2rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-banner .hero-content {
        order: 1;
        text-align: center;
        padding: 1rem 0;
    }

    /* Adjust hero content for mobile */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    /* Form adjustments for mobile */
    .booking-card {
        border-radius: 12px;
        padding: 1.5rem;
    }

    .booking-header h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .booking-header p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .uber-input {
        font-size: 1rem;
        padding: 1rem 1rem 1rem 3rem;
    }

    .uber-label {
        font-size: 0.9rem;
    }

    .uber-submit-btn {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Mobile Layout - 481px to 580px */
@media (min-width: 481px) and (max-width: 580px) {
    .hero-banner {
        padding: 1.2rem 0;
        min-height: auto;
    }

    .hero-banner .container {
        padding: 0 1.2rem;
    }

    .hero-banner .row {
        flex-direction: column;
    }

    .hero-banner .col-lg-8,
    .hero-banner .col-lg-4,
    .hero-banner .col-md-8,
    .hero-banner .col-md-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Hide stats and features on mobile */
    .hero-stats,
    .hero-features {
        display: none !important;
    }

    /* Form positioning - full width and on top */
    .hero-banner .booking-card {
        order: -1;
        margin-bottom: 2.5rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-banner .hero-content {
        order: 1;
        text-align: center;
        padding: 1.2rem 0;
    }

    /* Adjust hero content for mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.8rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    /* Form adjustments for mobile */
    .booking-card {
        border-radius: 15px;
        padding: 1.8rem;
    }

    .booking-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .booking-header p {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }

    .uber-input {
        font-size: 1rem;
        padding: 1.1rem 1.1rem 1.1rem 3.2rem;
    }

    .uber-label {
        font-size: 0.95rem;
    }

    .uber-submit-btn {
        font-size: 1rem;
        padding: 1.1rem;
    }
}

/* Mobile Layout - 581px to 767px (Hide stats, show features) */
@media (min-width: 581px) and (max-width: 767px) {
    .hero-banner {
        padding: 2rem 0;
    }

    .hero-banner .container {
        padding: 0 1.5rem;
    }

    .hero-banner .row {
        flex-direction: column;
    }

    .hero-banner .col-lg-8,
    .hero-banner .col-lg-4,
    .hero-banner .col-md-8,
    .hero-banner .col-md-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Hide stats section */
    .hero-stats {
        display: none !important;
    }

    /* Show features in one line */
    .hero-features {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 1.5rem 0;
        gap: 1.5rem;
        flex-wrap: nowrap;
    }

    .hero-features .feature-item {
        flex: 1;
        text-align: center;
        white-space: nowrap;
    }

    /* Form positioning */
    .hero-banner .booking-card {
        order: -1;
        margin: 0 auto 2.5rem auto;
        max-width: 480px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
    }
}

/* Desktop Layout - 991px to 1199px (Optimized for smaller desktop screens) */
@media (min-width: 991px) and (max-width: 1199px) {


    .hero-banner .container {
        padding: 0 1.5rem;
    }

    /* Significantly reduce hero content font sizes */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-title .highlight {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    /* Optimize stats section with smaller sizes */
    .hero-stats {
        margin: 1.5rem 0;
        gap: 1rem;
    }

    .hero-stats .stat-item {
        padding: 1rem 0.8rem;
    }

    .hero-stats .stat-number {
        font-size: 1.6rem !important;
        margin-bottom: 0.3rem;
    }

    .hero-stats .stat-label {
        font-size: 0.8rem !important;
    }

    /* Optimize features section */
    .hero-features {
        margin: 1rem 0;
        gap: 1rem;
    }

    .hero-features .feature-item {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.8rem;
    }

    .hero-features .feature-item i {
        font-size: 0.9rem;
        margin-right: 0.4rem;
    }

    /* Optimize booking form for better proportions */
    .booking-card {
        max-width: 320px !important;
        padding: 1.5rem !important;
        margin-left: auto;
    }

    .booking-header h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem;
    }

    .booking-header p {
        font-size: 0.8rem !important;
        margin-bottom: 1rem;
    }

    .uber-input {
        font-size: 0.85rem !important;
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }

    .uber-label {
        font-size: 0.8rem !important;
    }

    .uber-submit-btn {
        font-size: 0.9rem !important;
        padding: 0.8rem;
    }


    /* Adjust input icons for smaller form */
    .input-icon-start {
        left: 0.8rem;
        font-size: 1rem;
    }

    .input-icon-end {
        right: 0.8rem;
        font-size: 1rem;
    }
}

/* Mobile Layout - 768px to 990px (Same as 581-767) */
@media (min-width: 768px) and (max-width: 990px) {
    .hero-banner {
        padding: 2rem 0;
    }

    .hero-banner .container {
        padding: 0 1.5rem;
    }

    .hero-banner .row {
        flex-direction: column;
    }

    .hero-banner .col-lg-8,
    .hero-banner .col-lg-4,
    .hero-banner .col-md-8,
    .hero-banner .col-md-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Hide stats section */
    .hero-stats {
        display: none !important;
    }

    /* Show features in one line */
    .hero-features {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 1.5rem 0;
        gap: 1.5rem;
        flex-wrap: nowrap;
    }

    .hero-features .feature-item {
        flex: 1;
        text-align: center;
        white-space: nowrap;
    }

    /* Form positioning */
    .hero-banner .booking-card {
        order: -1;
        margin: 0 auto 2.5rem auto;
        max-width: 480px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
    }
}

/* Desktop Layout - 991px to 1199px (Optimized for smaller desktop screens) */
@media (min-width: 991px) and (max-width: 1199px) {
    .hero-banner {
        padding: 2.5rem 0;

    }

    .hero-banner .container {
        padding: 0 1.5rem;
    }

    /* Significantly reduce hero content font sizes */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-title .highlight {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    /* Optimize stats section with smaller sizes */
    .hero-stats {
        margin: 1.5rem 0;
        gap: 1rem;
    }

    .hero-stats .stat-item {
        padding: 1rem 0.8rem;
    }

    .hero-stats .stat-number {
        font-size: 1.6rem !important;
        margin-bottom: 0.3rem;
    }

    .hero-stats .stat-label {
        font-size: 0.8rem !important;
    }

    /* Optimize features section */
    .hero-features {
        margin: 1rem 0;
        gap: 1rem;
    }

    .hero-features .feature-item {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.8rem;
    }

    .hero-features .feature-item i {
        font-size: 0.9rem;
        margin-right: 0.4rem;
    }

    /* Optimize booking form for better proportions */
    .booking-card {
        max-width: 320px !important;
        padding: 1.5rem !important;
        margin-left: auto;
    }

    .booking-header h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem;
    }

    .booking-header p {
        font-size: 0.8rem !important;
        margin-bottom: 1rem;
    }

    .uber-input {
        font-size: 0.85rem !important;
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }

    .uber-label {
        font-size: 0.8rem !important;
    }

    .uber-submit-btn {
        font-size: 0.9rem !important;
        padding: 0.8rem;
    }

    /* Adjust connecting line for smaller form */
    .form-group:first-of-type .uber-style::after {
        left: 22px;
        top: 80%;
        height: 44px;
    }

    /* Adjust input icons for smaller form */
    .input-icon-start {
        left: 0.8rem;
        font-size: 1rem;
    }

    .input-icon-end {
        right: 0.8rem;
        font-size: 1rem;
    }
}

/* ========================================
   FOOTER SECTION STYLES - BOOTSTRAP BASED
   ======================================== */

/* Disable old animations */
.footer-animations,
.floating-particles,
.particle {
    display: none !important;
}

/* Footer Base Styles */
.footer-section {
    background: #2c2c2c;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    padding-bottom: 40px;
}

/* Logo */
.footer-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #28a745;
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

.social-icon i {
    font-size: 1.1rem;
}

.footer-app-section {
    margin-top: 46px;
}

/* App Download */
.app-download-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
}

.footer-app-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-app-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.footer-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.footer-store-img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.footer-app-btn:hover .footer-store-img {
    transform: scale(1.05);
}

/* Headings */
.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin: 0 0 1rem 0;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #28a745;
    border-radius: 1px;
}

/* Links */
.footer-links {
    display: block;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #28a745;
    text-decoration: none;
    padding-left: 10px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #28a745;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 6px;
}

/* Locations */
.footer-locations {
    display: block;
}

.locations-column {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.location-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.location-link:hover {
    color: #28a745;
    text-decoration: none;
    padding-left: 10px;
}

.location-link::before {
    content: '📍';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.location-link:hover::before {
    opacity: 1;
    left: -15px;
}

/* Copyright */
.footer-copyright {
    background: #28a745;
    padding: 15px 0;
    margin-top: 20px;
}

.copyright-text {
    color: white;
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   BOOKING WIZARD MODAL STYLES
   ======================================== */

/* Booking Wizard Modal */
#bookingWizardModal .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100vh;
}

.booking-wizard-content {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: white;
    height: 100vh;
}

/* Wizard Header */
.booking-wizard-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    position: relative;
    border-radius: 0px;
}

.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.btn-back,
.btn-profile {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.btn-back:hover,
.btn-profile:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wizard-route {
    flex: 1;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}

/* Wizard Body */
.booking-wizard-body {
    padding: 40px 30px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


.booking-wizard-body .step-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.booking-wizard-body .step-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

.service-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.service-option:last-child {
    border-bottom: none;
}

.service-option:hover {
    background: #f8f9fa;
}

.service-option.selected {
    background: #e8f5e8;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.service-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.service-arrow {
    color: #ccc;
    font-size: 16px;
    margin-left: 15px;
}

.service-option:hover .service-arrow {
    color: #28a745;
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Wizard Actions */
.wizard-actions {
    margin-top: 40px;
}

.btn-continue,
.btn-submit {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-continue:hover,
.btn-submit:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Material List */
.material-list-container {
    margin-bottom: 30px;
}

.material-list {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: white;
}

/* Selected Materials */
.selected-materials {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.selected-materials-header {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: left;
}

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.material-tag {
    background: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.material-tag:hover {
    background: #218838;
    transform: scale(1.05);
}

.remove-tag {
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.remove-tag:hover {
    opacity: 1;
}

/* Auto-suggestion Dropdown */
.autocomplete-dropdown {
    position: relative;
    margin-top: 5px;
}

.material-suggestions {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: white;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.material-info {
    text-align: left;
}

.material-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.material-item:last-child {
    border-bottom: none;
}

.material-item:hover {
    background: #f8f9fa;
}

.material-item.selected {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
}

.material-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #666;
    font-size: 16px;
}

.material-info {
    flex: 1;
}

.material-info h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.material-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Truck List */
.truck-list-container {
    margin-bottom: 30px;
    overflow: scroll;
    height: 400px;
    padding: 10px;
}

.truck-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* max-height: 400px;
    overflow-y: auto; */
}

.truck-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.truck-item:hover {
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.truck-item.selected {
    border-color: #28a745;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.truck-image {
    width: 108px;
    height: 73px;
    border-radius: 8px;
    background: #f0f0f0;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 24px;
    flex-shrink: 0;
    padding: 10px;
}

.truck-image img {
    width: 100%;
}

.truck-info {
    flex: 1;
    text-align: left;
}

.truck-info h5 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.truck-info p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #666;
}

.truck-price {
    font-size: 16px;
    font-weight: 700;
    color: #28a745;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Weight Input Container */
.weight-input-container {
    display: flex;
    gap: 0px;
    align-items: stretch;
}

.weight-input {
    flex: 1;
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.weight-type-select {
    flex: 0 0 80px;
    border-radius: 0 8px 8px 0;
    border-left: 1px solid #e9ecef;
    background: #f8f9fa;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
}

.weight-type-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    background: white;
}

/* Form Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}


.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert strong {
    font-weight: 600;
}

/* Validation animation */
.is-invalid {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

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

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #007bff;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-success {
    border-left-color: #28a745;
}

.toast-warning {
    border-left-color: #ffc107;
}

.toast-info {
    border-left-color: #17a2b8;
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #f0f0f0;
    color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .toast {
        min-width: auto;
        max-width: none;
    }
}

/* Review Details */
.review-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.review-item:hover {
    background-color: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    min-width: 140px;
}

.review-value {
    color: #495057;
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    flex: 1;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    #bookingWizardModal .modal-dialog {
        max-width: 100%;
        margin: 0;
        height: 100vh;
    }

    .booking-wizard-content {
        height: 100vh;
        border-radius: 0;
    }

    .booking-wizard-body {
        padding: 30px 20px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .service-info h4 {
        font-size: 16px;
    }

    .service-info p {
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Mobile 320px to 480px */
@media (max-width: 480px) {
    .footer-app-section {
        display: none;
    }

    .footer-content {
        padding-left: 15px;
    }

    .footer-section {
        padding: 2rem 0 0;
    }

    .footer-logo img {
        max-width: 120px;
        height: auto;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon i {
        font-size: 1rem;
    }

    .app-download-title {
        font-size: 1rem;
    }

    .footer-app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-store-img {
        height: 40px;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-link,
    .location-link {
        font-size: 0.9rem;
    }

    .copyright-text {
        font-size: 0.8rem;
    }
}

/* Mobile 481px to 580px */
@media (min-width: 481px) and (max-width: 580px) {
    .footer-section {
        padding: 2.5rem 0 0;
    }

    .footer-logo img {
        max-width: 140px;
        height: auto;
    }

    .footer-app-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-heading {
        font-size: 1.2rem;
    }
}

/* Mobile 581px to 767px */
@media (min-width: 581px) and (max-width: 767px) {
    .footer-section {
        padding: 3rem 0 0;
    }

    .footer-logo img {
        max-width: 160px;
        height: auto;
    }

    .footer-heading {
        font-size: 1.25rem;
    }
}

/* Tablet 768px to 990px */
@media (min-width: 768px) and (max-width: 990px) {
    .footer-section {
        padding: 3.5rem 0 0;
    }

    .footer-logo img {
        max-width: 180px;
        height: auto;
    }

    .footer-heading {
        font-size: 1.3rem;
    }
}

/* Desktop 991px to 1199px */
@media (min-width: 991px) and (max-width: 1199px) {
    .footer-section {
        padding: 4rem 0 0;
    }

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

/* Desktop 1200px+ */
@media (min-width: 1200px) {
    .footer-section {
        padding: 60px 0 0;
    }

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


.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: unset;
}

/* Hide Google Places automatic placeholder text */
#pickupLocation::placeholder,
#dropLocation::placeholder {
    opacity: 0 !important;
    color: transparent !important;
}

/* Alternative approach - hide specific Google placeholder text */
input[placeholder*="Enter a location"]::placeholder,
input[placeholder*="Drop Address on"]::placeholder {
    opacity: 0 !important;
    color: transparent !important;
}


/* Full Load Content Styling */
.content-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.content-section .content-main {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.content-section .content-block {
    margin-bottom: 50px;
}

.content-section .content-block:last-child {
    margin-bottom: 0;
}

.content-section .content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    line-height: 1.3;
}

.content-section .content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 2px;
}

.content-section .content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.content-section .content-text:last-child {
    margin-bottom: 0;
}

/* Content Subheadings */
.content-section h3 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin: 30px 0 15px 0 !important;
    line-height: 1.4 !important;
}

.content-section h3:first-child {
    margin-top: 0 !important;
}

/* Content Lists and Strong Text */
.content-section strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive Design for Full Load Content */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }

    .content-section .content-main {
        padding: 40px 30px;
    }

    .content-section .content-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .content-section .content-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .content-section h3 {
        font-size: 1rem !important;
        margin: 25px 0 12px 0 !important;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 0;
    }

    .content-section .content-main {
        padding: 30px 20px;
    }

    .content-section .content-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .content-section .content-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .content-section h3 {
        font-size: 0.95rem !important;
        margin: 20px 0 10px 0 !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-main {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .content-main {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 1.8rem;
    }
}

.service-card a {
    text-decoration: none !important;
}

.mobile-submenu-item>a {
    text-decoration: none !important;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thank-you-container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-icon i {
    font-size: 50px;
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

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

.thank-you-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-number {
    background: #f8f9fa;
    border: 2px dashed #667eea;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.booking-number-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.booking-number-value {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    font-family: 'Courier New', monospace;
}

.thank-you-actions {
    margin-top: 40px;
}

.btn-home {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.info-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
}

.info-box h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: #28a745;
    border-color: #b2e3ae;
    opacity: var(--bs-btn-disabled-opacity);
}

.contact-detail-info a {
    text-decoration: navajowhite;
    color: #6c757d;
}

.contact-detail-info-small {
    font-size: 11px !important;
}