.tour-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tour-hero {
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.tour-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tour-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.tour-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tour-highlights {
    display: flex;
    gap: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight i {
    font-size: 1.2rem;
}

.tour-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tour-description {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tour-description h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.tour-description h3 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.tour-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-includes {
    list-style: none;
}

.tour-includes li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-includes i {
    color: #4CAF50;
}

.tour-highlights-list li {
    margin-bottom: 10px;
    color: #666;
}

.tour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-card, .info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.book-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-button:hover {
    background: #3e8e41;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.info-card i {
    color: #4CAF50;
    width: 20px;
}

@media (max-width: 768px) {
    .tour-content {
        grid-template-columns: 1fr;
    }
    
    .tour-hero-content h1 {
        font-size: 2rem;
    }
    
    .tour-highlights {
        flex-direction: column;
        gap: 15px;
    }
}


/* Carousel styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}


/* Important information section */
.important-info {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-item i {
    font-size: 24px;
    color: #0056b3;
    margin-top: 3px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    margin: 0;
    color: #666;
}


/* Estilos para el sistema de comentarios con Google */
#comment-login-section {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.user-profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.user-profile-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-email {
    color: #666;
    font-size: 0.9em;
}

.button-group {
    display: flex;
    gap: 10px;
}

.secondary-button {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.secondary-button:hover {
    background-color: #e0e0e0;
}

.rating-select i.active {
    color: #ffc107;
}