/* Header Styles */
.header-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 50;
    border-bottom: 3px solid #FF0000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    margin: 0 auto;
    padding: 1rem 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    width: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #DC2626;
    font-weight: 600;
    text-transform: capitalize;
}

.user-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-icon {
    width: 18px;
    height: 18px;
}

.user-name {
    font-weight: 500;
    font-size: 14px;
    font-weight: bold;
}

.transit-dropdown {
    border: 1px solid #E5E7EB !important;
    border-radius: 6px !important;
    background-color: #FAFAFA !important;
    color: #DC2626 !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 14px !important;
    width: 100%;
    /* min-width: 180px !important; */
}

/* Footer Styles */
.footer-section {
    background-color: #101828;
    color: white;
    padding: 3rem 1rem 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.no-decor {
    text-decoration: none;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    width: 50px;
}

.footer-logo-text {
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
}

.footer-tagline {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

    .google-play-btn:hover {
        opacity: 0.8;
        color: #ED174D;
        text-decoration: none;
    }

.google-play-icon {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.google-play-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.google-play-small {
    font-size: 0.75rem;
}

.google-play-large {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: -0.25rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: #9CA3AF;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: #DC2626;
        }

.footer-certifications {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.cert-link {
    display: inline-block;
}

.cert-img {
    display: block;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .user-section {
        width: 100%;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-certifications {
        justify-content: center;
    }
}

.a-decor-none {
    text-decoration: none !important;
}

/* Modern Dropdown Styles */
.modern-dropdown {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1a202c;
    min-width: 240px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: 'texgyreadventor-regular', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

    .modern-dropdown:hover {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
        transform: translateY(-1px);
    }

    .modern-dropdown:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

/* Dropdown Container */
.dropdown-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.dropdown-label {
    font-size: 11px;
    color: black !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-family: 'texgyreadventor-bold', sans-serif;
}