/* =========================================================
   TICKETLINE - PUJA PASS 2026 HOMEPAGE PROMOTION
   ========================================================= */

.home-puja-promo {
    padding: 55px 20px;
    background: #f8fafc;
}

.home-puja-card {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: stretch;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.home-puja-card-content {
    flex: 1;
    padding: 38px 42px;
}

.home-puja-label {
    display: inline-block;

    margin-bottom: 14px;
    padding: 7px 13px;

    background: #fff7ed;
    color: #c2410c;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.home-puja-card h2 {
    margin: 0 0 14px;

    color: #111827;

    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}

.home-puja-card h2 span {
    display: block;

    margin-top: 3px;

    color: #ea580c;
}

.home-puja-card-content > p {
    max-width: 720px;

    margin: 0 0 25px;

    color: #4b5563;

    font-size: 16px;
    line-height: 1.65;
}

.home-puja-card-content > p strong {
    color: #111827;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.home-puja-features {
    display: grid;

    grid-template-columns: repeat(2, minmax(200px, 1fr));

    gap: 12px;

    margin-bottom: 27px;
}

.home-puja-features > div {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 12px 14px;

    background: #f8fafc;

    border: 1px solid #eef2f7;

    border-radius: 10px;

    color: #1f2937;
}

.home-puja-features > div > span:first-child {
    font-size: 20px;
}

.home-puja-features span {
    display: flex;
    flex-direction: column;
}

.home-puja-features strong {
    color: #1f2937;

    font-size: 14px;
    line-height: 1.3;
}

.home-puja-features small {
    margin-top: 2px;

    color: #6b7280;

    font-size: 12px;
    line-height: 1.3;
}


/* =========================================================
   PUJA BUTTON
   ========================================================= */

.home-puja-buttons {
    display: flex;
    align-items: center;
}

.btn-puja {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 21px;

    background: #ea580c;
    color: #ffffff;

    border: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.2s ease;
}

.btn-puja:hover {
    background: #c2410c;

    transform: translateY(-1px);

    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.25);
}


/* =========================================================
   RIGHT PRICE PANEL
   ========================================================= */

.home-puja-price-card {
    width: 285px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px 25px;

    background: linear-gradient(
        145deg,
        #fff7ed 0%,
        #ffedd5 100%
    );

    border-left: 1px solid #fed7aa;

    text-align: center;
}

.home-puja-price-label {
    margin-bottom: 5px;

    color: #9a3412;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home-puja-price {
    margin: 3px 0 0;

    color: #c2410c;

    font-size: 60px;
    line-height: 1;
    font-weight: 800;
}

.home-puja-price-text {
    margin-top: 5px;

    color: #7c2d12;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home-puja-price-note {
    margin-top: 14px;

    color: #57534e;

    font-size: 13px;
    line-height: 1.5;
}

.home-puja-small-btn {
    display: inline-block;

    margin-top: 19px;
    padding: 9px 18px;

    background: #ffffff;
    color: #c2410c;

    border: 1px solid #fdba74;
    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.2s ease;
}

.home-puja-small-btn:hover {
    background: #c2410c;
    color: #ffffff;

    border-color: #c2410c;
}


/* =========================================================
   HERO PUJA BADGE
   ========================================================= */

.home-campaign-badge {
    display: inline-block;

    margin-bottom: 16px;
    padding: 7px 13px;

    background: #fff7ed;
    color: #c2410c;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.home-hero-buttons {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 12px;
}

.btn-puja-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    background: #ffffff;
    color: #c2410c;

    border: 1px solid #fdba74;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.2s ease;
}

.btn-puja-secondary:hover {
    background: #fff7ed;

    border-color: #ea580c;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .home-puja-promo {
        padding: 35px 15px;
    }

    .home-puja-card {
        flex-direction: column;

        border-radius: 15px;
    }

    .home-puja-card-content {
        padding: 28px 22px;
    }

    .home-puja-card h2 {
        font-size: 25px;
    }

    .home-puja-card-content > p {
        font-size: 15px;
    }

    .home-puja-features {
        grid-template-columns: 1fr;
    }

    .home-puja-price-card {
        width: auto;

        padding: 25px 20px;

        border-left: none;
        border-top: 1px solid #fed7aa;
    }

    .home-puja-price {
        font-size: 52px;
    }

    .home-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-buttons .btn,
    .home-hero-buttons .btn-puja-secondary {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}