/* ===== TOUR INDEX / LISTING PAGES ===== */

/* ── Reusable section scaffolding (kept) ── */
.ti-section {
    padding: var(--section-padding, 70px 24px 80px);
    background: var(--color-bg, #fffbf5);
}
.ti-section--warm {
    background: var(--color-bg-warm-light, #fff7ed);
}
.ti-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
}

/* ── Hero with animated blobs ── */
.hero {
    position: relative;
    min-height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3e2, #fde2c8);
    padding: 120px 24px 80px;
    overflow: hidden;
    text-align: center;
    margin-top: -76px;        /* pull hero up behind fixed header, same as .home-hero */
}
.hero-blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.hero-blob-1 {
    width: 450px;
    height: 400px;
    background: #e8734a;
    top: -80px;
    right: -100px;
    animation: blobFloat1 18s ease-in-out infinite;
}
.hero-blob-2 {
    width: 350px;
    height: 320px;
    background: #8fae8b;
    bottom: -60px;
    left: -80px;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: blobFloat2 22s ease-in-out infinite;
}
.hero-blob-3 {
    width: 200px;
    height: 200px;
    background: #fbbf24;
    top: 40%;
    left: 15%;
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
    animation: blobFloat3 15s ease-in-out infinite;
}
@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 20px) rotate(5deg); }
    66% { transform: translate(-20px, -10px) rotate(-3deg); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-25px, -15px) rotate(-4deg); }
    66% { transform: translate(15px, 25px) rotate(6deg); }
}
@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}
.hero-content h1 {
    font-size: 3.2rem;
    color: #2d3436;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-content h1 span {
    color: #f97316;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #4a4a4a;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Intro section (breadcrumb + 2-col layout) ── */
.intro-section {
    background: #fffbf5;
    padding: 50px 24px 60px;
}
.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.intro-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #3d3d3d;
}
.intro-text strong {
    color: #2d3436;
    font-weight: 600;
}

/* ── Inline breadcrumb ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 32px;
    flex-wrap: wrap;
    padding: 0;
    background: none;
}
.breadcrumb a {
    color: #f97316;
    transition: color 0.2s ease;
    font-weight: 500;
}
.breadcrumb a:hover {
    color: #c2693d;
}
.breadcrumb span.separator {
    color: #ccc;
}
.breadcrumb span.current {
    color: #2d3436;
    font-weight: 500;
}

/* ── Tours section wrapper ── */
.tours-section {
    background: #fef3e2;
    padding: 70px 24px 80px;
}
.tours-section .tour-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1100px;
}

/* ── Destinations section ── */
.destinations-section {
    background: #fffbf5;
    padding: 20px 24px 60px;
}
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ── Reviews section ── */
.reviews-section {
    background: #fef8f3;
    padding: 70px 24px 80px;
}

/* ── Why section ── */
.why-section {
    background: linear-gradient(165deg, #e8f0e6, #dce8da, #f0f6ef);
    padding: 70px 24px 80px;
}
.why-section .why-grid {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Why Grid (reuses .why-card from cards.css) ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── FAQ section ── */
.faq-section {
    background: #fffbf5;
    padding: 70px 24px 80px;
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── FAQ Accordion ── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 1rem;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #2d3436;
    gap: 16px;
    transition: color 0.25s ease;
}
.faq-question:hover {
    color: #f97316;
}
.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3e2, #fde2c8);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* ── Content Links ── */
.content-link {
    color: #f97316;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(249, 115, 22, 0.3);
    text-underline-offset: 2px;
    transition: all 0.25s ease;
}
.content-link:hover {
    color: #ea580c;
    text-decoration-color: #ea580c;
}

/* ── Categories section (main /rundreisen/ page) ── */
.categories-section {
    background: #fffbf5;
    padding: 70px 24px 80px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 1.25rem;
    padding: 40px 28px 32px;
    text-decoration: none;
    color: #2d3436;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}
.category-card .category-days {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
}
.category-card .category-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.category-card .category-desc {
    font-size: 0.92rem;
    color: #777;
    line-height: 1.6;
    margin-top: 14px;
}
.category-card .category-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3e2, #fde2c8);
    color: #f97316;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.category-card:hover .category-arrow {
    background: #f97316;
    color: #fff;
    transform: translateX(4px);
}

/* ===== RESPONSIVE — TOUR INDEX ===== */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2rem; }
    .category-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
    .ti-section { padding: 50px 16px 60px; }
    .faq-question { padding: 16px 18px; font-size: 0.92rem; }
    .faq-answer p { padding: 0 18px 16px; }
    .section-title { font-size: 1.7rem; }
    .categories-section { padding: 50px 16px 60px; }
}
