/* MNO Tour Booking - Modern Minimal Design */

/* Reset & Base */
.mno-tour-container {
    max-width: 1440px;
    margin: 60px auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
}



/* Section Headings */
.content-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    padding: 0 0 16px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    letter-spacing: -0.01em;
}

.content-left h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ffa400;
}

/* ========================================
   BENTO GRID GALLERY - CLEAN VERSION
   ======================================== */

.masonry-gallery-section {
    margin-bottom: 80px;
}

.gallery-container {
    width: 100%;
    margin-bottom: 40px;
}

/* 4x2 Grid Layout - Desktop & Tablet */
@media (min-width: 481px) {
    .masonry-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 10px !important;
        height: 400px !important;
        overflow: visible !important;
    }
    
    /* Grid Positions */
    .masonry-item:nth-child(1) {
        grid-column: 1 / span 2 !important;
        grid-row: 1 / span 2 !important;
    }

    .masonry-item:nth-child(2) {
        grid-column: 3 / span 2 !important;
        grid-row: 1 / span 1 !important;
    }

    .masonry-item:nth-child(3) {
        grid-column: 3 !important;
        grid-row: 2 !important;
    }

    .masonry-item:nth-child(4) {
        grid-column: 4 !important;
        grid-row: 2 !important;
    }
}

/* Masonry Item Styles */
.masonry-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.masonry-item:hover {
    transform: scale(1.02);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery/Video Butonları - Sağ Alt Küçük Resim Üzerinde */
.gallery-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.gallery-btn, .video-btn {
    background: white;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-btn:hover, .video-btn:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ========================================
   GALLERY LIGHTBOX STYLES
   ======================================== */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1);
}

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Image Counter */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Main Content Layout */
.main-content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

/* Sol Kolon */
.content-left {
    min-width: 0;
}

/* Trip Info */
.trip-info-section {
    margin-bottom: 80px;
}

.trip-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    letter-spacing: -0.01em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.info-item:hover {
    background: #f3f4f6;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Overview */
.overview-section {
    margin-bottom: 80px;
}

.overview-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 32px 0;
    letter-spacing: -0.01em;
}

.overview-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.overview-content p {
    margin-bottom: 24px;
}

.overview-content p:last-child {
    margin-bottom: 0;
}

/* Tabs */
.content-tabs {
    margin-bottom: 40px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 16px 0;
    margin-right: 40px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.tab-btn:hover {
    color: #1a1a1a;
}

.tab-btn.active {
    color: #1a1a1a;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffa400;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Itinerary Section */
.itinerary-section {
    margin-bottom: 80px;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.itinerary-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.itinerary-header-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f9fafb;
    border-bottom: 1px solid transparent;
}

.itinerary-header-item:hover {
    background: #f3f4f6;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.day-number {
    background: #ffa400;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.day-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.expand-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray-color, #E1E4E5);
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: bold;
    color: var(--body-color, #6E7070);
    flex-shrink: 0;
    position: relative;
}

.expand-btn::before {
    content: '+';
    position: absolute;
    transition: all 0.2s ease;
}

.expand-btn:hover {
    border-color: #ffa400;
    color: #ffa400;
    background: #fef3e2;
}

.expand-btn.active::before {
    content: '−';
    transform: none;
}

.expand-btn.active {
    background: #ffa400;
    border-color: #ffa400;
    color: white;
}

.itinerary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.itinerary-content.active {
    max-height: 2000px !important;
    opacity: 1;
}

.day-content {
    padding: 35px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    border-top: 1px solid #f3f4f6;
    margin-top: 0;
}

/* What's Included Section */
.inclusions-section {
    margin-bottom: 80px;
}

.inclusions-wrapper {
    display: grid;
    gap: 24px;
}

.inclusions-subsection {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.inclusions-subsection h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
}

.inclusions-subsection h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffa400;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
    padding: 6px 0;
}

.inclusions-list.included li::before {
    content: '✓';
    color: #10b981;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.inclusions-list.excluded li::before {
    content: '✗';
    color: #ef4444;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ Section - Using Itinerary Structure */
.faq-section {
    margin-bottom: 80px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-header-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f9fafb;
    border-bottom: 1px solid transparent;
}

.faq-header-item:hover {
    background: #f3f4f6;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-number {
    background: #ffa400;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.faq-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--title-color, #113D48);
    margin: 0;
    line-height: 1.4;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

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

.faq-answer-content {
    padding: 20px 24px;
    color: var(--body-color, #6E7070);
    line-height: 1.6;
    border-top: 1px solid var(--gray-color, #E1E4E5);
}

/* Gallery Dots - Desktop'ta gizli */
.gallery-dots {
    display: none;
}

/* Sağ Kolon */
.content-right {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Booking Card */
.booking-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.book-now-btn {
    display: block;
    width: 100%;
    background: #ffa400;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 24px;
}

.book-now-btn:hover {
    background: #e6930a;
    color: white;
}

.whatsapp-section {
    margin-bottom: 24px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #10b981;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 12px;
}

.whatsapp-btn:hover {
    background: #059669;
    color: white;
}

.whatsapp-help-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
}

.contact-form-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.tour-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffa400;
    box-shadow: 0 0 0 3px rgba(255, 164, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background: #374151;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content-layout {
        grid-template-columns: 1fr 320px;
        gap: 60px;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mno-tour-container {
        margin: 40px auto;
        padding: 0 20px;
    }
    

    
    /* Tablet Gallery */
    .masonry-grid {
        height: 400px;
        gap: 8px;
    }
    
    .main-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-right {
        position: static;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .tab-nav {
        flex-wrap: wrap;
        gap: 0 32px;
    }
    
    .tab-btn {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    /* Tablet Section Headings */
    .content-left h2 {
        font-size: 1.875rem;
        margin: 0 0 36px 0;
    }
    
    /* Tablet Accordion Adjustments */
    .day-content,
    .faq-answer p {
        padding: 30px;
    }
    
    .inclusions-subsection {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .mno-tour-container {
        margin: 20px auto;
        padding: 0 16px;
    }
    

    
    /* Mobile Gallery - Tamamen Yeniden Tanımla */
    .mno-tour-container .masonry-gallery-section .gallery-container .masonry-grid {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        grid-template-areas: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        gap: 0 !important;
        height: 300px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .mno-tour-container .masonry-gallery-section .gallery-container .masonry-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .mno-tour-container .masonry-gallery-section .gallery-container .masonry-grid .masonry-item {
        flex: 0 0 100% !important;
        display: block !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        grid-column: unset !important;
        grid-row: unset !important;
        grid-area: unset !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .mno-tour-container .masonry-gallery-section .gallery-container .masonry-grid .masonry-item:nth-child(1),
    .mno-tour-container .masonry-gallery-section .gallery-container .masonry-grid .masonry-item:nth-child(2),
    .mno-tour-container .masonry-gallery-section .gallery-container .masonry-grid .masonry-item:nth-child(3),
    .mno-tour-container .masonry-gallery-section .gallery-container .masonry-grid .masonry-item:nth-child(4) {
        grid-column: unset !important;
        grid-row: unset !important;
        grid-area: unset !important;
        flex: 0 0 100% !important;
    }
    
    /* Gallery Navigation Dots - Sadece mobilde */
    .gallery-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
        padding: 0 20px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d1d5db;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .gallery-dot.active {
        background: #ffa400;
        transform: scale(1.2);
    }
    
    .info-item {
        padding: 16px;
    }
    
    /* Mobile Section Headings */
    .content-left h2 {
        font-size: 1.75rem;
        margin: 0 0 32px 0;
    }
    
    /* Mobile Accordion Adjustments */
    .itinerary-header-item,
    .faq-question {
        padding: 16px 20px;
    }
    
    .day-content,
    .faq-answer p {
        padding: 24px 20px;
    }
    
    .inclusions-subsection {
        padding: 20px;
    }
    
    .day-number {
        font-size: 0.7rem;
        padding: 4px 8px;
        min-width: 50px;
    }
    
    .day-title,
    .faq-question-text {
        font-size: 0.9rem;
    }
    
    .expand-btn,
    .faq-toggle {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .booking-card,
    .contact-form-card {
        padding: 24px;
    }
}

/* ========================================
   Cleaned up - Bootstrap accordion removed
   Using unified Itinerary structure for FAQ
   ======================================== */

/* Bootstrap accordion CSS completely removed - now using unified structure */