/* Styling for BibleForAI - PRBOOST */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #05070a;
    --bg-card: rgba(10, 15, 26, 0.65);
    --bg-card-hover: rgba(16, 25, 42, 0.85);
    --bg-modal: rgba(8, 12, 20, 0.96);
    --primary: #059669; /* Emerald Green - PR/Media */
    --primary-hover: #047857;
    --primary-glow: rgba(5, 150, 105, 0.35);
    --accent: #06b6d4; /* Neon Cyan */
    --accent-glow: rgba(6, 182, 212, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(5, 150, 105, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(5, 150, 105, 0.12) 0%, rgba(5, 7, 10, 0) 50%),
                radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.06) 0%, rgba(5, 7, 10, 0) 40%),
                var(--bg-dark);
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 7, 10, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 75%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.4rem 0;
    color: var(--text-muted);
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn-orders {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-orders:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hover);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 1rem;
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    z-index: 200;
    background: var(--bg-modal);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: block;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--text-main);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* View Sections */
.view-section {
    display: none;
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.view-section.active {
    display: block;
}

/* Hero */
.hero {
    text-align: center;
    padding: 5rem 1rem 4rem;
}

.badge {
    display: inline-block;
    background: rgba(5, 150, 105, 0.12);
    border: 1px solid rgba(5, 150, 105, 0.25);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hover);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 0 auto 3rem;
    max-width: 800px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Section Containers */
.section-container {
    padding: 3rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.data-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.data-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.1);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
}

.card-icon.basic-color {
    background: rgba(5, 150, 105, 0.15);
    color: var(--primary);
}

.card-icon.pro-color {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.card-icon.enterprise-color {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.data-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.data-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* How It Works Section */
.how-it-works-bg {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
}

.compliance-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.compliance-text {
    flex: 1;
    min-width: 300px;
}

.compliance-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.compliance-text > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.compliance-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.bullet-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.bullet-item span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

.bullet-item strong {
    color: var(--primary);
}

.compliance-graphic {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.08);
    border: 2px solid rgba(5, 150, 105, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
    position: relative;
}

.glow-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.2), transparent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* Industries Tags */
.industries-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.industry-tag {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--text-main);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
}

.industry-tag:hover {
    background: rgba(5, 150, 105, 0.15);
    border-color: var(--primary);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 2rem 0 1rem;
}

.page-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--primary);
}

.page-header p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.1);
}

.package-card.featured {
    border-color: var(--primary);
    background: rgba(5, 150, 105, 0.05);
}

.package-card.featured::before {
    content: 'Best Seller';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.package-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.package-price-box {
    margin-bottom: 1rem;
}

.package-price-box .price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.package-price-box .currency {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.package-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.package-features li i {
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.btn-buy {
    width: 100%;
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 0.7rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-buy:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Orders */
.orders-container {
    padding: 2rem 0;
}

.table-wrapper {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.orders-table th {
    text-align: left;
    padding: 0.8rem 1rem;
    border-bottom: 2px solid var(--border);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
}

.orders-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.tx-id {
    font-family: monospace;
    font-size: 0.78rem;
    color: var(--accent);
}

.status-badge {
    background: rgba(5, 150, 105, 0.15);
    color: var(--primary);
    padding: 0.2rem 0.7rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.no-data-msg {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.no-data-msg i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.no-data-msg p {
    font-size: 0.95rem;
}

/* Modal */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal-backdrop.active {
    display: flex;
}

.modal-card {
    background: var(--bg-modal);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.8rem;
    max-width: 460px;
    width: 90%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: #fff;
}

.modal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.modal-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.order-summary-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.15rem 0;
    font-size: 0.85rem;
}

.summary-row span {
    color: var(--text-muted);
}

.summary-row strong {
    color: var(--text-main);
}

.quantity-control-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-control-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-selector input {
    width: 70px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: #fff;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.qty-selector input:focus {
    border-color: var(--primary);
}

.qty-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.total-price-box {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.total-price-box span:first-child {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
}

.paypal-wrapper {
    margin-bottom: 0.3rem;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.payment-badges span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.payment-badges i {
    color: var(--primary);
}

/* Footer */
footer {
    background: rgba(5, 7, 10, 0.9);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 350px;
}

.footer-links h4,
.footer-support h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-links ul,
.footer-support ul {
    list-style: none;
}

.footer-links ul li,
.footer-support ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
}

.footer-links ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-drawer {
        display: block;
    }

    .btn-text {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .compliance-content {
        flex-direction: column;
    }

    .compliance-graphic {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .how-it-works-bg {
        padding: 2rem 1.5rem;
    }

    .modal-card {
        padding: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Unified left hamburger/service drawer */
.header-container {
    justify-content: flex-start;
    gap: 1rem;
}
.logo-group {
    margin-right: auto;
}
.menu-toggle {
    display: flex !important;
    order: -1;
    margin-left: 0 !important;
    margin-right: 0.85rem;
    z-index: 260;
}
.mobile-drawer {
    display: block !important;
    left: -320px !important;
    right: auto !important;
    width: 300px;
    max-width: 86vw;
    border-left: 0 !important;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    padding: 5rem 1.25rem 2rem;
    transition: left 0.3s ease !important;
}
.mobile-drawer.active {
    left: 0 !important;
    right: auto !important;
}
.unified-service-menu {
    gap: 0.15rem;
}
.unified-service-menu .mobile-menu-heading {
    margin: 1rem 0 0.35rem;
    padding: 0.2rem 0.35rem;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}
.unified-service-menu a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.35rem;
    border-radius: 10px;
    font-size: 0.9rem;
}
.unified-service-menu a:hover {
    background: rgba(255,255,255,0.06);
}
.unified-service-menu i {
    width: 1.1rem;
    color: var(--primary);
    text-align: center;
}

