/* Shuttle Bus / Transport page styles */

/* Hero Section */
.transport-hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 25, 45, 0.45), rgba(10, 15, 30, 0.7)),
                url('assets-adrenaland/e_bike/17.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #ffffff;
}

.transport-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.transport-hero .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    opacity: 0.9;
    color: #ffffff;
}

/* Intro Section */
.transport-intro {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 25, 45, 0.45), rgba(10, 25, 50, 0.7)),
                url('assets-adrenaland/canyoning/5.jpg') center/cover fixed;
    text-align: center;
}

.transport-intro .intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.transport-intro .intro-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 15, 30, 0.6), rgba(15, 20, 40, 0.85)),
                url('assets-adrenaland/e_bike/7.jpg') center/cover fixed;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.shuttle-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shuttle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.shuttle-card.featured {
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 0 30px rgba(255, 140, 66, 0.12);
}

.shuttle-header {
    padding: 1.8rem 2rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shuttle-header i {
    font-size: 1.8rem;
}

.shuttle-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.shuttle-header.morning { background: linear-gradient(135deg, rgba(255, 183, 77, 0.25), rgba(255, 140, 66, 0.15)); }
.shuttle-header.morning i { color: #ffb74d; }

.shuttle-header.afternoon { background: linear-gradient(135deg, rgba(255, 140, 66, 0.3), rgba(229, 90, 43, 0.2)); }
.shuttle-header.afternoon i { color: #ff8c42; }

.shuttle-header.evening { background: linear-gradient(135deg, rgba(100, 120, 180, 0.3), rgba(60, 80, 140, 0.2)); }
.shuttle-header.evening i { color: #90a8e0; }

.shuttle-stops {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.stop {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.stop-time {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff8c42;
    min-width: 56px;
    font-variant-numeric: tabular-nums;
}

.stop-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.return-row {
    margin: 0 2rem 1.8rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.return-row i {
    color: #ff8c42;
    font-size: 0.85rem;
}

.return-row strong {
    color: #ff8c42;
}

/* Pickup Locations Section */
.locations-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 20, 40, 0.55), rgba(5, 12, 28, 0.8)),
                url('assets-adrenaland/canyoning/40.jpg') center/cover fixed;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.location-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #ff8c42, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.location-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.4);
    border-radius: 50px;
    color: #ff8c42;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.map-btn:hover {
    background: rgba(255, 140, 66, 0.28);
    border-color: #ff8c42;
    color: #ff8c42;
}

/* CTA Section */
.transport-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 15, 30, 0.6), rgba(5, 10, 20, 0.85)),
                url('assets-adrenaland/canyoning/5.jpg') center/cover fixed;
    text-align: center;
}

.transport-cta .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.transport-cta .cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #e85a20;
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .transport-hero,
    .transport-intro,
    .schedule-section,
    .locations-section,
    .transport-cta {
        background-attachment: scroll;
    }

    .transport-hero {
        height: 70vh;
    }

    .transport-intro {
        padding: 60px 0;
        min-height: auto;
    }

    .schedule-section,
    .locations-section,
    .transport-cta {
        padding: 60px 0;
    }

    .schedule-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .shuttle-header {
        padding: 1.4rem 1.6rem 1rem;
    }

    .shuttle-stops {
        padding: 1.2rem 1.6rem;
    }

    .return-row {
        margin: 0 1.6rem 1.5rem;
    }

    .location-card {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .location-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.2rem;
    }
}
