/* Tour Card System Styles */

:root {
    --tcs-primary: #007bff;
    --tcs-secondary: #6c757d;
    --tcs-light-bg: #ffffff;
    --tcs-light-card-bg: #f8f9fa;
    --tcs-text-dark: #343a40;
    --tcs-text-muted-dark: #6c757d;
    --tcs-border-light: #dee2e6;
}

body {
    background-color: var(--tcs-light-bg);
    color: var(--tcs-text-dark);
}

.tcs-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.tcs-card {
    background: var(--tcs-light-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--tcs-text-dark);
    border: 1px solid var(--tcs-border-light);
}

.tcs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tcs-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tcs-no-image {
    color: var(--tcs-text-muted-dark);
    font-size: 14px;
}

.tcs-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tcs-card-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--tcs-text-dark);
}

.tcs-card-tagline {
    font-weight: bold;
    color: var(--tcs-primary);
    margin-bottom: 10px;
    text-align: center; /* Centered tagline */
}

.tcs-card-paragraph {
    font-size: 0.9rem;
    color: var(--tcs-text-muted-dark);
    margin-bottom: 15px;
    flex-grow: 1;
    white-space: pre-wrap; /* Preserve line breaks from admin */
}

.tcs-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: 0.85rem;
    color: var(--tcs-text-dark);
}

.tcs-card-specs li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.tcs-card-specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tcs-primary);
}

.tcs-card-footer {
    margin-top: auto;
    border-top: 1px solid var(--tcs-border-light);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tcs-card-pricing {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--tcs-text-dark);
}

.tcs-enquiry-btn {
    background: var(--tcs-primary);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block; /* Full width */
    width: 100%; /* Full width */
    box-sizing: border-box; /* Include padding in width */
}

.tcs-enquiry-btn:hover {
    background: #0056b3;
     color: #fff;
}

/* Modal Styles - Removed as per new requirements */
.tcs-modal {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .tcs-card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tcs-card-container {
        grid-template-columns: 1fr;
    }
}
