/* ================================
   GLOBAL STYLES
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f7fa;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ================================
   HEADER / NAVBAR
================================ */
header {
    background: #ffffff;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #000;
    font-size: 22px;
    font-weight: bold;
}

.nav-links a {
    color: #000;
    margin-left: 20px;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #0077b6;
}

/* ================================
   HERO SECTION
================================ */
/* HERO WITH BACKGROUND IMAGE */
.hero {
    position: relative;
    background: url('images/banner.webp') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

/* DARK OVERLAY (IMPORTANT FOR TEXT VISIBILITY) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.7); /* dark overlay */
}

/* CONTENT ABOVE OVERLAY */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-primary {
    background: #00b4d8;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0096c7;
}

/* ================================
   PLAN PAGE HERO
================================ */
.plan-hero {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.plan-hero h1 {
    font-size: 40px;
}

.plan-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ================================
   PLANS SECTION
================================ */
.plans {
    padding: 60px 20px;
}

.plans .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.plan-card {
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card h2 {
    margin-bottom: 10px;
    color: #0d1b2a;
}

.plan-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.plan-card ul {
    padding-left: 18px;
    margin: 15px 0;
}

.plan-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.plan-card .btn {
    background: #0077b6;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
}

.plan-card .btn:hover {
    background: #023e8a;
}

.plan-card.popular {
    border: 2px solid #0077b6;
}

.plan-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    right: 15px;
    background: #0077b6;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

/* ================================
   CTA SECTION
================================ */
.cta {
    background: #0077b6;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 20px;
}

/* ================================
   FOOTER
================================ */
footer {
    background: #0d1b2a;
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    font-size: 14px;
}

/* ================================
   WHATSAPP FLOAT BUTTON
================================ */
/*.btn-whatsapp {*/
/*    position: fixed;*/
/*    bottom: 20px;*/
/*    right: 20px;*/
/*    background: #25D366;*/
/*    color: #fff;*/
/*    padding: 12px 16px;*/
/*    border-radius: 50px;*/
/*    font-size: 16px;*/
/*    box-shadow: 0 5px 15px rgba(0,0,0,0.2);*/
/*    z-index: 999;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*}*/

/*.btn-whatsapp:hover {*/
/*    background: #1ebe5d;*/
/*}*/

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .plan-hero h1 {
        font-size: 30px;
    }

    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 10px;
    }

    .nav-links a {
        display: block;
        margin: 8px 0;
    }

    .plans .container {
        flex-direction: column;
        align-items: center;
    }
}

/* ================================
   MOBILE MENU FIX (FINAL)
================================ */

/* MENU ICON */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

/* DEFAULT NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    /* KEEP NAVBAR IN ONE LINE */
    .navbar {
        flex-direction: row;   /* 🔥 FIX */
        justify-content: space-between;
        align-items: center;
    }

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
    }

    /* HIDE MENU BY DEFAULT */
    .nav-links {
        position: absolute;
        top: 45px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        display: none;
        padding: 20px;
    }

    /* MENU ITEMS */
    .nav-links a {
        display: block;
        margin: 12px 0;
        font-size: 16px;
    }

    /* ACTIVE MENU */
    .nav-links.active {
        display: flex;
    }
}

/* ================================
   FOOTER PREMIUM
================================ */
.footer {
    background: #0d1b2a;
    color: #ccc;
    padding: 50px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer h3, .footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer ul li a {
    color: #ccc;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #00b4d8;
}

.footer hr {
    border-color: #1b263b;
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
}

/* ================================
   WHATSAPP FLOAT FIX
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ================================
   CONTACT PAGE PREMIUM
================================ */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* FORM BOX */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
    margin-bottom: 10px;
}

.contact-form-box p {
    margin-bottom: 20px;
    font-size: 14px;
}

/* INPUT WITH ICON */
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #888;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 12px 12px 35px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
}

/* CONTACT INFO */
.contact-info-box {
    background: #0d1b2a;
    color: #fff;
    padding: 30px;
    border-radius: 14px;
}

.contact-info-box h2 {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.info-item i {
    color: #00b4d8;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* LOGO WITH TEXT */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LOGO IMAGE */
.logo-wrap img {
    height: 45px;
}

/* LOGO TEXT */
.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
}
.logo-text span {
    color: #0077b6;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
}

.sticky-cta a {
    width: 50%;
    text-align: center;
    padding: 14px;
    font-weight: bold;
    color: #fff;
}

.sticky-cta a:first-child {
    background: #0077b6;
}

.sticky-cta a:last-child {
    background: #25D366;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
    }
}

/* ================================
   PREMIUM POPUP (GLASS + ANIMATION)
================================ */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

/* POPUP BOX */
.popup-box {
    background: rgba(255,255,255,0.95);
    padding: 30px 25px;
    max-width: 350px;
    margin: 120px auto;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease;
}

/* HEADING */
.popup-box h3 {
    margin-bottom: 8px;
    color: #0d1b2a;
}

.popup-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* INPUT STYLE */
.popup input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.popup input:focus {
    border-color: #0077b6;
    box-shadow: 0 0 0 2px rgba(0,119,182,0.1);
}

/* BUTTON */
.popup button {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.popup button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,119,182,0.3);
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.close:hover {
    color: #000;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .popup-box {
        margin: 80px 15px;
        padding: 25px 20px;
    }
}
/* ACTIVE MENU */
.nav-links a.active {
    color: #0077b6;
    font-weight: 600;
    position: relative;
}

/* UNDERLINE EFFECT */
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #0077b6;
}