/* Guatape Details Page Specific Styles */
.hero-guatape {
    background: linear-gradient(rgba(15, 31, 46, 0.5), rgba(15, 31, 46, 0.8)), url('https://images.unsplash.com/photo-1596484393933-28771485c2c7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-guatape h1 {
    font-size: 5rem;
    color: var(--accent-gold);
}

/* Tour Info & Booking Card */
.tour-details-section {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.tour-info {
    flex: 2;
}

.tour-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-list .feature {
    flex-direction: row;
    align-items: center;
    text-align: left;
}

.booking-card-wrapper {
    flex: 1;
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.price {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    color: white;
    font-family: inherit;
}

.form-group input:focus {
    outline: 1px solid var(--accent-gold);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--accent-gold);
    color: var(--bg-darker);
    padding: 1.2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 192, 37, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-dark);
    border: 4px solid var(--accent-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }
.right::after { left: -10px; }

.content {
    padding: 20px 30px;
    background-color: rgba(255,255,255,0.05);
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.content h2 { margin-bottom: 5px; color: var(--accent-gold); font-size: 1.2rem; }
.content p { color: var(--text-muted); font-size: 0.95rem; }

/* Image Gallery Grid */
.gallery {
    column-count: 3;
    column-gap: 1.5rem;
    padding: 0 5%;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .tour-details-section { flex-direction: column; }
    .booking-card-wrapper { position: static; width: 100%; }
    .hero-guatape h1 { font-size: 3rem; }
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 21px; }
    .right { left: 0%; }
    .gallery { column-count: 1; }
}
