/* Tur Kartı Stilleri */
.available-trips-container {
    margin-bottom: 30px;
    padding: 15px 0;
}

.trip-section-title {
    font-size: 1.5rem;
    color: #354862;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e7edf3;
    font-weight: 600;
}

.trip-card {
    border: 1px solid #e7edf3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trip-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

.trip-card:hover .trip-image img {
    transform: scale(1.05);
}

.trip-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.trip-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #354862;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.trip-info {
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.trip-location, .trip-date {
    color: #666;
    margin-bottom: 5px;
}

.trip-location i, .trip-date i {
    color: #2fa0ef;
    margin-right: 5px;
    width: 16px;
    text-align: center;
}

.trip-prices {
    margin-top: auto;
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid #e7edf3;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.price-label {
    color: #666;
}

.price-value {
    font-weight: 600;
    color: #354862;
}

.price-included {
    background-color: #e8f4eb;
    color: #28a745;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.trip-detail-btn {
    display: block;
    text-align: center;
    padding: 8px 12px;
    background-color: #2fa0ef;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.trip-detail-btn:hover {
    background-color: #1e8ed6;
    color: #fff;
    text-decoration: none;
}

/* Modal Stilleri */
.trip-modal-images img {
    border-radius: 6px;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

.trip-modal-info h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #354862;
    margin: 15px 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e7edf3;
}

.trip-description {
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

.trip-description p {
    margin-bottom: 10px;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e7edf3;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e7edf3;
}

.modal-dialog {
    max-width: 800px;
}

@media (max-width: 768px) {
    .trip-card {
        margin-bottom: 20px;
    }

    .trip-image {
        height: 160px;
    }

    .trip-title {
        font-size: 1rem;
        height: 45px;
    }

    .modal-dialog {
        margin: 10px;
    }

    .trip-modal-images img {
        max-height: 250px;
    }
}

/* Mobil Görünüm Stilleri */
.mobile-available-trips-container {
    padding: 10px 0;
}

.mobile-trip-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.4);
    margin-bottom: 16px;
    overflow: hidden;
}

.mobile-trip-header {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-trip-image {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.mobile-trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-trip-title {
    flex-grow: 1;
}

.mobile-trip-title h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #354862;
    line-height: 1.3;
}

.mobile-trip-info {
    padding: 10px 12px;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #666;
}

.mobile-trip-info .info-item {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.mobile-trip-info .info-item:last-child {
    margin-bottom: 0;
}

.mobile-trip-info .info-item i {
    color: #2fa0ef;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.mobile-trip-prices {
    padding: 10px 12px;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.mobile-price-item:last-child {
    margin-bottom: 0;
}

.mobile-price-included {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

.mobile-price-included i {
    margin-right: 6px;
}

.mobile-trip-action {
    padding: 12px;
    text-align: center;
}

.mobile-trip-detail-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #2fa0ef;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

.mobile-trip-detail-btn:hover {
    background-color: #1e8ed6;
    color: #fff;
    text-decoration: none;
}

/* Mobil Trip Detail Page Styles */
.TripDetailArea {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 10000; /* Yüksek z-index değeri */
    overflow-y: auto;
}

.mobile-trip-detail-images {
    margin-bottom: 20px;
}

.mobile-detail-single-img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-img {
    border-radius: 8px;
    /*height: 250px;*/
    object-fit: cover;
}

.mobile-trip-detail-header {
    margin-bottom: 15px;
}

.mobile-trip-detail-header h3 {
    font-size: 20px;
    color: #354862;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.mobile-trip-detail-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 28px;
    color: #2fa0ef;
    font-size: 16px;
    display: flex;
    justify-content: center;
    padding-top: 2px;
}

.info-content {
    flex: 1;
    font-size: 15px;
    color: #555;
}

.mobile-trip-detail-prices {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.mobile-trip-detail-prices h4 {
    font-size: 18px;
    color: #354862;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.price-label {
    color: #666;
}

.price-value {
    font-weight: 600;
    color: #333;
}

.included-price-badge {
    display: inline-block;
    padding: 8px 12px;
    background-color: #e8f7ee;
    color: #28a745;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.included-price-badge i {
    margin-right: 6px;
}

.mobile-trip-detail-description {
    margin-bottom: 20px;
}

.mobile-trip-detail-description h4,
.mobile-trip-detail-includes h4 {
    font-size: 18px;
    color: #354862;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.description-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.mobile-trip-detail-includes {
    margin-top: 25px;
}

.includes-section,
.excludes-section {
    margin-bottom: 20px;
}

.includes-section h5,
.excludes-section h5 {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.includes-section h5 i,
.excludes-section h5 i {
    margin-right: 8px;
    font-size: 18px;
}

.includes-content,
.excludes-content {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    padding-left: 26px;
}
