/* General Styles */
body {
    background-color: #D9E2EC;
    color: #004F9E;
}

/* Navbar */
.navbar {
    background-color: #004F9E !important;
}
.navbar .nav-link {
    color: white !important;
}
.navbar .nav-link.bg-danger {
    padding: 5px 15px;
    border-radius: 5px;
}


/* Hero Section */
.hero {
    background-color: #00AEEF;
    color: white;
}

/* App Download Section */
.app-download-section {
    background: linear-gradient(135deg, #004F9E 0%, #00AEEF 100%);
    border-radius: 24px;
    padding: 48px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 79, 158, 0.25);
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.app-download-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.app-download-section .badge-app {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}

.app-download-section h2,
.app-download-section p {
    color: #ffffff;
}

.app-download-section .feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
}

.app-download-section .feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.app-download-section .feature-list i {
    font-size: 1.25rem;
    color: #16C47F;
}

.app-download-section .download-btn {
    background: #ffffff;
    color: #004F9E;
    font-weight: 700;
    border-radius: 16px;
    padding: 16px 36px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    letter-spacing: 0.01em;
}

.app-download-section .download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 79, 158, 0.25);
    color: #004F9E;
}

.app-download-section .secondary-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.app-download-section .secondary-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.app-download-section .phone-frame {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 32px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.app-download-section .phone-frame::before {
    content: '';
    position: absolute;
    inset: 20px 24px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(0, 174, 239, 0.6) 0%, rgba(22, 196, 127, 0.6) 100%);
    filter: blur(0);
}

.app-download-section .app-preview-card {
    position: relative;
    z-index: 1;
    background: rgba(11, 29, 74, 0.85);
    border-radius: 20px;
    padding: 24px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.app-download-section .highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 196, 127, 0.2);
    color: #16C47F;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.app-download-section .mini-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.app-download-section .mini-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.app-download-section .mini-feature-list li:last-child {
    margin-bottom: 0;
}

.app-download-section .mini-feature-list i {
    margin-top: 2px;
    color: #00d1b2;
}

@keyframes subtleFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.app-download-section .app-preview-card {
    animation: subtleFloat 6s ease-in-out infinite;
}

@media (max-width: 991px) {
    .app-download-section {
        text-align: center;
    }

    .app-download-section .feature-list li {
        justify-content: center;
    }

    .app-download-section .secondary-link {
        display: inline-block;
        margin-top: 16px;
    }
}

@media (max-width: 575px) {
    .app-download-section {
        padding: 36px 24px;
    }

    .app-download-section .download-btn {
        width: 100%;
    }

    .app-download-section .phone-frame {
        margin-top: 32px;
    }

    .app-download-section .app-preview-card {
        animation: none;
    }
}

/* Services Section */
.services {
    background-image: url('../images/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px;
    position: relative;
}
.services h2 {
    color: #004F9E;
}

.cta {
    background-color: #A8E6CF;
    color: #004F9E;
    padding: 50px 20px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #004F9E;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.footer ul {
    padding: 0;
    list-style: none;
}
.footer ul li a {
    color: white;
    text-decoration: none;
}

/* Signup Page */
.container {
    margin-top: 100px;
}
.card {
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease-in-out;

}
.card h3 {
    color: #004F9E;
}

.card:hover {
    transform: scale(1.02);
}

.badge {
    font-size: 14px;
    padding: 5px 10px;
}

/* place pickup page */
/* 🌊 Hero Section */


.hero-section h1 {
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-section .btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* 📝 Form Section */
.form-section {
    background-color: #f7f9fc;
}

.pickup-form {
    max-width: 700px;
    margin: auto;
}

/* 🧼 How It Works */
.how-it-works .step {
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
}

.how-it-works .step:hover {
    transform: scale(1.1);
}

/* ❓ FAQ Section */
.accordion-button {
    background-color: #16C47F;
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: #F93827;
    color: white;
}

/* 🎨 General Styling */
h2 {
    font-weight: 600;
}
