/* 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: #222222;
    background-color: #ffffff;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Common utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

/* Image fallbacks */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Logo specific styles - no background */
.logo-img {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Fallback for missing logo - show bus icon */
.logo-img[src=""],
.logo-img:not([src]),
.logo-img[src="logo.png"]:not([alt]) {
    display: none;
}

.logo-img:not([src])::after,
.logo-img[src=""]:after {
    content: "🚍";
    font-size: 2rem;
    display: inline-block;
}

/* Show fallback text if logo fails to load */
.logo::after {
    content: "";
    display: none;
}

.logo:has(.logo-img[src=""]):after,
.logo:has(.logo-img:not([src])):after {
    content: "Amit Tour & Travels";
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: inline-block;
}

/* Color Variables - Critical CSS */
:root {
    --primary-color: #0B1C2D;
    --accent-color: #F4B400;
    --text-color: #222222;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --max-width: 1200px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
    object-fit: contain;
    background: transparent !important;
    border: none;
    box-shadow: none;
}

.logo i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
    color: var(--white);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .accent {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #e6a200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
}

.bus-img {
    max-width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.delay-1 {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.delay-2 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ffcc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
}

.why-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Partner CTA */
.partner-cta {
    background: linear-gradient(135deg, var(--primary-color), #1a3a52);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.partner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.partner-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.benefit i {
    font-size: 2rem;
    color: var(--accent-color);
}

.benefit span {
    font-weight: 600;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.reviewer strong {
    color: var(--primary-color);
}

.reviewer span {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    border-top: 1px solid #eee;
}

.mobile-sticky-bar .mobile-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-decoration: none;
    flex: 1;
    transition: background 0.3s ease;
    min-height: 70px;
}

.call-btn {
    color: var(--primary-color);
    border-right: 1px solid #eee;
}

.whatsapp-btn {
    color: #25D366;
}

.mobile-btn:hover {
    background: var(--light-gray);
}

.mobile-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.mobile-btn span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 100px 0 0 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-color);
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu .nav-link:hover {
        background: var(--light-gray);
        color: var(--accent-color);
        transform: translateX(10px);
    }

    .nav-menu .nav-link.active {
        background: var(--accent-color);
        color: var(--primary-color);
        font-weight: bold;
    }

    .nav-menu .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--primary-color);
    }

    /* Close button for mobile menu */
    .nav-menu::before {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1000;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--light-gray);
        transition: all 0.3s ease;
    }

    .nav-menu::before:hover {
        background: var(--accent-color);
        color: var(--white);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-sticky-bar {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.why-choose-detailed {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-detailed:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ffcc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p:last-child {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-color), #ffcc33);
    color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-section .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-detailed {
        grid-template-columns: 1fr;
    }

    .feature-detailed {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Services Page Styles */
.services-content {
    padding: 80px 0;
}

.service-section {
    margin-bottom: 6rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse>* {
    direction: ltr;
}

.service-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.service-features li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-uses {
    margin-bottom: 2rem;
}

.service-uses h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.use-case {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

.service-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.service-areas {
    padding: 80px 0;
    background: var(--light-gray);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.area-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.area-card p {
    color: #666;
    font-size: 0.9rem;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--primary-color), #1a3a52);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.pricing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pricing-feature i {
    font-size: 2rem;
    color: var(--accent-color);
}

.pricing-feature span {
    font-weight: 600;
}

.pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content.reverse {
        direction: ltr;
    }

    .service-text h2 {
        font-size: 2rem;
    }

    .service-buttons {
        justify-content: center;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pricing-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .use-cases {
        justify-content: center;
    }

    .service-buttons {
        flex-direction: column;
    }
}

/* Vehicles Page Styles */
.vehicle-categories {
    padding: 40px 0;
    background: var(--light-gray);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.vehicles-grid {
    padding: 80px 0;
}

.vehicles-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

/* When using vehicle-gallery, override the overflow */
.vehicle-image.vehicle-gallery {
    height: auto;
    overflow: visible;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vehicle-badge.budget {
    background: #28a745;
    color: var(--white);
}

.vehicle-badge.premium {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: var(--white);
}

/* Vehicle Gallery Thumbnails */
.vehicle-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-main .gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-main .gallery-img.active {
    opacity: 1;
}

.main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 10;
}

.gallery-thumbs .thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumbs .thumb:hover {
    opacity: 1;
    border-color: var(--accent-color);
}

.gallery-thumbs .thumb.active {
    border-color: var(--accent-color);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(244, 180, 0, 0.4);
}

.vehicle-info {
    padding: 2rem;
}

.vehicle-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vehicle-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.spec i {
    color: var(--accent-color);
}

.vehicle-features {
    margin-bottom: 1.5rem;
}

.vehicle-features ul {
    list-style: none;
    padding: 0;
}

.vehicle-features li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.vehicle-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.vehicle-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.use-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.vehicle-actions {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
}

.price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.action-buttons .btn {
    flex: 1;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.fleet-features {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fleet-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.fleet-feature:hover {
    transform: translateY(-5px);
}

.fleet-feature .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ffcc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.fleet-feature .feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.fleet-feature h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.fleet-feature p {
    color: #666;
    line-height: 1.6;
}

.booking-cta {
    background: linear-gradient(135deg, var(--primary-color), #1a3a52);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.booking-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.booking-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive adjustments for vehicles page */
@media (max-width: 768px) {
    .vehicles-grid .container {
        grid-template-columns: 1fr;
    }

    .vehicle-specs {
        justify-content: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .vehicle-card {
        margin: 0 10px;
    }

    .vehicle-info {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .booking-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Partner Page Styles */
.partner-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.partner-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.partner-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.why-partner {
    padding: 80px 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ffcc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.accepted-vehicles {
    padding: 80px 0;
}

.vehicle-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vehicle-type {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vehicle-type:hover,
.vehicle-type.selected {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--accent-color);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vehicle-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.vehicle-type h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.vehicle-type ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.vehicle-type li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.vehicle-type li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.earning-range {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.earning-label {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.earning-amount {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.partnership-process {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.requirements {
    padding: 80px 0;
}

.requirements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.requirement-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.requirement-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.requirement-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-category h4 i {
    color: var(--accent-color);
}

.requirement-category ul {
    list-style: none;
    padding: 0;
}

.requirement-category li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.requirement-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.requirements-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.success-stories {
    padding: 80px 0;
    background: var(--light-gray);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.partner-location {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-stats span {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.story-stats i {
    color: var(--accent-color);
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--accent-color), #ffcc33);
    color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-method h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-cta .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.contact-cta .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-cta .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive adjustments for partner page */
@media (max-width: 768px) {
    .partner-hero .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-types {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .requirements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .contact-method i {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .partner-hero .hero-title {
        font-size: 2rem;
    }

    .hero-stats .stat-number {
        font-size: 2.5rem;
    }

    .benefit-card,
    .vehicle-type,
    .step {
        padding: 2rem 1.5rem;
    }

    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Page Styles */
.contact-methods {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-link {
    display: block;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: var(--primary-color);
}

.availability {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-booking {
    padding: 80px 0;
    background: var(--light-gray);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.booking-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.booking-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.booking-benefits .benefit i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.booking-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.office-location {
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.office-details h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
}

.detail-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.detail-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.detail-item a:hover {
    color: var(--primary-color);
}

.directions {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.directions h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.directions ul {
    list-style: none;
    padding: 0;
}

.directions li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.directions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.map-container {
    position: relative;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.map-actions {
    text-align: center;
}

.service-areas {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.area-category h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.emergency-contact {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
    padding: 60px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.emergency-icon i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.emergency-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.emergency-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-contact .btn {
    background: var(--white);
    color: #dc3545;
    border: 2px solid var(--white);
}

.emergency-contact .btn:hover {
    background: transparent;
    color: var(--white);
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-benefits {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .emergency-actions {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .booking-text h2 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .booking-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .emergency-actions {
        gap: 0.5rem;
    }

    .cities {
        justify-content: center;
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Focus states for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .header,
    .mobile-sticky-bar,
    .btn,
    .social-links {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --accent-color: #FFD700;
        --text-color: #000000;
        --light-gray: #F0F0F0;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (future enhancement) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles would go here */
}

/* Fix for iOS Safari viewport units */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Prevent layout shift */
.hero-image img,
.service-image img,
.vehicle-image img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.member-image img,
.story-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Better button states */
.btn:active {
    transform: translateY(1px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Improved form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

/* Better error handling for images */
img {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Optimize animations for better performance */
.reveal,
.slide-in-left,
.bus-img {
    will-change: transform, opacity;
}

/* Fix for potential overflow issues */
.hero-container,
.service-content,
.booking-content,
.location-content {
    overflow: hidden;
}

/* Better mobile touch targets */
@media (max-width: 768px) {

    .btn,
    .nav-link,
    .mobile-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Ensure proper stacking context */
.header {
    isolation: isolate;
}

.mobile-sticky-bar {
    isolation: isolate;
}

/* Fix for potential text rendering issues */
body {
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Better contrast for links */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Ensure buttons are properly styled */
button {
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
}

/* Fix for potential flexbox issues in older browsers */
.nav-menu,
.hero-buttons,
.service-buttons,
.action-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Ensure proper grid fallbacks */
@supports not (display: grid) {

    .services-grid,
    .benefits-grid,
    .vehicle-types,
    .contact-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .services-grid>*,
    .benefits-grid>*,
    .vehicle-types>*,
    .contact-grid>* {
        flex: 1 1 300px;
        margin: 1rem;
    }
}

/* Ensure all button containers are centered on desktop */
.hero-buttons,
.partner-hero .hero-buttons,
.cta-buttons,
.pricing-buttons,
.emergency-actions,
.booking-cta .cta-buttons,
.contact-cta .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Desktop specific centering */
@media (min-width: 769px) {

    .hero-content,
    .partner-content,
    .cta-content,
    .pricing-content,
    .emergency-content {
        text-align: center;
    }

    .hero-buttons,
    .partner-hero .hero-buttons,
    .emergency-actions {
        justify-content: center;
        margin: 0 auto;
    }
}

/* Fix for partner hero section specifically */
.partner-hero {
    text-align: center;
}

.partner-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Fix for emergency section specifically */
.emergency-contact {
    text-align: center;
}

.emergency-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 769px) {
    .emergency-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }
}

/* Logo responsive styles */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
        background: none !important;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
        background: none !important;
    }
}

/* Logo hover effect */
.logo:hover .logo-img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Ensure logo image loads properly */
.logo-img {
    transition: transform 0.3s ease;
    border-radius: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any fallback backgrounds for logo */
.logo-img[src=""],
.logo-img:not([src]) {
    display: none;
}

.logo-img[src=""]:after,
.logo-img:not([src]):after {
    display: none;
}

/* Remove blue click highlight and flicker effects */

/* Remove tap highlight on mobile devices */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for content areas */
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
li,
td,
th,
input,
textarea {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Remove default focus outline and replace with custom */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Custom focus styles for accessibility (subtle and professional) */
button:focus,
.btn:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(244, 180, 0, 0.3) !important;
    border-color: var(--accent-color) !important;
}

/* Remove blue highlight from links */
a {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:focus,
a:active,
a:visited {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Remove blue highlight from buttons */
button,
.btn {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    border: none;
}

button:focus,
button:active,
.btn:focus,
.btn:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* Remove highlight from clickable elements */
.service-card,
.vehicle-card,
.benefit-card,
.contact-card,
.team-member,
.review-card,
.area-card,
.fleet-feature,
.story-card,
.faq-item,
.tab-btn {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* Remove highlight from navigation */
.nav-link,
.hamburger,
.logo {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.nav-link:focus,
.nav-link:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Remove highlight from mobile sticky bar */
.mobile-btn {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.mobile-btn:focus,
.mobile-btn:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Remove highlight from form elements but keep functionality */
input:focus,
select:focus,
textarea:focus {
    -webkit-tap-highlight-color: transparent;
}

/* Remove highlight from social links */
.social-links a {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.social-links a:focus,
.social-links a:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Custom active states instead of browser defaults */
.btn:active {
    transform: translateY(1px) !important;
    transition: transform 0.1s ease !important;
}

.nav-link:active,
.mobile-btn:active,
.service-card:active,
.vehicle-card:active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
}

/* Prevent text selection on UI elements */
.btn,
.nav-link,
.hamburger,
.logo,
.service-card h3,
.vehicle-card h3,
.tab-btn,
.mobile-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Remove blue selection background */
::selection {
    background: rgba(244, 180, 0, 0.2);
    color: var(--primary-color);
}

::-moz-selection {
    background: rgba(244, 180, 0, 0.2);
    color: var(--primary-color);
}

/* Remove webkit appearance from form elements */
input,
select,
textarea,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Fix for iOS Safari button styling */
input[type="submit"],
input[type="button"],
button {
    -webkit-appearance: none;
    border-radius: 0;
}

/* Remove focus ring from images */
img {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Remove focus from logo image */
.logo-img {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.logo-img:focus,
.logo-img:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {

    /* Overlay for mobile menu */
    .nav-menu::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active::after {
        opacity: 1;
        pointer-events: all;
    }

    /* Improved hamburger animation */
    .hamburger {
        z-index: 1001;
        padding: 5px;
        border-radius: 4px;
        transition: background 0.3s ease;
    }

    .hamburger:hover {
        background: var(--light-gray);
    }

    .hamburger.active {
        position: fixed;
        top: 20px;
        right: 20px;
        background: var(--accent-color);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
    }

    .hamburger.active .bar {
        background: var(--primary-color);
    }

    /* Slide-in animation for menu items */
    .nav-menu.active .nav-link {
        animation: slideInRight 0.3s ease forwards;
        opacity: 0;
        transform: translateX(50px);
    }

    .nav-menu.active .nav-link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active .nav-link:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-menu.active .nav-link:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-menu.active .nav-link:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-menu.active .nav-link:nth-child(5) {
        animation-delay: 0.5s;
    }

    .nav-menu.active .nav-link:nth-child(6) {
        animation-delay: 0.6s;
    }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Mobile menu header */
    .nav-menu.active::before {
        content: 'Menu';
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary-color);
        background: none;
        width: auto;
        height: auto;
        border-radius: 0;
    }

    /* Close button */
    .mobile-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--light-gray);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--primary-color);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1002;
    }

    .mobile-close:hover {
        background: var(--accent-color);
        color: var(--white);
        transform: rotate(90deg);
    }

    /* Improved menu styling */
    .nav-menu {
        background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
        backdrop-filter: blur(10px);
    }

    .nav-menu .nav-link {
        margin: 0.5rem 1rem;
        border-radius: 10px;
        border: none;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-link:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateX(0) scale(1.05);
        box-shadow: 0 5px 20px rgba(244, 180, 0, 0.3);
    }

    .nav-menu .nav-link.active {
        background: var(--primary-color);
        color: var(--white);
        box-shadow: 0 5px 20px rgba(11, 28, 45, 0.3);
    }

    .nav-menu .nav-link.active::before {
        display: none;
    }
}

/* Tablet specific adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

/* Vehicle Image Gallery */
.vehicle-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.gallery-main .gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-main .gallery-img.active {
    opacity: 1;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.05);
}

.gallery-thumbs .thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbs .thumb:hover {
    opacity: 0.9;
}

.gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(244, 180, 0, 0.4);
}