:root {
    --brand-mint: #6ef1e6;
    --brand-gray: #5f5f5f;
    --bg-light: #f4f7f9;
    --bg-packages: #f8fafc;
    --text-dark: #2d3436;
    --border-color: #e2e8f0;
}

html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg-light); color: var(--brand-gray); line-height: 1.6; }

.container { width: 85%; max-width: 1100px; margin: auto; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; background: #fff; border-bottom: 3px solid var(--brand-mint); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.flex-nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo img { height: 55px; width: auto; display: block; }
.menu-toggle { display: none; font-size: 1.5rem; color: var(--brand-gray); cursor: pointer; }

.main-menu ul { list-style: none; display: flex; gap: 30px; align-items: center; margin: 0; padding: 0; }
.main-menu a { text-decoration: none; color: var(--brand-gray); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }
.nav-cta { background: var(--brand-gray); color: #fff !important; padding: 10px 22px; border-radius: 6px; border: 1px solid var(--brand-mint); }

/* HERO WITH VIDEO BACKGROUND */
.hero-v3 { 
    position: relative;
    padding: 160px 0 100px; 
    overflow: hidden; 
    color: white; 
    min-height: 60vh;
    display: flex;
    align-items: center;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: -1;
}

.grid-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(90deg, var(--brand-mint), #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.floating-img { width: 100%; border-radius: 15px; border-bottom: 5px solid var(--brand-mint); }
.btn-glow { background: var(--brand-mint); color: #0f172a; padding: 16px 35px; border-radius: 6px; text-decoration: none; font-weight: 800; display: inline-block; }
.btn-outline-hero { background: transparent; color: #fff; padding: 16px 35px; border-radius: 6px; text-decoration: none; font-weight: 800; border: 2px solid var(--brand-mint); display: inline-block; transition: 0.3s; }
.btn-outline-hero:hover { background: var(--brand-mint); color: #0f172a; }

/* ABOUT SECTION */
.badge-established {
    background: #1e293b !important;
    color: var(--brand-mint) !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: none;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}
.about-section { padding: 100px 0; background: #fff; }
.about-text h2 { font-size: 2.2rem; color: var(--text-dark); margin: 20px 0; }
.about-stats { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.stat-card { background: var(--bg-light); padding: 30px; border-radius: 12px; border-right: 4px solid var(--brand-mint); }
.stat-card h3 { margin: 0 0 10px; color: var(--text-dark); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.stat-card p { margin: 0; font-size: 0.9rem; color: var(--brand-gray); }

/* MSP ACCORDION */
.details-section { padding: 100px 0 60px; background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; color: var(--text-dark); }
.subheader { font-size: 1.1rem; color: var(--brand-gray); }
.accordion-container { max-width: 850px; margin: 0 auto; }
.accordion-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 15px; transition: 0.4s; }
.accordion-header { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.accordion-header h3 { margin: 0; font-size: 1.3rem; color: var(--text-dark); display: flex; align-items: center; gap: 20px; }
.accordion-header i.fab, .accordion-header i.fas:not(.toggle-icon) { color: var(--brand-mint); font-size: 1.5rem; }
.accordion-item.active { box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--brand-mint); transform: translateY(-5px); }
.accordion-content { padding: 0 30px 30px 75px; display: none; }
.accordion-item.active .accordion-content { display: block; }
.toggle-icon { color: var(--brand-mint); transition: 0.3s; }
.accordion-item.active .toggle-icon { transform: rotate(90deg); }
.check-list { list-style: none; padding: 0; margin-top: 15px; }
.check-list li { margin-bottom: 8px; font-size: 0.95rem; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--brand-mint); margin-right: 10px; }

/* SECTION SEPARATOR */
.section-separator { display: flex; align-items: center; justify-content: center; padding: 20px 0; background: var(--bg-light); position: relative; }
.sep-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, #d1d5db, transparent); }
.sep-icon { position: absolute; background: var(--bg-light); padding: 0 20px; color: var(--brand-mint); font-size: 1.2rem; }

/* --- NEW PACKAGES TABLE (MATCHES IMAGE) --- */
.packages-section { padding: 60px 0 100px; background: var(--bg-packages); }
.mt-80 { margin-top: 80px; }

.table-sub-header{
    text-align: center;
}

.package-table-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

/* Header Styling */
.package-table thead tr th {
    background: var(--brand-gray);
    color: #fff;
    padding: 15px 10px;
    font-size: 0.95rem;
    font-weight: 800;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.package-table thead tr th.feature-col {
    background: #fff;
    color: var(--text-dark);
    text-align: left;
    padding-left: 30px;
    border-right: 1px solid var(--border-color);
}

.package-table thead tr th.featured-col {
    background: #4a4a4a; /* Slightly lighter gray to stand out */
}

/* Body Styling */
.package-table td {
    padding: 12px 10px;
    text-align: center;
    white-space: nowrap;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid var(--border-color);
    color: var(--brand-gray);
    font-size: 0.9rem;
}

.package-table td.feature-col {
    text-align: left;
    padding-left: 15px;
    width: 280px;
    font-weight: 700;
    color: var(--text-dark);
    background: #fff;
}

/* Vertical Mint Borders for Featured Column */
.package-table th:nth-child(3), 
.package-table td:nth-child(3) {
    border-left: 2px solid var(--brand-mint);
    border-right: 2px solid var(--brand-mint);
}

/* Pricing Row */
.price-row td.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-mint);
}

/* Action/Button Row */
.action-row td {
    border-bottom: none;
    padding: 15px 10px;
}

.btn-table {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--brand-gray);
    color: var(--brand-gray);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    transition: 0.3s;
}

.btn-mint-table {
    background: var(--brand-mint);
    border-color: var(--brand-mint);
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(110, 241, 230, 0.3);
}

.btn-table:hover {
    transform: translateY(-2px);
    background: var(--brand-gray);
    color: #fff;
}

.btn-mint-table:hover {
    background: #50d8ce;
    color: #0f172a;
}

/* Email table adjustments */
.email-table { max-width: 800px; margin: 0 auto; }

.email-width {
    max-width: 650px;
}


/* ------------------------------------------- */

.pro-tip-banner { background: rgba(110, 241, 230, 0.08); border-left: 5px solid var(--brand-mint); padding: 20px 30px; border-radius: 8px; max-width: 1000px; margin: 0 auto 40px; display: flex; align-items: center; gap: 20px; }
.pro-tip-banner i { color: var(--brand-mint); font-size: 1.8rem; }
.pro-tip-banner p { margin: 0; color: var(--brand-gray); font-size: 0.95rem; }

.inclusion-banner { margin-top: 60px; padding: 40px; background: #0f172a; border-radius: 12px; color: #fff; text-align: center; }
.inclusion-banner h4 { color: var(--brand-mint); font-size: 1.5rem; margin-bottom: 25px; }
.banner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.banner-grid i { color: var(--brand-mint); margin-right: 8px; }
.fine-print { font-size: 0.7rem; opacity: 0.5; margin-top: 25px; }

/* CONTACT FORM */
.contact-ultra { padding: 100px 0; background: var(--brand-gray); color: white; }
.grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.form-container { background: rgba(255,255,255,0.08); padding: 45px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.form-group-inline { display: flex; gap: 15px; margin-bottom: 0; }
.form-group-inline input { flex: 1; }

.package-selection { background: rgba(0,0,0,0.15); padding: 20px; border-radius: 8px; margin-bottom: 20px; border: 1px solid rgba(110, 241, 230, 0.2); }
.label-text { color: var(--brand-mint); font-weight: 800; font-size: 0.85rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.category-label { display: block; font-size: 0.7rem; color: #ccc; margin: 10px 0; font-weight: 600; text-transform: uppercase; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; align-items: center; }

.radio-container { display: flex; align-items: center; position: relative; padding-left: 28px; cursor: pointer; font-size: 0.82rem; color: #fff; user-select: none; margin-bottom: 5px; }
.radio-container input { position: absolute; opacity: 0; cursor: pointer; }
.checkmark { position: absolute; top: 50%; transform: translateY(-50%); left: 0; height: 18px; width: 18px; background-color: rgba(255,255,255,0.1); border-radius: 50%; border: 1px solid var(--brand-mint); }
.radio-container input:checked ~ .checkmark { background-color: var(--brand-mint); box-shadow: 0 0 10px rgba(110, 241, 230, 0.4); }
.radio-container input:checked ~ .checkmark:after { content: ""; position: absolute; display: block; top: 4px; left: 4px; width: 8px; height: 8px; border-radius: 50%; background: #0f172a; }

.form-container input, .form-container textarea { width: 100%; padding: 15px; margin-bottom: 20px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: white; font-size: 0.95rem; box-sizing: border-box; }
.form-container input::placeholder, .form-container textarea::placeholder { color: rgba(255,255,255,0.7); }
.form-container input:focus, .form-container textarea:focus { outline: none; border-color: var(--brand-mint); background: rgba(255,255,255,0.2); }

.btn-submit { width: 100%; padding: 18px; background: var(--brand-mint); color: #0f172a; border: none; font-weight: 800; border-radius: 6px; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(110, 241, 230, 0.4); }

/* FOOTER */
.footer-modern { padding: 30px 0; background: #0a0a0a; color: #777; border-top: 1px solid rgba(255,255,255,0.05); }
.flex-footer { display: flex; justify-content: space-between; align-items: center; }
.legal-link { color: #777; text-decoration: none; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.legal-link:hover { color: var(--brand-mint); }
.mint-text { color: var(--brand-mint); }

/* TOAST */
#toast-container { position: fixed; bottom: 30px; right: 30px; z-index: 9999; }
.toast { background: #1e293b; color: white; padding: 18px 25px; border-radius: 8px; border-left: 5px solid var(--brand-mint); box-shadow: 0 10px 30px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 15px; transform: translateX(120%); transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); min-width: 300px; }
.toast.show { transform: translateX(0); }
.toast i { color: var(--brand-mint); font-size: 1.4rem; }
.toast-content { font-size: 0.9rem; font-weight: 600; }
.toast-error { border-left-color: #ff4757; }
.toast-error i { color: #ff4757; }

/* Ensure the window is hidden by default and shown when active */
#waChatWindow {
    display: none; /* Initial state */
}

#waChatWindow.active {
    display: flex !important; /* Visible state */
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .container { width: 90%; }
    .grid-hero { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .grid-2 { grid-template-columns: 1fr; text-align: left; gap: 40px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; flex-direction: column; }
    .about-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .stat-card { flex: 1; min-width: 250px; }
    
    .menu-toggle { display: block; }
    .main-menu { 
        position: absolute; top: 100%; left: 0; width: 100%; 
        background: #fff; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }
    .main-menu.active { display: block; }
    .main-menu ul { flex-direction: column; gap: 20px; }
    .nav-cta { width: 100%; text-align: center; box-sizing: border-box; }
    .flex-footer { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 768px) {
    .package-table-wrapper { 
        overflow-x: hidden; 
        margin: 0 5px; 
    }

    .package-table { 
        min-width: 100%; 
        table-layout: fixed; 
    }

    /* Smaller Package Names (Headers) */
    .package-table thead tr th {
        font-size: 0.75rem; /* Reduced from 0.95rem */
        padding: 10px 5px;
    }

    /* Smaller General Table Text */
    .package-table td { 
        padding: 8px 4px; 
        font-size: 0.7rem; /* Reduced from 0.9rem */
        white-space: normal;
        word-break: break-word;
    }

    /* Feature Column (Left side labels) */
    .package-table td.feature-col,
    .package-table th.feature-col { 
        width: 100px; /* Narrowed to give more room to data */
        padding-left: 8px; 
        font-size: 0.75rem;
    }

    /* Price adjustment */
    .price-row td.price {
        font-size: 0.9rem;
    }

    /* Button scaling */
    .btn-table {
        padding: 5px 6px;
        font-size: 0.6rem;
        min-width: auto;
    }

    .form-container { padding: 25px 20px; }
    .form-group-inline { flex-direction: column; gap: 0; }
}