/*
|--------------------------------------------------------------------------
| King Digital Infotainment Network - STYLE.CSS
| Version: 4.2 FINAL RECOVERY BUILD
| Banner Standard: 1909 x 632 px | Aspect Ratio 3.02:1
|--------------------------------------------------------------------------
| Replace:
| /assets/css/style.css
|--------------------------------------------------------------------------
*/

/* =========================
   ROOT + RESET
========================= */
:root {
    --kd-primary: #0057ff;
    --kd-primary-2: #00b8ff;
    --kd-navy: #071b3a;
    --kd-navy-2: #092a59;
    --kd-dark: #06152f;
    --kd-cyan: #19c8ff;
    --kd-green: #20d967;
    --kd-green-2: #10b653;
    --kd-white: #ffffff;
    --kd-light: #f4f8ff;
    --kd-soft: #eaf4ff;
    --kd-text: #07162f;
    --kd-muted: #53657d;
    --kd-border: rgba(0, 87, 255, 0.14);
    --kd-shadow: 0 18px 48px rgba(0, 35, 92, 0.16);
    --kd-shadow-soft: 0 10px 28px rgba(0, 35, 92, 0.10);
    --kd-radius: 24px;
    --kd-radius-sm: 14px;
    --kd-container: 1280px;
    --kd-hero-height: 632px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", "Poppins", "Segoe UI", Arial, sans-serif;
    color: var(--kd-text);
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.wrap,
.container {
    width: min(var(--kd-container), calc(100% - 48px));
    margin-inline: auto;
}

/* =========================
   TOP BAR
========================= */
.topbar {
    width: 100%;
    min-height: 40px;
    background: linear-gradient(90deg, #061b3b 0%, #082a5c 55%, #061b3b 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-contact a,
.top-contact span {
    color: #ffffff;
}

.top-contact a:hover {
    color: var(--kd-cyan);
}

.separator {
    opacity: 0.5;
}

/* =========================
   HEADER + NAVIGATION
========================= */
.site-header {
    width: 100%;
    min-height: 94px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(7, 22, 47, 0.08);
    box-shadow: 0 8px 28px rgba(5, 25, 60, 0.07);
    position: sticky;
    top: 0;
    z-index: 1001;
}

.nav-wrap {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 230px;
}

.brand img {
    width: auto !important;
    height: auto !important;
    max-width: 245px !important;
    max-height: 76px !important;
    object-fit: contain !important;
}

.brand-text {
    display: none;
    color: var(--kd-primary);
    font-size: 27px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.brand-text small {
    display: block;
    margin-top: 5px;
    color: #333b48;
    font-size: 10px;
    letter-spacing: 0.35em;
    font-weight: 800;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}

.nav a {
    color: var(--kd-text);
    font-size: 15px;
    font-weight: 850;
    line-height: 1;
    padding: 14px 0;
    position: relative;
    transition: color 0.22s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--kd-primary), var(--kd-primary-2));
    transition: width 0.25s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--kd-primary);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #eef6ff;
    color: var(--kd-primary);
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 87, 255, 0.10);
}

/* =========================
   BUTTONS
========================= */
.primary-btn,
.whatsapp-btn,
.secondary-btn,
.login-btn,
.get-btn,
.tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--kd-primary) 0%, var(--kd-primary-2) 100%);
    box-shadow: 0 14px 32px rgba(0, 87, 255, 0.28);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 87, 255, 0.35);
}

.primary-btn.small {
    min-height: 50px;
    padding-inline: 24px;
}

.login-btn {
    color: var(--kd-primary);
    background: #eef6ff;
    box-shadow: none;
}

.login-btn:hover {
    background: #dfefff;
}

.whatsapp-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--kd-green) 0%, var(--kd-green-2) 100%);
    box-shadow: 0 14px 34px rgba(16, 182, 83, 0.28);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(16, 182, 83, 0.36);
}

.secondary-btn {
    color: var(--kd-primary);
    background: #ffffff;
    border: 1px solid rgba(0, 87, 255, 0.20);
    box-shadow: 0 10px 26px rgba(0, 35, 92, 0.08);
}

/* =========================
   HERO BANNER 1909 x 632
========================= */
.hero-premium {
    width: 100%;
    min-height: var(--kd-hero-height);
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #f6fbff 0%, #e8f3ff 36%, #102a54 52%, #06152f 100%);
    isolation: isolate;
}

.hero-banner-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: var(--kd-hero-height);
    min-height: var(--kd-hero-height);
    z-index: 0;
    background: #071b3a;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.75s ease, visibility 0.75s ease, transform 4s ease;
}

.hero-banner.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-fallback-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 70% 46%, rgba(0, 184, 255, 0.35), transparent 33%),
        linear-gradient(110deg, #f8fbff 0%, #dce9f6 39%, #18396e 56%, #06152f 100%);
}

.hero-overlay {
    display: none !important;
    background: transparent !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-inner {
    min-height: var(--kd-hero-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    width: min(610px, 100%);
    padding: 58px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--kd-primary);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 87, 255, 0.12);
    box-shadow: 0 10px 26px rgba(0, 35, 92, 0.08);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.eyebrow.light {
    color: #ffffff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.20);
}

.hero-copy h1 {
    margin: 0;
    color: var(--kd-text);
    font-size: clamp(42px, 4.6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 950;
}

.hero-copy p {
    max-width: 560px;
    margin: 24px 0 0;
    color: #4c5f78;
    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.55;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.hero-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: #06172f;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 10px 26px rgba(0, 35, 92, 0.09);
    font-size: 14px;
    font-weight: 900;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

.slider-dots button.active {
    width: 30px;
    background: #ffffff;
}

/* =========================
   TRUST STRIP
========================= */
.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 87, 255, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 26px 0;
}

.trust-grid div {
    min-height: 86px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 255, 0.10);
    box-shadow: 0 10px 28px rgba(0, 35, 92, 0.07);
}

.trust-grid strong {
    display: block;
    color: var(--kd-text);
    font-size: 16px;
    font-weight: 950;
    margin-bottom: 6px;
}

.trust-grid span {
    display: block;
    color: var(--kd-muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

/* =========================
   SECTION BASIC
========================= */
.section {
    padding: 92px 0;
    position: relative;
}

.section-head {
    max-width: 780px;
    margin: 0 0 44px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-head h2,
.split h2,
.support-card h2,
.about-box h2 {
    margin: 0;
    color: var(--kd-text);
    font-size: clamp(32px, 3.6vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.section-head p,
.split p,
.support-card p,
.about-box p {
    margin: 16px 0 0;
    color: var(--kd-muted);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

/* =========================
   PLANS
========================= */
.plans-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.tab {
    color: var(--kd-primary);
    background: #ffffff;
    border: 1px solid rgba(0, 87, 255, 0.14);
    box-shadow: 0 10px 24px rgba(0, 35, 92, 0.06);
}

.tab.active,
.tab:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-2));
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.plan-card {
    position: relative;
    padding: 30px;
    border-radius: 26px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0, 87, 255, 0.12);
    box-shadow: 0 14px 42px rgba(0, 35, 92, 0.08);
    overflow: hidden;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(0, 184, 255, 0.12), transparent 35%);
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 87, 255, 0.26);
    box-shadow: 0 22px 56px rgba(0, 35, 92, 0.14);
}

.save-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--kd-green), var(--kd-green-2));
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.04em;
}

.plan-card h3 {
    margin: 20px 0 8px;
    color: var(--kd-primary);
    font-size: 36px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.plan-note {
    min-height: 48px;
    margin: 0;
    color: var(--kd-muted);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.price {
    margin: 22px 0;
    padding: 20px;
    border-radius: 20px;
    background: #f5f9ff;
    border: 1px solid rgba(0, 87, 255, 0.10);
}

.price span {
    display: block;
    color: var(--kd-muted);
    font-size: 13px;
    font-weight: 800;
}

.price strong {
    display: inline-block;
    margin-top: 6px;
    color: var(--kd-text);
    font-size: 48px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.price em {
    color: var(--kd-muted);
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
}

.tenure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.tenure div {
    padding: 12px 10px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 255, 0.12);
    text-align: center;
}

.tenure span {
    display: block;
    color: var(--kd-muted);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 4px;
}

.tenure b {
    color: var(--kd-primary);
    font-size: 16px;
    font-weight: 950;
}

.plan-card ul {
    list-style: none;
    display: grid;
    gap: 11px;
    margin: 0 0 24px;
    padding: 0;
}

.plan-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #30415f;
    font-size: 14.5px;
    font-weight: 700;
}

.plan-card li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-2));
    font-size: 12px;
    font-weight: 950;
}

.get-btn {
    width: 100%;
    min-height: 50px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-2));
    box-shadow: 0 14px 32px rgba(0, 87, 255, 0.25);
}

/* =========================
   SPLIT + KD HERO
========================= */
.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 48px;
}

.kd-hero-section {
    background:
        radial-gradient(circle at 80% 30%, rgba(0,184,255,0.14), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #eaf4ff 100%);
}

.mascot-card {
    min-height: 420px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 50%, rgba(0,184,255,.28), transparent 36%),
        linear-gradient(135deg, #071b3a 0%, #0a50d2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 55, 140, 0.22);
}

.mascot-card img {
    max-height: 390px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.25));
}

.mascot-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 42px;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.wifi-throne {
    position: absolute;
    inset: auto auto 34px 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid rgba(25, 200, 255, 0.55);
    box-shadow: 0 0 36px rgba(25, 200, 255, 0.55);
    z-index: 1;
}

.wifi-throne span {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    border: 3px solid rgba(255,255,255,0.40);
    border-bottom: 0;
    border-radius: 240px 240px 0 0;
    opacity: 0.85;
    animation: kdPulse 2.6s ease-in-out infinite;
}

.wifi-throne span:nth-child(1) { width: 110px; height: 55px; }
.wifi-throne span:nth-child(2) { width: 180px; height: 90px; animation-delay: .2s; }
.wifi-throne span:nth-child(3) { width: 250px; height: 125px; animation-delay: .4s; }

.wifi-throne i {
    position: absolute;
    left: 50%;
    bottom: 36px;
    width: 18px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 22px rgba(255,255,255,.9);
}

@keyframes kdPulse {
    0%,100% { opacity: .42; transform: translateX(-50%) scale(.98); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.03); }
}

/* =========================
   ENTERTAINMENT
========================= */
.entertainment {
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 40%, rgba(0,184,255,0.24), transparent 33%),
        linear-gradient(135deg, #06152f 0%, #092a59 100%);
}

.entertainment h2,
.entertainment p {
    color: #ffffff;
}

.ent-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ent-card div {
    min-height: 128px;
    border-radius: 24px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

/* =========================
   SERVICES
========================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 255, 0.12);
    box-shadow: 0 12px 34px rgba(0, 35, 92, 0.08);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kd-shadow);
}

.service-card > span {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--kd-text);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.service-card p {
    margin: 0;
    color: var(--kd-muted);
    font-size: 15.5px;
    line-height: 1.58;
}

/* =========================
   COVERAGE
========================= */
.coverage {
    background: #f6faff;
}

.area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.area-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    color: var(--kd-primary);
    background: #ffffff;
    border: 1px solid rgba(0, 87, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 35, 92, 0.07);
    font-size: 15px;
    font-weight: 900;
}

/* =========================
   SUPPORT + CONTACT
========================= */
.support-panel {
    padding-block: 74px;
    background: #ffffff;
}

.support-card {
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 30%, rgba(0,184,255,0.25), transparent 32%),
        linear-gradient(135deg, #06152f 0%, #0a50d2 100%);
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    box-shadow: 0 22px 58px rgba(0, 55, 140, 0.22);
}

.support-card h2,
.support-card p {
    color: #ffffff;
}

.support-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-contact {
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.about-box,
.contact-box {
    padding: 34px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 255, 0.12);
    box-shadow: 0 12px 34px rgba(0, 35, 92, 0.08);
}

.contact-box h3 {
    margin: 0 0 16px;
    color: var(--kd-text);
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.contact-box p {
    margin: 0 0 12px;
    color: var(--kd-muted);
    font-size: 15.5px;
    line-height: 1.58;
}

/* =========================
   FOOTER + FLOAT
========================= */
.footer {
    padding: 26px 0;
    background: #06152f;
    color: rgba(255,255,255,0.78);
}

.copyright {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.float-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    height: 58px;
    min-width: 134px;
    padding: 0 22px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--kd-green), var(--kd-green-2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(16, 182, 83, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.float-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(16, 182, 83, 0.42);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    :root {
        --kd-container: 1120px;
    }

    .nav {
        gap: 20px;
    }

    .brand {
        min-width: 205px;
    }

    .brand img {
        max-width: 210px !important;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 4.4vw, 64px);
    }

    .plan-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    :root {
        --kd-hero-height: auto;
    }

    .topbar {
        font-size: 13px;
    }

    .site-header {
        min-height: 78px;
    }

    .nav-wrap {
        min-height: 78px;
    }

    .brand {
        min-width: auto;
    }

    .brand img {
        max-width: 190px !important;
        max-height: 58px !important;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .header-actions {
        margin-left: auto;
    }

    .nav {
        position: fixed;
        top: 118px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 22px;
        background: #ffffff;
        border: 1px solid rgba(0, 87, 255, 0.12);
        box-shadow: 0 20px 50px rgba(0, 35, 92, 0.18);
        z-index: 1200;
    }

    body.menu-open .nav {
        display: flex;
    }

    .nav a {
        padding: 16px;
        border-radius: 14px;
    }

    .nav a:hover {
        background: #eef6ff;
    }

    .nav a::after {
        display: none;
    }

    .hero-premium,
    .hero-banner-slider {
        min-height: auto;
        height: auto;
    }

    .hero-banner-slider {
        position: relative;
        aspect-ratio: 1909 / 632;
        min-height: 310px;
    }

    .hero-premium .hero-overlay,
.hero-overlay {
    display: none !important;
}

    .hero-inner {
        min-height: auto;
        padding: 54px 0;
    }

    .hero-copy {
        padding: 0;
    }

    .split,
    .about-grid,
    .support-card {
        grid-template-columns: 1fr;
    }

    .support-card {
        text-align: center;
    }

    .support-actions {
        justify-content: center;
    }

    .ent-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .wrap,
    .container {
        width: calc(100% - 30px);
    }

    .topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .top-contact-right {
        display: none;
    }

    .top-contact {
        justify-content: center;
    }

    .header-actions {
        display: none;
    }

    .nav {
        top: 96px;
    }

    .brand img {
        max-width: 170px !important;
        max-height: 52px !important;
    }

    .hero-banner-slider {
        min-height: 240px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82));
    }

    .hero-copy h1 {
        font-size: 38px;
        letter-spacing: -0.055em;
    }

    .hero-copy p {
        font-size: 16.5px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-points span {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 64px 0;
    }

    .trust-grid,
    .plan-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .tenure {
        grid-template-columns: 1fr;
    }

    .ent-card {
        grid-template-columns: 1fr;
    }

    .mascot-card {
        min-height: 310px;
        border-radius: 24px;
    }

    .wifi-throne {
        width: 250px;
        height: 130px;
    }

    .support-card,
    .about-box,
    .contact-box {
        padding: 26px;
        border-radius: 22px;
    }

    .float-wa {
        right: 16px;
        bottom: 16px;
        min-width: 58px;
        width: 58px;
        padding: 0;
        font-size: 0;
    }

    .float-wa::before {
        content: "☎";
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .brand img {
        max-width: 150px !important;
    }

    .hero-copy h1 {
        font-size: 33px;
    }

    .primary-btn,
    .whatsapp-btn,
    .secondary-btn,
    .login-btn,
    .get-btn,
    .tab {
        min-height: 48px;
        padding: 0 20px;
        font-size: 14px;
    }
}

/* Hero quick tabs below banner image - v4.3 */
.hero-quick-tabs {
    width: 100%;
    background: #ffffff;
    padding: 18px 0 20px;
    position: relative;
    z-index: 6;
    border-bottom: 1px solid rgba(0, 87, 255, 0.10);
    box-shadow: 0 10px 26px rgba(0, 35, 92, 0.06);
}

.hero-tabs-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-tab {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    transition: 0.25s ease;
}

.hero-tab-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0057ff 0%, #0bbdff 100%);
    box-shadow: 0 14px 28px rgba(0, 87, 255, 0.24);
}

.hero-tab-whatsapp {
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.24);
}

.hero-tab-light {
    color: #071b3a;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 35, 92, 0.08);
}

.hero-tab-primary:hover,
.hero-tab-whatsapp:hover,
.hero-tab-light:hover {
    transform: translateY(-2px);
}


@media (max-width: 991px) {
    .hero-quick-tabs {
        padding: 16px 0;
    }
    .hero-tabs-row {
        justify-content: center;
        gap: 10px;
    }
    .hero-tab {
        min-height: 44px;
        padding: 0 18px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .hero-tabs-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hero-tab {
        width: 100%;
        min-height: 46px;
    }
}

/* =========================
   PLAN TAB FUNCTION SUPPORT - v4.6
========================= */
.plan-card.is-hidden {
    display: none !important;
}

.tabs .tab.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-2)) !important;
    box-shadow: 0 12px 28px rgba(0, 87, 255, 0.25) !important;
}
