:root {
    /* Logo ile uyumlu renkler - logodaki canlı kırmızıdan türetildi */
    --terra: #D81E1E;          /* Logodaki canlı kırmızı */
    --terra-deep: #A50F0F;     /* Daha koyu kırmızı, hover/aksan */
    --sand: #FFF0E8;           /* Kırmızıya yakın yumuşak nude ton */
    --cream: #FBF7F2;           /* Açık zemin */
    --ink: #1A1410;             /* Logodaki siyah */
    --ink-soft: #5A4F45;
    --gold: #E89B6C;            /* Kırmızıyla uyumlu sıcak vurgu */
    --moss: #4A6B5F;            /* Tamamlayıcı yeşil aksan */
    --shadow-warm: rgba(216, 30, 30, 0.15);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }

  .display { font-family: 'Poppins', sans-serif; font-weight: 800; letter-spacing: -0.025em; }

  /* --- NAV --- */
  /* ============ TOP BAR (Kırmızı şerit) - Sadece masaüstü ============ */
  .topbar {
    background: var(--terra);
    color: white;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 101;
  }
  .topbar-left {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .topbar-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.95);
  }
  .topbar-info svg { width: 14px; height: 14px; }
  .topbar-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .topbar-right a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
    transition: opacity 0.2s;
  }
  .topbar-right a:hover { opacity: 0.75; }

  /* ============ NAV (Beyaz çubuk) ============ */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, padding 0.2s;
    gap: 16px;
  }
  nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .logo:hover { opacity: 0.85; }

  .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .logo-img-footer {
    height: 56px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 auto;
  }
  .nav-links > li > a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
  }
  .nav-links > li > a:hover { color: var(--terra); background: var(--sand); }
  .nav-links svg { width: 18px; height: 18px; }

  .nav-cta {
    padding: 10px 20px;
    background: var(--terra);
    color: white;
    border: 1.5px solid var(--terra);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .nav-cta:hover { background: var(--terra-deep); border-color: var(--terra-deep); }

  /* Hamburger butonu */
  .menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .menu-btn:hover { background: var(--cream); }
  .menu-btn svg { width: 26px; height: 26px; }

  /* ============ MOBİL TAM EKRAN MENÜ ============ */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu.open { transform: translateX(0); }
  body.mobile-menu-open { overflow: hidden; }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .mobile-menu-header .logo-img {
    height: 44px;
    filter: brightness(0) invert(1);
  }
  .mobile-menu-close {
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s;
  }
  .mobile-menu-close:hover { background: rgba(255,255,255,0.2); }
  .mobile-menu-close svg { width: 22px; height: 22px; }

  .mobile-menu-cta-row {
    padding: 20px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    gap: 10px;
  }
  .mobile-menu-cta-row a {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.2s;
  }
  .mobile-menu-cta-row a.primary {
    background: var(--terra);
    color: white;
  }
  .mobile-menu-cta-row a.primary:hover { background: var(--terra-deep); }
  .mobile-menu-cta-row a.secondary {
    background: rgba(255,255,255,0.1);
    color: white;
  }
  .mobile-menu-cta-row a.secondary:hover { background: rgba(255,255,255,0.18); }

  .mobile-menu-list {
    list-style: none;
    padding: 8px 5%;
    margin: 0;
    flex: 1;
  }
  .mobile-menu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu-list li:last-child { border-bottom: none; }
  .mobile-menu-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 4px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: padding 0.2s, color 0.2s;
  }
  .mobile-menu-list a:hover { padding-left: 12px; color: var(--gold); }
  .mobile-menu-list a.active { color: var(--gold); }
  .mobile-menu-list a .chevron {
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    transition: color 0.2s;
  }
  .mobile-menu-list a:hover .chevron { color: var(--gold); }
  .mobile-menu-list a .icon {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .mobile-menu-list a .icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
    opacity: 0.8;
  }

  .mobile-menu-footer {
    padding: 20px 5%;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    flex-shrink: 0;
  }
  .mobile-menu-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
  }
  .mobile-menu-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
  }
  .mobile-menu-footer a:hover { color: white; }
  .mobile-menu-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }
  .mobile-menu-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s;
  }
  .mobile-menu-footer-social a:hover { background: var(--terra); }
  .mobile-menu-footer-social svg { width: 18px; height: 18px; }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 78vh;
    background-image: linear-gradient(135deg, rgba(216,30,30,0.15), rgba(0,0,0,0.4)), url('assets/img/hero.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 5% 180px;
    overflow: visible;
  }

  .hero-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .hero-title-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    font-size: clamp(28px, 4vw, 48px);
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    animation: fadeUp 0.8s ease-out;
  }

  .hero-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.1s ease-out backwards;
  }
  .hero-toggle button {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
  }
  .hero-toggle .toggle-active {
    background: var(--terra);
    color: white;
    box-shadow: 0 6px 18px rgba(216,30,30,0.4);
  }
  .hero-toggle .toggle-inactive {
    background: rgba(255,255,255,0.18);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
  }
  .hero-toggle .toggle-inactive:hover { background: rgba(255,255,255,0.28); }
  .hero-toggle svg { width: 18px; height: 18px; }

  /* ============ ARAMA FORMU (slider bar) ============ */
  .search-bar {
    background: white;
    border-radius: 16px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 8px;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    animation: fadeUp 0.8s 0.2s ease-out backwards;
  }
  .search-field {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .search-field:hover { background: var(--sand); }
  .search-field:nth-child(3) { border-right: none; }

  .search-icon {
    width: 22px;
    height: 22px;
    color: var(--ink-soft);
    flex-shrink: 0;
  }
  .search-field-content { flex: 1; min-width: 0; }
  .search-field-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
  }
  .search-field-input {
    border: none;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink-soft);
    background: transparent;
    padding: 0;
  }
  .search-field-input::placeholder { color: #999; }

  .search-submit {
    padding: 18px 28px;
    background: var(--terra);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    height: 100%;
  }
  .search-submit:hover { background: var(--terra-deep); transform: translateY(-1px); }
  .search-submit svg { width: 18px; height: 18px; }

  /* --- SECTION GENERAL --- */
  section { padding: 100px 5%; position: relative; }

  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
  }
  .section-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terra);
    font-weight: 600;
    margin-bottom: 16px;
  }
  h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  h2 em { font-style: italic; color: var(--terra); font-weight: 300; }
  .section-sub { font-size: 17px; color: var(--ink-soft); }

  /* --- TURLAR GRID --- */
  .tours-section { background: var(--cream); }

  .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .tour-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid rgba(26, 20, 16, 0.04);
  }
  .tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(26, 20, 16, 0.12);
  }

  .tour-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .tour-card:hover .tour-img { background-size: 110%; transition: background-size 0.6s; }

  .tour-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
  }

  .tour-tag {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.95);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--terra-deep);
    z-index: 2;
  }

  .tour-duration {
    position: absolute;
    bottom: 16px; left: 16px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
  }

  .tour-info { padding: 24px; }
  .tour-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .tour-info p {
    color: var(--ink-soft);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .price-label { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }
  .price-value { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 500; color: var(--ink); }
  .tour-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sand);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    color: var(--terra-deep);
    font-size: 18px;
  }
  .tour-card:hover .tour-arrow { background: var(--terra); color: white; transform: rotate(-45deg); }

  /* --- ABOUT --- */
  .about-section {
    background: var(--ink);
    color: var(--cream);
    border-radius: 40px;
    margin: 0 4%;
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-section h2 { color: var(--cream); }
  .about-section h2 em { color: var(--gold); }
  .about-section .section-sub { color: rgba(250, 246, 238, 0.7); }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
  }
  .feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.15);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .feature p { font-size: 14px; color: rgba(250, 246, 238, 0.6); }

  .about-visual {
    height: 500px;
    border-radius: 24px;
    background-image: url('assets/img/about.svg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .about-visual::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--terra), transparent);
    border-radius: 24px;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.5;
  }

  /* --- REZERVASYON FORM --- */
  .form-section {
    background: linear-gradient(180deg, var(--cream), var(--sand));
    padding: 120px 5%;
  }

  .form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(151, 58, 40, 0.1);
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .form-group { display: flex; flex-direction: column; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid rgba(26, 20, 16, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    background: white;
    color: var(--ink);
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--terra);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%;
    margin-top: 16px;
    padding: 18px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
  }
  .form-submit:hover { background: var(--terra); }

  /* --- FOOTER --- */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 80px 5% 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 60px;
  }
  .footer-brand p { color: rgba(250,246,238,0.6); margin-top: 16px; max-width: 320px; font-size: 14px; }
  .footer-col h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: var(--gold);
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: rgba(250,246,238,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    border-top: 1px solid rgba(250,246,238,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(250,246,238,0.5);
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* --- ANIMATIONS --- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 968px) {
    .topbar { display: none; }

    nav { padding: 12px 5%; }
    .logo-img { height: 42px; }

    .hero { padding: 60px 5% 100px; min-height: auto; }
    .hero-title-main { font-size: 28px; }

    .search-bar {
      grid-template-columns: 1fr;
      gap: 4px;
      padding: 8px;
    }
    .search-field {
      border-right: none;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .search-field:last-of-type { border-bottom: none; }
    .search-submit { width: 100%; padding: 16px; justify-content: center; }

    .about-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 30px; margin: 0 4%; }
    .about-visual { height: 350px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-links { display: none; }
    .menu-btn { display: inline-flex; }
    .nav-cta { display: none; }
  }
  @media (max-width: 600px) {
    .hero-toggle { flex-wrap: wrap; }
    .hero-toggle button { flex: 1; min-width: 130px; justify-content: center; padding: 12px 18px; font-size: 13px; }

    .form-wrapper { padding: 30px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 70px 5%; }
    .features { grid-template-columns: 1fr; }
  }

/* ============ AKTİF MENÜ STİLLERİ ============ */
.topbar-right a.active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.nav-links > li > a.active {
  color: var(--terra);
  background: var(--sand);
}

/* ============ İÇ SAYFA HERO (banner) ============ */
.page-hero {
  padding: 120px 5% 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(216,30,30,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.page-hero .subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb a {
  color: var(--terra);
  text-decoration: none;
}
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ============ İÇ SAYFA İÇERİK BÖLÜMLERİ ============ */
.page-content {
  padding: 80px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 50px 0 20px;
  letter-spacing: -0.02em;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 30px 0 12px;
  color: var(--terra-deep);
}
.page-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.page-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

/* ============ FAQ (Akordeon) ============ */
.faq-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 28px;
  color: var(--terra);
  transition: transform 0.3s;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 20px;
}
.faq-answer p { color: var(--ink-soft); line-height: 1.7; }

/* ============ İLETİŞİM SAYFASI ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-info-card h3 { color: var(--terra-deep); margin-bottom: 16px; font-size: 20px; }
.contact-info-card .info-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-info-card .info-line:last-child { border-bottom: none; }
.contact-info-card .info-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra-deep);
  flex-shrink: 0;
}
.contact-info-card .info-icon svg { width: 18px; height: 18px; }
.contact-info-card a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-info-card a:hover { color: var(--terra); }

/* ============ KART GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.feature-card .num {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 36px;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 12px;
}
.feature-card h4 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.feature-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ============ CTA Kutusu ============ */
.cta-box {
  background: var(--ink);
  color: var(--cream);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  margin: 60px 0;
}
.cta-box h2 { color: var(--cream); margin-bottom: 12px; }
.cta-box p { color: rgba(250,246,238,0.7); max-width: 500px; margin: 0 auto 24px; }
.cta-box .btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--terra);
  color: white;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}
.cta-box .btn:hover { background: var(--terra-deep); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 90px 5% 40px; }
  .page-content { padding: 50px 5%; }
}

/* ============ TUR DETAY SAYFASI ============ */
.tur-detail-hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  margin-top: 0;
}
.tur-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}
.tur-detail-hero-content {
  position: absolute;
  bottom: 60px;
  left: 5%;
  right: 5%;
  z-index: 2;
  color: white;
  max-width: 800px;
}
.tur-detail-hero .breadcrumb {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-bottom: 16px;
}
.tur-detail-hero .breadcrumb a { color: white; text-decoration: none; }
.tur-detail-hero h1 {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: white;
}
.tur-detail-hero .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
}
.tur-detail-hero .meta-item { display: flex; align-items: center; gap: 8px; }
.tur-detail-hero .meta-item svg { width: 18px; height: 18px; }

.tur-detail-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
.tur-detail-main h2 {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 26px;
  margin: 40px 0 16px;
}
.tur-detail-main h2:first-child { margin-top: 0; }

.tur-program-item {
  background: white;
  border-left: 3px solid var(--terra);
  padding: 18px 22px;
  margin-bottom: 12px;
  border-radius: 0 12px 12px 0;
  display: flex;
  gap: 16px;
}
.tur-program-day {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 24px;
  color: var(--terra);
  min-width: 60px;
  line-height: 1;
}
.tur-program-content h4 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}
.tur-program-content p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.dahil-haric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.dahil-card, .haric-card {
  background: white;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.06);
}
.dahil-card h4 { color: #2D7A4A; }
.haric-card h4 { color: var(--terra-deep); }
.dahil-card ul, .haric-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.dahil-card li, .haric-card li {
  font-size: 14px;
  line-height: 1.7;
  padding: 4px 0 4px 28px;
  position: relative;
  color: var(--ink-soft);
}
.dahil-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D7A4A;
  font-weight: 700;
}
.haric-card li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
}

/* Sticky rezervasyon kutusu */
.rezervasyon-box {
  position: sticky;
  top: 110px;
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.rezervasyon-box .fiyat-label { font-size: 13px; color: var(--ink-soft); }
.rezervasyon-box .fiyat-ana {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 42px;
  color: var(--terra);
  line-height: 1;
  margin: 6px 0 4px;
}
.rezervasyon-box .fiyat-kisibasi { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
.rezervasyon-box .puan-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 20px;
}
.rezervasyon-box .puan-num { font-weight: 700; font-size: 16px; }
.rezervasyon-box .yorum-link { color: var(--ink-soft); font-size: 13px; margin-left: auto; }

.tarih-secim { margin-bottom: 18px; }
.tarih-secim label { display: block; font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.tarih-secim select { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px; font-family: inherit; font-size: 14px; background: white; }
.kisi-sayisi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.kisi-sayisi-row label { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; }
.kisi-sayisi-row input { padding: 10px 14px; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 8px; font-family: inherit; font-size: 14px; width: 100%; }

.rezervasyon-btn {
  width: 100%;
  padding: 16px;
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.rezervasyon-btn:hover { background: var(--terra-deep); }
.whatsapp-btn {
  width: 100%;
  padding: 14px;
  background: white;
  color: #25D366;
  border: 1.5px solid #25D366;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}
.whatsapp-btn:hover { background: #25D366; color: white; }

.tur-galeri {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  margin: 20px 0 40px;
  border-radius: 16px;
  overflow: hidden;
}
.tur-galeri-item {
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.tur-galeri-item:hover { opacity: 0.85; }
.tur-galeri-item:first-child {
  grid-row: span 2;
}

/* ============ LİSTE SAYFASI ============ */
.liste-section {
  padding: 60px 5%;
  background: var(--cream);
}
.liste-header {
  max-width: 1300px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.liste-header .sonuc-count {
  font-size: 14px;
  color: var(--ink-soft);
}
.liste-filters {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto 24px;
}
.filter-group { display: flex; align-items: center; gap: 8px; }
.filter-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-group select, .filter-group input {
  padding: 8px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  background: white;
}
.filter-clear {
  padding: 8px 14px;
  background: var(--sand);
  color: var(--terra-deep);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.liste-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.bos-sonuc {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}
.bos-sonuc h3 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--ink);
}

/* Otel/Villa kartı (tur kartından biraz farklı) */
.konaklama-card { /* tour-card stilini miras alır */ }
.konaklama-card .yildiz-row {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}
.konaklama-card .yildiz-row svg { width: 14px; height: 14px; }

/* ============ GİRİŞ & KAYIT SAYFASI ============ */
.auth-section {
  min-height: 80vh;
  padding: 80px 5% 60px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
}
.auth-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.auth-info h1 {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.auth-info p { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; line-height: 1.6; }
.auth-benefits { list-style: none; padding: 0; }
.auth-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink);
}
.auth-benefits .check {
  width: 26px; height: 26px;
  background: var(--terra);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
}

.auth-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.auth-tabs {
  display: flex;
  gap: 8px;
  background: var(--cream);
  padding: 6px;
  border-radius: 12px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
  color: var(--ink-soft);
}
.auth-tab.active { background: white; color: var(--ink); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.auth-form { display: none; }
.auth-form.active { display: block; animation: fadeUp 0.4s; }
.auth-form .form-row { margin-bottom: 16px; }
.auth-form label { display: block; font-size: 12px; color: var(--ink-soft); font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.auth-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}
.auth-form input:focus { outline: none; border-color: var(--terra); }
.auth-form .checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 16px 0 20px;
}
.auth-form .checkbox-row a { color: var(--terra); }
.auth-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.auth-form .submit-btn:hover { background: var(--terra-deep); }
.auth-form .forgot-link { display: block; text-align: right; font-size: 13px; color: var(--terra); margin-top: -8px; margin-bottom: 16px; text-decoration: none; }
.auth-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
  font-size: 13px;
  color: var(--ink-soft);
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(0,0,0,0.1);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.social-login {
  display: flex;
  gap: 12px;
}
.social-btn {
  flex: 1;
  padding: 12px;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--cream); }
.social-btn svg { width: 18px; height: 18px; }

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* ============ ÇEREZ POPUP ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 100px;
  max-width: 480px;
  background: white;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  z-index: 999;
  display: none;
  font-size: 14px;
  line-height: 1.6;
}
.cookie-banner.show { display: block; animation: fadeUp 0.5s; }
.cookie-banner h4 { font-family: 'Poppins'; font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.cookie-banner p { color: var(--ink-soft); margin-bottom: 14px; font-size: 13px; }
.cookie-banner a { color: var(--terra); font-weight: 600; }
.cookie-banner-buttons { display: flex; gap: 10px; }
.cookie-banner-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-accept { background: var(--terra); color: white; }
.cookie-reject { background: var(--cream); color: var(--ink-soft); }

/* ============ 404 SAYFASI ============ */
.error-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.error-section .error-num {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: clamp(80px, 15vw, 200px);
  line-height: 1;
  background: linear-gradient(135deg, var(--terra), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.error-section h1 {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.error-section p { font-size: 17px; color: var(--ink-soft); max-width: 500px; margin-bottom: 32px; }
.error-section .btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--terra);
  color: white;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 968px) {
  .tur-detail-grid { grid-template-columns: 1fr; }
  .rezervasyon-box { position: static; margin-top: 30px; }
  .dahil-haric-grid { grid-template-columns: 1fr; }
  .auth-container { grid-template-columns: 1fr; gap: 30px; }
  .tur-galeri { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 150px; }
  .tur-galeri-item:first-child { grid-column: span 2; grid-row: 1; }
}
@media (max-width: 600px) {
  .tur-detail-hero { height: 380px; }
  .tur-detail-hero-content { bottom: 30px; }
  .liste-filters { padding: 14px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .cookie-banner { left: 16px; right: 16px; }
}

/* ============ FİLTRE PANELİ (Sidebar) ============ */
.liste-page-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 5%;
  align-items: start;
}

.filter-sidebar {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}

.filter-sidebar-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--terra-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--sand);
}

.filter-group-block {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 14px 0;
}
.filter-group-block:last-child { border-bottom: none; }

.filter-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
}

.filter-group-header h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}

.filter-group-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s;
}

.filter-group-block.collapsed .filter-group-content { display: none; }
.filter-group-block.collapsed .filter-group-toggle { transform: rotate(45deg); }

.filter-group-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Arama kutusu */
.filter-search-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  background: white;
}
.filter-search-input:focus {
  outline: none;
  border-color: var(--terra);
}

/* Checkbox satırı */
.filter-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.filter-checkbox-row:hover { color: var(--terra-deep); }
.filter-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(0,0,0,0.2);
  cursor: pointer;
  accent-color: var(--terra);
  flex-shrink: 0;
}
.filter-checkbox-label {
  flex: 1;
  line-height: 1.3;
}
.filter-count-badge {
  background: #2a2a2a;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
  min-width: 26px;
  text-align: center;
}

/* Yıldız checkbox (★★★★★) */
.filter-stars {
  color: #FFB703;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Fiyat slider */
.filter-price-slider {
  margin: 14px 0 4px;
  position: relative;
  height: 6px;
  background: var(--sand);
  border-radius: 3px;
}
.filter-price-slider-fill {
  position: absolute;
  height: 100%;
  background: var(--terra);
  border-radius: 3px;
}
.filter-price-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  background: transparent;
  -webkit-appearance: none;
  pointer-events: none;
  top: 0;
  left: 0;
  margin: 0;
}
.filter-price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terra);
  cursor: pointer;
  pointer-events: auto;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.filter-price-slider input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terra);
  cursor: pointer;
  pointer-events: auto;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.filter-price-values {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  gap: 8px;
}
.filter-price-value-chip {
  background: #2a2a2a;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  flex: 1;
  text-align: center;
}

/* Filtre uygula butonu (mobilde görünür) */
.filter-apply-btn {
  display: none;
  width: 100%;
  padding: 14px;
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-reset-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
  border-radius: 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-reset-btn:hover {
  background: var(--terra);
  color: white;
}

/* Sonuç tarafı */
.liste-results-area {
  min-width: 0;
}

.liste-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.liste-results-count {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}
.liste-results-count strong {
  color: var(--terra);
}

.liste-results-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.liste-results-sort-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}
.liste-results-sort-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sort-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  background: white;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.sort-chip:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.sort-chip.active {
  background: var(--terra);
  border-color: var(--terra);
  color: white;
}
.sort-chip svg {
  width: 12px;
  height: 12px;
}

/* Mobil filtre tetikleyici */
.mobile-filter-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1001;
  background: var(--terra);
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(216, 30, 30, 0.4);
  gap: 8px;
  align-items: center;
}

@media (max-width: 968px) {
  .liste-page-grid {
    grid-template-columns: 1fr;
    padding: 20px 5%;
  }
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    max-width: 380px;
    height: 100vh;
    max-height: 100vh;
    z-index: 1001;
    border-radius: 0;
    transition: left 0.3s;
    box-shadow: 4px 0 30px rgba(0,0,0,0.2);
  }
  .filter-sidebar.open { left: 0; }
  .filter-apply-btn { display: block; }
  .mobile-filter-btn { display: flex; }

  .filter-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .filter-sidebar-overlay.open { display: block; }

  .liste-results-header {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .liste-results-sort {
    width: 100%;
  }
  .liste-results-sort-chips {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding: 0 16px;
  }
  .liste-results-sort-chips::-webkit-scrollbar { display: none; }
  .sort-chip {
    flex-shrink: 0;
  }
}

/* ============ ANA SAYFA SWIPE CAROUSEL (mobil) ============ */
@media (max-width: 768px) {
  .tours-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 5%;
    padding: 8px 5% 24px 5%;
    margin: 0 -5%;
    gap: 16px;
    scrollbar-width: none;
  }
  .tours-grid::-webkit-scrollbar { display: none; }

  .tours-grid .tour-card {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: start;
  }

  .tours-grid .tour-card:last-child {
    margin-right: 5%;
  }

  /* Carousel ipucu - aşağıda küçük noktalar veya kaydır metni */
  .tours-grid-hint {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 4px;
    opacity: 0.7;
  }
}

.tours-grid-hint { display: none; }

/* ============ STİCKY ARA BUTONU ============ */
.filtre-ara-sticky {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 14px 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 10;
    margin: 0 -20px;
}

.filtre-ara-btn {
    width: 100%;
    padding: 14px;
    background: var(--terra);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    text-decoration: none;
}

.filtre-ara-btn:hover {
    background: var(--terra-deep);
}

.filtre-ara-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobil filtre butonunu kaldır - sticky buton var */
@media (max-width: 968px) {
    .filter-apply-btn { display: none; }
}