/* Destination Details Styles - Premium Redesign */

/* 1. Hero Section - Cinematic Full Screen */
.destination-hero {
    position: relative;
    height: 80vh;
    /* Reduced from 100vh for better balance */
    min-height: 550px;
    max-height: 900px;
    overflow: hidden;
    margin-top: -85px;
    background-color: #0c1222;
}

.destination-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    animation: slowZoom 25s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.4) 0%,
            transparent 40%,
            rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.destination-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Page Title / Destination Title styling - REDUCED SIZE & CENTERED */
.destination-hero-content h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    text-transform: capitalize;
    letter-spacing: -2px;
    margin: 0;
    color: #ffffff !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    font-family: var(--font-display);
    padding: 10px 0;
    display: block;
}

@keyframes titleFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

/* Decorative Gold line below title */
.destination-hero-content h1::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #fbbf24, #f59e0b, transparent);
    margin: 30px auto 0;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.destination-hero-content p {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 1);
}

/* 2. Slim Premium Info Box - FLOATING OVERLAP */
.destination-info-box {
    background: #ffffff;
    border-radius: 50px;
    padding: 30px 60px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    margin-top: -80px;
    /* Increased overlap for premium depth */
    position: relative;
    z-index: 100;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: block;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    color: #fbbf24;
    /* Gold Icon */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.1);
}

.info-text {
    text-align: left;
}

.info-item h4 {
    font-size: 0.7rem;
    color: #94a3b8;
    /* Muted slate */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-item p {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.info-item:not(:last-child) {
    border-right: 1px solid #f1f5f9;
}

/* 3. Main Content Layout */
.destination-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    margin-top: 80px;
    padding-bottom: 100px;
}

.destination-main h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.destination-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 50px;
}

/* Package List Area */
.package-list-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.package-list-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

/* Sidebar Styles */
.destination-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    border-radius: 30px;
    padding: 35px;
    border: none;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transform: translate(50%, -50%);
}

.bg-slate {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.bg-slate h4 {
    color: white;
    font-size: 1.4rem;
}

.bg-slate p {
    color: rgba(255, 255, 255, 0.8);
}

.bg-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
}

.bg-orange h4 {
    color: var(--accent-700);
    font-size: 1.4rem;
}

.why-visit-list {
    list-style: none;
    margin-top: 20px;
}

.why-visit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.why-visit-list li i {
    color: var(--accent-500);
    font-size: 0.9rem;
}

/* Responsive Fixes */
@media (max-width: 1200px) {
    .destination-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .destination-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .destination-hero {
        height: 70vh;
        margin-top: -70px;
    }

    .destination-hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

    .destination-main h2 {
        font-size: 2.2rem;
    }

    .destination-info-box {
        margin: -30px 20px 0;
        padding: 20px;
        border-radius: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
    }
}