/* Detail Page Styles */
.detail-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(15, 25, 76, 0.8)), url('assets/images/turkey_umrah.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding-top: 80px; /* Offset for navbar */
}

.detail-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.detail-container {
    max-width: 1200px;
    margin: -60px auto 5rem;
    padding: 0 5%;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Sidebar Info */
.booking-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.booking-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.booking-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.booking-info {
    margin: 1.5rem 0;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.booking-info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-download {
    margin-top: 1rem;
    width: 100%;
}

/* Tabs */
.detail-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 1rem 0;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section ul {
    list-style-position: inside;
    list-style-type: disc;
    color: var(--text-muted);
    margin-left: 1rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

@media (max-width: 992px) {
    .detail-container {
        grid-template-columns: 1fr;
    }
    .booking-card {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .detail-hero {
        height: auto;
        padding: 120px 5% 60px;
    }
    .detail-hero h1 {
        font-size: 2.2rem;
    }
    .detail-content {
        padding: 1.5rem;
    }
    .tabs {
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: none;
    }
    .tab-btn {
        padding: 0.8rem;
        text-align: left;
        border: 1px solid #eee;
        border-radius: 10px;
    }
    .tab-btn.active {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    .tab-btn::after {
        display: none;
    }
}
