/* Tours Common Styles */
.tour-card-expandable {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tour-card-expandable:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tour-card-expandable.expanded {
    border-color: var(--gold);
}

.tour-card-header {
    display: flex;
    align-items: stretch;
    cursor: pointer;
    gap: 0;
    padding: 0;
}

.tour-card-image {
    flex: 0 0 40%;
    position: relative;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-card-preview {
    flex: 1;
    padding: 30px;
    position: relative;
    min-height: 300px;
}

.tour-card-preview h3 {
    color: var(--teal);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 600;
    padding-right: 40px;
    line-height: 1.2;
}

.tour-duration {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    padding-right: 40px;
}

.tour-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--sand);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.meta-item {
    font-size: 0.95rem;
}

.meta-item:last-child {
    text-align: right;
    justify-self: end;
}

.meta-item strong {
    color: var(--teal);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.overview-sections {
    margin-bottom: 25px;
}

.overview-section {
    margin-bottom: 12px;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--teal);
    font-weight: 350;
    line-height: 1.6;
    font-size: 0.95rem;
}

.overview-flow {
    background: #e8ecef;
    border-left-color: #1A6B7B;
}

.overview-section strong {
    font-weight: 500;
    color: var(--teal);
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.destination-flow-list {
    margin-top: 8px;
}

.flow-item {
    margin-bottom: 4px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover {
    background: #155a67;
    transform: translateY(-2px);
}

.read-more-btn .arrow {
    transition: transform 0.3s ease;
}

.tour-card-expandable.expanded .read-more-btn .arrow {
    transform: rotate(180deg);
}

.expand-indicator {
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(--teal);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    z-index: 10;
}

.tour-card-expandable.expanded .expand-indicator {
    transform: rotate(180deg);
}

.tour-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.0s ease;
    background: var(--sand);
}

.tour-card-expandable.expanded .tour-details {
    max-height: 5000px;
}

/* Horizontal Day Cards Grid */
.days-grid {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.day-card-horizontal {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.day-card-horizontal:hover {
    transform: translateY(-5px);
}

.day-header-horizontal {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
}

.day-number-horizontal {
    background: var(--teal);
    color: white;
    width: 60px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.day-title-horizontal {
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.day-overnight-horizontal {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

.day-content-horizontal {
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--charcoal);
    flex-grow: 1;
}

.tour-actions {
    padding: 20px 40px;
    background: white;
    border-top: 1px solid var(--gray);
    text-align: center;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .days-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For tablets */
@media (max-width: 992px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .tour-card-header {
        flex-direction: column;
    }
    
    .tour-card-image {
        flex: 0 0 250px;
        width: 100%;
    }
    
    .tour-card-preview {
        padding: 20px;
        min-height: auto;
    }
    
    .tour-card-preview h3 {
        padding-right: 30px;
        font-size: 1.5rem;
    }
    
    .tour-duration {
        padding-right: 30px;
        font-size: 1rem;
    }
    
    .tour-meta {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .meta-item:last-child {
        text-align: left;
        justify-self: start;
    }
    
    .overview-section {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .days-grid {
        padding: 20px;
        grid-template-columns: 1fr;
    }
    
    .day-header-horizontal {
        flex-wrap: wrap;
    }
    
    .expand-indicator {
        right: 20px;
        top: 20px;
        font-size: 1.3rem;
    }
    
    .day-number-horizontal {
        width: 55px;
        font-size: 0.8rem;
    }
    
    .read-more-btn {
        width: 100%;
        justify-content: center;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-content {
        padding: 0 15px;
        width: 90%;
    }
}
