/* Day Tour Specific Styles */
.day-tour-cards {
    margin: 60px 0;
}

.day-tour-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 80px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 650px;
}

.day-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.day-tour-image {
    flex: 0 0 45%;
    position: relative;
}

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

.day-tour-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.day-tour-content h3 {
    color: var(--teal);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

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

.meta-item {
    font-size: 1rem;
    line-height: 1.5;
}

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

.tour-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 35px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--teal);
}

/* Day Tour Table Styles */
.day-tour-table {
    margin: 30px 0;
    overflow-x: auto;
    flex-grow: 1;
}

.day-tour-table table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.day-tour-table th {
    background: linear-gradient(135deg, var(--teal), #2a7a8c);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid #dee2e6;
}

.day-tour-table td {
    padding: 25px 20px;
    vertical-align: top;
    border: 1px solid #dee2e6;
    background: white;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.day-tour-table td:first-child {
    border-left: 1px solid #dee2e6;
}

.day-tour-table td:last-child {
    border-right: 1px solid #dee2e6;
}

.day-tour-table tbody tr:last-child td {
    border-bottom: 1px solid #dee2e6;
}

/* Table item styles with perfect hyphen alignment */
.table-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 24px;
}

.table-hyphen {
    color: #999;
    margin-right: 10px;
    font-weight: normal;
    flex-shrink: 0;
    width: 15px;
    text-align: center;
    display: inline-block;
}

.table-text {
    flex: 1;
    margin: 0;
    padding: 0;
}

/* Book Now Button - Fixed Width */
.day-tour-btn {
    margin-top: 30px;
    align-self: flex-start;
    padding: 15px 40px;
    font-size: 1.1rem;
    width: auto;
    display: inline-block;
    max-width: none;
}

/* Ensure button doesn't inherit table styles */
.day-tour-content > .btn {
    width: auto !important;
    max-width: none !important;
}


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

/* Mobile Responsive */
@media (max-width: 768px) {
    .day-tour-card {
        flex-direction: column;
        margin-bottom: 50px;
        min-height: auto;
    }
    
    .day-tour-image {
        flex: 0 0 300px;
        width: 100%;
    }
    
    .day-tour-content {
        padding: 30px 25px;
    }
    
    .day-tour-content h3 {
        font-size: 1.8rem;
    }
    
    .day-tour-meta {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .tour-intro {
        padding: 15px;
        font-size: 1rem;
    }
    
    .day-tour-table {
        margin: 20px -15px;
    }
    
    .day-tour-table th,
    .day-tour-table td {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
    
    .day-tour-btn {
        width: 100%;
        text-align: center;
        align-self: stretch;
    }
    
    .table-item {
        margin-bottom: 8px;
        min-height: 20px;
    }
    
    .table-hyphen {
        width: 12px;
        margin-right: 8px;
    }

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

}

@media (max-width: 480px) {
    .day-tour-content {
        padding: 25px 20px;
    }
    
    .day-tour-content h3 {
        font-size: 1.5rem;
    }
    
    .day-tour-table th {
        font-size: 0.9rem;
        padding: 12px 8px;
    }
    
    .day-tour-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .day-tour-meta {
        padding: 15px;
    }
    
    .meta-item {
        font-size: 0.9rem;
    }
    
    .table-item {
        margin-bottom: 6px;
        min-height: 18px;
    }
    
    .table-hyphen {
        width: 10px;
        margin-right: 6px;
    }

    .hero {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .day-tour-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .day-tour-btn {
        display: none;
    }
}
