
.pricing-hero{
    padding:90px 0 40px;
    text-align:center;
}

.pricing-tag{
    display:inline-block;
    background:#fff5d8;
    color:#d4af37;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.pricing-hero h1{
    font-size:3rem;
    margin-top:20px;
    color:#0b1f3a;
    font-weight:700;
}

.pricing-hero p{
    max-width:700px;
    margin:20px auto;
    color:#6b7280;
}

.pricing-section{
    padding:30px 0 80px;
}

.plan-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
    position:relative;
    height:100%;
    transition:.3s;
}

.plan-card:hover{
    transform:translateY(-10px);
}

.plan-card.popular{
    border:2px solid #d4af37;
}

.popular-badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#d4af37;
    color:#fff;
    padding:6px 18px;
    border-radius:50px;
    font-size:.85rem;
}

.plan-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:auto;
    background:#fff5d8;
    display:flex;
    align-items:center;
    justify-content:center;
}

.plan-icon i{
    font-size:2rem;
    color:#d4af37;
}

.plan-card h3{
    margin-top:20px;
    font-weight:700;
}

.plan-price{
    font-size:3rem;
    font-weight:800;
    color:#0b1f3a;
}

.plan-period{
    color:#6b7280;
    margin-bottom:20px;
}

.plan-short{
    color:#444;
}

.plan-posts{
    margin:20px 0;
    font-size:1.05rem;
}

.plan-desc{
    color:#666;
    min-height:100px;
}

.btn-plan{
    display:block;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    margin-top:20px;
    font-weight:600;
}

.premium-hero{
    padding:80px 0;
    background:#fafafa;
}

.hero-copy h2{
    font-size:3.5rem;
    font-weight:700;
    line-height:1.1;
    color:#0b1f3a;
    margin:20px 0;
}

.hero-copy p{
    color:#6b7280;
    font-size:1.05rem;
    line-height:1.8;
    margin-bottom:30px;
}

.premium-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff5d8;
    color:#d4af37;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
}

.hero-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-slide{
    height:550px;
    border-radius:24px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.25)
    );
}

.hero-content{
    position:absolute;
    left:35px;
    bottom:35px;
    z-index:2;
    color:#fff;
}

.hero-content h2{
    font-size:2rem;
    font-weight:700;
    margin:12px 0;
}

.hero-price{
    font-size:2rem;
    font-weight:700;
    margin:15px 0;
}
/* =========================
   PREMIUM HERO BASE
========================= */

.premium-hero {
    padding: 80px 0;
    background: #fafafa;
}

/* LEFT CONTENT */
.hero-copy {
    max-width: 100%;
}

.hero-copy h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b1f3a;
    margin: 20px 0;
}

.hero-copy p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* TAG */
.premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ACTION BUTTONS */
.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-explore {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-2px);
}

/* =========================
   CAROUSEL + SLIDER CONTROL
========================= */

#premiumCarousel {
    max-height: 450px;
    overflow: hidden;
    border-radius: 18px;
}

/* SLIDE HEIGHT CONTROL (THIS FIXES "TOO BIG") */
.hero-slide {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* CONTENT INSIDE SLIDE */
.hero-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
    z-index: 2;
    max-width: 80%;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin: 10px 0;
}

.hero-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 8px;
}

/* PREMIUM BADGE */
.premium-badge {
    background: #d4af37;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    color: #111;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 991px) {

    .hero-copy {
        text-align: center;
    }

    .hero-copy h2 {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-slide {
        height: 320px;
    }

    .hero-content {
        max-width: 90%;
    }
}

@media (max-width: 576px) {

    .hero-slide {
        height: 260px;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .hero-price {
        font-size: 1.1rem;
    }
}