/* ========== DISPATCH PAGE STYLES ========== */
:root {
    --dispatch-primary: #F60B0E;
    --dispatch-dark: #0a0a0a;
    --dispatch-gold: #D4AF37;
}

/* ===== HERO SECTION ===== */
.dispatch-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dispatch-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/dispatch.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.dispatch-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.dispatch-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

.dispatch-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
}

.dispatch-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeSlideDown 0.8s ease forwards;
    animation-delay: 0.2s;
}

.dispatch-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--dispatch-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dispatch-hero-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
}

.dispatch-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-shadow: 0 4px 60px rgba(0,0,0,0.8);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.dispatch-hero-subtitle {
    font-family: 'Hind', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.btn-dispatch-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--dispatch-primary) 0%, #cc0000 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(246, 11, 14, 0.4);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.btn-dispatch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-dispatch-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 70px rgba(246, 11, 14, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.btn-dispatch-hero:hover::before {
    left: 100%;
}

/* ===== FEATURED ON BAR ===== */
.featured-bar {
    background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 100%);
    padding: 30px 0;
}

.featured-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 20px;
    text-align: center;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

.featured-logos img {
    max-width: 100px;
    max-height: 35px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.featured-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ===== CITIES SECTION ===== */
.cities-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    padding: 100px 0;
    position: relative;
}

.cities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, var(--dispatch-primary), transparent);
}

.cities-header {
    text-align: center;
    margin-bottom: 60px;
}

.cities-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #181818;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cities-header p {
    font-family: 'Hind', sans-serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dispatch-primary), var(--dispatch-gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===== TRIPADVISOR AWARD (hero variant) ===== */
.tripadvisor-award-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    padding: 12px 28px;
    margin: 20px auto 28px;
    max-width: 520px;
}

.tripadvisor-award-hero .tripadvisor-award-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.tripadvisor-award-hero .tripadvisor-award-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tripadvisor-award-hero .tripadvisor-award-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.tripadvisor-award-hero .tripadvisor-award-cities {
    font-family: 'Hind', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 576px) {
    .tripadvisor-award-hero {
        flex-direction: column;
        text-align: center;
        padding: 14px 20px;
        margin: 16px 20px 24px;
        border-radius: 16px;
    }

    .tripadvisor-award-hero .tripadvisor-award-content {
        align-items: center;
    }
}

/* ===== CITY CARDS ===== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.city-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: block;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
}

.city-card:nth-child(1) { animation-delay: 0.1s; }
.city-card:nth-child(2) { animation-delay: 0.2s; }
.city-card:nth-child(3) { animation-delay: 0.3s; }
.city-card:nth-child(4) { animation-delay: 0.4s; }
.city-card:nth-child(5) { animation-delay: 0.5s; }
.city-card:nth-child(6) { animation-delay: 0.6s; }

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    text-decoration: none;
}

.city-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.city-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover .city-card-image img {
    transform: scale(1.1);
}

.city-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.city-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.city-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.city-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dispatch-primary);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.city-card:hover .city-card-arrow {
    background: #fff;
    color: var(--dispatch-primary);
    transform: translateX(5px);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: linear-gradient(180deg, #e8e8e8 0%, #f5f5f5 100%);
    padding: 80px 0;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #181818;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    justify-items: center;
}

.partners-grid img {
    max-width: 130px;
    max-height: 45px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partners-grid img {
        max-width: 100px;
        max-height: 35px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .dispatch-hero {
        min-height: 60vh;
    }
    
    .dispatch-hero-content {
        padding: 40px 20px;
    }
    
    .cities-section {
        padding: 60px 0;
    }
    
    .featured-logos {
        gap: 20px;
    }
    
    .featured-logos img {
        max-width: 80px;
    }
}

@media (max-width: 600px) {
    .cities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .city-card-image {
        height: 160px;
    }
}

