/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: #004aad;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: #ffd700;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #004aad;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #004aad;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-mobile {
    display: none;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 20px 0;
}

.nav-link-mobile {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    color: #004aad;
    background: #f7fafc;
}

/* Hero Section */

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #004aad 0%, #0066cc 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-accent {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #bfdbfe;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 160px;
}

.btn-primary {
    background: #ffd700;
    color: #004aad;
}

.btn-primary:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #004aad;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffd700;
    color: #004aad;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.badge-number {
    font-size: 24px;
    font-weight: 800;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
}

/* Section Styles */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Fleet Section */

.fleet {
    padding: 100px 0;
    background: #f7fafc;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.fleet-image {
    position: relative;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ffd700;
    color: #004aad;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.fleet-info {
    padding: 24px;
}

.fleet-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.fleet-capacity {
    color: #718096;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-features {
    margin-bottom: 20px;
}

.feature {
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 4px;
}

.btn-fleet {
    width: 100%;
    background: #004aad;
    color: white;
    padding: 12px;
    border-radius: 8px;
}

.btn-fleet:hover {
    background: #003d8f;
}

/* Routes Section */

.routes {
    padding: 100px 0;
    background: white;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.route-card {
    background: linear-gradient(135deg, #eff6ff 0%, #fefce8 100%);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.route-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.route-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.route-price {
    background: #ffd700;
    color: #004aad;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.route-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
    margin-bottom: 20px;
}

.route-highlights h4 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.highlights-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recommended-vehicle {
    font-weight: 600;
    color: #004aad;
}

.btn-route {
    background: #004aad;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
}

.btn-route:hover {
    background: #003d8f;
}

/* Why Choose Section */

.why-choose {
    padding: 100px 0;
    background: #f7fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.feature-description {
    color: #718096;
    line-height: 1.6;
}

/* Testimonials Section */

.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: linear-gradient(135deg, #004aad 0%, #0066cc 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-location {
    color: #bfdbfe;
}

.testimonial-rating {
    margin-bottom: 24px;
}

.star {
    font-size: 20px;
    margin-right: 4px;
}

.testimonial-comment {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffd700;
}

/* Contact Section */

.contact {
    padding: 100px 0;
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 24px;
    margin-top: 4px;
}

.contact-text h3 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.contact-text p {
    color: #718096;
}

/* Booking Form */

.booking-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.btn-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

/* Footer */

.footer {
    background: linear-gradient(135deg, #001f3f 0%, #004aad 100%);
    position: relative;
    color: white;
}

.footer-border {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-brand {
    font-family: "Georgia", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: -0.5px;
}

.footer-brand-accent {
    color: white;
}

.footer-line {
    width: 60px;
    height: 4px;
    background: #ffd700;
    border-radius: 2px;
    margin-top: 8px;
    opacity: 0.8;
}

.footer-description {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-family: "Georgia", serif;
    color: #ffd700;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-contact {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px 0;
    text-align: center;
}

.footer-copyright {
    font-family: "Georgia", serif;
    color: #9ca3af;
    font-size: 14px;
}

.footer-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.05);
}

.footer-decoration-1 {
    width: 128px;
    height: 128px;
    bottom: -64px;
    left: -64px;
}

.footer-decoration-2 {
    width: 96px;
    height: 96px;
    top: -48px;
    right: -48px;
}

/* Responsive Design */

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav-mobile.active {
        display: block;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .routes-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .route-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}