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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: #ffcdd2;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffcdd2;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h2 {
    color: #d32f2f;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: #d32f2f;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d32f2f;
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-btn, .next-btn {
    background: rgba(30, 60, 114, 0.8);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(30, 60, 114, 1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #1e3c72;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 32px;
    color: #d32f2f;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: #d32f2f;
    font-size: 18px;
    margin: 0;
}

.service-description {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffebee 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Local Services Section */
.local-services {
    padding: 80px 0;
    background: white;
}

/* Taxi 4-7 Seats Section */
.taxi-seats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffebee 100%);
}

/* Taxi Seats Section */
.taxi-seats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.taxi-seats-section .section-title {
    color: #d32f2f;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Taxi Province Section */
.taxi-province-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.taxi-province-section .section-title {
    color: #e64a19;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

.taxi-province-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.taxi-province-section .service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(230, 76, 25, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.taxi-province-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 76, 25, 0.2);
    border-color: #e64a19;
}

.taxi-province-section .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.taxi-province-section .service-card:hover img {
    transform: scale(1.05);
}

.taxi-province-section .service-card h3 {
    color: #e64a19;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 20px 20px 10px;
    text-align: center;
}

.taxi-province-section .service-card .service-description {
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
    text-align: center;
}

/* Province Banner */
.province-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
}

.province-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.province-info h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #ffcdd2;
}

.province-info h3 {
    font-size: 22px;
    margin: 25px 0 10px;
    color: #ffcdd2;
}

.province-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffebee 100%);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.booking-info h3 {
    color: #d32f2f;
    font-size: 24px;
    margin-bottom: 15px;
}

.booking-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.btn-secondary {
    background: #ff5722;
    color: white;
}

.btn-secondary:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.booking-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #d32f2f;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
}

/* Booking Features */
.booking-features {
    margin-top: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.booking-features h4 {
    color: #d32f2f;
    margin-bottom: 15px;
}

.booking-features ul {
    list-style: none;
}

.booking-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.booking-features i {
    color: #d32f2f;
    margin-right: 10px;
    font-size: 16px;
}

/* Quick Contact Section */
.quick-contact {
    padding: 80px 0;
    background: white;
}

.quick-contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quick-contact .contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffebee 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.quick-contact .contact-card:hover {
    transform: translateY(-5px);
}

.quick-contact .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.quick-contact .contact-icon i {
    font-size: 24px;
    color: white;
}

.quick-contact .contact-card h3 {
    color: #d32f2f;
    margin-bottom: 10px;
}

.quick-contact .contact-card p {
    color: #666;
    margin-bottom: 20px;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-card:not(.featured) .news-image {
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.news-content {
    padding: 20px;
}

.news-card.featured .news-content h2 {
    color: #d32f2f;
    font-size: 24px;
    margin-bottom: 15px;
}

.news-card:not(.featured) .news-content h3 {
    color: #d32f2f;
    font-size: 18px;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #f44336;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: #d32f2f;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

.page-link:last-child {
    width: auto;
    padding: 0 15px;
}

/* Footer */
.footer {
    background: #d32f2f;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffcdd2;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffcdd2;
}

.footer-section ul li i {
    margin-right: 8px;
    color: #ffcdd2;
}

.footer-bottom {
    border-top: 1px solid #f44336;
    padding-top: 20px;
    text-align: center;
}

/* Fixed Contact Buttons */
.fixed-contact {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: blink 2s infinite;
}

.phone-btn {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

.zalo-btn {
    background: #0068ff;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    animation: none;
}

.contact-text {
    font-size: 14px;
}

/* Blinking Animation */
@keyframes blink {
    0%, 50% {
        opacity: 1;
        transform: scale(1);
    }
    25%, 75% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d32f2f;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Mobile Menu Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #d32f2f;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    background: #d32f2f;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #d32f2f;
}

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: none;
}

.mobile-menu.active {
    right: 0;
    display: block;
}

.mobile-menu .nav-list {
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .nav-list li {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
}

.mobile-menu .nav-list a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: none;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu .nav-list a::after {
    display: none;
}

.mobile-menu .nav-list a:hover,
.mobile-menu .nav-list a.active {
    background: #f8f9fa;
    padding-left: 10px;
    border-radius: 5px;
    color: #d32f2f;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .nav {
        display: none;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border-radius: 5px;
        padding: 5px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-menu-toggle span {
        background: #d32f2f !important;
        width: 25px;
        height: 3px;
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span {
        background: #d32f2f !important;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .fixed-contact {
        bottom: 15px;
        left: 15px;
    }
    
    .contact-text {
        display: none;
    }
    
    .contact-btn {
        padding: 12px;
        border-radius: 50%;
    }
    
    .news-card.featured {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-contact .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Taxi Province Section Mobile */
    .taxi-province-section {
        padding: 40px 0;
    }
    
    .taxi-province-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .taxi-province-section .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .taxi-province-section .service-card h3 {
        font-size: 1.1rem;
        margin: 15px 15px 8px;
    }
    
    .taxi-province-section .service-card .service-description {
        margin: 0 15px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo h2 {
        font-size: 18px;
    }
    
    .nav-list {
        gap: 15px;
        font-size: 14px;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .booking-content {
        gap: 20px;
    }
    
    .form-row {
        gap: 10px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .fixed-contact {
        bottom: 10px;
        left: 10px;
    }
    
    .contact-btn {
        padding: 10px;
    }
    
    .news-card.featured {
        gap: 15px;
    }
    
    .news-grid {
        gap: 15px;
    }
    
    .quick-contact .contact-grid {
        gap: 15px;
    }
    
    /* Mobile Menu Toggle for Small Screens */
    .mobile-menu-toggle {
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        margin: 2px 0;
    }
    
    /* Taxi Province Section Small Mobile */
    .taxi-province-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .taxi-province-section .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .taxi-province-section .service-card img {
        height: 180px;
    }
}

/* Tablet Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .logo h2 {
        font-size: 22px;
    }
    
    .nav-list {
        gap: 20px;
        font-size: 15px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .booking-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .news-card.featured {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .quick-contact .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Taxi Province Section Tablet */
    .taxi-province-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #1e3c72;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #1e3c72;
    margin-right: 10px;
    font-size: 18px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Fleet Section */
.fleet-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fleet-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-card h3 {
    padding: 20px 20px 10px;
    color: #1e3c72;
    margin: 0;
}

.fleet-card p {
    padding: 0 20px 20px;
    color: #666;
    margin: 0;
}

/* Services Page Styles */
.service-details {
    padding: 80px 0;
    background: white;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    line-height: 1.8;
}

/* Price Section */
.price-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.price-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-card {
    padding: 30px;
    border-bottom: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.price-card:last-child {
    border-bottom: none;
}

.price-card h3 {
    color: #1e3c72;
    margin: 0;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #1e3c72;
    text-align: center;
}

.price-note {
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h4 {
    color: #1e3c72;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.social-contact {
    margin-top: 30px;
}

.social-contact h4 {
    color: #1e3c72;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.contact-form h3 {
    color: #1e3c72;
    margin-bottom: 20px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item h4 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h4:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

.faq-item p {
    padding: 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Active Navigation */
.nav-list a.active {
    color: #1e3c72;
    font-weight: bold;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .price-card {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 20px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .about-text h2 {
        font-size: 22px;
    }
    
    .fleet-card h3 {
        font-size: 16px;
    }
    
    .price-card {
        padding: 20px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .faq-item h4 {
        padding: 15px;
        font-size: 16px;
    }
    
    .faq-item p {
        padding: 15px;
    }
}

/* Responsive for Taxi Province Section */
@media (max-width: 768px) {
    .taxi-province-section {
        padding: 40px 0;
    }
    
    .taxi-province-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .taxi-province-section .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .taxi-province-section .service-card h3 {
        font-size: 1.1rem;
        margin: 15px 15px 8px;
    }
    
    .taxi-province-section .service-card .service-description {
        margin: 0 15px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .taxi-province-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .taxi-province-section .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .taxi-province-section .service-card img {
        height: 180px;
    }
}

/* Additional Mobile Menu Fixes */
@media (max-width: 768px) {
    .header .container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-toggle span {
        background: #d32f2f !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-menu-overlay {
        display: block !important;
    }
    
    .mobile-menu {
        display: block !important;
    }
    
    /* Ensure mobile menu is visible when active */
    .mobile-menu.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-overlay.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Ensure mobile menu toggle is always visible on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 5px !important;
        padding: 8px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
        border: 1px solid rgba(211, 50, 47, 0.2) !important;
    }
    
    .mobile-menu-toggle span {
        background: #d32f2f !important;
        width: 25px !important;
        height: 3px !important;
        margin: 3px 0 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-menu-toggle:hover span {
        background: #b71c1c !important;
    }
    
    .mobile-menu-toggle.active span {
        background: #d32f2f !important;
    }
}

/* Article Content Styles */
.article-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    color: #d32f2f;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-body {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.article-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-body h2 {
    color: #d32f2f;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 30px 0 15px;
    border-left: 4px solid #d32f2f;
    padding-left: 15px;
}

.article-body h3 {
    color: #e64a19;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 25px 0 12px;
}

.article-body p {
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
}

.article-body ul, .article-body ol {
    margin: 15px 0;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 8px;
    color: #333;
}

.article-body strong {
    color: #d32f2f;
    font-weight: bold;
}

.article-body em {
    color: #666;
    font-style: italic;
}

.contact-info-box {
    background: #ffebee;
    border: 2px solid #d32f2f;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.contact-info-box a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.price-table {
    margin: 20px 0;
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-table th {
    background: #d32f2f;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.price-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.price-table tr:nth-child(even) {
    background: #f8f9fa;
}

.price-table tr:hover {
    background: #ffebee;
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.article-tags .tag {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 5px;
    text-decoration: none;
}

.article-tags .tag:hover {
    background: #b71c1c;
}

/* Responsive for Article Content */
@media (max-width: 768px) {
    .article-content {
        padding: 40px 0;
    }
    
    .article-header h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-body {
        padding: 20px;
    }
    
    .article-image {
        height: 250px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
        margin: 25px 0 12px;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-body {
        padding: 15px;
    }
    
    .article-image {
        height: 200px;
    }
    
    .article-body h2 {
        font-size: 1.3rem;
    }
    
    .article-body h3 {
        font-size: 1.1rem;
    }
    
    .price-table {
        font-size: 0.8rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 6px 8px;
    }
}
