 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', 'Arial', sans-serif;
    }

.alert-message {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 15px 0;
    border-left: 4px solid #ffeeba;
}

.customer-details {
    width: 100%;
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.customer-details .booking-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

    /* Loading Animation */
    .loader {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 1s ease-in-out infinite;
        margin-right: 8px;
        vertical-align: middle;
    }
    
    #mapLoader {
        display: none;
        width: 100%;
        height: 300px;
        background: #f5f5f5;
        position: relative;
    }
    
    #mapLoader:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    #loadingContainer {
        display: none;
        text-align: center;
        padding: 50px;
    }
    
    #loadingContainer:before {
        content: "";
        display: inline-block;
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 20px;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    #loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1a1a2e;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease-out;
    }

    .loader-logo {
        font-size: 2.5rem;
        font-weight: bold;
        color: #fff;
        margin-bottom: 2rem;
        animation: pulse 1.5s infinite;
    }

    .loader-logo span {
        color: #f7b426;
    }

    .loader-spinner {
        width: 50px;
        height: 50px;
        border: 5px solid rgba(249, 168, 38, 0.3);
        border-radius: 50%;
        border-top-color: #f7b426;
        animation: spin 1s ease-in-out infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    body {
        color: #333;
        line-height: 1.6;
        background-color: #f8f9fa;

    }

    body.loaded {
        overflow: auto;
    }

    body.loaded #loader {
        opacity: 0;
        pointer-events: none;
    }

    .top-bar {
        background-color: #f7b426;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        animation: fadeInDown 0.5s ease-out;
    }

    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .top-bar-phone {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .top-bar-phone i {
        font-size: 1rem;
    }

    .top-bar-social {
        display: flex;
        gap: 1rem;
    }

    .top-bar-social a {
        color: #1a1a2e;
        transition: all 0.3s;
    }

    .top-bar-social a:hover {
        color: white;
        transform: translateY(-2px);
    }

    header {
        background-color: #1a1a2e;
        color: white;
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        animation: fadeInDown 0.5s ease-out;
    }

    .floating-contact {
        position: fixed;
        bottom: 100px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        z-index: 99;
    }

    .floating-whatsapp, .floating-call {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: all 0.3s;
    }

    .floating-whatsapp {
        background-color: #25D366;
    }

    .floating-call {
        background-color: #0456e4;
    }

    .floating-whatsapp:hover, .floating-call:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }
            
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }
            
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
            
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #fff;
        transition: transform 0.3s;
    }
            
    .logo:hover {
        transform: scale(1.05);
    }
            
    .logo span {
        color: #f7b426;
    }
            
    nav ul {
        display: flex;
        list-style: none;
    }
            
    nav ul li {
        margin-left: 2rem;
        position: relative;
    }
            
    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        padding: 0.5rem 0;
    }

    nav ul li a:hover {
        color: #f7b426;
    }

    nav ul li a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #f7b426;
        transition: width 0.3s;
    }

    nav ul li a:hover:after {
        width: 100%;
    }
            
   .hero {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url('image/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 0.8s ease-out;
    position: relative;
}
            
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        animation: fadeInUp 0.8s ease-out;
    }
            
    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        animation: fadeInUp 0.8s ease-out 0.2s forwards;
        opacity: 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        color: #1a1a2e;
        position: relative;
        padding-bottom: 1rem;
        font-size: 2.2rem;
        font-weight: 700;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #f7b426;
        border-radius: 2px;
    }

    .section-title-about {
        text-align: center;
        margin-bottom: 3rem;
        color: #000000;
        position: relative;
        padding-bottom: 1rem;
        font-size: 2.2rem;
        font-weight: 700;
    }

    .section-title-about:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #ffffff;
        border-radius: 2px;
    }

    .services-section, .tariff-section {
        padding: 5rem 0;
        background-color: #fff;
    }

    .about-section {
        background-color: #f7b426;
        color: black;
        padding: 5rem 0;
        width: 100%;
    }

    .about-content {
        display: flex;
        align-items: center;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        animation: fadeInUp 0.8s ease-out;
    }

    .about-text {
        flex: 1;
        position: relative;
    }

    .about-stats {
        display: flex;
        justify-content: space-between;
        margin-top: 2rem;
        text-align: center;
        position: relative;
        padding-top: 2rem;
    }

    .about-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-image: linear-gradient(to right, black 50%, transparent 50%);
        background-size: 10px 1px;
        background-repeat: repeat-x;
    }

    .stat-item {
        flex: 1;
        padding: 1rem;
        transition: transform 0.3s;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
        color: black;
    }

    .stat-label {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: black;
    }

    .about-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s;
    }

    .service-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px 8px 0 0;
        margin-bottom: 1rem;
        transition: transform 0.5s;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .service-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        text-align: center;
        border: 1px solid #eee;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: #eee;
    }

    .service-card:hover .service-image {
        transform: scale(1.1);
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #1a1a2e;
    }

    .service-content p {
        color: #666;
        margin-bottom: 1.5rem;
    }

    .tariff-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .tariff-table th, .tariff-table td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .tariff-table th {
        background-color: #1a1a2e;
        color: white;
    }

    .tariff-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .tariff-table tr:hover {
        background-color: #f5f5f5;
    }

    .tariff-highlight {
        color: #f7b426;
        font-weight: bold;
    }
            
    .btn {
        display: inline-block;
        background-color: #000000;
        color: white;
        padding: 0.8rem 1.8rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        border: 2px solid #000000;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
            
    .btn:hover {
        background-color: #333;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .btn:active {
        transform: translateY(-1px);
    }

    .btn:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .btn:focus:not(:active)::after {
        animation: ripple 1s ease-out;
    }

    @keyframes ripple {
        0% {
            transform: scale(0, 0);
            opacity: 1;
        }
        20% {
            transform: scale(25, 25);
            opacity: 1;
        }
        100% {
            opacity: 0;
            transform: scale(40, 40);
        }
    }
            
    .btn-outline {
        background-color: transparent;
        color: #f7b426;
        border-color: #f7b426;
    }
            
    .btn-outline:hover {
        background-color: #f7b426;
        color: white;
    }
            
    .booking-form {
        background-color: white;
        padding: 2.5rem;
        border-radius: 15px;
        width: 60%;
        margin: -3rem auto 2rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        position: relative;
        z-index: 10;
        animation: fadeInUp 0.8s ease-out;
        border: 1px solid #eee;
    }

    .booking-form h2 {
        color: #1a1a2e;
        margin-bottom: 1.5rem;
        text-align: center;
        font-size: 1.8rem;
    }
            
    .form-group {
        margin-bottom: 1.5rem;
        position: relative;
    }
            
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #1a1a2e;
    }
            
    .form-group input, .form-group select {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s;
    }

    .form-group input:focus, .form-group select:focus {
        border-color: #f7b426;
        box-shadow: 0 0 0 3px rgba(249, 168, 38, 0.2);
        outline: none;
    }
            
    .location-swap {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: #f7b426;
        color: white;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
            
    .location-swap:hover {
        background: #e6951f;
        transform: translateY(-50%) scale(1.1);
    }
            
    .pac-container {
        z-index: 10000 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 8px;
        border: 1px solid #eee;
    }
            
    .form-row {
        display: flex;
        gap: 1rem;
    }
            
    .form-row .form-group {
        flex: 1;
    }
            
    .trip-type {
        display: flex;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #ddd;
    }
            
    .trip-type button {
        flex: 1;
        padding: 0.8rem;
        border: none;
        background: #f8f9fa;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
            
    .trip-type button.active {
        background: #f7b426;
        color: white;
    }
            
    .return-trip-fields {
        display: none;
        animation: fadeIn 0.5s ease-out;
    }
            
    .results-container {
        display: none;
        width: 90%;
        max-width: 1200px;
        margin: 3rem auto 2rem;
        animation: fadeIn 0.5s ease-out;
        position: relative;
        z-index: 10;
    }
            
    .results-grid {
        display: grid;
        grid-template-columns: 60% 40%;
        gap: 2rem;
    }
            
    .ride-options {
        background-color: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: 1px solid #eee;
    }
            
    .ride-options h2 {
        margin-bottom: 1.5rem;
        color: #1a1a2e;
        font-size: 1.8rem;
    }
            
    .trip-info {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1.0rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }
.trip-info-item-fst {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 80px;
    }

            
    .trip-info-item {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 120px;
    }
            
    .trip-info-item i {
        margin-right: 0.5rem;
        color: #f7b426;
    }
            
    .car-option {
        display: flex;
        align-items: center;
        padding: 1rem;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
            
    .car-option:hover {
        border-color: #f7b426;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
            
    .car-option.selected {
        border-color: #f7b426;
        background-color: #fef6e6;
        box-shadow: 0 5px 15px rgba(249, 168, 38, 0.2);
    }
            
    .car-icon {
        font-size: 2rem;
        margin-right: 1rem;
        color: #f7b426;
    }
            
    .car-details {
        flex: 1;
    }
            
    .car-details h3 {
        margin-bottom: 0.5rem;
        color: #1a1a2e;
    }
            
    .car-features {
        display: flex;
        gap: 0.8rem;
        margin: 0.5rem 0;
        font-size: 0.9rem;
        color: #666;
        flex-wrap: wrap;
    }
            
    .car-feature {
        display: flex;
        align-items: center;
    }
            
    .car-feature i {
        margin-right: 0.3rem;
        color: #f7b426;
        font-size: 0.8rem;
    }
            
    .car-price-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
            
    .car-price {
        font-weight: bold;
        font-size: 1.2rem;
        color: #1a1a2e;
    }
            
    .rate-display {
        font-size: 0.8rem;
        color: #666;
        margin-top: 0.2rem;
    }
            
    .map-container {
        background-color: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid #eee;
    }
            
    #map {
        width: 100%;
        height: 300px;
        border-radius: 8px;
        margin-bottom: 1rem;
        flex-grow: 1;
    }
            
    .map-iframe {
        width: 100%;
        height: 300px;
        border-radius: 8px;
        border: none;
        margin-bottom: 1rem;
    }
            
    .route-summary {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
            
    .route-summary h3 {
        margin-bottom: 0.5rem;
        color: #1a1a2e;
    }
            
    .route-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
            
    .route-info-item {
        display: flex;
        align-items: center;
    }
            
    .route-info-item i {
        margin-right: 0.5rem;
        color: #f7b426;
    }
            
    .fare-details {
        background-color: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: auto;
        display: none;
        border: 1px solid #eee;
    }
            
    .fare-details h3 {
        margin-bottom: 1rem;
        color: #1a1a2e;
    }
            
    .fare-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px dashed #ddd;
    }
            
    .fare-row .fare-label {
        color: #666;
    }
            
    .total-row {
        font-weight: bold;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid #1a1a2e;
    }
            
    .extra-charges {
        font-size: 0.8rem;
        color: #666;
        margin-top: 1rem;
    }
            
    .payment-options {
        margin-top: 1.5rem;
    }
            
    .payment-options h4 {
        margin-bottom: 0.8rem;
        color: #1a1a2e;
    }
            
    .payment-methods {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }
            
    .payment-method {
        display: flex;
        align-items: center;
        padding: 0.5rem 1rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
            
    .payment-method:hover {
        border-color: #f7b426;
    }
            
    .payment-method.selected {
        border-color: #f7b426;
        background-color: #fef6e6;
    }
            
    .payment-method i {
        margin-right: 0.3rem;
        color: #f7b426;
        font-size: 0.9rem;
    }
            
    .confirmation {
        display: none;
        text-align: center;
        padding: 3rem;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        margin: 2rem auto;
        max-width: 600px;
        animation: fadeIn 0.5s ease-out;
        border: 1px solid #eee;
    }
            
    .confirmation h2 {
        color: #1a1a2e;
        margin-bottom: 1rem;
        font-size: 2rem;
    }
            
    .confirmation p {
        margin-bottom: 1.5rem;
        color: #666;
    }
            
    .checkmark {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: inline-block;
        stroke-width: 2;
        stroke: #f7b426;
        stroke-miterlimit: 10;
        margin-bottom: 1.5rem;
        animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
    }
            
    .checkmark__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 2;
        stroke-miterlimit: 10;
        stroke: #f7b426;
        fill: none;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }
            
    .checkmark__check {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }
            
    .booking-actions {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }
            
    .booking-actions .btn {
        flex: 1;
    }
            
    @keyframes stroke {
        100% {
            stroke-dashoffset: 0;
        }
    }
            
    @keyframes scale {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale3d(1.1, 1.1, 1);
        }
    }
            
    @keyframes fill {
        100% {
            box-shadow: inset 0px 0px 0px 30px #f7b426;
        }
    }
            
    footer {
        background-color: #1a1a2e;
        color: white;
        padding: 4rem 0 2rem;
    }

    .contact-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .whatsapp-btn, .call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1.2rem;
        border-radius: 5px;
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        flex: 1;
    }

    .whatsapp-btn {
        background-color: #25D366;
    }

    .call-btn {
        background-color: #f7b426;
    }

    .whatsapp-btn:hover, .call-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .whatsapp-btn i, .call-btn i {
        margin-right: 0.5rem;
        font-size: 1.1rem;
    }
            
    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
    }
            
    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 2rem;
    }
            
    .footer-section h3 {
        margin-bottom: 1.5rem;
        color: #f7b426;
        font-size: 1.3rem;
        position: relative;
        padding-bottom: 0.8rem;
    }

    .footer-section h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #f7b426;
    }
            
    .footer-section ul {
        list-style: none;
    }
            
    .footer-section ul li {
        margin-bottom: 0.8rem;
        transition: transform 0.3s;
    }

    .footer-section ul li:hover {
        transform: translateX(5px);
    }
            
    .footer-section ul li a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s;
        display: flex;
        align-items: center;
    }

    .footer-section ul li a i {
        margin-right: 0.5rem;
        color: #f7b426;
        font-size: 0.8rem;
    }
            
    .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #444;
        width: 60%;
        margin: 2rem auto 0;
        text-align: center;
        color: #aaa;
        font-size: 0.9rem;
    }

    .footer-column h3 {
        color: #f7b426;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

    .footer-column p {
        margin-bottom: 1rem;
        line-height: 1.6;
        color: #ddd;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column ul li {
        margin-bottom: 0.8rem;
    }

    .footer-column ul li a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-column ul li a:hover {
        color: #f7b426;
    }

    .contact-info li {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1rem;
        color: #ddd;
    }

    .contact-info li i {
        color: #f7b426;
        width: 20px;
        text-align: center;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-icons a {
        color: white;
        background-color: #333;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .social-icons a:hover {
        background-color: #f7b426;
        transform: translateY(-3px) scale(1.1);
    }

    .copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #444;
        margin-top: 2rem;
    }

    .routes-section {
        background-color: #f7b426;
        padding: 5rem 0;
        width: 100%;
    }
            
    .routes-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }
            
    .routes-title {
        text-align: center;
        margin-bottom: 3rem;
        color: #000000;
        position: relative;
        padding-bottom: 1rem;
        font-size: 2.2rem;
        font-weight: 700;
    }
            
    .routes-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #ffffff;
        border-radius: 2px;
    }
            
    .routes-columns {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
            
    .route-column {
        flex: 1;
        min-width: 250px;
        background-color: rgba(255,255,255,0.1);
        padding: 1.5rem;
        border-radius: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .route-column:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        background-color: rgba(255,255,255,0.15);
    }
            
    .route-column h3 {
        color: #000000;
        margin-bottom: 1.5rem;
        text-align: left;
        padding-bottom: 0.5rem;
        border-bottom: 1px dashed rgba(255,255,255,0.3);
    }
            
    .route-list {
        list-style: none;
    }
            
    .route-list li {
        padding: 0.8rem 0;
        border-bottom: 1px dashed rgba(255,255,255,0.2);
        text-align: left;
        color: #000000;
        display: flex;
        align-items: center;
        transition: transform 0.3s;
    }

    .route-list li:before {
        content: '\f207';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: #000000;
        margin-right: 0.8rem;
        font-size: 0.8rem;
    }

    .route-list li:hover {
        transform: translateX(5px);
    }

    .route-list li:hover:before {
        color: #1a1a2e;
    }
            
    .service-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }
            
    .btn-call {
        display: inline-block;
        background-color: #000000;
        color: white;
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        border: 2px solid #000000;
        cursor: pointer;
        flex: 1;
        text-align: center;
        font-size: 0.9rem;
    }
            
    .btn-call:hover {
        background-color: #333333;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
            
    .btn-book {
        display: inline-block;
        background-color: #f7b426;
        color: #000;
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        border: 2px solid #f7b426;
        cursor: pointer;
        flex: 1;
        text-align: center;
        font-size: 0.9rem;
    }
            
    .btn-book:hover {
        background-color: #e6951f;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .tariff-columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
            
    .tariff-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        text-align: center;
        border: 1px solid #eee;
    }
            
    .tariff-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: #eee;
    }
            
    .tariff-image {
        width: 85%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .tariff-card:hover .tariff-image {
        transform: scale(1.1);
    }
            
    .tariff-content {
        padding: 1.5rem;
    }
            
    .tariff-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #1a1a2e;
    }
            
     .tariff-price {
        font-size: 1.8rem;
        color: #000000;
        font-weight: bold;
        margin: 1rem 0;
        padding: 0.5rem;
        background: linear-gradient(135deg, #f7b426 0%, #f9d423 100%);
        border-radius: 4px;
        display: inline-block;
        width: 100%;
    }

            
    .tariff-details {
        text-align: left;
        margin-bottom: 1.5rem;
    }
            
    .tariff-row {
        display: flex;
        justify-content: space-between;
        padding: 0.8rem 0;
        border-bottom: 1px dashed #eee;
        transition: background-color 0.3s;
    }

    .tariff-row:hover {
        background-color: #f9f9f9;
    }
            
    .tariff-label {
        font-weight: bold;
        color: #666;
        display: flex;
        align-items: center;
    }

    .tariff-label i {
        margin-right: 0.5rem;
        color: #f7b426;
        font-size: 0.9rem;
    }
            
    .tariff-value {
        color: #1a1a2e;
        font-weight: 500;
    }
            
    .tariff-book-btn {
        display: inline-block;
        background-color: #000000;
        color: white;
        padding: 0.8rem 1.8rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        border: 2px solid #000000;
        cursor: pointer;
        width: 100%;
        margin-top: 1rem;
    }
            
    .tariff-book-btn:hover {
        background-color: #333;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Animation Classes */
    .animate-delay-1 {
        animation-delay: 0.2s;
    }

    .animate-delay-2 {
        animation-delay: 0.4s;
    }

    .animate-delay-3 {
        animation-delay: 0.6s;
    }

    /* Scroll Animation */
    .reveal {
        position: relative;
        opacity: 0;
    }

    .reveal.active {
        opacity: 1;
    }

    .active.fade-bottom {
        animation: fade-bottom 0.6s ease-in;
    }

    .active.fade-left {
        animation: fade-left 0.6s ease-in;
    }

    .active.fade-right {
        animation: fade-right 0.6s ease-in;
    }

    @keyframes fade-bottom {
        0% {
            transform: translateY(50px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes fade-left {
        0% {
            transform: translateX(-50px);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes fade-right {
        0% {
            transform: translateX(50px);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* Hover Effects */
    .hover-float {
        transition: transform 0.3s;
    }

    .hover-float:hover {
        transform: translateY(-5px);
    }

    /* Pulse Animation */
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }

    .pulse {
        animation: pulse 2s infinite;
    }

    /* Section Background Patterns */
    .pattern-dots {
        background-image: radial-gradient(#f7b426 2px, transparent 2px);
        background-size: 20px 20px;
        background-color: #fef6e6;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {

.hero {
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), 
              url('image/banner-mobile.jpg');
  background-size: cover; /* Fills entire container without repeating */
  background-position: center;
  background-repeat: no-repeat;
}

        .route-column {
            min-width: 100%;
        }

        .about-content {
            flex-direction: column;
        }
        
        .about-image {
            order: -1;
            margin-bottom: 2rem;
            width: 100%;
        }
        
        .about-stats {
            flex-direction: column;
            gap: 1rem;
        }
        
        .stat-item {
            padding: 0.5rem;
        }

        .header-content {
            flex-direction: column;
        }
        
        nav ul {
            margin-top: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        nav ul li {
            margin: 0.5rem;
        }
        
        .form-row {
            flex-direction: column;
            gap: 0;
        }
        
        .booking-form {
            width: 90%;
            padding: 1.5rem;
        }
        
        .results-grid {
            grid-template-columns: 1fr;
        }
        
        .booking-actions {
            flex-direction: column;
        }
        
        .payment-methods {
            flex-wrap: wrap;
        }
        
        .footer-column {
            min-width: 100%;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-image {
            order: -1;
        }

        .hero h1 {
            font-size: 2.2rem;
        }

        .hero p {
            font-size: 1.1rem;
        }

        .section-title, .section-title-about, .routes-title {
            font-size: 1.8rem;
        }

        .tariff-columns {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .top-bar-content {
            flex-direction: column;
            gap: 0.5rem;
        }

        .hero h1 {
            font-size: 1.8rem;
        }

        .service-buttons {
            flex-direction: column;
        }

        .btn-call, .btn-book {
            width: 100%;
        }
    }