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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

/* Main Container with Video Background */
.main-container {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 20;
}

/* Header Styles */
.header {
    position: relative;
    z-index: 30;
    padding: 1.5rem 2rem;
    background: transparent;
}

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

/* Desktop/Mobile Visibility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.logo {
    height: 81.6px; /* Increased by 20% from 68px */
    width: auto;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

/* Mobile Logo Container */
.mobile-logo-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile horizontal navigation - hidden by default */
.mobile-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-button {
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    position: relative;
}

.nav-button:hover {
    color: white; /* Keep white on hover */
}

/* UPDATED: Only show red underline for active pages, keep text white */
.nav-button.active {
    color: white; /* Keep text white */
}

.nav-button.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ef4444; /* Red underline only */
}

/* Mobile Phone Icon - CRITICAL: Hidden on desktop, only shown on mobile */
.mobile-phone-icon {
    display: none !important; /* CRITICAL: Force hidden on desktop */
    background: white;
    color: #dc2626;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-phone-icon svg {
    width: 20px;
    height: 20px;
    stroke: #dc2626;
}

.mobile-phone-icon:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.phone-container {
    display: flex;
    align-items: center;
    background: #dc2626;
    color: white !important; /* Force white color */
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: bold;
    text-decoration: none !important; /* Remove any underlines */
    -webkit-text-decoration: none !important; /* Safari specific */
    cursor: pointer;
}

/* Force white color for phone number text and prevent Safari auto-styling */
.phone-container,
.phone-container * {
    color: white !important;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-color: transparent !important;
    text-decoration-color: transparent !important;
}

.phone-badge {
    background: white;
    color: #dc2626 !important; /* Force red color for badge */
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 0 2rem;
    margin-top: 7vh; /* Increased by 10% from original positioning */
}

/* Mobile Hero Logo - FIXED: Make sure it's visible on mobile */
.mobile-hero-logo {
    display: none; /* Hidden by default on desktop */
    margin-bottom: 30px; /* 30px distance from H1 */
}

.mobile-hero-logo .mobile-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    display: block; /* Ensure the image is displayed */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 42rem;
    line-height: 1.6;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-button {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.hero-button:hover {
    background: white;
    color: black;
}

/* Content Sections */
.content-sections {
    background: black;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
}

.icon {
    width: 2rem;
    height: 2rem;
    color: white; /* CHANGED: From #ef4444 (red) to white */
    margin-right: 0.75rem;
}

.title-underline {
    width: 6rem;
    height: 0.25rem;
    background: #dc2626;
    margin: 0 auto;
}

/* Routes Section */
.routes-section {
    padding: 4rem 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.routes-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.route-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.route-card:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.route-info {
    display: flex;
    align-items: center;
}

.route-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white; /* CHANGED: From #ef4444 (red) to white */
    margin-right: 1rem;
}

.route-destination {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.route-price {
    color: white; /* CHANGED: From #f87171 (red) to white */
    font-size: 1.5rem;
    font-weight: bold;
}

/* Features Section */
.features-section {
    padding: 0 0 7.2rem 0; /* CHANGED: Increased bottom padding by 20% from 6rem to 7.2rem */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    background: transparent; /* CHANGED: From #dc2626 (red) to transparent */
    border: 2px solid white; /* ADDED: White border for outline effect */
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease; /* ADDED: Smooth transition */
}

.feature-icon:hover {
    background: white; /* ADDED: White background on hover */
    transform: scale(1.05); /* ADDED: Slight scale on hover */
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: white; /* CHANGED: From white to white (stays white) */
    transition: color 0.3s ease; /* ADDED: Smooth color transition */
}

.feature-icon:hover svg {
    color: black; /* ADDED: Black icon on hover */
}

.feature-title {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #d1d5db;
}

/* What Makes Us Different Section */
.different-section {
    position: relative;
    min-height: 700px; /* Increased height */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem; /* CHANGED: Equal padding on all sides (top, right, bottom, left) */
}

.different-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.different-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7; /* ADDED: 30% less opacity (from 1.0 to 0.7) for better text readability */
}

.different-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%, /* INCREASED: From 0.4 to 0.6 for better text contrast */
        rgba(0, 0, 0, 0.5) 50%, /* INCREASED: From 0.3 to 0.5 for better text contrast */
        rgba(0, 0, 0, 0.4) 100% /* INCREASED: From 0.2 to 0.4 for better text contrast */
    );
}

.different-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 80rem; /* ADDED: Max width to prevent content from stretching too wide */
    margin: 0 auto; /* ADDED: Center the content */
    padding: 0; /* REMOVED: Individual padding since section now has equal padding */
}

.different-header {
    margin-bottom: 5rem; /* Increased margin */
    text-align: center; /* ADDED: Center the header content */
}

.different-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* ENHANCED: Stronger text shadow for better readability */
}

.different-subtitle {
    font-size: 1.125rem;
    color: #f3f4f6;
    max-width: 600px;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* ENHANCED: Stronger text shadow for better readability */
    margin: 0 auto; /* ADDED: Center the subtitle */
}

.different-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem; /* Increased gap */
    margin-bottom: 5rem; /* Increased margin */
}

.different-feature {
    text-align: left;
}

/* NEW: Title with icon layout */
.different-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem; /* Space between icon and title */
}

.different-feature-icon {
    width: 50px;
    height: 50px;
    background: transparent; /* CHANGED: From rgba(220, 38, 38, 0.3) to transparent */
    border: 2px solid white; /* CHANGED: From #dc2626 to white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
    transition: all 0.3s ease; /* ADDED: Smooth transition */
}

.different-feature-icon:hover {
    background: white; /* ADDED: White background on hover */
    transform: scale(1.05); /* ADDED: Slight scale on hover */
}

.different-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white; /* CHANGED: From #dc2626 to white */
    transition: color 0.3s ease; /* ADDED: Smooth color transition */
}

.different-feature-icon:hover svg {
    color: black; /* ADDED: Black icon on hover */
}

.different-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* ENHANCED: Stronger text shadow for better readability */
    margin: 0; /* Remove margin since it's now in flex container */
}

.different-feature-description {
    font-size: 1rem;
    color: #f3f4f6;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); /* ENHANCED: Stronger text shadow for better readability */
}

.different-cta {
    display: flex;
    justify-content: center; /* CHANGED: Center the button */
}

.different-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* ENHANCED: Stronger text shadow for better readability */
}

.different-button:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.different-button-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.different-button:hover .different-button-icon {
    transform: translateX(4px);
}

/* Footer Styles */
.footer {
    background: black;
    padding: 0;
}

.footer-separator {
    width: 100%;
    height: 2px;
    background: #dc2626;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2rem 0;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-self: start;
    color: #9ca3af;
    font-size: 0.875rem;
}

.copyright-symbol {
    font-size: 1.125rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.copyright-text {
    font-weight: 400;
}

.footer-logo {
    justify-self: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-social {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide/Show Elements for Mobile */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* FIXED: Show mobile navigation and hide desktop navigation */
    .desktop-nav {
        display: none !important; /* Hide desktop navigation on mobile */
    }
    
    .mobile-nav {
        display: flex !important; /* Show mobile navigation */
        align-items: center;
        justify-content: center; /* FIXED: Center the navigation items */
        gap: 1.5rem;
        font-size: 0.9rem;
        width: 100%; /* FIXED: Take full width */
    }
    
    /* Show mobile phone icon - ONLY ON MOBILE */
    .mobile-phone-icon {
        display: flex !important; /* CHANGED: Use flex instead of block */
    }
    
    /* FIXED: Mobile header layout - proper centering */
    .header {
        padding: 1.5rem 1rem; /* FIXED: Reduced side padding for better mobile spacing */
    }
    
    .nav-container {
        display: flex;
        justify-content: center; /* FIXED: Center everything on mobile */
        align-items: center;
        width: 100%;
        position: relative; /* FIXED: For absolute positioning of phone icon */
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center; /* FIXED: Center the navigation */
        width: 100%; /* FIXED: Take full width */
        gap: 1rem;
    }
    
    /* FIXED: Position phone icon absolutely on the right */
    .mobile-phone-icon {
        position: absolute !important;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* FIXED: Show Mobile Hero Logo on mobile devices - INCREASED SIZE BY 50% */
    .mobile-hero-logo {
        display: block !important; /* Force display on mobile */
        text-align: center; /* Center the logo */
    }
    
    .mobile-hero-logo .mobile-logo {
        height: 120px; /* INCREASED: 50% bigger than 80px */
        width: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        display: block !important; /* Force display */
        margin: 0 auto; /* Center the image */
    }

    .hero {
        margin-top: 5vh; /* Adjusted for mobile */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    /* FIXED: Keep route cards horizontal on mobile */
    .route-card {
        display: flex; /* Keep flex layout */
        flex-direction: row; /* CHANGED: Force horizontal layout on mobile */
        align-items: center; /* Keep items centered */
        justify-content: space-between; /* Keep space between elements */
        text-align: left; /* CHANGED: Align text to left instead of center */
        gap: 0; /* CHANGED: Remove gap to maintain original spacing */
        padding: 1.25rem; /* ADJUSTED: Slightly reduce padding for mobile */
    }

    /* FIXED: Ensure route info stays horizontal */
    .route-info {
        display: flex; /* Keep flex layout */
        align-items: center; /* Keep items centered */
        flex-direction: row; /* FORCE: Horizontal layout */
    }

    /* ADJUSTED: Slightly smaller icon on mobile */
    .route-icon {
        width: 1.25rem; /* ADJUSTED: Slightly smaller for mobile */
        height: 1.25rem;
        margin-right: 0.75rem; /* ADJUSTED: Slightly less margin */
        flex-shrink: 0; /* ADDED: Prevent icon from shrinking */
    }

    /* ADJUSTED: Responsive text sizes */
    .route-destination {
        font-size: 1.125rem; /* ADJUSTED: Slightly smaller for mobile */
        font-weight: 600;
        white-space: nowrap; /* ADDED: Prevent text wrapping */
    }

    .route-price {
        font-size: 1.25rem; /* ADJUSTED: Slightly smaller for mobile */
        font-weight: bold;
        flex-shrink: 0; /* ADDED: Prevent price from shrinking */
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-section {
        padding: 0 0 4.8rem 0; /* CHANGED: Increased by 20% from 4rem to 4.8rem for mobile */
    }

    .different-section {
        padding: 4rem 2rem; /* CHANGED: Reduced side padding for mobile but still equal */
        min-height: 600px;
    }

    .different-title {
        font-size: 2.5rem;
    }

    .different-features {
        grid-template-columns: 1fr;
        gap: 3rem; /* Reduced gap for mobile */
    }

    .different-feature {
        text-align: center;
    }

    .different-feature-header {
        justify-content: center; /* Center the icon and title on mobile */
    }

    .different-cta {
        justify-content: center;
    }

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

    .footer-copyright {
        justify-self: center;
        order: 3;
    }

    .footer-logo {
        justify-self: center;
        order: 1;
    }

    .footer-social {
        justify-self: center;
        order: 2;
    }
}

@media (max-width: 480px) {
    /* FIXED: Ensure mobile logo shows on small screens too - INCREASED SIZE BY 50% */
    .mobile-hero-logo {
        display: block !important; /* Force display on small mobile */
        text-align: center;
    }
    
    .mobile-hero-logo .mobile-logo {
        height: 105px; /* INCREASED: 50% bigger than 70px */
        width: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        display: block !important; /* Force display */
        margin: 0 auto; /* Center the image */
    }
    
    .hero {
        margin-top: 3vh; /* Further adjusted for small mobile */
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 0 0 3.6rem 0; /* CHANGED: Increased by 20% from 3rem to 3.6rem for small mobile */
    }

    /* OPTIMIZED: Better mobile layout for very small screens */
    .route-card {
        padding: 1rem; /* REDUCED: Less padding for small screens */
        flex-direction: row; /* MAINTAIN: Keep horizontal layout */
    }

    .route-destination {
        font-size: 1rem; /* REDUCED: Smaller text for small screens */
    }

    .route-price {
        font-size: 1.125rem; /* REDUCED: Smaller price for small screens */
    }

    .route-icon {
        width: 1rem; /* REDUCED: Smaller icon for small screens */
        height: 1rem;
        margin-right: 0.5rem; /* REDUCED: Less margin */
    }

    .different-section {
        padding: 3rem 1.5rem; /* CHANGED: Further reduced side padding for small mobile but still equal */
        min-height: 550px;
    }

    .different-title {
        font-size: 2rem;
    }

    .different-subtitle {
        font-size: 1rem;
    }

    .different-features {
        gap: 2.5rem; /* Further reduced gap */
    }

    .different-feature-icon {
        width: 45px;
        height: 45px;
    }

    .different-feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .different-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .footer-logo-img {
        height: 50px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    /* FIXED: Better mobile navigation spacing for small screens */
    .header {
        padding: 1.5rem 0.75rem; /* FIXED: Even less side padding for small screens */
    }
    
    .mobile-nav {
        gap: 1rem; /* FIXED: Reduced gap for small screens */
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Button hover effects */
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* Card hover effects */
.route-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}