:root {
    --primary-color: #e65c4f;
    --secondary-color: #2a9d8f;
    --dark-color: #264653;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 20px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section h2{
   text-align: center;
    margin: 25px 0px;
    font-size: 30px;
    font-family: 'Poppins';
}

.intro-section p{
        font-size: 17px;
    color: #000;
    line-height: 30px;
    margin: 20px 0;
}
/* For modern browsers */
.action-buttons {
    display: flex;
    gap: 3rem;
}

/* Fallback for older browsers */
@supports not (gap: 1rem) {
    .action-buttons a:not(:last-child) {
        margin-right: 1rem;
    }
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    text-decoration: none;
    color: inherit;
}

.tour-title h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.tour-meta {
    margin: 20px 0;
    display: flex;
    gap: 20px;
}

.tour-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

/* Hover Effects */
/* Modern Card Styles */
.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Style 1 - Classic Design */
.tour-card.style-1 {
    position: relative;
}

.style-1 .tour-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(-45deg);
    z-index: 1;
}

.style-1 .tour-highlights {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.style-1 .tour-highlights li {
    margin-bottom: 8px;
    color: #666;
}

.style-1 .tour-highlights i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Style 2 - Premium Design */
.tour-card.style-2 .tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    color: white;
}

.style-2 .tour-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.style-2 .tour-features span {
        font-size: 15px;
    color: white;
    background: #e65c4f;
    padding: 10px;
    /*left: -25px;*/
    position: relative;
    font-weight: 500;
    font-family: 'Poppins';
    text-align: center;
    border-radius: 50px;
}

/* Style 3 - Modern Design */
.tour-card.style-3 .tour-labels {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.style-3 .tour-labels span {
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.style-3 .highlights-preview {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.style-3 .highlights-preview img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

/* Common Button Styles */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    
}

/* Hover Effects */
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background: darken(var(--primary-color), 10%);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.tour-content h3{
    font-size: 19px;
    padding: 20px 0;
}

.tour-description{
    font-size: 15px;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-buttons {
    display: flex;
    gap: 4rem;
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .style-2 .tour-features {
        flex-direction: column;
    }
    
    .style-3 .highlights-preview {
        display: none;
    }

    .action-buttons {
    display: flex;
    gap: 4rem;
    }
}