/* ============================================
   TOUR DETAIL PAGE - CLEAN CSS
   ============================================ */

/* Box sizing fix */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: calc(80px + 1.5rem) 0 1.5rem;
    background: #F9FAFB;
}

/* Tour Header */
.tour-header {
    padding-bottom: 2rem;
    background: #F9FAFB;
}

.tour-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.tour-info-bar__title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.tour-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #E0F2FE;
    color: #007a92;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tour-info-bar__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tour-rating-badge,
.tour-location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: #0097b2;
    color: white;
}

/* Gallery */
.tour-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.tour-gallery__main {
    height: 500px;
    cursor: pointer;
    overflow: hidden;
}

.tour-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-gallery__badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 100px;
    font-weight: 600;
}

.tour-gallery__grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.tour-gallery__item {
    height: 238px;
    cursor: pointer;
    overflow: hidden;
}

.tour-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layout */
.tour-detail__layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 100%;
    overflow-x: hidden;
}

.tour-detail__content {
    min-width: 0;
    overflow-x: hidden;
}

/* Quick Info */
.quick-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #fff 0%, #F9FAFB 100%);
    border: 2px solid transparent;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quick-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E0F2FE 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-info-card:hover {
    border-color: #0097b2;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.quick-info-card:hover::before {
    opacity: 1;
}

.quick-info-card i {
    font-size: 2.5rem;
    color: #0097b2;
    background: linear-gradient(135deg, #0097b2, #007a92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.quick-info-card:hover i {
    transform: scale(1.1);
}

.quick-info-card__label {
    font-size: 0.8125rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.quick-info-card__value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    position: relative;
    z-index: 1;
}

/* Tabs */
.tour-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #fff 100%);
    border-radius: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #F3F4F6;
}

.tour-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #6B7280;
    font-weight: 500;
}

.tour-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0097b2 0%, #007a92 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-tab i,
.tour-tab span {
    position: relative;
    z-index: 1;
}

.tour-tab:hover {
    color: #0097b2;
    transform: translateY(-2px);
}

.tour-tab.active {
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.tour-tab.active::before {
    opacity: 1;
}

/* Tab Content */
.tour-tab-contents {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
}

.tour-tab-content {
    display: none;
}

.tour-tab-content.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
    position: relative;
    padding-bottom: 1rem;
}

.tour-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0097b2, #007a92);
    border-radius: 2px;
}

.tour-subsection-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #111827;
}

.tour-subsection-title i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    color: #007a92;
    border-radius: 0.5rem;
    font-size: 1.125rem;
}

.tour-description {
    margin-bottom: 2.5rem;
}

.tour-description p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #4B5563;
    font-size: 1.0625rem;
}

.tour-highlights,
.tour-suitable,
.tour-bring {
    margin-bottom: 2.5rem;
}

/* Highlights */
.highlights-list {
    display: grid;
    gap: 1rem;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #fff 100%);
    border-left: 4px solid #0097b2;
    border-radius: 0 0.75rem 0.75rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #E0F2FE, transparent);
    transition: width 0.3s ease;
}

.highlights-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.highlights-list li:hover::before {
    width: 100%;
}

.highlights-list i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0097b2, #007a92);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.highlights-list span {
    position: relative;
    z-index: 1;
    color: #374151;
    font-weight: 500;
}

/* Suitable Cards */
.suitable-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.suitable-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.75rem 1rem;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 1rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.suitable-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0097b2 0%, #007a92 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.suitable-card i {
    font-size: 2.5rem;
    color: #0097b2;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.suitable-card span {
    position: relative;
    z-index: 1;
    color: #374151;
    transition: color 0.4s ease;
}

.suitable-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #0097b2;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.25);
}

.suitable-card:hover::before {
    transform: translateY(0);
}

.suitable-card:hover i {
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.suitable-card:hover span {
    color: white;
}

/* Bring List */
.bring-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bring-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #F9FAFB, white);
    border-radius: 0.75rem;
    color: #374151;
    font-weight: 500;
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
}

.bring-list li:hover {
    border-color: #0097b2;
    background: linear-gradient(135deg, #E0F2FE, white);
    transform: translateX(5px);
}

.bring-list i {
    color: #0097b2;
    font-size: 1.125rem;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 3rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            #0097b2 0%,
            #007a92 50%,
            #0097b2 100%);
}

.itinerary-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    z-index: 2;
}

.itinerary-item::after {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0097b2, #007a92);
    border-radius: 50%;
    z-index: 3;
}

.itinerary-item__time {
    position: absolute;
    left: -4.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background: white;
    border-radius: 50%;
    font-weight: 700;
    color: #0097b2;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    z-index: 4;
    text-align: center;
    line-height: 1.2;
}

.itinerary-item__time i {
    font-size: 0.75rem;
    margin-bottom: 0.125rem;
}

.itinerary-item__content {
    flex: 1;
    padding: 1.75rem;
    background: linear-gradient(135deg, white 0%, #F9FAFB 100%);
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
}

.itinerary-item__content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #E5E7EB;
}

.itinerary-item:hover .itinerary-item__content {
    border-color: #0097b2;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
    transform: translateX(5px);
}

.itinerary-item__title {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: #111827;
    font-weight: 700;
}

.itinerary-item__description {
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1rem;
}

.itinerary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #F9FAFB, white);
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    font-size: 0.8125rem;
    color: #6B7280;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: #0097b2;
    background: linear-gradient(135deg, #E0F2FE, white);
    color: #0097b2;
}

.tag i {
    font-size: 0.875rem;
}

.tag-highlight {
    background: linear-gradient(135deg, #0097b2, #007a92);
    border-color: #0097b2;
    color: white;
}

.tag-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.itinerary-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #FFF4E6, #FFF9F0);
    border-left: 4px solid #F59E0B;
    border-radius: 0 0.75rem 0.75rem 0;
    margin-top: 1rem;
    font-size: 0.9375rem;
}

.itinerary-note i {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.itinerary-note-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #EFF6FF, #F9FAFB);
    border: 1px solid #DBEAFE;
    border-radius: 1rem;
    margin-top: 2rem;
}

.itinerary-note-box i {
    font-size: 1.5rem;
    color: #0097b2;
    margin-top: 0.25rem;
}

/* Included/Excluded */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.included-box {
    padding: 2rem;
    background: #F0FDF4;
    border: 2px solid #86EFAC;
    border-radius: 1rem;
}

.excluded-box {
    background: #FEF2F2;
    border-color: #FECACA;
}

.included-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Reviews */
.rating-summary {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.rating-summary__number {
    font-size: 4rem;
    font-weight: 900;
    color: #0097b2;
    text-align: center;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-bar__progress {
    flex: 1;
    height: 12px;
    background: #E5E7EB;
    border-radius: 100px;
}

.rating-bar__fill {
    height: 100%;
    background: #0097b2;
}

.review-card {
    padding: 2rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.faq-item__question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 1.5rem 1.5rem;
}

/* Related Tours */
.related-tours__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tour-card-small {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    overflow: hidden;
}

.tour-card-small__img {
    height: 180px;
}

.tour-card-small__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-small__content {
    padding: 1rem;
}

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 400px;
}

.booking-sidebar__card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    width: 100%;
    overflow: hidden;
}

.booking-sidebar__price {
    padding: 1.5rem;
    background: linear-gradient(135deg, #0097b2, #007a92);
    color: white;
}

.price-display__current .amount {
    font-size: 2.5rem;
    font-weight: 900;
}

.booking-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    box-sizing: border-box;
}

.counter-input {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    box-sizing: border-box;
}

.counter-btn {
    width: 40px;
    height: 40px;
    background: #0097b2;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-value {
    flex: 1;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
}

.booking-total {
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}

.booking-total__row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    word-wrap: break-word;
}

.booking-total__main {
    padding-top: 1rem;
    border-top: 2px solid #E5E7EB;
    font-weight: 700;
}

.trust-badges {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.trust-badge {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
}

.booking-contact {
    padding: 1.5rem;
}

.booking-contact__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #F3F4F6;
    border-radius: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-btn--whatsapp {
    background: #25D366;
    color: white;
}

/* Modals */
.gallery-modal,
.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active,
.review-modal.active {
    display: flex;
}

.gallery-modal__image {
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal__close,
.gallery-modal__nav {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal__close {
    top: 2rem;
    right: 2rem;
}

.gallery-modal__nav--prev {
    left: 2rem;
}

.gallery-modal__nav--next {
    right: 2rem;
}

.gallery-modal__counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 100px;
}

.review-modal__content {
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    box-sizing: border-box;
}

.review-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border-radius: 50%;
}

.star-rating i {
    font-size: 2rem;
    color: #E5E7EB;
    cursor: pointer;
}

.star-rating i.active {
    color: #F59E0B;
}

.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    font-family: inherit;
    box-sizing: border-box;
}

/* Sidebar Info Items */
.booking-sidebar__info {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.info-item i {
    color: #0097b2;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.info-item div {
    flex: 1;
}

.info-item__label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.info-item__value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.booking-sidebar__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 sütun */
    gap: 12px 16px;
    /* satır ve kolon arası boşluk */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}