/* ===== HOME HERO ===== */
.home-hero {
    position: relative;
    min-height: 85vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/images/marokko-rundreise-banner.webp') center center / cover no-repeat;
    padding: 140px 24px 100px;
    overflow: hidden;
    text-align: center;
}
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,30,19,0.38), rgba(44,30,19,0.32));
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}
.hero-promo-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.hero-promo-highlight {
    font-weight: 700;
    color: #fbbf24;
}
.home-hero h1 {
    font-size: 3.8rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.home-hero h1 span { color: #fbbf24; }
.hero-subtitle {
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.home-hero .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.home-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.5rem;
    color: #fbbf24;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== TOURS SECTION ===== */
.tours-section {
    background: #fef3e2;
    padding: 70px 24px 80px;
}
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-section {
    background: #fffbf5;
    padding: 20px 24px 70px;
}
.home-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: #fef8f3;
    padding: 70px 24px 80px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: linear-gradient(165deg, #e8f0e6, #dce8da, #f0f6ef);
    padding: 70px 24px 80px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== 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-item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }
.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;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}
.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3436;
    line-height: 1.5;
}
.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.3rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.35s ease, background 0.35s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}
