/* Circuit Details Page Styles */
.circuit-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.circuit-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.circuit-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.circuit-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.circuit-hero .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
}

.circuit-details-section {
    padding: 80px 0;
    background: white;
}

.day-card {
    background: var(--light-beige);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid var(--orange);
}

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

.day-number {
    background: var(--orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
}

.day-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.3rem;
}

.day-activities {
    margin-bottom: 20px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.activity-time {
    background: white;
    color: var(--orange);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 15px;
    min-width: 80px;
    text-align: center;
}

.activity-description {
    flex: 1;
    color: var(--gray);
    line-height: 1.6;
}

.accommodation-info {
    background: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
}

.accommodation-info i {
    color: var(--orange);
    font-size: 1.5rem;
    margin-right: 15px;
}

.accommodation-details h6 {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}

.accommodation-details small {
    color: var(--gray);
}

.booking-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.booking-summary {
    background: var(--light-beige);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    border-top: 2px solid var(--orange);
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.payment-options {
    margin-top: 20px;
}

.payment-option {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover,
.payment-option.selected {
    border-color: var(--orange);
    background: rgba(234, 139, 44, 0.1);
}

.payment-option input[type="radio"] {
    margin-right: 10px;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    margin-bottom: 10px;
    padding: 10px 15px;
    background: var(--light-beige);
    border-radius: 8px;
    border-left: 3px solid var(--orange);
}

.includes-list li i {
    color: var(--success);
}

/* RTL Support */
.rtl .day-card {
    border-left: none;
    border-right: 5px solid var(--orange);
}

.rtl .day-number {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .activity-time {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .accommodation-info i {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .payment-option input[type="radio"] {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .includes-list li {
    border-left: none;
    border-right: 3px solid var(--orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .circuit-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .circuit-hero h1 {
        font-size: 2.5rem;
    }
    
    .circuit-hero .price {
        font-size: 1.5rem;
    }
    
    .circuit-details-section {
        padding: 60px 0;
    }
    
    .day-card {
        padding: 20px;
    }
    
    .day-header {
        flex-direction: column;
        text-align: center;
    }
    
    .day-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .activity-item {
        flex-direction: column;
    }
    
    .activity-time {
        margin-right: 0;
        margin-bottom: 10px;
        align-self: flex-start;
    }
    
    .booking-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .circuit-hero {
        height: 40vh;
        margin-top: 60px;
    }
    
    .circuit-hero h1 {
        font-size: 2rem;
    }
    
    .circuit-hero .price {
        font-size: 1.25rem;
    }
    
    .circuit-details-section {
        padding: 40px 0;
    }
    
    .day-card {
        padding: 15px;
        border-radius: 10px;
    }
    
    .day-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .day-title {
        font-size: 1.1rem;
    }
    
    .activity-time {
        font-size: 0.8rem;
        padding: 4px 8px;
        min-width: 70px;
    }
    
    .booking-card {
        padding: 15px;
        border-radius: 15px;
    }
    
    .payment-option {
        padding: 12px;
    }
}
