/* Destination Page Styles */
.dest-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}
.dest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.dest-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: right;
    padding: 0 40px;
    width: 100%;
}
.dest-flag { font-size: 4rem; margin-bottom: 10px; }
.dest-title { font-size: 3.5rem; font-weight: 900; margin: 0; }
.dest-tagline { font-size: 1.2rem; opacity: 0.9; margin-top: 8px; }

/* Season Tabs */
.season-tabs-wrapper { background: white; border-bottom: 1px solid #eee; position: sticky; top: 70px; z-index: 100; }
.season-tabs { display: flex; justify-content: center; gap: 0; max-width: 1200px; margin: 0 auto; }
.season-tab {
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-family: 'Tajawal', sans-serif;
    color: #666;
}
.season-tab.active, .season-tab:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}
.season-tab-icon { font-size: 1.3rem; display: block; }

/* Packages Grid */
.packages-section { padding: 60px 0; background: #f8f9fa; }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* Package cards use the shared phub style (see style.css) */

/* Info Section */
.dest-info { padding: 60px 0; background: white; }
.info-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; }
.info-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}
.info-icon { font-size: 2rem; margin-bottom: 10px; }
.info-label { font-size: 0.8rem; color: #999; margin-bottom: 6px; }
.info-value { font-size: 0.9rem; font-weight: 700; color: #333; }

/* Hotels */
.hotels-section { padding: 60px 0; background: #f8f9fa; }
.hotels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.hotel-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: right;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.hotel-stars { color: #38BDF8; font-size: 1rem; margin-bottom: 8px; }
.hotel-name { font-weight: 800; margin-bottom: 4px; }
.hotel-area { color: #999; font-size: 0.85rem; margin-bottom: 12px; }
.hotel-price { color: var(--primary-blue); font-weight: 900; }

/* CTA Section */
.dest-cta {
    background: linear-gradient(135deg, #0B1426 0%, #1a2a4a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}
.dest-cta h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; }
.dest-cta p { opacity: 0.8; margin-bottom: 32px; font-size: 1.1rem; }

@media (max-width: 900px) {
    .packages-grid { grid-template-columns: repeat(2,1fr); }
    .info-grid { grid-template-columns: repeat(2,1fr); }
    .hotels-grid { grid-template-columns: repeat(2,1fr); }
    .dest-title { font-size: 2.5rem; }
}
@media (max-width: 600px) {
    .packages-grid { grid-template-columns: 1fr; }
    .hotels-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .season-tab { padding: 12px 16px; font-size: 0.85rem; }
}
