/* Home Page Styles - Extracted from home.blade.php for better performance */

/* ============================================
   HERO BANNER & BOOKING FORM STYLES
   ============================================ */

/* Horizontal booking form */
#home-booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: end;
}

/* Input hover and focus effects with animations */
#home-booking-form input {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#home-booking-form input:hover {
    border-color: #ff8533 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.1);
}

#home-booking-form input:focus {
    border-color: #ff6600 !important;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.2), 0 4px 16px rgba(255, 102, 0, 0.15) !important;
    transform: translateY(-2px) scale(1.01);
}

/* Location Dropdown Animation */
.location-dropdown {
    animation: fadeInScale 0.3s ease-out;
}

/* Dropdown Item Hover */
.home-pickup-item,
.home-dropoff-item {
    transition: all 0.2s ease;
}

.home-pickup-item:hover,
.home-dropoff-item:hover {
    background: linear-gradient(90deg, #fff8f3 0%, #ffffff 100%) !important;
    transform: translateX(5px);
    border-left: 3px solid #ff6600;
}

/* Enhanced Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 102, 0, 0);
    }
}

@keyframes inputGlow {
    0% {
        border-color: #e0e0e0;
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }

    50% {
        box-shadow: 0 0 12px 0 rgba(255, 102, 0, 0.4);
    }

    100% {
        border-color: #ff6600;
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes bounce {

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

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

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes float {

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

    33% {
        transform: translateY(-20px) rotate(5deg);
    }

    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

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

@keyframes btnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Button Styles */
.hero-btn {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.hero-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-btn-outline:hover {
    background: #ff6600 !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6) !important;
}

.hero-btn-outline:hover .btn-shine {
    animation: btnShine 0.8s ease-in-out;
}

.hero-btn-solid:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ff9944 100%) !important;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.7) !important;
    border-color: #ff8533 !important;
}

.hero-btn-solid:hover .btn-shine {
    animation: btnShine 0.8s ease-in-out;
}

/* Search Section Animation with Enhanced Effects */
.twm-search-section-wrap {
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
    opacity: 0;
}

/* Floating Background Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 12s ease-in-out infinite 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 50%;
    animation: float 18s ease-in-out infinite 4s;
}

/* Booking Header Animation */
.booking-header-animated {
    animation: fadeInScale 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

/* Submit Button Hover Effect */
.booking-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6), 0 0 0 4px rgba(255, 102, 0, 0.2) !important;
}

.booking-submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Tuk Decoration Float */
.tuk-decoration {
    animation: float 20s ease-in-out infinite;
}

/* Vehicle Tab Buttons */
.vehicle-tab-btn {
    transition: all 0.3s ease !important;
}

.vehicle-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.vehicle-tab-btn.active {
    animation: buttonPulse 0.6s ease-out;
}

/* Model Card Adjustments */
.home-tuk-model-card {
    max-width: 260px !important;
    margin-left: 0 !important;
    width: 100% !important;
    height: 100%;
    /* Fill the grid cell height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

/* Form Inputs */
.twm-search-section-area input {
    transition: all 0.3s ease !important;
}

.twm-search-section-area input:focus {
    animation: inputGlow 0.5s ease-out forwards;
    outline: none;
}

/* Submit Button */
#vehicle-filter-form button[type="submit"] {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

#vehicle-filter-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4) !important;
}

#home-booking-form button[type="submit"]:active {
    transform: translateY(-1px);
}

/* ============================================
   2025 SECTION STYLES
   ============================================ */

.twm-new-2025-section-wrap {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tuktuk-image-item:hover img {
    transform: scale(1.05);
}

.new-2025-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 97, 0, 0.4) !important;
}

.new-2025-cta:hover .btn-shine {
    animation: btnShine 0.8s ease-in-out;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #ff8533 !important;

/* Keep New Features cards uniform and left-aligned */
.features-grid .feature-item {
    min-height: 80px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.features-grid .feature-item span {
    text-align: left;
    display: inline-block;
    width: 100%;
}
}

/* Price chip hover effect */
.price-chip-2025:hover>div:first-child {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(255, 97, 0, 0.5) !important;
}

.price-chip-2025>div:first-child {
    transition: all 0.3s ease;
}

/* Image Stack Layout */
.tuktuk-images-stack {
    position: relative;
}

.tuktuk-image-item {
    transition: all 0.3s ease;
}

.tuktuk-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}

/* ============================================
   ADDONS SECTION STYLES
   ============================================ */

/* Swiper Addon Card Styling */
.addon-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Orange gradient top border */
.addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.addon-card:hover::before {
    transform: scaleX(1);
}

.addon-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.addon-image-container {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow: hidden;
    position: relative;
}

.addon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.addon-card:hover .addon-image {
    transform: scale(1.1);
}

.addon-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.addon-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.addon-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    max-height: 134px;
    /* 6 lines: 14px * 1.6 * 6 = 134.4px */
    overflow-y: auto;
}

/* Hide scrollbar by default, show only when content overflows */
.addon-description::-webkit-scrollbar {
    width: 4px;
}

.addon-description::-webkit-scrollbar-track {
    background: transparent;
}

.addon-description::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.addon-description::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.addon-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 16px;
    position: relative;
}

.addon-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.addon-price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.addon-price-label {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.addon-price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #ff6b35;
}

/* Swiper Navigation Styling */
.addons-prev,
.addons-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.addons-prev:after,
.addons-next:after {
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.addons-prev:hover,
.addons-next:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.addons-prev:hover:after,
.addons-next:hover:after {
    color: white;
}

/* Swiper Pagination Styling */
.addons-pagination {
    margin-top: 40px;
    position: relative !important;
    bottom: auto !important;
}

.addons-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.addons-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

/* ============================================
   PREMIUM CARD STYLES
   ============================================ */

/* Premium heading spacing */
.premium-heading {
    max-width: 720px;
    margin: 0 auto 32px auto;
}

.premium-heading .twm-sm-title {
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #ff6100;
    text-transform: uppercase;
}

.premium-heading h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.premium-heading .section-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin: 0 auto;
    max-width: 640px;
}

/* Single card layout */
.premium-card-wrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px;
}

.tuk-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 980px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
}

.tuk-card-media {
    position: relative;
    background: #f8fafc;
    min-height: 320px;
}

.tuk-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.price-chip {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #ff6100 0%, #ff8534 100%);
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    box-shadow: 0 8px 22px rgba(255, 97, 0, 0.35);
}

.price-amount {
    font-size: 26px;
    font-weight: 800;
}

.price-unit {
    font-size: 14px;
    opacity: 0.9;
}

.tuk-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge {
    display: inline-block;
    background: rgba(255, 97, 0, 0.12);
    color: #c2410c;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.tuk-title {
    font-size: 26px;
    margin: 0;
    color: #111827;
    letter-spacing: -0.3px;
}

.tuk-description {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: 15px;
}

.tuk-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    font-weight: 700;
}

.meta-value {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.tuk-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.tuk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff6100 0%, #ff8534 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(255, 97, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tuk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 97, 0, 0.45);
}

.assurance {
    color: #6b7280;
    font-size: 14px;
}

/* ============================================
   LOCATION DROPDOWN STYLES
   ============================================ */

.location-item-home:hover {
    background: #f7fafc !important;
}

.location-dropdown-home::-webkit-scrollbar {
    width: 6px;
}

.location-dropdown-home::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.location-dropdown-home::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.location-dropdown-home::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* ============================================
   COUNTER CARD STYLES
   ============================================ */

.twm-cntr-with-icon {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.twm-cntr-with-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ============================================
   FLEET FEATURES LIST STYLES
   ============================================ */

.fleet-features-list .feature-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
    font-family: inherit;
    display: inline-block;
    margin-right: 4px;
}

.fleet-features-list .feature-desc {
    font-weight: 500;
    color: #666;
    font-size: 16px;
}

.fleet-features-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-weight: normal;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .twm-home2-bnr {
        padding-bottom: 0 !important;
    }

    #home-booking-form {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    #home-booking-form>button {
        grid-column: 1 / -1 !important;
    }

    .new-2025-content {
        padding-left: 0 !important;
        margin-top: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-item:last-child {
        grid-column: 1 !important;
    }

    .price-chip-2025>div:first-child>div:first-child {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .price-chip-2025>div:first-child>div:first-child>div:nth-child(2) {
        display: none !important;
    }

    .tuk-card {
        grid-template-columns: 1fr;
    }

    .tuk-card-media {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .twm-search-section-wrap {
        padding: 18px !important;
    }

    #home-booking-form {
        grid-template-columns: 1fr !important;
    }

    #home-booking-form>button {
        width: 100% !important;
    }

    .addon-card {
        height: 420px;
    }

    .addon-image-container {
        height: 180px;
    }

    .addon-content {
        padding: 20px;
    }

    .addon-description {
        height: 70px;
    }

    .addons-prev,
    .addons-next {
        width: 40px;
        height: 40px;
    }

    .addons-prev:after,
    .addons-next:after {
        font-size: 16px;
    }

    .tuktuk-image-item img {
        height: 250px !important;
    }

    .new-2025-cta {
        padding: 14px 30px !important;
        font-size: 14px !important;
    }

    .price-chip-2025>div:first-child {
        padding: 16px 20px !important;
    }

    .price-chip-2025 span[style*="font-size: 48px"] {
        font-size: 36px !important;
    }

    .premium-heading h2 {
        font-size: 30px;
    }

    .tuk-title {
        font-size: 22px;
    }

    .tuk-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .tuk-card-body {
        padding: 22px;
    }
}

@media (max-width: 576px) {
    .twm-search-section-wrap {
        padding: 16px !important;
        margin: 8px 0 20px !important;
    }

    .twm-banner-left-content h2 {
        font-size: 28px !important;
    }

    .twm-bnr-discription {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    .twm-bnr-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    #home-booking-form label {
        font-size: 10px !important;
    }

    #home-booking-form input {
        padding: 11px 12px 11px 38px !important;
        font-size: 13px !important;
    }

    #home-booking-form button[type="submit"] {
        padding: 12px 24px !important;
        font-size: 13px !important;
    }

    .location-dropdown {
        max-height: 200px !important;
    }

    .twm-large-title {
        font-size: 28px !important;
    }

    .tuktuk-image-item img {
        height: 220px !important;
    }

    .image-badge {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }

    .price-chip-2025 span[style*="font-size: 48px"] {
        font-size: 32px !important;
    }

    .tuk-meta {
        grid-template-columns: 1fr;
    }

    .tuk-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .tuk-btn {
        width: 100%;
        text-align: center;
    }
}

/* Why Choose Us Section - Image Centering Fix */
.twm-w-chooseus2-section {
    align-items: center;
}

.twm-w-chooseus2-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.twm-w-chooseus2-media .twm-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.twm-w-chooseus2-media .twm-media img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.twm-need-help-bx2 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.twm-need-help-bx2 .twm-need-help-content span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.twm-need-help-bx2 .twm-need-help-content .twm-title {
    font-size: 22px;
    font-weight: 700;
    color: #ff6600;
    margin: 0;
}

.twm-need-help-bx2 .twm-need-help-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.twm-need-help-bx2 .twm-need-help-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .twm-w-chooseus2-media {
        margin-top: 40px;
    }

    .twm-need-help-bx2 {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .twm-need-help-bx2 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .twm-need-help-bx2 .twm-need-help-content {
        text-align: center;
    }
}

/* Why Choose Us - Orange background height tuning (keep help box unchanged) */
.twm-w-chooseus2-media::after {
    height: 520px; /* Desktop: slightly shorter to avoid overlap */
}

.twm-w-chooseus2-media .twm-media {
    padding-top: 60px; /* Reduce top padding a bit on desktop */
}

@media (max-width: 991px) {
    .twm-w-chooseus2-media::after {
        height: 380px; /* Tablet: shrink further */
    }
    .twm-w-chooseus2-media .twm-media {
        padding-top: 28px; /* Tablet: tighter spacing */
    }
}

@media (max-width: 768px) {
    .twm-w-chooseus2-media::after {
        height: 300px; /* Mobile: smaller orange panel */
    }

    /* Add breathing room below on mobile to avoid overlap with next section */
    .twm-w-chooseus2-media {
        margin-bottom: 32px;
    }

    /* 2025 section: show content first, images after on mobile */
    .twm-new-2025-section-wrap .row.align-items-center {
        flex-direction: column-reverse;
    }

    .tuktuk-images-stack {
        margin-top: 24px;
        width: 100%;
    }
}

/* Mobile: stack label above number; keep icon right; prevent wrapping */
@media (max-width: 576px) {
    .twm-need-help-bx2 {
        display: flex;
        flex-direction: row; /* content then icon */
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap; /* keep icon to the right */
        text-align: center;
        padding: 18px 24px;
        min-height: 110px;
        width: 100%;
    }

    .twm-need-help-bx2 .twm-need-help-content {
        display: flex;
        flex-direction: column; /* two lines: label then number */
        align-items: center;
        gap: 2px;
        text-align: inherit;
    }

    .twm-need-help-bx2 .twm-need-help-content span {
        display: block;
        margin: 0;
        white-space: nowrap; /* keep label on a single line */
        font-size: 13px;
    }

    .twm-need-help-bx2 .twm-need-help-content .twm-title {
        display: block;
        margin: 0;
        white-space: nowrap; /* keep phone number on a single line */
        font-size: 20px;
    }

    .twm-need-help-bx2 .twm-need-help-icon {
        flex: 0 0 auto;
        margin-left: 4px;
    }
}

/* ============================================
   BOOKING FORM GROUPING (RESPONSIVE)
   ============================================ */

/* Base style for Desktop (same as previous inline style) */
.booking-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive adjustments for Mobile/Tablet */
@media (max-width: 768px) {
    .booking-input-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: #f8fafc;
        padding: 16px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        margin-bottom: 20px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    /* Adjust label styling for better alignment */
    .booking-input-group label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Move price tag down */
    .twm-home2-bnr .twm-banner-product-price {
        margin-top: 80px !important;
    }
}

@media (max-width: 768px) {

  /* 1. Force remove left padding */
  .new-2025-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }

  /* 2. Kill all left alignment helpers */
  .new-2025-content .left {
    text-align: center !important;
  }

  /* 3. Force ALL text inside to center */
  .new-2025-content * {
    text-align: center !important;
  }

  /* 4. Center the price chip container */
  .price-chip-2025 {
    display: flex !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 5. Stack price chip content vertically */
  .price-chip-2025 > div > div {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  /* 6. Remove vertical divider */
  .price-chip-2025 div[style*="width: 2px"] {
    display: none !important;
  }

    /* 7. Center features */
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        justify-items: center !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .feature-item {
        min-height: 90px !important;
        width: 100% !important;
        max-width: 240px;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 14px !important;
    }

    .feature-item > * {
        text-align: center !important;
    }

    /* Keep 38km/L fuel on left and Spacious on right in the second row */
    .features-grid .feature-item:nth-child(3) {
        grid-column: 1 !important;
    }

    .features-grid .feature-item:nth-child(4) {
        grid-column: 2 !important;
    }

  /* 8. FORCE CENTER THE BUTTON (THIS IS THE KEY FIX) */
  .cta-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .new-2025-cta {
    display: inline-flex !important;
    margin: 0 auto !important;
  }

    /* Center section titles and headings on mobile */
    .section-head,
    .section-head.left,
    .section-head.center {
        text-align: center !important;
        align-items: center !important;
    }

    .section-head .twm-sm-title,
    .section-head .twm-large-title,
    .section-head .section-head-detail {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Our Fleet: Reorder on mobile - image between description and features */
    .twm-feature-section-wrap .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0;
    }

    /* Content column appears first on mobile */
    .twm-feature-section-wrap .row > .col-lg-6:nth-child(2) {
        order: 1 !important;
        width: 100% !important;
        margin-bottom: 0;
    }

    /* Image column appears second on mobile (after content, before features) */
    .twm-feature-section-wrap .row > .col-lg-6:nth-child(1) {
        order: 2 !important;
        width: 100% !important;
        margin-bottom: 24px;
        margin-top: 24px;
    }

    /* Adjust image box height and padding for mobile */
    .twm-feature-icon-section > div {
        min-height: 300px !important;
        padding: 40px 30px !important;
    }

    /* Scale tuk-tuk image for mobile */
    .twm-feature-icon-section img {
        max-height: 250px !important;
    }

    /* Ensure content section displays properly */
    .twm-feature-content {
        width: 100%;
    }

    .twm-feature-section-wrap .section-head {
        margin-bottom: 24px;
    }

    .twm-feature-section-wrap .twm-inline-list2 {
        margin-top: 24px;
        margin-bottom: 20px;
    }

    .twm-feature-section-wrap .twm-btn-left {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    /* Our Fleet hero image box: tighten height and scale image on mobile */
    .twm-feature-icon-section > div {
        min-height: 260px !important;
        padding: 32px 24px !important;
    }

    .twm-feature-icon-section > div img {
        max-height: 220px !important;
    }

    /* About Us: center the Read More button on mobile */
    .twm-abus-section-wrap .twm-btn-left {
        display: flex;
        justify-content: center;
    }

    /* Let's Your Adventure: center icons and text on mobile */
    .twm-step-towards-section .twm-icon-style-left {
        display: flex !important;
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .twm-step-towards-section .twm-icon-style-left .twm-media {
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }

    .twm-step-towards-section .twm-icon-style-left .twm-content {
        width: 100%;
    }

    .twm-step-towards-section .twm-icon-style-left .twm-content p {
        text-align: center;
    }

    /* Wide Range Section: add spacing between cards on mobile */
    .twm-w-range-section .col-lg-3 {
        margin-bottom: 20px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .twm-w-range-section {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }
}
/* HOW IT WORK SECTION - MOBILE IMAGE BELOW STEPS */
@media (max-width: 991px) {
    /* Add spacing between steps and image */
    .twm-how-it-work-wrap .twm-how-it-work-media {
        margin-top: 30px; /* space between steps and image */
        text-align: center; /* center image on mobile */
    }

    /* Make image responsive */
    .twm-how-it-work-wrap .twm-how-it-work-media img {
        max-width: 100%;
        height: auto;
    }
}

/* 2025 Price Card & HOT DEAL badge */
.price-chip-2025 {
    position: relative;
    display: inline-block;
}

.hot-deal-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFD700;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 10;
    white-space: nowrap;
    pointer-events: none;
}

@media (max-width: 768px) {
    .price-chip-2025 {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
    }

    .price-chip-2025 > div:first-child {
        width: 100%;
    }

    .hot-deal-badge {
        position: static;
        order: -1;
        margin-bottom: 10px;
        padding: 5px 12px;
        font-size: 10px;
        border-radius: 16px;
        align-self: flex-end;
        box-shadow: 0 4px 10px rgba(255, 215, 0, 0.35);
    }
}

@media (max-width: 480px) {
    .hot-deal-badge {
        padding: 4px 10px;
        font-size: 9px;
        border-radius: 14px;
        margin-bottom: 8px;
    }
}



