/* ========== ACTIVITY PAGE ========== */
.act-main {
    margin-top: calc(var(--header-h) + 20px);
    padding-bottom: 60px;
}

.act-main .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding: 12px 0;
}

.act-main .breadcrumb a { color: var(--text-light); }
.act-main .breadcrumb a:hover { color: var(--primary); }
.act-main .breadcrumb i { font-size: 0.6rem; }

.act-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* ========== LEFT COLUMN ========== */
.act-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.act-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.act-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.act-rating .stars { color: var(--warning); font-size: 0.9rem; }
.act-rating .rating-score { font-weight: 700; font-size: 1rem; }
.act-rating .rating-count { color: var(--text-muted); font-size: 0.88rem; }

.act-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.act-location i { color: var(--primary); }

/* Gallery */
.act-gallery {
    margin-bottom: 32px;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    margin-bottom: 10px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

/* Sections */
.act-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.act-section:last-child { border-bottom: none; }

.act-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.act-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.highlight-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text);
}

.highlight-item span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Includes */
.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.includes-col h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.includes-col h4 i { color: var(--success); }
.includes-col.not-included h4 i { color: var(--danger); }

.includes-col ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.includes-col ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--text-muted);
}

/* Itinerary */
.itinerary {
    position: relative;
    padding-left: 40px;
}

.itinerary::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--primary-light);
}

.itinerary-step {
    position: relative;
    margin-bottom: 24px;
}

.itinerary-step:last-child { margin-bottom: 0; }

.step-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Reviews */
.reviews-summary {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.review-score-big {
    text-align: center;
    min-width: 120px;
}

.review-score-big .score {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.review-score-big .label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-score-big .total {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.review-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.review-bar-item > span:first-child {
    min-width: 90px;
    color: var(--text-light);
}

.review-bar-item > span:last-child {
    min-width: 30px;
    font-weight: 600;
    text-align: right;
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.review-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.review-header strong { font-size: 0.9rem; display: block; }
.review-header span { font-size: 0.78rem; color: var(--text-muted); }

.review-rating {
    margin-left: auto;
    background: var(--secondary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
    font-style: italic;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.btn-more-reviews {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    background: #fff;
}

.btn-more-reviews:hover { background: var(--bg-light); border-color: var(--primary); }

/* ========== SIDEBAR - BOOKING ========== */
.act-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.booking-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.booking-price {
    text-align: center;
    margin-bottom: 16px;
}

.price-from {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: block;
}

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

.price-per {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.booking-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.badge-success, .badge-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.badge-success { background: #E8F5E9; color: var(--success); }
.badge-info { background: #E3F2FD; color: var(--secondary-light); }

.booking-form .form-group {
    margin-bottom: 14px;
}

.booking-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.booking-form label i { color: var(--primary); font-size: 0.85rem; }

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus { border-color: var(--primary); }

/* Travelers */
.travelers-selector {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.traveler-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
}

.traveler-row + .traveler-row { border-top: 1px solid var(--border); }

.traveler-row strong { font-size: 0.88rem; display: block; }
.traveler-row span { font-size: 0.75rem; color: var(--text-muted); }

.qty-control {
    display: flex;
    align-items: center;
    gap: 14px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    background: #fff;
}

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

.qty-control span {
    font-size: 1rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: var(--text);
}

.booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 14px;
    font-size: 1rem;
}

.total-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-book {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.booking-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .act-layout {
        grid-template-columns: 1fr;
    }

    .act-sidebar {
        position: static;
    }

    .gallery-main { height: 280px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .includes-grid { grid-template-columns: 1fr; }
    .reviews-summary { flex-direction: column; text-align: center; }
    .act-content h1 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .gallery-main { height: 220px; }
    .thumb { width: 60px; height: 45px; }
}
