/* css/logistics-landing.css */

.gig-landing-hero {
    position: relative;
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
}

/* Dynamic Background Gradients */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    animation: float 8s infinite ease-in-out;
}

.shopper-glow-1 { top: -10%; left: -10%; width: 300px; height: 300px; background: rgba(0, 122, 255, 0.4); }
.shopper-glow-2 { bottom: 10%; right: -10%; width: 250px; height: 250px; background: rgba(94, 92, 230, 0.4); animation-delay: 2s; }

.driver-glow-1 { top: -10%; right: -10%; width: 300px; height: 300px; background: rgba(52, 199, 89, 0.4); }
.driver-glow-2 { bottom: 10%; left: -10%; width: 250px; height: 250px; background: rgba(0, 200, 150, 0.4); animation-delay: 2s; }

/* Content Styling */
.gig-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.gig-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.badge-shopper { background: rgba(0, 122, 255, 0.15); color: #007AFF; }
.badge-driver { background: rgba(52, 199, 89, 0.15); color: #34C759; }

.gig-headline {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-main);
}
.gig-headline span {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-shopper { background-image: linear-gradient(135deg, #007AFF, #5E5CE6); }
.text-driver { background-image: linear-gradient(135deg, #34C759, #30D158); }

.gig-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Feature Cards */
.gig-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}
@media(min-width: 768px) { .gig-features { grid-template-columns: 1fr 1fr; } }

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.icon-shopper { color: #007AFF; }
.icon-driver { color: #34C759; }
.feature-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: var(--text-main); }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }

/* CTA Button */
.btn-gig-cta {
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gig-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}
.cta-shopper { background: linear-gradient(135deg, #007AFF, #5E5CE6); }
.cta-driver { background: linear-gradient(135deg, #34C759, #30D158); }

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}
.floating-element { animation: float 4s infinite ease-in-out; }
