* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
    overflow-x: hidden;
    background: #f8fafc;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0EA5E9;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0EA5E9;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #475569;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 64px;
}

.slider-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.7));
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev { left: 1rem; }
.slider-nav.next { right: 1rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 40;
}

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

.dot.active {
    width: 32px;
    border-radius: 6px;
    background: white;
}

.hero-content {
    position: relative;
    z-index: 30;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Search Widget */
.search-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid rgba(203, 213, 225, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0EA5E9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.search-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: #0EA5E9;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    font-family: 'Outfit', sans-serif;
}

.search-btn:hover {
    background: #0284C7;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
}

/* Section */
.section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.section-white {
    background: white;
}

.section-contact {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.deal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    position: relative;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0EA5E9, #0284C7);
    opacity: 0;
    transition: opacity 0.3s;
}

.deal-card:hover::before {
    opacity: 1;
}

.deal-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.deal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.deal-card:hover .deal-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.deal-content {
    padding: 1.5rem;
}

.deal-route {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.deal-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0EA5E9;
    margin-bottom: 0.5rem;
}

.deal-original-price {
    font-size: 1.125rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.deal-info {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deal-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #f1f5f9;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.8125rem;
}

.deal-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.book-btn {
    width: 100%;
    padding: 0.875rem;
    background: #0EA5E9;
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.book-btn:hover {
    background: #0284C7;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

/* Routes Grid */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.route-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.route-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.route-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
}

.route-info {
    color: white;
}

.route-from {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

.route-to {
    font-size: 1.75rem;
    font-weight: 700;
}

.route-icon {
    font-size: 2rem;
}

.route-footer {
    padding: 1.25rem;
    text-align: center;
}

.route-btn {
    background: none;
    border: none;
    color: #0EA5E9;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.route-btn:hover {
    color: #0284C7;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #FCD34D;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-divider {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.testimonial-route {
    font-size: 0.875rem;
    color: #0EA5E9;
    font-weight: 500;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.contact-info {
    color: #64748b;
}

.whatsapp-cta {
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    font-family: 'Outfit', sans-serif;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #0EA5E9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh;
        margin-top: 56px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .search-widget {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .search-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .slider-nav.prev { left: 0.5rem; }
    .slider-nav.next { right: 0.5rem; }

    .slider-dots {
        bottom: 1rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 20px;
    }

    /* Section Mobile */
    .section {
        padding: 2.5rem 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Deals Grid Mobile - Professional Cards */
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .deal-card {
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }

    .deal-image {
        height: 180px;
    }

    .discount-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }

    .deal-content {
        padding: 1.25rem;
    }

    .deal-route {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .deal-price {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
    }

    .deal-original-price {
        font-size: 0.95rem;
    }

    .deal-info {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .deal-description {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .book-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    /* Routes Grid Mobile */
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .route-card {
        border-radius: 16px;
    }

    .route-image {
        height: 180px;
    }

    .route-overlay {
        padding: 1.25rem;
    }

    .route-from {
        font-size: 0.8125rem;
    }

    .route-to {
        font-size: 1.5rem;
    }

    .route-icon {
        font-size: 1.75rem;
    }

    .route-footer {
        padding: 1rem;
    }

    .route-btn {
        font-size: 0.95rem;
    }

    /* Testimonials Grid Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .rating {
        margin-bottom: 0.875rem;
    }

    .star {
        font-size: 1.125rem;
    }

    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .testimonial-author {
        font-size: 0.95rem;
    }

    .testimonial-location {
        font-size: 0.8125rem;
    }

    .testimonial-route {
        font-size: 0.8125rem;
    }

    /* Contact Cards Mobile */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .contact-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-info {
        font-size: 0.875rem;
    }

    .whatsapp-btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        width: 90%;
        max-width: 320px;
        justify-content: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 1.125rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.875rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8125rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.625rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .deal-route {
        font-size: 1rem;
    }

    .deal-price {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .whatsapp-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}