/* ==========================================================
   TOUR EXPERT – Additional Page-Specific Styles
   ========================================================== */

/* About Page */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-intro-img img { width: 100%; height: 450px; object-fit: cover; }
.about-intro-img .img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(13,31,60,0.9);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 24px;
}
.img-badge-item { text-align: center; }
.img-badge-item .num { font-size: 1.6rem; font-weight: 900; color: var(--gold); }
.img-badge-item .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; height: 200px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark-text); margin-bottom: 4px; }
.team-card-body p { font-size: 0.82rem; color: var(--gray); margin-bottom: 12px; }

/* Services Page */
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 24px;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(232,65,24,0.15); transform: translateY(-4px); }
.service-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.service-detail-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--dark-text); margin-bottom: 8px; }
.service-detail-body p { font-size: 0.88rem; color: var(--body-text); line-height: 1.7; margin-bottom: 12px; }
.service-detail-body ul { display: flex; flex-direction: column; gap: 4px; }
.service-detail-body ul li {
    font-size: 0.82rem;
    color: var(--body-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-detail-body ul li i { color: var(--green); font-size: 0.7rem; }

/* Packages Filter */
.packages-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--body-text);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* Package Detail */
.package-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.package-itinerary { display: flex; flex-direction: column; gap: 0; }
.itinerary-day {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.itinerary-day:last-child { border-bottom: none; }
.day-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.day-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark-text); margin-bottom: 6px; }
.day-content p { font-size: 0.85rem; color: var(--body-text); line-height: 1.7; }

.booking-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.booking-sidebar-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 24px;
    color: var(--white);
}
.booking-sidebar-header h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.booking-sidebar-header .sidebar-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}
.booking-sidebar-header .sidebar-price span { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.6); }
.booking-sidebar-body { padding: 24px; }

/* Map iframe */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper iframe { width: 100%; height: 350px; border: none; display: block; }

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    color: rgba(255,255,255,0.85);
    padding: 16px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 2px solid var(--orange);
}
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p { font-size: 0.85rem; }
.cookie-notice a { color: var(--orange); }
.cookie-btns { display: flex; gap: 10px; }

/* Loader */
.page-loader {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--navy-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.loader-logo { height: 70px; animation: pulse 1.5s ease-in-out infinite; }
.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 3px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* Responsive extras */
@media (max-width: 1024px) {
    .about-intro-grid { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .package-detail-grid { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
}
@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .about-intro-img img { height: 280px; }
}
