/* ========================================
   Paket Detail Page - Custom Styles
   ======================================== */

/* Detail Header */
.detail-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0 30px;
    position: relative;
    overflow: hidden;
}

.detail-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.detail-header .container {
    position: relative;
    z-index: 2;
}

.detail-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.detail-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.detail-header .breadcrumb-item a:hover {
    color: var(--gold);
}

.detail-header .breadcrumb-item.active {
    color: var(--white);
    font-size: 0.9rem;
}

.detail-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Detail Section */
.detail-section {
    padding: 40px 0 80px;
    background: var(--gray-100);
}

/* Image Gallery */
.gallery-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.main-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container .promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: var(--primary);
    color: var(--white);
}

.gallery-nav.prev {
    left: 16px;
}

.gallery-nav.next {
    right: 16px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Package Info Card */
.package-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.package-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 10px;
    background: transparent !important;
    text-align: left !important;
    padding-top: 10px !important;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 12px;
    line-height: 1.4;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-rating .stars {
    display: flex;
    gap: 2px;
}

.package-rating .stars i {
    color: #f59e0b;
    font-size: 1rem;
}

.rating-text {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.package-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.1) 0%, rgba(26, 95, 74, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Detail Tabs */
.detail-tabs {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.detail-tabs .nav-tabs {
    border-bottom: 1px solid var(--gray-200);
    padding: 0 16px;
    background: var(--gray-100);
    overflow-x: auto;
    flex-wrap: nowrap;
}

.detail-tabs .nav-tabs::-webkit-scrollbar {
    display: none;
}

.detail-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    padding: 16px 20px;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.detail-tabs .nav-link:hover {
    color: var(--primary);
    border-color: transparent;
}

.detail-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--white);
}

.tab-content-inner {
    padding: 24px;
}

.tab-content-inner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.tab-content-inner h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 20px 0 12px;
}

.tab-content-inner p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Highlight List */
.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
}

.highlight-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Info Alert */
.info-alert {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.08) 0%, rgba(26, 95, 74, 0.03) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-top: 20px;
}

.info-alert > i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-alert strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.info-alert p {
    margin: 0;
    font-size: 0.9rem;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
}

.itinerary-item {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    position: relative;
}

.itinerary-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--gray-200));
}

.itinerary-day {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.3);
}

.day-number {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.day-label {
    font-size: 0.65rem;
    opacity: 0.8;
}

.itinerary-content {
    flex: 1;
    padding: 4px 0;
}

.itinerary-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.itinerary-content p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.itinerary-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.itinerary-icons span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 20px;
}

.itinerary-icons span i {
    color: var(--primary);
}

/* Fasilitas Grid */
.fasilitas-section h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.fasilitas-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fasilitas-item.included {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.fasilitas-item.included i {
    color: #10b981;
}

.fasilitas-item.excluded {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.fasilitas-item.excluded i {
    color: #ef4444;
}

.fasilitas-item i {
    font-size: 1.2rem;
}

.fasilitas-item span {
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* Hotel Card */
.hotel-card {
    display: flex;
    gap: 20px;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.hotel-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hotel-image {
    flex-shrink: 0;
    width: 180px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-location {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.hotel-info {
    flex: 1;
}

.hotel-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.hotel-stars i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.hotel-stars span {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-left: 8px;
}

.hotel-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.hotel-distance {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.hotel-amenities {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hotel-amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.hotel-amenities span i {
    color: var(--gray-500);
}

/* Flight Card */
.flight-card {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.flight-card.return {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.05) 0%, rgba(26, 95, 74, 0.02) 100%);
}

.flight-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--gray-300);
}

.airline-logo {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.airline-logo i {
    font-size: 1.5rem;
    color: var(--primary);
}

.airline-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.flight-type {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.flight-departure,
.flight-arrival {
    display: flex;
    flex-direction: column;
}

.flight-arrival {
    text-align: right;
}

.flight-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.flight-city {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.flight-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.flight-duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.flight-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gray-300), var(--primary), var(--gray-300));
    position: relative;
    margin-bottom: 8px;
}

.flight-line i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--primary);
    padding: 4px;
    font-size: 1rem;
}

.flight-duration span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.flight-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.flight-details .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.flight-details .detail-item i {
    color: var(--primary);
}

/* Sidebar Cards */
.sticky-card {
    position: sticky;
    top: 100px;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--primary);
}

.price-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: block;
    margin-bottom: 8px;
}

.price-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.price-original del {
    color: var(--gray-500);
    font-size: 1rem;
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-current .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.price-current .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-current .per-person {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.price-features {
    margin-bottom: 20px;
}

.price-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.price-features .feature-item:last-child {
    border-bottom: none;
}

.price-features .feature-item i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.1) 0%, rgba(26, 95, 74, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.price-features .feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.feature-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
}

.feature-value.quota {
    color: #ef4444;
}

.price-actions {
    margin-bottom: 20px;
}

.price-guarantee {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.guarantee-item i {
    color: var(--primary);
}

/* Travel Card */
.travel-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.travel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.travel-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.travel-info {
    flex: 1;
}

.travel-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.travel-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.travel-rating i {
    color: #f59e0b;
}

.verified-badge {
    color: #3b82f6;
    font-size: 1.5rem;
}

.travel-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: 12px;
    margin-bottom: 16px;
}

.travel-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.travel-stats .stat-item i {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.travel-stats .stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.travel-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.travel-location i {
    color: var(--primary);
    margin-top: 2px;
}

/* Share Card */
.share-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.share-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
    background: #000;
}

.share-btn.twitter:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.share-btn.copy {
    background: var(--gray-600);
}

.share-btn.copy:hover {
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
}

/* Related Section */
.related-section {
    padding: 60px 0;
    background: var(--white);
}

.related-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.related-section .section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

/* Paket Card for Related */
.paket-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.paket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.paket-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.paket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.paket-card:hover .paket-image img {
    transform: scale(1.05);
}

.paket-image .promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.paket-body {
    padding: 16px;
}

.paket-travel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.paket-travel i {
    color: var(--primary);
}

.paket-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.paket-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.paket-meta span {
    font-size: 0.8rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 4px;
}

.paket-meta span i {
    color: var(--gray-400);
}

.paket-meta .duration {
    background: var(--gold);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.paket-price {
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
}

.paket-price .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .sticky-card {
        position: static;
    }
    
    .package-meta {
        grid-template-columns: 1fr;
    }
    
    .hotel-card {
        flex-direction: column;
    }
    
    .hotel-image {
        width: 100%;
        height: 180px;
    }
    
    .flight-route {
        flex-direction: column;
        gap: 20px;
    }
    
    .flight-departure,
    .flight-arrival {
        text-align: center;
    }
    
    .flight-duration {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .detail-header {
        padding: 100px 0 20px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .package-title {
        font-size: 1.2rem;
    }
    
    .detail-tabs .nav-link {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .detail-tabs .nav-link i {
        display: none;
    }
    
    .itinerary-item {
        gap: 12px;
    }
    
    .itinerary-day {
        width: 48px;
        height: 48px;
    }
    
    .day-number {
        font-size: 0.95rem;
    }
    
    .fasilitas-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .travel-stats {
        grid-template-columns: 1fr;
    }
    
    .price-current .amount {
        font-size: 1.6rem;
    }
    
    .related-section .section-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .fasilitas-grid {
        grid-template-columns: 1fr;
    }
    
    .price-guarantee {
        flex-direction: column;
        align-items: center;
    }
}
