/* Tour Categories Section Styles */
.tour-categories-section {
    padding: 0 0 70px 0;
    background-color: #f8f9fa;
}

.tour-categories-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Category Card Styles - Matching Günübirlik Turlar style */
.category-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
}

.category-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.category-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.category-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(51, 51, 51, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: auto;
    text-decoration: none;
}

.category-button:hover {
    background-color: #ffb900;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 185, 0, 0.3);
}

.category-button i {
    font-size: 21px;
}

/* Kategori Etiket Stilleri - Günübirlik Turlar'a benzer */
.category-tag {
    position: absolute;
    top: 15px;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 3px 8px rgba(51, 51, 51, 0.3);
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .tour-categories-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .category-content h3 {
        font-size: 16px;
    }
    
    .category-description {
        font-size: 13px;
    }
    
    .category-button {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media screen and (max-width: 576px) {
    .tour-categories-container {
        grid-template-columns: 1fr;
    }
}
