* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;

}

html {

}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo img {
    height: 40px;              /* adjust as needed */
    width: 40px;               /* make width = height for a perfect circle */
    border-radius: 50%;        /* makes it circular */
    border: 2px solid white;   /* thin white border */
    object-fit: cover;         /* ensures the image fills the circle nicely */
    background-color: white;   /* optional: if image has transparent edges */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Desktop styles */
@media (min-width: 769px) {
    .call-btn-mobile {
        display: none !important;
    }

    .menu-toggle {
        display: none !important;
        align-items: center;
    gap: 0.5rem;
    }
}

.nav-links a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.call-btn-mobile {
    display: none;
    background: var(--primary-gradient) !important;
    color: var(--text-color-mode) !important;
    text-decoration: none !important;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 6px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(228, 228, 223, 0.5);
    border: none;
}

.call-btn-mobile i {
    margin-right: 4px;
}

.call-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 102, 0, 0.6);
}

/* Active navigation link - Modern Stylish Look */
.nav-links a {
    text-decoration: none !important;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: white;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a.nav-active {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

.nav-links a.nav-active::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

/* Quick Booking Section */
.quick-booking {
    max-width: 1400px;
    margin: -2rem auto 3rem;
    padding: 0 2rem;
}

.booking-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 2rem;
}

.booking-tabs {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.tab {
    flex: 1;
    min-width: 130px;
    padding: 0.9rem 1.2rem;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab:hover {
    background: #e0e0e0;
}

.tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.booking-form {
    display: block;
}

.form-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 65%;
    transform: translateY(-50%);
    color: #667eea;
    pointer-events: none;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.search-btn {
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    align-self: end;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Main Content Area */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    
	
}

.content-area {
    min-width: 0;
}

/* Taxi Options Section */
.taxi-options {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.taxi-options h2 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.8rem;
}

/* Trip type selector */
.trip-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #f7f9fc;
    padding: 0.5rem;
    border-radius: 10px;
    width: fit-content;
    align-items: center;
}

.trip-type-selector i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    display: none;
}

@media (max-width: 768px) {
    .trip-type-selector i {
        display: inline-block;
        margin-right: 0.3rem;
    }
}

.trip-type-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    transition: all 0.3s;
    white-space: nowrap;
}

.trip-type-btn:hover {
    background: rgba(102, 126, 234, 0.1);
}

.trip-type-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.taxi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.taxi-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    background: white;
    overflow: visible;
    min-width: 0;
    gap: 0.8rem;
}

.taxi-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.taxi-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.taxi-icon {
    font-size: 2.3rem;
    color: var(--primary-color);
    min-width: 55px;
    text-align: center;
    flex-shrink: 0;
}

.taxi-details {
    text-align: center;
    min-width: 0;
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.taxi-route {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    /* overflow: hidden; */
    text-overflow: ellipsis;
}

.taxi-route i {
    color: var(--primary-color);
    font-size: 0.65rem;
    flex-shrink: 0;
}

.taxi-details h3 {
    color: #1a1a1a;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.taxi-specs {
    color: #666;
    font-size: 0.75rem;
    margin: 0.15rem 0;
    white-space: normal;
    overflow: visible;
    line-height: 1.3;
    word-break: break-word;
}

.taxi-specs i {
    color: var(--primary-color);
    margin-right: 0.25rem;
    width: 12px;
}

.taxi-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 120px;
    text-align: right;
    flex-shrink: 0;
    justify-content: center;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.taxi-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.1;
}

.price-label {
    color: #999;
    font-size: 0.7rem;
    white-space: nowrap;
}

.duration-info {
    color: #666;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    margin-top: 0.2rem;
}

.duration-info i {
    font-size: 0.65rem;
}

.book-taxi-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.book-taxi-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Content Section */
.content-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.content-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-section h3 {
    color: #333;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Table Styling for CKEditor content */
.content-box table,
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
}

.content-box table th,
.content-section table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid #667eea;
}

.content-box table td,
.content-section table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    color: #333;
}

.content-box table tr:nth-child(even),
.content-section table tr:nth-child(even) {
    background: #f9f9f9;
}

.content-box table tr:hover,
.content-section table tr:hover {
    background: #f0f0f0;
}

.featured-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.content-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight-box {
    background: #f7f9fc;
    padding: 1rem;
    border-radius: 10px;
}

.highlight-box i {
    color: #667eea;
    margin-right: 0.5rem;
}

/* Sightseeing Section */
.sightseeing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 280px));
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.sight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sight-card:hover {
    transform: translateY(-5px);
}

.sight-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    overflow: hidden;
}

.sight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sight-content {
    padding: 1.5rem;
    text-align: justify;
}

.sight-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.sight-content p {
    color: #666;
    font-size: 0.9rem;
    text-align: justify;
}

/* Fare Chart */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    table-layout: fixed;
}

.fare-table thead {
    display: table-header-group;
}

.fare-table thead tr {
    display: table-row;
}

.fare-table th,
.fare-table td {
    padding: 1rem;
    text-align: center !important;
    border-bottom: 1px solid #e0e0e0;
}

.fare-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 500;
    text-align: center !important;
    vertical-align: middle;
    display: table-cell;
}

.fare-table tr:hover {
    background: #f7f9fc;
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.faq-question:hover {
    background: #f7f9fc;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 1.2rem 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Sidebar - UPDATED FOR STICKY */
.sidebar {
    position: sticky;
        top: 80px;
    min-width: 0;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-trip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    border: 1px solid #e0e0e0;
}

.related-trip:hover {
    background: #f7f9fc;
    border-color: #667eea;
}

.trip-icon {
    font-size: 2rem;
    color: #667eea;
}

.trip-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.trip-distance {
    font-size: 0.8rem;
    color: #666;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 3rem 1rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
	
}

/* Tablet Responsive (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    /* Booking tabs for tablet */
    .booking-tabs {
        display: flex;
        gap: 0.6rem;
        margin-bottom: 1.8rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .tab {
        flex: 1;
        min-width: 110px;
        padding: 0.8rem 1rem;
        background: #f5f5f5;
        border: none;
        border-radius: 9px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        font-size: 0.87rem;
        transition: all 0.3s;
        white-space: nowrap;
    }

    .tab:hover {
        background: #e0e0e0;
    }

    .tab.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .tab i {
        display: inline-block;
        font-size: 0.95rem;
    }

    /* Form for tablet */
    .form-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-bottom: 1.8rem;
    }

    .form-group {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #666;
        font-size: 0.88rem;
        font-weight: 500;
    }

    .form-group i {
        position: absolute;
        left: 1rem;
        top: 65%;
        transform: translateY(-50%);
        color: #667eea;
        pointer-events: none;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 0.8rem 1rem 0.8rem 2.5rem;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .search-btn {
        grid-column: 1 / -1;
        width: 100%;
        padding: 0.7rem 1.3rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 0.9rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s;
        white-space: nowrap;
    }

    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }
    
    /* Taxi card optimization for tablets */
    .taxi-result-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .taxi-card {
        padding: 1.5rem;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        overflow: hidden;
    }

    .taxi-info {
        width: 100%;
        overflow: hidden;
    }

    .taxi-pricing {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        margin-top: 1rem;
        text-align: center;
    }

    .price-option {
        flex: 1;
        align-items: center;
        min-width: 0;
    }

    .taxi-price {
        font-size: 1.6rem !important;
    }

    .book-taxi-btn {
        width: auto;
        padding: 0.8rem 1rem;
        white-space: nowrap;
    }

    .taxi-image {
        height: 200px;
        margin-bottom: 1rem;
        border-radius: 8px;
        object-fit: cover;
    }

    .taxi-name {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        font-weight: 600;
    }

    .taxi-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .taxi-feature {
        padding: 0.6rem;
        background: rgba(248, 199, 70, 0.08);
        border-left: 3px solid var(--primary-color);
        border-radius: 4px;
    }

    .feature-label {
        font-size: 0.75rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin-bottom: 0.3rem;
    }

    .feature-value {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .taxi-price {
        font-size: 1.8rem;
        color: var(--primary-color);
        font-weight: 700;
        margin: 1rem 0 0.5rem;
        line-height: 1.2;
    }

    .book-taxi-btn {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 8px;
        margin-top: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .book-taxi-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(248, 199, 70, 0.3);
    }

    /* Optimize quick booking form for tablet */
    .quick-booking {
        padding: 1.5rem;
        margin: 1.5rem;
    }

    .booking-fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .booking-field {
        flex: 1;
    }

    .booking-field input,
    .booking-field select {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    .booking-btn {
        grid-column: 1 / -1;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Footer optimization */
    footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
      .fare-table th,
  .fare-table td {
    padding: 0.5rem;
  }
	.menu-toggle {
        display: none;
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex: 1;
        min-width: 0;
    }

    .logo img {
        height: 35px;
        width: 35px;
        border-radius: 50%;
        border: 2px solid white;
        object-fit: cover;
        background-color: white;
        flex-shrink: 0;
    }

    .call-btn-mobile {
        display: flex;
    }

    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--primary-gradient);
        flex-direction: row;
        justify-content: space-around;
        padding: 0.5rem;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links li {
        flex: 1;
        text-align: center;
    }

    .nav-links a {
        color: white;
        flex-direction: column;
        font-size: 0.75rem;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .nav-links a i {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }

    .nav-links a:hover {
        opacity: 0.8;
        color: white;
    }

    body {
        padding-bottom: 70px;
        width: 100%;
    }

    header {
        padding: 0;
    }

    nav {
        padding: 0.8rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    /* Booking tabs responsive */
    .booking-tabs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .tab {
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 100px;
        padding: 0.7rem 0.8rem;
        background: #f5f5f5;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.8rem;
        transition: all 0.3s;
        white-space: nowrap;
    }

    .tab:hover {
        background: #e0e0e0;
    }

    .tab.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .tab i {
        display: none;
    }

    /* Form responsive */
    .form-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #666;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .form-group i {
        position: absolute;
        left: 1rem;
        top: 65%;
        transform: translateY(-50%);
        color: #667eea;
        pointer-events: none;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .search-btn {
        width: 100%;
        padding: 0.7rem 1.3rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 0.9rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s;
        align-self: auto;
        white-space: nowrap;
    }

    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }

    /* Fix mobile padding for full width */
    .quick-booking {
        padding: 1rem 0.5rem;
        width: 100%;
    }

    .booking-card {
        padding: 1.5rem 1rem;
    }

    .main-container {
        padding: 0.5rem;
        width: 100%;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .taxi-options {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }

    .taxi-options h2 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .trip-type-selector {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.8rem;
        gap: 0.5rem;
        background: #f7f9fc;
        border-radius: 10px;
    }

    .trip-type-selector i {
        display: none;
    }

    .trip-type-btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: auto;
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .trip-type-btn.active {
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .taxi-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .taxi-card {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.5rem 1rem;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        background: #f9fafb;
        text-align: center;
        align-items: center;
        overflow: hidden;
    }

    .taxi-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12);
        border-color: var(--primary-color);
    }

    .taxi-info {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
        align-items: center;
        overflow: hidden;
    }

    .taxi-icon {
        font-size: 2.5rem;
        min-width: auto;
        margin-bottom: 0.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .taxi-details h3 {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 0.3rem;
        color: #1a1a1a !important;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .taxi-route {
        font-size: 0.75rem;
        color: #666;
        margin-bottom: 0.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .taxi-route i {
        color: var(--primary-color);
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .taxi-specs {
        font-size: 0.8rem;
        margin: 0.08rem 0;
        color: #777;
        display: inline;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .taxi-specs i {
        display: none;
    }

    .taxi-specs::before {
        content: '';
    }

    .taxi-pricing {
        width: 100%;
        text-align: center;
        padding-top: 1.2rem;
        padding-bottom: 0.5rem;
        border-top: 2px solid var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        overflow: hidden;
    }

    .price-option {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        width: 100%;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
        padding: 1rem 0.8rem;
        border-radius: 8px;
        overflow: hidden;
    }

    .price-label {
        font-size: 0.8rem;
        color: #666;
        margin: 0;
        text-align: center;
        width: 100%;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .taxi-price {
        font-size: 2rem;
        color: var(--primary-color);
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
        white-space: nowrap;
    }

    .book-taxi-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        font-weight: 600;
        white-space: nowrap;
    }

    /* Adjust footer padding */
    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    /* Prevent horizontal scroll */
    .main-container {
        max-width: 100vw;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }

    .quick-booking {
        max-width: 100vw;
    }

    .content-area {
        max-width: 100vw;
    }

    .sidebar {
        max-width: 100vw;
        position: static;
        top: auto;
    }
}