/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    color: #222;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.navbar-brand img {
    max-height: 45px;
}

.nav-link {
    font-weight: 500;
    color: #111 !important;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.btn-primary {
    background: linear-gradient(45deg, #00c3ff, #007bff);
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
}

/* ================= HERO ================= */
.hero-premium {
    position: relative;
    min-height: 100vh;
    background: url('public/assets/images/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content span {
    background: linear-gradient(45deg, #00c3ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    margin: 20px 0;
    font-size: 17px;
    color: #ddd;
}

/* BADGE */
.badge-premium {
    background: rgba(255,255,255,0.15);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

/* HIGHLIGHTS */
.hero-highlights span {
    display: inline-block;
    margin-right: 12px;
    font-size: 14px;
    color: #ccc;
}

/* BUTTONS */
.hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    margin-right: 10px;
}

/* ================= FORM ================= */
.premium-form {
    backdrop-filter: blur(25px);
    background: rgba(255,255,255,0.12);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    color: #fff;
    transition: 0.3s;
}

.premium-form:hover {
    transform: translateY(-5px);
}

.premium-form h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.form-sub {
    font-size: 13px;
    margin-bottom: 15px;
    color: #ccc;
}

.premium-form input,
.premium-form select {
    width: 100%;
    padding: 13px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.premium-form button {
    width: 100%;
    padding: 13px;
    background: linear-gradient(45deg, #00c3ff, #007bff);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.premium-form button:hover {
    transform: scale(1.05);
}

/* ================= SECTION ================= */
.premium-section {
    padding: 100px 0;
    background: #fff;
}

h2 {
    font-weight: 700;
    font-size: 34px;
}

.section-sub {
    color: #777;
    margin-top: 10px;
}

/* ================= CARDS ================= */
.premium-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.premium-card .icon {
    font-size: 35px;
    margin-bottom: 10px;
}

.premium-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-card p {
    font-size: 14px;
    color: #666;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ================= PRICE ================= */
.price-premium {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
    padding: 100px 0;
}

.premium-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.premium-table th {
    background: linear-gradient(45deg, #000, #222);
    color: #fff;
    text-align: center;
    padding: 15px;
}

.premium-table td {
    text-align: center;
    padding: 18px;
    font-weight: 500;
}

.premium-table tr:hover {
    background: #f3f3f3;
}

/* PRICE BUTTON */
.price-btn {
    padding: 8px 18px;
    background: linear-gradient(45deg, #00c3ff, #007bff);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

/* ================= FLOAT BUTTON ================= */
.floating-btns {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btns a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.floating-btns .call {
    background: #0d6efd;
}

.floating-btns .wa {
    background: #25D366;
}

.floating-btns a:hover {
    transform: scale(1.15);
}

/* ================= FOOTER ================= */
footer {
    background: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {

    .hero-premium {
        padding: 100px 0;
        height: auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .premium-form {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        margin-bottom: 10px;
    }
}

/* POPUP */
.popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    text-align: center;
    position: relative;
}

.popup-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

.popup-box button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 20px;
}