/* ═══════════════════════════════════════════════════════════
   Bible Tours Page
   ═══════════════════════════════════════════════════════════ */

.main-content { padding-top: 0; }

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    --bt-primary:  #1a365d;
    --bt-accent:   #007cba;
    --bt-accent-d: #005a87;
    --bt-gold:     #d4a84b;
    --bt-bg:       #f8f9fc;
    --bt-card:     #ffffff;
    --bt-text:     #334155;
    --bt-text-2:   #64748b;
    --bt-border:   #e2e8f0;
    --bt-radius:   12px;
    --bt-shadow:   0 4px 24px rgba(0,0,0,.06);
}

/* ── Hero ──────────────────────────────────────────────────── */
.bt-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--bt-primary);
    color: #fff;
    overflow: hidden;
}
.bt-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0,124,186,.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,168,75,.15) 0%, transparent 50%);
    pointer-events: none;
}
.bt-hero-inner {
    position: relative;
    max-width: 720px;
}
.bt-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bt-gold);
    margin-bottom: 20px;
}
.bt-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.bt-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    margin-bottom: 32px;
    max-width: 600px;
}

/* Hero Actions */
.bt-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero Stats */
.bt-hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.bt-stat { text-align: left; }
.bt-stat-val {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}
.bt-stat-lbl {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── Buttons ───────────────────────────────────────────────── */
.bt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all .2s ease;
    cursor: pointer;
    border: none;
}
.bt-btn-primary {
    background: var(--bt-accent);
    color: #fff;
}
.bt-btn-primary:hover {
    background: var(--bt-accent-d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,124,186,.35);
}
.bt-btn-secondary {
    background: var(--bt-primary);
    color: #fff;
    border: 1px solid transparent;
}
.bt-btn-secondary:hover {
    background: #0f2744;
    color: #fff;
    transform: translateY(-2px);
}
.bt-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}
.bt-btn-outline:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.bt-btn-white {
    background: #fff;
    color: var(--bt-primary);
}
.bt-btn-white:hover {
    background: #f0f4f8;
    color: var(--bt-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.bt-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
}
.bt-btn-ghost:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}
.bt-btn-block { width: 100%; justify-content: center; }

/* ── How It Works ──────────────────────────────────────────── */
.bt-steps {
    padding: 64px 0;
    background: #fff;
    border-bottom: 1px solid var(--bt-border);
}
.bt-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.bt-step {
    text-align: center;
    padding: 0 16px;
}
.bt-step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--bt-accent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bt-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bt-primary);
    margin-bottom: 8px;
}
.bt-step p {
    font-size: .9rem;
    color: var(--bt-text-2);
    line-height: 1.6;
    margin: 0;
}

/* ── Section Header ────────────────────────────────────────── */
.bt-section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.bt-section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bt-accent);
    margin-bottom: 10px;
}
.bt-section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bt-primary);
    margin-bottom: 14px;
    line-height: 1.2;
}
.bt-section-head p {
    font-size: 1.05rem;
    color: var(--bt-text-2);
    line-height: 1.6;
    margin: 0;
}

/* ── Theme Cards ───────────────────────────────────────────── */
.bt-themes {
    padding: 80px 0;
    background: var(--bt-bg);
}

/* ── Tour cards (inspired by thenightcoders design) ──────── */
.bt-tour-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.bt-tour-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    overflow: hidden;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.bt-tour-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alternating layout */
.bt-tour-item.reverse .bt-tour-image { order: 2; }
.bt-tour-item.reverse .bt-tour-content { order: 1; }

.bt-tour-image {
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}
.bt-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.bt-tour-item:hover .bt-tour-image img {
    transform: scale(1.03);
}

.bt-tour-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bt-tour-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.25;
}

.bt-tour-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bt-tour-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.bt-tour-duration {
    font-size: 1rem;
    color: #333;
}
.bt-tour-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bt-accent);
}

.bt-book-btn {
    display: block;
    padding: 15px 30px;
    background: var(--bt-accent);
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background .25s ease, transform .2s ease;
}
.bt-book-btn:hover {
    background: var(--bt-accent-d);
    transform: translateY(-2px);
    color: #fff;
}

/* No-image fallback: single column card */
.bt-tour-item .bt-tour-content:only-child {
    grid-column: 1 / -1;
    max-width: 680px;
    margin: 0 auto;
}

/* ── Legacy theme classes (kept for scroll-reveal JS) ────── */
.bt-theme-card { /* alias for JS observer */ }
.bt-theme-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--bt-accent);
    text-decoration: none;
    transition: gap .2s ease, color .2s ease;
}
.bt-theme-link:hover {
    color: var(--bt-accent-d);
    gap: 10px;
}

/* ── Pricing ───────────────────────────────────────────────── */
.bt-pricing {
    padding: 80px 0;
    background: #fff;
}
.bt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}
.bt-price-card {
    position: relative;
    background: var(--bt-card);
    border-radius: var(--bt-radius);
    padding: 36px 28px 28px;
    border: 1px solid var(--bt-border);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.bt-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bt-shadow);
}
.bt-price-featured {
    border-color: var(--bt-accent);
    box-shadow: 0 8px 32px rgba(0,124,186,.12);
}
.bt-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bt-accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.bt-price-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--bt-primary);
    margin-bottom: 16px;
}
.bt-price-amount {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.bt-price-currency {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bt-accent);
}
.bt-price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bt-primary);
    line-height: 1;
}
.bt-price-unit {
    font-size: .85rem;
    color: var(--bt-text-2);
    margin-left: 2px;
}
.bt-price-desc {
    font-size: .88rem;
    color: var(--bt-text-2);
    line-height: 1.5;
    margin-bottom: 20px;
}
.bt-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.bt-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: .88rem;
    color: var(--bt-text);
    border-bottom: 1px solid var(--bt-border);
}
.bt-price-features li:last-child { border-bottom: none; }
.bt-price-features i {
    width: 16px;
    text-align: center;
    color: var(--bt-accent);
    font-size: .82rem;
}

/* ── CTA ───────────────────────────────────────────────────── */
.bt-cta {
    padding: 80px 0;
    background: var(--bt-primary);
    color: #fff;
}
.bt-cta-inner {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}
.bt-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.bt-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    margin-bottom: 32px;
}
.bt-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Empty State ───────────────────────────────────────────── */
.bt-empty {
    text-align: center;
    padding: 64px 20px;
    background: var(--bt-card);
    border-radius: var(--bt-radius);
    border: 1px dashed var(--bt-border);
}
.bt-empty > i {
    font-size: 2.4rem;
    color: var(--bt-text-2);
    opacity: .4;
    margin-bottom: 16px;
}
.bt-empty h3 {
    font-size: 1.3rem;
    color: var(--bt-primary);
    margin-bottom: 8px;
}
.bt-empty p {
    font-size: .95rem;
    color: var(--bt-text-2);
    margin-bottom: 24px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .bt-hero h1 { font-size: 2.5rem; }
    .bt-section-head h2 { font-size: 1.9rem; }
    .bt-cta h2 { font-size: 1.9rem; }
}

@media (max-width: 768px) {
    .bt-hero { padding: 120px 0 60px; }
    .bt-hero h1 { font-size: 2rem; }
    .bt-hero p { font-size: 1rem; }
    .bt-hero-stats { gap: 24px; flex-wrap: wrap; }

    .bt-steps { padding: 48px 0; }
    .bt-steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
        margin: 0 auto;
    }

    .bt-themes, .bt-pricing, .bt-cta { padding: 60px 0; }

    .bt-tour-item {
        grid-template-columns: 1fr;
    }
    .bt-tour-item.reverse .bt-tour-image { order: 0; }
    .bt-tour-item.reverse .bt-tour-content { order: 0; }
    .bt-tour-image { min-height: 280px; }
    .bt-tour-content { padding: 28px 24px; }
    .bt-tour-name { font-size: 1.6rem; }

    .bt-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .bt-section-head h2 { font-size: 1.7rem; }
    .bt-cta h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
    .bt-hero { padding: 100px 16px 48px; }
    .bt-hero h1 { font-size: 1.7rem; }
    .bt-hero p { font-size: .92rem; }
    .bt-hero-actions { flex-direction: column; }
    .bt-hero-actions .bt-btn { width: 100%; justify-content: center; }
    .bt-hero-stats { flex-direction: column; gap: 16px; }

    .bt-tour-image { min-height: 220px; }
    .bt-tour-content { padding: 24px 20px; }
    .bt-tour-name { font-size: 1.4rem; }
    .bt-price-card { padding: 28px 20px 20px; }
    .bt-price-value { font-size: 2.5rem; }

    .bt-cta-actions { flex-direction: column; }
    .bt-cta-actions .bt-btn { width: 100%; justify-content: center; }
}


/* ── Custom Tour CTA Section ────────────────────────────────── */

.bt-custom-tour {
    padding: 80px 0;
    background: var(--bt-bg);
}

.bt-custom-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    background: var(--bt-card);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius);
    box-shadow: var(--bt-shadow);
    padding: 48px;
}

.bt-custom-text .bt-section-tag {
    margin-bottom: 12px;
}

.bt-custom-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bt-primary);
    margin: 0 0 16px;
}

.bt-custom-text p {
    font-size: 1rem;
    color: var(--bt-text-2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.bt-custom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bt-custom-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--bt-text);
}

.bt-custom-list li i {
    color: var(--bt-accent);
    font-size: .75rem;
}

.bt-custom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bt-accent), var(--bt-accent-d));
    flex-shrink: 0;
}

.bt-custom-icon i {
    font-size: 3.5rem;
    color: #fff;
}

@media (max-width: 768px) {
    .bt-custom-inner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }
    .bt-custom-list {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .bt-custom-icon {
        display: none;
    }
    .bt-custom-text h2 {
        font-size: 1.6rem;
    }
}
