/* Category boxes */
.tour-category-box {
    margin-bottom: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}

/* Category Headers */
.category-header {
    background-color: #ff9800;
    color: #fff;
    font-weight: 600;
    padding: 8px 12px;
    text-align: center;
    margin-bottom: 0;
}

.turkey-tours .category-header {
    background-color: #ff5722;
}
.cappadocia-tours .category-header {
    background-color: #2196f3;
}
.istanbul-tours .category-header {
    background-color: #673ab7;
}
.pamukkale-tours .category-header {
    background-color: #009688;
}
.eastern-anatolia-tours .category-header {
    background-color: #ff9800;
}
.cooking-class .category-header {
    background-color: #795548;
}
.nemrut-urfa-tours .category-header {
    background-color: #607d8b;
}
.wedding-cappadocia .category-header {
    background-color: #e91e63;
}
.yacht-tours .category-header {
    background-color: #00bcd4;
}

/* Tour Links */
.footer-tour-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff9e6;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.footer-tour-list li {
    border-bottom: 1px solid #ffe0b2;
}

.footer-tour-list li:last-child {
    border-bottom: none;
}

.footer-tour-list a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    transition: all 0.2s;
}

.footer-tour-list a:hover {
    color: #ff5722;
    background-color: #ffe0b2;
    padding-left: 15px;
}

/* Quick Links Styling */
.quick-links .category-header {
    background-color: #4caf50;
}

.quick-links-list {
    background-color: #e8f5e9;
    display: flex;
    flex-wrap: wrap;
    min-height: auto !important;
}

.quick-links-list li {
    width: 50%;
    border-bottom: 1px solid #c8e6c9;
    border-right: 1px solid #c8e6c9;
}

.quick-links-list li:nth-child(even) {
    border-right: none;
}

.quick-links-list li:nth-last-child(1),
.quick-links-list li:nth-last-child(2) {
    border-bottom: none;
}

@media (max-width: 767px) {
    .quick-links-list li {
        width: 100%;
        border-right: none;
    }

    .quick-links-list li:nth-last-child(2) {
        border-bottom: 1px solid #c8e6c9;
    }
}

/* Contact Box Styling */
.contact-box .category-header {
    background-color: #ff9800;
}

.contact-info {
    background-color: #fff9e6;
    padding: 15px;
    display: flex;
}

.contact-info p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
}

/* Ensure the line and mail display as intended */
.contact-info .line {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #333;
    margin: 0 10px;
    position: relative;
    top: 1px;
    height: 20px;
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    color: #ff9800;
}

/* Contact details styling */
.contact-details {
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    color: #ff9800;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-details a:hover {
    color: #ff9800;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .contact-details p {
        font-size: 16px;
    }

    .contact-details i {
        font-size: 18px;
    }
}
