/* AQUAFIX — Clean & Mobile CSS */

/* Theme */
:root {
    --af-aqua: #00B8D4;
    --af-deep: #0077B6;
    --af-bg: #F5FBFF;
    --af-text-main: #12324A;
    --af-text-muted: #5C7A8C;
    --af-radius-xl: 22px;
    --af-shadow-soft: 0 8px 18px rgba(0,0,0,0.08);
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui; }
body { background: var(--af-bg); }

/* Shell Container */
.af-shell {
    max-width: 414px;
    margin: 0 auto;
    padding: 0 12px 80px; /* 80px space above call bar */
}

/* --- HEADER --- */
.af-topbar {
    position: sticky;
    top: 0; z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--af-deep);
    padding: 10px 8px;
}

.af-logo-text {
    flex-basis: 40%;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.af-wa-header-btn {
    flex-basis: 40%;
    background: #25D366;
    color: #fff;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.af-wa-icon {
    width: 16px;
    height: 16px;
}

.af-menu-btn {
    flex-basis: 10%;
    background: none;
    border: none;
    font-size: 22px;
    color: #fff;
}

/* Slide Menu */
.af-nav-drawer {
    position: fixed; inset: 0 auto 0 0;
    width: 230px; height: 100%;
    background: #fff;
    box-shadow: 2px 0 12px rgba(0,0,0,0.2);
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 1200;
    padding-top: 60px;
}
.af-nav-drawer ul { list-style: none; }
.af-nav-drawer li { margin-bottom: 12px; }
.af-nav-drawer a {
    display: block;
    padding: 12px 18px;
    color: var(--af-text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}
.af-nav-drawer a:hover { background: var(--af-bg); }

.af-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 1100;
}
body.nav-open .af-nav-drawer { transform: translateX(0); }
body.nav-open .af-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* --- HOME HERO --- */
.af-home-hero {
    margin-top: 18px;
    background: linear-gradient(135deg, var(--af-deep), var(--af-aqua));
    padding: 28px 18px;
    border-radius: var(--af-radius-xl);
    color: #fff;
    text-align: center;
}

.af-home-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.af-home-subtext {
    font-size: 14px;
    margin-bottom: 18px;
}

/* Phone Form */
.af-phone-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.af-phone-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    text-align: center;
    background: #fff;
    color: #000;
}

.af-phone-btn {
    background: #8BC34A;
    color: #0b3b1a;
    padding: 12px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
.af-phone-btn:active { transform: scale(0.96); }

/* Trust Badges */
.af-trust-box {
    display: flex;
    gap: 4px;
    margin-top: 14px;
    font-size: 11px;
}
.af-trust-box span {
    background: rgba(255,255,255,0.18);
    padding: 6px 8px;
    border-radius: 999px;
    flex: 1;
    text-align: center;
}

/* --- FOOTER --- */
.af-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: var(--af-text-muted);
}
.af-footer-nav a {
    font-size: 12px;
    color: var(--af-text-muted);
    text-decoration: none;
    margin: 0 6px;
}

/* FIXED CALL BAR */
.af-call-bar {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: var(--af-deep);
    padding: 12px;
    text-align: center;
    z-index: 2000;
}
.af-call-bar a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}




.af-call-text-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    
    background: rgba(255,255,255,0.22); /* transparent look */
    border-radius: 12px; /* rectangular, not pill */
    margin-top: 4px;
}

.af-call-text-btn:active {
    transform: scale(0.97);
}


/* Service Plans */
.af-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--af-text-main);
    margin-top: 18px;
    text-align: center;
}

.af-subtext-center {
    text-align: center;
    font-size: 13px;
    color: var(--af-text-muted);
    margin-bottom: 18px;
}

.af-plan-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.af-plan-card {
    background: #fff;
    padding: 16px;
    border-radius: var(--af-radius-xl);
    box-shadow: var(--af-shadow-soft);
    text-align: center;
}

.af-plan-card h3 {
    font-size: 18px;
    color: var(--af-text-main);
    margin-bottom: 6px;
}

.af-plan-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--af-deep);
    margin-bottom: 12px;
}

.af-plan-details {
    list-style: none;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--af-text-main);
}
.af-plan-details li {
    margin-bottom: 4px;
}

.af-select-plan-btn {
    width: 100%;
    background: var(--af-aqua);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.af-select-plan-btn:active { transform: scale(0.96); }

.af-add-on {
    font-size: 13px;
    color: var(--af-text-main);
    background: rgba(0,184,212,0.12);
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
}

