/* Tarapith Mandir Landing Page Styles */
:root {
    --tp-saffron: #F7931E;
    --tp-deep: #b45309;
    --tp-crimson: #DC2626;
    --tp-gold: #D97706;
    --tp-bg: #FFF7ED;
    --tp-white: #FFFFFF;
    --tp-text: #1F2937;
    --tp-muted: #6B7280;
    --tp-shadow: 0 4px 20px rgba(0,0,0,0.05);
    --tp-hover: 0 12px 32px rgba(247,147,30,0.1);
}

/* Typography & Reset */
.tp-page, .tp-page * { box-sizing: border-box; }
.tp-page { font-family: 'Inter', 'Noto Sans', sans-serif; color: var(--tp-text); background: var(--tp-bg); }
.tp-page h1,.tp-page h2,.tp-page h3,.tp-page h4 { font-family: 'Cinzel', 'Crimson Pro', serif; }
.tp-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HERO ===== */
.tp-hero {
    position: relative; min-height: 520px; display: flex; align-items: center;
    background-size: cover; background-position: center; overflow: hidden;
    background-image: var(--bg-desktop);
}
.tp-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,10,5,0.85) 0%, rgba(30,20,10,0.6) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.tp-hero-content { position: relative; z-index: 2; max-width: 700px; padding-top: 3rem; padding-bottom: 3rem; }
.tp-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(247,147,30,0.2); border: 1px solid rgba(247,147,30,0.4);
    color: #FBBF24; padding: 6px 16px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 1.25rem; backdrop-filter: blur(4px);
}
.tp-hero h1 {
    font-size: 2.75rem; font-weight: 700; color: #fff; line-height: 1.15;
    margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.tp-hero h1 span { color: var(--tp-saffron); }
.tp-hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem; max-width: 560px; }
.tp-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.tp-btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--tp-saffron), #e67e22); color: #fff;
    padding: 14px 32px; border-radius: 12px; font-weight: 700; font-size: 1.05rem;
    border: none; cursor: pointer; text-decoration: none;
    box-shadow: 0 4px 16px rgba(247,147,30,0.35); transition: all 0.3s ease;
}
.tp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(247,147,30,0.45); }
.tp-btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: #fff; padding: 14px 28px; border-radius: 12px;
    font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer; text-decoration: none; transition: all 0.3s ease;
}
.tp-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.tp-hero-stats {
    display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.tp-hero-stat { text-align: center; }
.tp-hero-stat-val { font-size: 1.5rem; font-weight: 800; color: var(--tp-saffron); }
.tp-hero-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== QUICK INFO BAR ===== */
.tp-infobar {
    background: var(--tp-white); border-bottom: 1px solid #f0e6d6;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04); position: relative; z-index: 5;
}
.tp-infobar-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.tp-info-item {
    display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
    border-right: 1px solid #f0e6d6;
}
.tp-info-item:last-child { border-right: none; }
.tp-info-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
    display: flex; align-items: center; justify-content: center;
    color: var(--tp-deep); font-size: 1.1rem; flex-shrink: 0;
}
.tp-info-label { font-size: 0.7rem; color: var(--tp-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.tp-info-value { font-size: 0.95rem; font-weight: 700; color: var(--tp-text); }

/* ===== SECTION COMMON ===== */
.tp-section { padding: 4rem 0; }
.tp-section-alt { background: var(--tp-white); }
.tp-section-header { text-align: center; margin-bottom: 3rem; }
.tp-section-header h2 { font-size: 2rem; font-weight: 700; color: var(--tp-text); margin-bottom: 0.75rem; }
.tp-section-header h2 span { color: var(--tp-saffron); }
.tp-section-header p { font-size: 1.05rem; color: var(--tp-muted); max-width: 600px; margin: 0 auto; }
.tp-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--tp-saffron), var(--tp-gold)); margin: 1rem auto; border-radius: 2px; }

/* ===== PACKAGES ===== */
.tp-packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.tp-pkg-card {
    background: var(--tp-white); border: 1px solid #f0e6d6; border-radius: 16px;
    padding: 2rem 1.5rem; position: relative; transition: all 0.3s ease;
    overflow: hidden;
}
.tp-pkg-card:hover { transform: translateY(-6px); box-shadow: var(--tp-hover); }
.tp-pkg-card.popular { border: 2px solid var(--tp-saffron); }
.tp-pkg-badge {
    position: absolute; top: 0; right: 1.5rem;
    background: linear-gradient(135deg, var(--tp-saffron), #e67e22);
    color: #fff; padding: 4px 14px; border-radius: 0 0 8px 8px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.tp-pkg-tier {
    display: inline-block; padding: 4px 12px; border-radius: 100px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem;
}
.tp-tier-basic { background: #ECFDF5; color: #059669; }
.tp-tier-popular { background: #DBEAFE; color: #2563EB; }
.tp-tier-premium { background: #FFF7ED; color: var(--tp-deep); }
.tp-tier-royal { background: #F3E8FF; color: #7C3AED; }
.tp-pkg-name { font-family: 'Cinzel', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.tp-pkg-price { font-size: 2rem; font-weight: 800; color: var(--tp-deep); margin-bottom: 0.25rem; }
.tp-pkg-price small { font-size: 0.85rem; color: var(--tp-muted); font-weight: 400; text-decoration: line-through; margin-left: 0.5rem; }
.tp-pkg-desc { font-size: 0.85rem; color: var(--tp-muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f0e6d6; }
.tp-pkg-features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.tp-pkg-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: var(--tp-text); margin-bottom: 0.6rem; }
.tp-pkg-features li i { color: #059669; margin-top: 3px; font-size: 0.75rem; }
.tp-pkg-btn {
    display: block; width: 100%; padding: 12px; border-radius: 10px; font-weight: 700;
    font-size: 0.95rem; cursor: pointer; transition: all 0.3s; text-align: center;
    text-decoration: none;
}
.tp-pkg-btn-primary { background: linear-gradient(135deg, var(--tp-saffron), #e67e22); color: #fff; border: none; box-shadow: 0 4px 12px rgba(247,147,30,0.25); }
.tp-pkg-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(247,147,30,0.35); }
.tp-pkg-btn-outline { background: transparent; color: var(--tp-deep); border: 2px solid var(--tp-deep); }
.tp-pkg-btn-outline:hover { background: var(--tp-deep); color: #fff; }

/* ===== ABOUT ===== */
.tp-about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.tp-about-text p { font-size: 1.05rem; color: var(--tp-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.tp-about-text h2 { font-size: 1.75rem; margin-bottom: 1rem; line-height: 1.3; }
.tp-about-img { border-radius: 16px; overflow: hidden; box-shadow: var(--tp-shadow); }
.tp-about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.tp-highlight { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: #FFF7ED; border-radius: 10px; }
.tp-highlight i { color: var(--tp-saffron); font-size: 1.1rem; }
.tp-highlight span { font-size: 0.9rem; font-weight: 600; }

/* ===== HISTORY TABS ===== */
.tp-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center; }
.tp-tab {
    padding: 10px 24px; border-radius: 100px; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; border: 2px solid #e5e0d8; background: transparent; color: var(--tp-muted);
    transition: all 0.3s;
}
.tp-tab.active { background: var(--tp-deep); color: #fff; border-color: var(--tp-deep); }
.tp-tab:hover:not(.active) { border-color: var(--tp-deep); color: var(--tp-deep); }
.tp-tab-content { display: none; animation: tpFadeIn 0.4s ease; }
.tp-tab-content.active { display: block; }
.tp-tab-content p { font-size: 1.05rem; color: var(--tp-muted); line-height: 1.8; margin-bottom: 1rem; }
@keyframes tpFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HOW IT WORKS ===== */
.tp-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.tp-step { text-align: center; position: relative; }
.tp-step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--tp-saffron), #e67e22);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.25rem; margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(247,147,30,0.3);
}
.tp-step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.tp-step p { font-size: 0.9rem; color: var(--tp-muted); line-height: 1.6; }
.tp-step::after {
    content: ''; position: absolute; top: 28px; left: 60%; width: 80%;
    height: 2px; background: linear-gradient(90deg, var(--tp-saffron), transparent);
}
.tp-step:last-child::after { display: none; }

/* ===== TRUST ===== */
.tp-trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.tp-trust-card {
    background: var(--tp-white); border: 1px solid #f0e6d6; border-radius: 16px;
    padding: 2rem; text-align: center; transition: all 0.3s;
}
.tp-trust-card:hover { transform: translateY(-4px); box-shadow: var(--tp-hover); }
.tp-trust-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.tp-trust-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.tp-trust-card p { font-size: 0.9rem; color: var(--tp-muted); line-height: 1.6; }
.tp-stats-bar {
    display: flex; justify-content: center; gap: 3rem; margin-top: 3rem;
    padding: 2rem; background: linear-gradient(135deg, #1F2937, #111827);
    border-radius: 16px; color: #fff;
}
.tp-stat { text-align: center; }
.tp-stat-val { font-size: 1.75rem; font-weight: 800; color: var(--tp-saffron); }
.tp-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; }

/* ===== REVIEWS ===== */
.tp-reviews-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.5rem 0 1rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tp-reviews-track::-webkit-scrollbar { display: none; }
.tp-review-card {
    min-width: 320px; max-width: 360px; scroll-snap-align: start;
    background: var(--tp-white); border: 1px solid #f0e6d6; border-radius: 16px;
    padding: 1.5rem; flex-shrink: 0;
}
.tp-review-stars { color: #FBBF24; font-size: 0.85rem; margin-bottom: 0.75rem; }
.tp-review-text { font-size: 0.95rem; color: var(--tp-text); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.tp-review-author { display: flex; align-items: center; gap: 0.75rem; }
.tp-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #FFF7ED, #FEF3C7); display: flex; align-items: center; justify-content: center; color: var(--tp-deep); font-weight: 700; }
.tp-review-name { font-weight: 700; font-size: 0.9rem; }
.tp-review-city { font-size: 0.75rem; color: var(--tp-muted); }
.tp-verified { color: #059669; font-size: 0.7rem; font-weight: 600; }

/* ===== FAQ ===== */
.tp-faq-list { max-width: 800px; margin: 0 auto; }
.tp-faq-item { border: 1px solid #f0e6d6; border-radius: 12px; margin-bottom: 0.75rem; overflow: hidden; background: var(--tp-white); }
.tp-faq-q {
    padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between;
    align-items: flex-start; gap: 1rem; font-weight: 600; font-size: 1rem; color: var(--tp-text);
    transition: background 0.2s;
}
.tp-faq-q span { flex: 1; }
.tp-faq-q i { color: var(--tp-saffron); transition: transform 0.3s; font-size: 0.8rem; margin-top: 5px; flex-shrink: 0; }
.tp-faq-item.open .tp-faq-q i { transform: rotate(180deg); }
.tp-faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.tp-faq-item.open .tp-faq-a { padding: 0 1.5rem 1.25rem; max-height: 500px; }
.tp-faq-a p { font-size: 0.95rem; color: var(--tp-muted); line-height: 1.7; }

/* ===== CTA ===== */
.tp-cta {
    background: linear-gradient(135deg, var(--tp-deep), #92400e);
    padding: 4rem 0; text-align: center; color: #fff;
}
.tp-cta h2 { color: #fff; font-size: 2rem; margin-bottom: 0.75rem; }
.tp-cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.tp-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.tp-btn-whatsapp {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #25D366; color: #fff; padding: 14px 32px; border-radius: 12px;
    font-weight: 700; font-size: 1.05rem; border: none; cursor: pointer; text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3); transition: all 0.3s;
}
.tp-btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.tp-btn-call {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.15); color: #fff; padding: 14px 28px; border-radius: 12px;
    font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer; text-decoration: none; transition: all 0.3s;
}
.tp-btn-call:hover { background: rgba(255,255,255,0.25); }
.tp-cta-promise { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .tp-hero { min-height: 450px; background-image: var(--bg-mobile, var(--bg-desktop)); background-position: center top; }
    .tp-hero h1 { font-size: 1.75rem; }
    .tp-hero-sub { font-size: 1rem; }
    .tp-hero-stats { gap: 1.5rem; }
    .tp-hero-stat-val { font-size: 1.2rem; }
    .tp-infobar-grid { grid-template-columns: 1fr 1fr; }
    .tp-info-item { padding: 1rem; }
    .tp-info-item:nth-child(2) { border-right: none; }
    .tp-section { padding: 3rem 0; }
    .tp-section-header h2 { font-size: 1.5rem; }
    .tp-about-grid { grid-template-columns: 1fr; }
    .tp-about-highlights { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .tp-steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .tp-step::after { display: none; }
    .tp-trust-grid { grid-template-columns: 1fr; }
    .tp-stats-bar { flex-wrap: wrap; gap: 1.5rem; }
    .tp-packages-grid { grid-template-columns: 1fr; }
    .tp-review-card { min-width: 280px; }
    .tp-cta h2 { font-size: 1.5rem; }
    .tp-btn-primary, .tp-btn-ghost { padding: 12px 24px; font-size: 0.95rem; }
    .tp-cta-actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; align-items: center; }
    .tp-btn-whatsapp, .tp-btn-call { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .tp-hero h1 { font-size: 1.5rem; }
    .tp-infobar-grid { grid-template-columns: 1fr; }
    .tp-info-item { border-right: none; border-bottom: 1px solid #f0e6d6; }
    .tp-info-item:last-child { border-bottom: none; }
    .tp-hero-stats { flex-wrap: wrap; gap: 1rem; }
}
