/* ===== HERO BASE ===== */

.premium-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Jost', sans-serif;
    overflow: hidden;
}

/* BACKGROUND */
.hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.mobile-hero-img {
    display: none;
}

.mobile-hero-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}
/* OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.85) 30%,
        rgba(0,0,0,0.5) 60%,
        rgba(0,0,0,0.9) 100%
    );
}

/* CONTAINER */
.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.hero-left {
    flex: 1;
    color: #fff;
}

.hero-tag {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 14px;
}

.hero-left h1 {
    font-size: 52px;
    margin: 10px 0;
}

.hero-desc {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #d4af37, #f5d77a);
    color: #000;
    font-weight: 600;
}

.hero-btn.secondary {
    border: 1px solid #fff;
    color: #fff;
}

/* RIGHT */
.hero-right {
    flex: 0.9;
    display: flex;
    justify-content: center;
}

/* ===== GLASS FORM ===== */

.glass-form {
    width: 100%;
    max-width: 350px;
    padding: 30px;

    background: rgba(255,255,255,0.08);
    border-radius: 20px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.glass-form h3 {
    color: #fff;
    margin-bottom: 20px;
}

.glass-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;

    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.1);
    color: #fff;
}

.glass-form input::placeholder {
    color: #ddd;
}

.glass-form button {
    width: 100%;
    padding: 12px;

    border-radius: 30px;
    border: none;

    background: linear-gradient(45deg, #d4af37, #f5d77a);
    color: #000;

    font-weight: 600;
}
.main-heading{
    color:#ffffff;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
    .badge-price h2 {
    font-size: 30px !important;
    margin: 0;
    font-weight: 700;
    color: #fff;
}
     .mobile-hero-img {
        display: block;
        margin-top: 40px;
    }
    .mobile-hero-img img {
    height: 180px;
    object-fit: cover;
}
    #popupModal .modal {
        width: 90%;
        padding: 25px;
    }

    #popupModal h2 {
        font-size: 20px;
    }

    #popupModal input {
        font-size: 13px;
    }
.overview-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .overview-content h2 {
        font-size: 28px;
    }

    .overview-highlights {
        grid-template-columns: 1fr;
    }
    .premium-hero {
        height: auto;
        padding: 80px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-btn {
        width: 80%;
        margin: auto;
    }

    .hero-right {
        width: 100%;
    }

    .glass-form {
        margin-top: 30px;
    }
}
/* ===== OVERVIEW SECTION ===== */

.overview-section {
    padding: 80px 0;
    background: #0f0f0f;
    color: #fff;
}

/* IMAGE */
.overview-img img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* CONTENT */
.overview-content {
    padding-left: 30px;
}

/* TAG */
.overview-tag {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 17px;
    text-transform: uppercase;
}

/* TITLE */
.overview-content h2 {
    font-size: 40px;
    margin: 10px 0 20px;
}

/* TEXT */
.overview-text {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* HIGHLIGHTS GRID */
.overview-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

/* GLASS BOX */
.highlight-box {
    padding: 20px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;

    transition: 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

/* NUMBERS */
.highlight-box h4 {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 5px;
}

.highlight-box p {
    font-size: 13px;
    color: #aaa;
}
/* ===== MODAL OVERLAY ===== */
#popupModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* ===== MODAL BOX (SCOPED) ===== */
#popupModal .modal {
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    position: relative;
    animation: fadeUp 0.4s ease;
    color: #fff;
}
.modal {
    display:block;
    height:400px;
}
/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CLOSE BUTTON */
#popupModal .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

/* TITLE */
#popupModal h2 {
    text-align: center;
    margin-bottom: 10px;
}

#popupModal p {
    text-align: center;
    color: #ccc;
    font-size: 13px;
    margin-bottom: 15px;
}

/* INPUTS */
#popupModal input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;

    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.1);
    color: #fff;

    outline: none;
    font-size: 14px;
}

/* PLACEHOLDER */
#popupModal input::placeholder {
    color: #ddd;
}

/* ERROR */
#popupModal .error {
    font-size: 12px;
    color: #ff6b6b;
    margin-bottom: 5px;
}

/* OTP FIELD */
#popupModal .otpSection input {
    background: rgba(255,255,255,0.15) !important;
}

/* BUTTON */
#popupModal button {
    width: 100%;
    padding: 12px;

    border-radius: 30px;
    border: none;

    background: linear-gradient(45deg, #d4af37, #f5d77a);
    color: #000;

    font-weight: 600;
    font-size: 15px;

    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
#popupModal button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* VERIFY BUTTON */
#popupModal .verifyOtp {
    margin-top: 10px;
    background: rgba(255,255,255,0.2);
    color: #fff;
}
/* Base hidden state */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

/* Fade from bottom */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* From right */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* From top */
.reveal-top {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 0.8s ease;
}

.reveal-top.active {
    opacity: 1;
    transform: translateY(0);
}
.price-badge{
    margin-top: 25px;
}

.price-badge-inner{
    background: rgba(0,0,0,0.55);
    padding: 20px 25px;
    border-left: 4px solid gold;
    backdrop-filter: blur(6px);
    border-radius: 10px;
    max-width: 350px;
    color: #fff;
    margin-bottom: 20px;
}

.badge-top{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.badge-line{
    width: 25px;
    height: 3px;
    background: gold;
    display: inline-block;
}

.badge-text{
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color:#ffffff;
}

.badge-price{
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.badge-price .rupee{
    font-size: 28px;
    color: gold;
    font-weight: bold;
}

.badge-price h2{
    font-size: 42px;
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.badge-price span{
    font-size: 18px;
    font-weight: 400;
    color: #ddd;
}

.price-badge p{
    margin-top: 8px;
    font-size: 14px;
    color: #ccc;
}