/* Tours Hero Section */
.tours-hero {
    position: relative;
    padding: 10rem 2rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
}

.tours-hero-title {
    font-family: var(--font-headings);
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    color: white;
    margin: 0;
    line-height: 1.15;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Tours Intro Section */
.tours-intro-section {
    padding: 6rem 2rem 3rem 2rem;
    background-color: white;
}

.tours-intro-desc {
    font-family: var(--font-body);
    font-size: 1.12rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tours Cards Grid Section */
.tours-grid-section {
    padding: 3rem 2rem 6rem 2rem;
    background-color: white;
}

.tours-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card-item {
    background: white;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: var(--transition-smooth);
}

.tour-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.tour-card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card-item:hover .tour-card-img img {
    transform: scale(1.04);
}

.tour-card-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-info h3 {
    font-family: var(--font-headings);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.tour-card-info p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-tour-card-more {
    display: inline-block;
    align-self: start;
    background-color: var(--color-primary);
    color: white !important;
    padding: 0.8rem 1.85rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    font-family: var(--font-headings);
    letter-spacing: 0.5px;
}

.btn-tour-card-more:hover {
    background-color: var(--color-accent);
}

/* Experience Call Box Section */
.tours-experience-box {
    padding: 7rem 2rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
}

.tours-experience-box h2 {
    font-family: var(--font-headings);
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    color: white;
    margin-top: 0;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.btn-tours-gettouch {
    display: inline-block;
    background-color: transparent;
    color: white !important;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    border-radius: 4px;
    border: 2px solid white;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: var(--font-headings);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-tours-gettouch:hover {
    background-color: white;
    color: var(--color-accent) !important;
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 992px) {
    .tours-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tours-grid-3 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}
