/* ===================================
   Dedicated Pricing Page Styles
   =================================== */

.pricing-hero {
    padding: 140px 20px 100px;
    text-align: center;
    background: linear-gradient(rgba(59,58,54,0.7), rgba(59,58,54,0.5)),
                url('../images/image5.jpg') center/cover no-repeat;
    color: white;
}

.pricing-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

.money-back {
    font-weight: 600;
    opacity: 0.8;
}

/* ==============================
   CUSTOM PRICING – CENTERED
   ============================== */

.packages-section {
    padding: 10px 20px;
    background: #3B3A36;
    color: #f5f5f5;
    text-align: center;
}

/* Wrapper */
.pricing-layout {
    max-width: 1100px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-content {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0,0,0,0.28);
    box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}

/* Background Image */
.content-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/pricing-bg.jpg') center / cover no-repeat;
    opacity: 0.14;
    z-index: 0;
}

/* Inner Content */
.package-panel {
    position: relative;
    z-index: 1;
    padding: 5rem 4rem;
    animation: fadeIn 0.6s ease;
}

/* Headline */
.package-panel h2 {
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

/* Price */
.panel-price {
    font-size: clamp(3.8rem, 7vw, 4.6rem);
    font-weight: 800;
    margin: 2.5rem 0 1.5rem;
    letter-spacing: -1px;
}

/* Supporting Copy */
.package-panel p {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Feature Highlights */
.package-features {
    list-style: none;
    padding: 0;
    margin: 4rem auto 0;
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 2.5rem;
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
}

.package-features i {
    color: #4ade80;
    margin-right: 14px;
    font-size: 1.3rem;
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.deposit-box {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    max-width: 500px;
}

.deposit-label {
    opacity: 0.9;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.deposit-price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-4px);
}

.package-btn.primary {
    background: #cfcfcf;
    color: #3B3A36;
    border: none;
}

.package-btn.primary:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    padding: 10px 0;
    background: #3B3A36;
    color: #f5f5f5;
}

.payment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* Left */
.payment-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.payment-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.payment-info li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.payment-note {
    opacity: 0.9;
}

.payment-note a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* Right */
.payment-card {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* Final CTA */
.final-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 10px 20px;
    background: #3B3A36;
    color: white;
}

.final-cta h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.big-cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 18px 40px;
    background: #cfcfcf;
    color: #05111a;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
}

.big-cta-btn:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 900px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tab-btn {
        min-width: 120px;
        text-align: center;
        font-size: 1.1rem;
        padding: 1rem 0.8rem;
    }

    .pricing-content {
        min-height: auto;
    }

    .package-panel {
        padding: 2rem;
    }

    .deposit-box {
        max-width: 100%;
    }

    .package-panel h2 {
        font-size: 2rem;
    }

    .panel-price {
        font-size: 2.8rem;
    }

    .package-panel p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        justify-content: flex-start;
        gap: 1px;
        padding: 5px 1px; /* mobile navbar padding */
    }

    .navbar-logo img {
        height: 50px;
        margin-right: 0;
    }

    .navbar-menu {
        gap: 15px;
        font-size: 14px;
        padding: 1px 0; /* smaller vertical padding */
    }

    .navbar-menu a {
        font-size: 14px;
        padding: 6px 0;
    }


    .package-panel {
        padding: 1.8rem 1.5rem;
    }

    .package-features {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .package-features li {
        justify-content: center;
        font-size: 1rem;
    }

    .deposit-price {
        font-size: 2.2rem;
    }

    .final-cta h3 {
        font-size: 1.8rem;
    }

    .big-cta-btn {
        font-size: 1.1rem;
        padding: 14px 32px;
    }
}

@media (max-width: 576px) {
    .pricing-layout {
        gap: 2rem;
    }

    .package-panel h2 {
        font-size: 1.8rem;
    }

    .panel-price {
        font-size: 2rem;
    }

    .package-panel p {
        font-size: 0.95rem;
    }

    .deposit-price {
        font-size: 1.8rem;
    }

    .final-cta h3 {
        font-size: 1.6rem;
    }

    .big-cta-btn {
        font-size: 1rem;
        padding: 12px 28px;
    }
}
