/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        height: 50px;
    }

.btn-explore {
    background: #3f8cff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 5% 0;
    background: #f8f8f8;
    color: #1a1a1a;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

    .hero-text h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .hero-text .highlight {
        background: linear-gradient(to right, #094994, #EE4D01);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #555;
        line-height: 1.6;
    }

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .hero-buttons a {
        display: inline-block;
        padding: 0.9rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

/* Download APP Button */
.btn-primary {
    background: linear-gradient(to right, #4A90E2, #4ECDC4);
    color: #fff;
    border: 2px solid #4ECDC4;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

/* Learn More Button */
.btn-secondary {
    background: #fff;
    border: 2px solid #3f8cff;
    background-image: linear-gradient(to right, #5783B5, #74DDD9D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: linear-gradient(to right, #4A90E2, #4ECDC4);
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: #fff;
        color: #fff;
    }

.hero-images {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: -100px;
}

    .hero-images img {
        max-width: 100%;
        height: auto;
        width: 600px;
        transform: translateY(0);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
    }

        .hero-images img:hover {
            transform: translateY(-50px);
        }

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-bottom: 2rem;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 2rem;
    }

        .hero-text h1 {
            font-size: 2.5rem;
        }

    .hero-buttons {
        justify-content: center;
    }

    .hero-images {
        padding-top: 2rem;
        align-self: center;
    }
}

/* Services Section */
.services {
    padding-top: 2rem;
    padding-bottom: 4rem;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    background-color: #fff;
}

    .services h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 0.5rem;
    }

    .services p {
        margin-bottom: 2rem;
        color: #555;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

/* Card Styles */
.card {
    background: #E9EAEB;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
}

.card-icon {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

    .card-icon img {
        width: 60px;
    }

.card h3 {
    margin-bottom: 0.5rem;
    color: inherit;
}

.card p {
    margin-bottom: 1rem;
    color: inherit;
}

.card ul {
    list-style: none;
    padding: 0;
}

    .card ul li {
        margin-top: 0.5rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #444;
    }

.checkmark {
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #EFF8FF;
}

.logistics-card .checkmark {
    background: #3E4784;
}

.shops-card .checkmark {
    background: #039855;
}

.tours-card .checkmark {
    background: #DD2590;
}

.foods-card .checkmark {
    background: #DC6803;
}

.rides-card .checkmark {
    background: #141416;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Bottom row container */
.bottom-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Staggered Animation */
.services h2.reveal {
    transition-delay: 0s;
}

.services p.reveal {
    transition-delay: 0.1s;
}

.service-grid .card.reveal:nth-of-type(1) {
    transition-delay: 0.2s;
}

.service-grid .card.reveal:nth-of-type(2) {
    transition-delay: 0.3s;
}

.service-grid .card.reveal:nth-of-type(3) {
    transition-delay: 0.4s;
}

.bottom-row .card.reveal:nth-of-type(1) {
    transition-delay: 0.5s;
}

.bottom-row .card.reveal:nth-of-type(2) {
    transition-delay: 0.6s;
}

/* Media Queries for the 3-2 grid arrangement */
@media (min-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }

        .service-grid .card:nth-of-type(4) {
            grid-column: 2 / 3;
        }

        .service-grid .card:nth-of-type(5) {
            grid-column: 2 / 3;
        }
}

@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}


/* Why Choose section */
.why-choose {
    padding: 2rem 5%;
    text-align: center;
    background: #fff;
}

    .why-choose h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 0.5rem;
    }

    .why-choose p {
        margin-bottom: 2rem;
        color: #555;
    }

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.feature {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

    .feature-icon img {
        width: 80px;
        height: 80px;
    }


.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1rem;
    color: #555;
}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


.why-choose h2.reveal {
    transition-delay: 0s;
}

.why-choose p.reveal {
    transition-delay: 0.1s;
}

.features .feature.reveal:nth-of-type(1) {
    transition-delay: 0.2s;
}

.features .feature.reveal:nth-of-type(2) {
    transition-delay: 0.3s;
}

.features .feature.reveal:nth-of-type(3) {
    transition-delay: 0.4s;
}

/* Media Query for smaller screens */
@media (max-width: 991px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 4rem 5%;
    background: linear-gradient(90deg, #094994, #EE4D01);
    color: #fff;
}

.cta-reveal h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 0.5rem;
}

.cta-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .cta-buttons a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        font-weight: 500;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

/* Apple button */
.apple-btn {
    background: linear-gradient(to right, #4A90E2, #4ECDC4);
    color: #fff;
    border: 2px solid #4ECDC4;
    gap: 0.5rem;
}

    .apple-btn:hover {
        background: linear-gradient(to right, #4A90E2, #4ECDC4);
        border: 2px solid #4ECDC4;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .apple-btn img {
        width: 20px;
    }

/* Android button */
.android-btn {
    background: #fff;
    border: 2px solid #5783B5;
    color: #000;
}

    .android-btn .btn-content {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background-image: linear-gradient(to right, #5783B5, #74DDD9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

        .android-btn .btn-content img {
            width: 20px;
            filter: invert(30%) sepia(100%) saturate(2000%) hue-rotate(180deg) brightness(120%);
        }

    .android-btn:hover {
        background: #fff;
        border: 2px solid #5783B5;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(87, 131, 181, 0.3);
    }


        .android-btn:hover .btn-content {
            background-image: linear-gradient(to right, #5783B5, #74DDD9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


            .android-btn:hover .btn-content img {
                filter: invert(30%) sepia(100%) saturate(2000%) hue-rotate(180deg) brightness(120%);
            }


/* Media Query for button stacking on smaller screens */
@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
    }
}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


.cta h2.reveal {
    transition-delay: 0s;
}

.cta p.reveal {
    transition-delay: 0.1s;
}

.cta-buttons .apple-btn.reveal {
    transition-delay: 0.2s;
}

.cta-buttons .android-btn.reveal {
    transition-delay: 0.3s;
}


/* Footer Section */
.footer {
    padding: 1rem 5%;
    background: #fff;
    border-top: 5px solid #74DDD9;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

    .footer-logo img {
        height: 35px;
    }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .footer-links a {
        text-decoration: none;
        color: #555;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #3f8cff;
        }

.footer p {
    color: #555;
    font-size: 0.9rem;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Staggered animation for the footer content */
.footer-content .footer-logo.reveal {
    transition-delay: 0s;
}

.footer-content .footer-links a.reveal:nth-of-type(1) {
    transition-delay: 0.1s;
}

.footer-content .footer-links a.reveal:nth-of-type(2) {
    transition-delay: 0.2s;
}

.footer-content .footer-links a.reveal:nth-of-type(3) {
    transition-delay: 0.3s;
}

.footer-content .footer-links a.reveal:nth-of-type(4) {
    transition-delay: 0.4s;
}

.footer-content p.reveal {
    transition-delay: 0.5s;
}

/* Media query for smaller screens to ensure stacking */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo, .footer-links, .footer p {
        margin-bottom: 1rem;
    }
}
