/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2B2E34;
    background: #E5E7EB;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 0;
    transition: all .35s ease;
}

.site-header:not(.header-solid) {
    background: transparent;
    color: #fff;
}

.site-header.header-solid {
    background: rgba(255, 255, 255, .97);
    color: #2B2E34;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.5px;
    color: #4FA3D1;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 600;
    padding: .25rem 0;
    position: relative;
    transition: color .25s;
}

.nav-links a:hover {
    color: #4FA3D1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4FA3D1;
    transition: width .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .85rem;
    font-weight: 700;
    transition: color .25s;
    padding: .4rem .6rem;
    border-radius: .375rem;
    color: inherit;
}

.lang-btn:hover {
    color: #4FA3D1;
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: .5rem;
    width: 130px;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    overflow: hidden;
    z-index: 60;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: .6rem 1rem;
    font-size: .85rem;
    color: #374151;
    transition: background .2s;
}

.lang-dropdown a:hover {
    background: #f3f4f6;
}

.lang-dropdown a.active {
    background: #EFF6FF;
    color: #1D4ED8;
    font-weight: 600;
}

/* Mobile controls */
.nav-mobile-controls {
    display: none;
    align-items: center;
    gap: .5rem;
}

.mobile-menu-btn {
    padding: .5rem;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(4px);
    z-index: 100;
    animation: fadeIn .25s;
}

.mobile-overlay.show {
    display: flex;
    justify-content: flex-end;
}

.mobile-menu {
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    padding: 2rem;
    position: relative;
    animation: slideInRight .3s ease;
}

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #6B7280;
    padding: .5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3rem;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2B2E34;
    padding: .75rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color .2s;
}

.mobile-nav a:hover {
    color: #4FA3D1;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-mobile-controls {
        display: flex;
    }
}

/* ─── HERO SLIDER ─── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .55) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    color: #fff;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.hero-content h1 .accent {
    color: #4FA3D1;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    opacity: .9;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background: #4FA3D1;
    color: #fff;
    padding: .875rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: .95rem;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(79, 163, 209, .4);
}

.hero-buttons .btn-primary:hover {
    background: #3d8eb9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 163, 209, .5);
}

.hero-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    padding: .875rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: .95rem;
    transition: all .3s;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
}

/* Slider Controls */
.hero-arrows {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
}

.hero-arrow {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .3s;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .4);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: .5rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .3s;
    border: none;
}

.hero-dot.active {
    background: #4FA3D1;
    width: 32px;
    border-radius: 6px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255, 255, 255, .7);
    animation: scrollBounce 2s infinite;
}

.hero-scroll span {
    font-size: .7rem;
    letter-spacing: 3px;
    font-weight: 700;
}

/* ─── VIDEO HERO ─── */
.video-hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.video-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.hero-video {
    position: absolute;
    z-index: 0;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    opacity: 0.9;
}

.video-hero-content {
    z-index: 20;
    padding: 0 1rem;
}

.video-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.video-hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 2.5rem;
    color: #f3f4f6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.video-hero-scroll {
    bottom: 3rem;
    z-index: 20;
    gap: 0.75rem;
    animation: scrollBounce 2s infinite ease-in-out;
}

.video-hero-scroll .scroll-line {
    height: 80px;
    width: 1.5px;
    background: linear-gradient(180deg, transparent, #9ca3af, transparent);
}

.video-hero-scroll span {
    color: #9ca3af;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px;
    background: linear-gradient(0deg, rgba(31, 41, 55, 0.5) 0%, transparent 100%);
    z-index: 10;
}

/* ─── FEATURES ─── */
.features-section {
    padding: 3rem 0;
    background: #E5E7EB;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    transition: all .3s;
    background: #fff;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #4FA3D1, #7EC8E3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.feature-card p {
    font-size: .9rem;
    color: #6B7280;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-scroll-section {
    padding: 1rem 0 4rem;
    background: #E5E7EB;
    overflow: hidden;
}

.gallery-scroll-title {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-scroll-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2B2E34;
}

.gallery-scroll-wrapper {
    position: relative;
    cursor: grab;
}

.gallery-scroll-wrapper:active {
    cursor: grabbing;
}

.gallery-scroll-track {
    display: flex;
    gap: 1rem;
    animation: scrollAnim 40s linear infinite;
    width: max-content;
}

.gallery-scroll-track:hover {
    animation-play-state: paused;
}

.gallery-scroll-item {
    flex-shrink: 0;
    width: 300px;
    height: 320px;
    border-radius: .75rem;
    overflow: hidden;
}

.gallery-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-scroll-item:hover img {
    transform: scale(1.05);
}

/* ─── TOURS GRID ─── */
.tours-section {
    padding: 1rem 0 5rem;
    background: #E5E7EB;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2B2E34;
    margin-bottom: .75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.tour-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    transition: all .4s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.tour-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.08);
}

.tour-card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4FA3D1;
    color: #fff;
    padding: .35rem .85rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: .85rem;
}

.tour-card-body {
    padding: 1.25rem;
}

.tour-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.tour-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: .8rem;
    color: #6B7280;
}

.tour-card-meta span {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.tour-card-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #4FA3D1;
    font-weight: 600;
    font-size: .9rem;
    transition: all .25s;
}

.tour-card-link:hover {
    gap: .6rem;
}

.brand-story {
    padding: 5rem 0;
    background: #E5E7EB;
}

.brand-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.brand-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.brand-img-large {
    grid-column: 1 / -1;
    border-radius: 1rem;
    overflow: hidden;
    height: 420px;
    position: relative;
}

.brand-img-small {
    border-radius: .75rem;
    overflow: hidden;
    height: 260px;
    position: relative;
}

.brand-img-large img,
.brand-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.brand-img-large:hover img,
.brand-img-small:hover img {
    transform: scale(1.05);
}

.brand-img-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    pointer-events: none;
}

.brand-text-header {
    position: relative;
    margin-bottom: 2rem;
}

.brand-text-header-bg {
    position: absolute;
    top: -2rem;
    left: 0;
    font-size: 6rem;
    font-weight: 900;
    color: #4FA3D1;
    opacity: 0.15;
    line-height: 1;
    z-index: 0;
    font-family: serif;
}


.brand-text h2 {
    position: relative;
    z-index: 1;
    font-size: 2.25rem;
    font-weight: 900;
    color: #2B2E34;
    margin-bottom: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.brand-text .subtitle {
    color: #4FA3D1;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #4FA3D1;
    line-height: 1.6;
}

.brand-text p {
    color: #4B5563;
    font-size: .95rem;
    margin-bottom: 0.75rem;
    line-height: 1.55;
}

.brand-text p:nth-last-of-type(2) {
    font-weight: 700;
    color: #2B2E34;
    font-size: 1rem;
}

.brand-text .slogan {
    color: #4FA3D1;
    font-weight: bold;
    font-style: italic;
    font-size: 1.25rem;
    margin-top: 2.5rem;
    font-family: Georgia, serif;
}

@media (max-width: 768px) {
    .brand-inner {
        grid-template-columns: 1fr;
    }
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
    padding: 5rem 0;
    background: #E5E7EB;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.testimonials-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.testimonials-header p {
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.testimonials-header .btn-comment {
    background: #4FA3D1;
    color: #fff;
    padding: .6rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: .85rem;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.testimonials-header .btn-comment:hover {
    background: #3d8eb9;
    transform: translateY(-2px);
}

/* Sonsuz kaydırma wrapper */
.testimonials-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-scroll-track {
    display: flex;
    gap: 1.5rem;
    animation: testimonialScroll 30s linear infinite;
    width: max-content;
}

.testimonials-scroll-wrapper:hover .testimonials-scroll-track {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 420px;
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    position: relative;
}

.tcard-quote-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2.5rem;
    color: #D1D5DB;
    line-height: 1;
}

.tcard-quote-right {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: #D1D5DB;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: .15rem;
    margin-bottom: .75rem;
    margin-top: 1.5rem;
}

.testimonial-star {
    color: #FBBF24;
}

.testimonial-comment {
    color: #374151;
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    min-height: 60px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: .95rem;
    color: #2B2E34;
}

.testimonial-role {
    font-size: .75rem;
    color: #4FA3D1;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Testimonial Form Modal */
.test-form-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(4px);
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.test-form-modal.show {
    display: flex;
}

.test-form-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
    max-height: 90vh;
    overflow-y: auto;
}

.test-form-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid #D1D5DB;
    border-radius: .5rem;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4FA3D1;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-stars-input {
    display: flex;
    gap: .25rem;
}

.form-stars-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #D1D5DB;
    transition: color .2s;
}

.form-stars-input input:checked~label {
    color: #D1D5DB;
}

.form-stars-input label:hover,
.form-stars-input label:hover~label {
    color: #FBBF24;
}

.btn-submit {
    width: 100%;
    padding: .875rem;
    background: #4FA3D1;
    color: #fff;
    font-weight: 700;
    border-radius: .5rem;
    font-size: .95rem;
    transition: all .3s;
}

.btn-submit:hover {
    background: #3d8eb9;
}

@media (max-width: 640px) {
    .testimonial-card {
        width: 280px;
    }
}

/* ─── TOUR DETAIL PAGE ─── */
.tour-detail {
    padding-top: 80px;
}

.tour-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.tour-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 50%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.tour-hero-text h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: .5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.tour-hero-text .meta-badges {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.tour-hero-text .meta-badge {
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: .4rem 1rem;
    border-radius: 9999px;
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.tour-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
}

.tour-main {}

.tour-desc {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tour-desc p+p {
    margin-top: 1rem;
}

/* Highlights */
.highlights-section {
    background: #f0f9ff;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.highlights-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2B2E34;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.highlights-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .95rem;
    color: #374151;
}

.highlight-check {
    color: #10B981;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* Program */
.program-section {
    margin-bottom: 2.5rem;
}

.program-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2B2E34;
    margin-bottom: 1.5rem;
}

.program-timeline {
    position: relative;
    padding-left: 2rem;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: .5rem;
    top: .5rem;
    bottom: .5rem;
    width: 2px;
    background: linear-gradient(180deg, #4FA3D1, #7EC8E3);
}

.program-step {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.program-step::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: .35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4FA3D1;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #4FA3D1;
}

.program-step .time {
    font-size: .85rem;
    color: #4FA3D1;
    font-weight: 700;
    margin-bottom: .15rem;
}

.program-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.program-step p {
    font-size: .9rem;
    color: #6B7280;
}

/* FAQ */
.faq-section {
    margin-bottom: 2.5rem;
}

.faq-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2B2E34;
    margin-bottom: 1.25rem;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: .75rem;
    margin-bottom: .75rem;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    font-size: .95rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background .2s;
}

.faq-q:hover {
    background: #f9fafb;
}

.faq-a {
    padding: 0 1.25rem 1rem;
    font-size: .9rem;
    color: #6B7280;
    line-height: 1.6;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-q .chevron {
    transform: rotate(180deg);
}

/* Sidebar */
.tour-sidebar {}

.book-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    position: sticky;
    top: 100px;
}

.book-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.book-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f9ff;
    border-radius: .75rem;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.book-price .label {
    font-size: .85rem;
    color: #6B7280;
}

.book-price .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4FA3D1;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.form-group label {
    font-size: .75rem;
    font-weight: 600;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: .5rem .75rem;
    border: 1px solid #E5E7EB;
    border-radius: .4rem;
    font-size: .85rem;
    color: #111827;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4FA3D1;
    box-shadow: 0 0 0 3px rgba(79, 163, 209, .1);
}

.number-input-wrap {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border: 1px solid #E5E7EB;
    border-radius: .5rem;
    overflow: hidden;
    height: 38px;
}

.number-btn {
    width: 36px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.number-btn:hover {
    background: rgba(0, 0, 0, .05);
}

.number-input-wrap input {
    flex: 1;
    width: 30px !important;
    text-align: center;
    border: none !important;
    background: #fff !important;
    height: 100% !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-weight: 700 !important;
    font-size: .95rem !important;
    pointer-events: none;
    box-shadow: none !important;
}

/* Chrome, Safari, Edge, Opera - spinleri kaldır */
.number-input-wrap input::-webkit-outer-spin-button,
.number-input-wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Firefox */
.number-input-wrap input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.form-row {
    display: grid;
    gap: .75rem;
}

.form-row-half {
    grid-template-columns: 1fr 1fr;
}

.book-submit-btn {
    width: 100%;
    padding: .75rem;
    background: #4FA3D1;
    color: #fff;
    border: none;
    border-radius: .5rem;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s;
    margin-top: .25rem;
}

.book-submit-btn:hover:not(:disabled) {
    background: #3d8eb9;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 163, 209, .2);
}

.book-submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.booking-message {
    padding: .75rem;
    border-radius: .4rem;
    font-size: .85rem;
    text-align: center;
}

.booking-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.booking-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.book-contact-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .75rem;
    color: #25D366;
    font-size: .85rem;
    font-weight: 600;
    transition: opacity .2s;
}

.book-contact-wa:hover {
    opacity: .8;
}

.book-contact-wa svg {
    width: 18px;
    height: 18px;
    stroke: #25D366;
}

@media (max-width: 768px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .highlights-list {
        grid-template-columns: 1fr;
    }
}

/* ─── CONTACT PAGE ─── */
.contact-section {
    padding: 6rem 0 4rem;
    background: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2B2E34;
    margin-bottom: .75rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.contact-card {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all .3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #4FA3D1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.contact-card p {
    font-size: .85rem;
    color: #6B7280;
    margin-bottom: .5rem;
}

.contact-card a {
    color: #4FA3D1;
    font-weight: 600;
    font-size: .9rem;
}

.contact-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form .full {
    grid-column: 1 / -1;
}

.kvkk-check {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .85rem;
    color: #6B7280;
}

.kvkk-check input[type="checkbox"] {
    margin-top: .2rem;
    accent-color: #4FA3D1;
}

.kvkk-check a {
    color: #4FA3D1;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* ─── GALLERY PAGE ─── */
.gallery-page {
    padding: 6rem 0 4rem;
    background: #f9fafb;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    padding: 0 1rem;
}

.gallery-item {
    border-radius: .75rem;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: .5rem;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 201;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(255, 255, 255, .15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background .2s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, .3);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* ─── LEGAL PAGES ─── */
.legal-page {
    padding: 6rem 0 4rem;
    background: #fff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #2B2E34;
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4FA3D1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #4B5563;
}

.legal-content li {
    margin-bottom: .5rem;
    line-height: 1.6;
}

/* ─── 404 PAGE ─── */
.not-found-page {
    min-height: 100vh;
    background: #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
}

.nf-number {
    font-size: 10rem;
    font-weight: 900;
    color: #D1D5DB;
    line-height: 1;
    position: relative;
}

.nf-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nf-icon svg {
    width: 5rem;
    height: 5rem;
    color: #4FA3D1;
    opacity: .8;
}

.not-found-page h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2B2E34;
    margin-bottom: .75rem;
}

.not-found-page p {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.nf-back-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    background: #4FA3D1;
    color: #fff;
    border-radius: 9999px;
    font-weight: 700;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(79, 163, 209, .4);
}

.nf-back-btn:hover {
    background: #3d8eb9;
    transform: translateY(-2px);
}

.nf-suggestions {
    margin-top: 3rem;
    max-width: 1200px;
    width: 100%;
}

.nf-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.nf-divider-line {
    height: 1px;
    width: 6rem;
    background: #D1D5DB;
}

.nf-divider h3 {
    font-size: .9rem;
    font-weight: 700;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ─── SERVICES PAGE ─── */
.services-section {
    padding: 6rem 0 4rem;
    background: #E5E7EB;
}

/* ─── FOOTER ─── */
.site-footer {
    background: #1a1d23;
    color: #fff;
    padding: 4rem 0 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #4FA3D1;
}

.footer-desc {
    color: #a3adcc;
    font-size: .9rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
    padding-bottom: .5rem;
    border-bottom: 2px solid #4FA3D1;
    display: inline-block;
}

.footer-map {
    border-radius: .75rem;
    overflow: hidden;
    height: 200px;
    position: relative;
}

.footer-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
}

.footer-contact-list li a {
    color: #a3adcc;
    font-size: .9rem;
    transition: color .2s;
}

.footer-contact-list li a:hover {
    color: #4FA3D1;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3adcc;
    transition: all .3s;
}

.social-link:hover {
    background: #4FA3D1;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-bottom p {
    font-size: .85rem;
    color: #a3adcc;
}

.footer-bottom span {
    font-size: .8rem;
    color: #6B7280;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── WHATSAPP & WECHAT BUTTONS ─── */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 60;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: all .3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(12deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

.whatsapp-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    opacity: .75;
    animation: ping 2s infinite;
    z-index: -1;
}

.wechat-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 60;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #07C160;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(7, 193, 96, .4);
    transition: all .3s;
}

.wechat-btn:hover {
    transform: scale(1.1) rotate(12deg);
}

.wechat-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #07C160;
    opacity: .75;
    animation: ping 2s infinite;
    z-index: -1;
}

/* ─── MODALS ─── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(4px);
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-overlay.show {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #9CA3AF;
    padding: .25rem;
}

.wechat-modal-content {
    text-align: center;
}

.wechat-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(7, 193, 96, .1);
    color: #07C160;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.wechat-modal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.wechat-modal-content>p {
    font-size: .9rem;
    color: #6B7280;
    margin-bottom: 1.25rem;
}

.wechat-qr {
    width: 192px;
    height: 192px;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(7, 193, 96, .2);
    border-radius: .5rem;
    overflow: hidden;
}

.wechat-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wechat-id-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    border: 1px solid #E5E7EB;
    border-radius: .5rem;
    padding: .75rem 1rem;
}

.wechat-id-row span {
    font-size: .9rem;
    font-weight: 600;
    color: #374151;
}

.wechat-id-row button {
    padding: .35rem;
    border-radius: .375rem;
    transition: background .2s;
}

.wechat-id-row button:hover {
    background: #E5E7EB;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: .75;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .8s ease forwards;
}

/* ─── PRINT ─── */
@media print {

    .site-header,
    .site-footer,
    .whatsapp-btn,
    .wechat-btn {
        display: none !important;
    }
}