/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --whatsapp-green: #25d366;
    --whatsapp-dark: #1da851;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-lighter: #f7f9fc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Mobile CTAs */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    z-index: 1000;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.sticky-btn.call-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.sticky-btn.call-btn:hover,
.sticky-btn.call-btn:active {
    background: var(--primary-dark);
}

.sticky-btn.whatsapp-btn {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
}

.sticky-btn.whatsapp-btn:hover,
.sticky-btn.whatsapp-btn:active {
    background: var(--whatsapp-dark);
}

/* Hide sticky CTAs on desktop */
@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 60px 20px 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    background: white;
    border-radius: 20px;
    padding: 32px 48px;
    display: inline-block;
    margin-bottom: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.6s ease-out;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: white;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

/* Services Section */
.services {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.service-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-icon svg {
    stroke: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-light);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 900px) {
    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.route-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.route-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.route-starting {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.route-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.route-price .toll-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-gray);
}

.route-distance {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.custom-route-note {
    max-width: 600px;
    margin: 48px auto 48px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.custom-route-note p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.pricing-info {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.pricing-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.rate-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

.rate-car {
    font-weight: 500;
    color: var(--text-dark);
}

.rate-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.pricing-note {
    padding: 16px;
    background: #fef8e7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    color: #92400e;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Tours Section */
.tours {
    background-color: var(--bg-white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tour-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.tour-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tour-duration {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
    flex-grow: 1;
}

.tour-price {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 8px;
}

.tour-price .price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-block;
    margin-left: 4px;
}

.tour-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

@media (min-width: 480px) {
    .tour-actions {
        flex-direction: row;
        gap: 12px;
    }

    .tour-actions .btn {
        flex: 1;
    }
}

/* Fleet Section */
.fleet {
    background-color: var(--bg-white);
}

.fleet-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 32px;
    margin-top: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.owned-badge {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.fleet-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.partner-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.fleet-image {
    width: 100%;
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-info {
    padding: 24px;
}

.fleet-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.fleet-type {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.fleet-seating {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.fleet-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 24px;
}

/* Why Choose Us Section */
.why-choose {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff, #dbeafe);
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-icon svg {
    stroke: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Customer Feedback Section */
.feedback {
    background-color: var(--bg-white);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feedback-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feedback-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.feedback-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    background: var(--bg-lighter);
    color: var(--text-dark);
}

.contact .section-title {
    color: var(--text-dark);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-instruction {
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.backup-contact {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.backup-contact a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-content p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-content a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: row;
    }

    .contact-buttons {
        flex-direction: row;
    }

    body {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
        /* Space for sticky CTAs */
    }

    .hero {
        padding: 40px 20px 60px;
    }

    .logo-container {
        padding: 24px 32px;
        border-radius: 16px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .feature-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .fleet-subtitle {
        font-size: 1.5rem;
    }

    .services-grid,
    .routes-grid,
    .fleet-grid,
    .features-grid,
    .feedback-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading State for Images */
.fleet-image img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.fleet-image img[src] {
    animation: none;
    background: none;
}