/* ═══════════════════════════════════════════════════════════════════
   eCitizen Publisher Pages — Shared Stylesheet
   Covers: login.html, login2–4.html, after-otp.html, home.html
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --ecitizen-green: #2e7d32;
    --ecitizen-green-dark: #1b5e20;
    --ecitizen-green-btn: #43a047;
    --ecitizen-teal: #1a3c40;
    --ecitizen-dark: #0f2b2f;
    --ecitizen-darker: #0a1f22;
    --navbar-height: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f9fa;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── Auth Header (login2–4, after-otp) ─── */
.auth-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 16px 40px;
    display: flex;
    align-items: center;
}
.auth-header img { height: 40px; }

/* ─── Auth Identity Card ─── */
.auth-identity-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 48px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
}
.auth-identity-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--ecitizen-green-btn), var(--ecitizen-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #fff;
}
.auth-identity-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}
.auth-user-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.88rem;
}
.auth-user-detail:last-of-type { border-bottom: none; }
.auth-user-label {
    color: #888;
    font-weight: 500;
}
.auth-user-value {
    color: #1a1a1a;
    font-weight: 600;
}
.auth-change-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}
.auth-change-link:hover { text-decoration: underline; color: #1557b0; }

.auth-proceed-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--ecitizen-green-btn);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 28px;
    text-decoration: none;
    text-align: center;
}
.auth-proceed-btn:hover { background: var(--ecitizen-green); color: #fff; }

/* ─── Auth Footer ─── */
.auth-footer {
    padding: 20px 40px;
    text-align: center;
    font-size: 0.82rem;
    color: #999;
}
.auth-footer a {
    color: #888;
    text-decoration: none;
    margin: 0 12px;
}
.auth-footer a:hover { color: #555; text-decoration: underline; }
.auth-footer-separator {
    color: #ccc;
}

/* ─── Auth Page Layouts ─── */
.auth-page-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8f9fa;
}

.auth-row-layout {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 40px 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ─── Ad Zone Containers ─── */
.auth-banner-zone {
    width: 100%;
    max-width: 900px;
    min-height: 200px;
    margin: 0 auto;
}

.auth-right-ad-area {
    width: 400px;
    height: 560px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.auth-sidebar-ad {
    width: 300px;
    height: 560px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* ─── Login Page Layout ─── */
.login-wrapper {
    display: flex;
    flex: 1;
    min-height: 100vh;
}

/* Left: Login Form */
.login-form-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 60px;
    background: #fff;
    position: relative;
    min-width: 0;
}
.login-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
}
.login-logo img { height: 44px; }

.login-top-actions {
    position: absolute;
    top: 40px;
    right: 60px;
    display: flex;
    gap: 8px;
}
.login-top-actions button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.login-top-actions button:hover { background: #f0f0f0; }

.login-form-content {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ecitizen-green);
    margin-bottom: 4px;
}
.login-subheading {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 36px;
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
}
.form-input-custom {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.92rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    background: #fdfde8;
}
.form-input-custom:focus { border-color: var(--ecitizen-green-btn); }
.form-input-custom::placeholder { color: #bbb; }

.required-asterisk { color: #e53935; font-weight: 600; }

.password-field-wrapper { position: relative; }

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.password-toggle-btn:hover { color: #555; }

.form-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.remember-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
}
.remember-check input { accent-color: var(--ecitizen-green-btn); }

.forgot-link {
    font-size: 0.85rem;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}
.forgot-link:hover { text-decoration: underline; color: #1557b0; }

.btn-login {
    width: 100%;
    padding: 13px;
    background: var(--ecitizen-green-btn);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 24px;
    text-decoration: none;
    display: block;
    text-align: center;
}
.btn-login:hover { background: var(--ecitizen-green); color: #fff; }

.divider-text {
    text-align: center;
    font-size: 0.82rem;
    color: #aaa;
    margin-bottom: 20px;
    position: relative;
}
.divider-text::before,
.divider-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}
.divider-text::before { left: 0; }
.divider-text::after { right: 0; }

.btn-digital-id {
    width: 100%;
    padding: 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.btn-digital-id:hover { background: #eee; }
.btn-digital-id .digital-id-icon {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #43a047, #1e88e5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

.login-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: auto;
    padding-top: 40px;
}
.login-footer-text a {
    color: var(--ecitizen-green-btn);
    font-weight: 600;
    text-decoration: none;
}
.login-footer-text a:hover { text-decoration: underline; }

/* Right: Hero Panel */
.login-hero-panel {
    width: 50%;
    max-width: 640px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3c40 0%, #2e7d32 100%);
}
.login-hero-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?w=800&q=80') center/cover no-repeat;
}
.login-hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.login-hero-frosted-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 120px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    padding: 16px 24px;
    z-index: 2;
}

/* ─── Home Page: Top accent bar ─── */
.top-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, #000 33.3%, #b71c1c 33.3%, #b71c1c 66.6%, var(--ecitizen-green) 66.6%);
}

/* ─── Home Page: Navbar ─── */
.ecitizen-navbar {
    height: var(--navbar-height);
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.ecitizen-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}
.ecitizen-navbar .navbar-brand .ecitizen-logo { height: 42px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 40px;
}
.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.935rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #1a1a1a; background: #f5f5f5; }

.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-actions .search-icon-btn {
    background: none; border: none; font-size: 1.25rem; color: #555;
    cursor: pointer; padding: 6px; border-radius: 50%; transition: background 0.2s;
}
.navbar-actions .search-icon-btn:hover { background: #f0f0f0; }

.btn-sign-in {
    background: none; border: none; color: #333; font-weight: 600;
    font-size: 0.9rem; cursor: pointer; padding: 8px 16px; text-decoration: none;
}
.btn-sign-in:hover { color: #111; }

.btn-register {
    background: var(--ecitizen-green-btn); color: #fff; border: none;
    padding: 8px 22px; border-radius: 6px; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.btn-register:hover { background: var(--ecitizen-green); color: #fff; }

.navbar-utility-icons { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.navbar-utility-icons button {
    background: none; border: none; font-size: 1.3rem; color: #666;
    cursor: pointer; padding: 4px; border-radius: 50%;
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
}
.navbar-utility-icons button:hover { background: #f0f0f0; }

/* ─── Home Page: Hero Section ─── */
.hero-section {
    position: relative;
    min-height: 440px;
    background: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1920&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 60px;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,30,30,0.4) 0%, rgba(10,30,30,0.6) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

.hero-title {
    color: #fff; font-size: 2.4rem; font-weight: 400;
    line-height: 1.35; margin-bottom: 40px; max-width: 650px;
}
.hero-title strong { font-weight: 700; }

/* ─── Home Page: Search Bar ─── */
.hero-search-bar {
    position: relative; z-index: 2;
    max-width: 1080px; margin: 0 auto; width: 100%;
}
.hero-search-bar .search-wrapper {
    background: #fff; border-radius: 50px; padding: 6px 8px;
    display: flex; align-items: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.hero-search-bar .search-icon { font-size: 1.3rem; color: #999; margin-left: 16px; flex-shrink: 0; }
.hero-search-bar input {
    border: none; outline: none; flex: 1; padding: 14px 16px;
    font-size: 1rem; color: #333; background: transparent;
}
.hero-search-bar input::placeholder { color: #aaa; }

/* ─── Home Page: Services Strip ─── */
.services-strip { position: relative; z-index: 2; padding: 36px 0 40px; }
.services-grid { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.service-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    width: 120px; cursor: pointer; text-decoration: none; color: #fff; transition: transform 0.2s;
}
.service-item:hover { transform: translateY(-4px); color: #fff; }

.service-item .service-icon-circle {
    width: 52px; height: 52px;
    border: 2px solid rgba(255,255,255,0.7); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.55rem; transition: all 0.2s;
}
.service-item:hover .service-icon-circle { border-color: #fff; background: rgba(255,255,255,0.1); }

.service-item .service-label {
    font-size: 0.78rem; text-align: center; line-height: 1.35; font-weight: 500; opacity: 0.95;
}

.hero-bottom {
    background: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1920&q=80') center bottom/cover no-repeat;
    position: relative;
}
.hero-bottom::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,30,30,0.65) 0%, rgba(10,30,30,0.75) 100%);
    z-index: 1;
}
.hero-bottom > * { position: relative; z-index: 2; }

/* ─── Home Page: Info Bar ─── */
.home-info-bar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    text-align: center;
}
.home-info-bar p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}
.home-info-bar strong { color: var(--ecitizen-green); }

/* ─── Home Page: Get Started Bar ─── */
.get-started-bar { background: var(--ecitizen-darker); padding: 20px 0; }
.get-started-bar .bar-content { display: flex; align-items: center; justify-content: space-between; }
.get-started-bar h3 { color: #fff; font-size: 1.2rem; font-weight: 600; margin: 0; }
.get-started-bar .bar-actions { display: flex; gap: 12px; }

.btn-signin-outline {
    background: transparent; border: 1.5px solid #fff; color: #fff;
    padding: 9px 28px; border-radius: 6px; font-weight: 600; font-size: 0.88rem;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-signin-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

.btn-register-green {
    background: var(--ecitizen-green-btn); border: none; color: #fff;
    padding: 10px 28px; border-radius: 6px; font-weight: 600; font-size: 0.88rem;
    cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.btn-register-green:hover { background: var(--ecitizen-green); color: #fff; }

/* ─── Home Page: Banner Ad Zone ─── */
.home-banner-zone {
    width: 100%;
    --banner-slot-min-height: 240px;
    min-height: var(--banner-slot-min-height);
    background: #111;
    display: flex;
    align-items: stretch;
}

/* ─── Home Page: Agencies Section ─── */
.agencies-section { padding: 40px 0 20px; }
.agencies-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.agencies-header h2 { font-size: 1.35rem; font-weight: 700; color: #1a1a1a; margin: 0; }
.agencies-header a { color: var(--ecitizen-green-btn); font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.agencies-header a:hover { color: var(--ecitizen-green); text-decoration: underline; }

.agency-card {
    background: #fff; border: 1px solid #e8e8e8; border-radius: 12px;
    padding: 24px; display: flex; align-items: center; gap: 16px;
    transition: all 0.2s; cursor: pointer; height: 100%;
}
.agency-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: #d0d0d0; }

.agency-logo {
    width: 48px; height: 48px; border-radius: 10px; background: #f5f5f5;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.4rem; color: #666;
}
.agency-info h5 { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; margin-bottom: 2px; }
.agency-info p { font-size: 0.78rem; color: #888; margin: 0; }

/* ─── Home Page: Footer ─── */
.ecitizen-footer {
    background: var(--ecitizen-darker); color: #aaa;
    padding: 48px 0 24px; margin-top: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 28px; }
.footer-brand span { color: #fff; font-size: 1.3rem; font-weight: 700; }
.footer-desc { font-size: 0.85rem; line-height: 1.6; max-width: 320px; color: #888; }
.footer-heading { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid #1a3a3a; margin-top: 36px; padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: #888; font-size: 1.1rem; transition: color 0.2s; }
.footer-socials a:hover { color: #fff; }

/* ─── SDK Overrides: Make ad creatives fill their containers ─── */

/* Right ad panel (login3) + Sidebar ads (login4) — shared fill rules */
.auth-right-ad-area .ecitizen-ad-slot,
.auth-sidebar-ad .ecitizen-ad-slot {
    width: 100% !important;
    height: 100% !important;
}
.auth-right-ad-area .ecitizen-ad-wrapper,
.auth-right-ad-area .ecitizen-ad-carousel,
.auth-sidebar-ad .ecitizen-ad-wrapper,
.auth-sidebar-ad .ecitizen-ad-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}
.auth-right-ad-area .ecitizen-carousel-slides,
.auth-sidebar-ad .ecitizen-carousel-slides {
    position: absolute;
    inset: 0;
}
.auth-right-ad-area .ecitizen-creative,
.auth-sidebar-ad .ecitizen-creative {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.auth-right-ad-area .ecitizen-creative > a,
.auth-right-ad-area .ecitizen-creative > div,
.auth-sidebar-ad .ecitizen-creative > a,
.auth-sidebar-ad .ecitizen-creative > div {
    width: 100%;
    height: 100%;
    display: flex;
}
.auth-right-ad-area .ecitizen-creative > a > div,
.auth-right-ad-area .ecitizen-creative > div > div,
.auth-sidebar-ad .ecitizen-creative > a > div,
.auth-sidebar-ad .ecitizen-creative > div > div {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Banner zones (login2, after-otp, home) — full width, fixed height */
.auth-banner-zone {
    --banner-slot-min-height: 200px;
}
.auth-banner-zone,
.home-banner-zone {
    overflow: hidden;
}
.auth-banner-zone .ecitizen-ad-slot,
.home-banner-zone .ecitizen-ad-slot {
    width: 100% !important;
    min-height: var(--banner-slot-min-height) !important;
    display: flex !important;
}
.auth-banner-zone .ecitizen-ad-wrapper,
.auth-banner-zone .ecitizen-ad-carousel,
.auth-banner-zone .ecitizen-carousel-slides,
.home-banner-zone .ecitizen-ad-wrapper,
.home-banner-zone .ecitizen-ad-carousel,
.home-banner-zone .ecitizen-carousel-slides,
.auth-banner-zone .ecitizen-creative,
.auth-banner-zone .ecitizen-creative > a,
.auth-banner-zone .ecitizen-creative > div,
.home-banner-zone .ecitizen-creative,
.home-banner-zone .ecitizen-creative > a,
.home-banner-zone .ecitizen-creative > div {
    width: 100% !important;
    max-width: none !important;
    min-height: var(--banner-slot-min-height) !important;
}
.auth-banner-zone .ecitizen-creative,
.auth-banner-zone .ecitizen-creative > a,
.auth-banner-zone .ecitizen-creative > div,
.auth-banner-zone .ecitizen-creative > a > div,
.auth-banner-zone .ecitizen-creative > div > div,
.home-banner-zone .ecitizen-creative,
.home-banner-zone .ecitizen-creative > a,
.home-banner-zone .ecitizen-creative > div,
.home-banner-zone .ecitizen-creative > a > div,
.home-banner-zone .ecitizen-creative > div > div {
    display: flex !important;
    align-items: stretch !important;
    flex: 1 1 auto;
}
.auth-banner-zone .ecitizen-creative > a > div,
.auth-banner-zone .ecitizen-creative > div > div,
.home-banner-zone .ecitizen-creative > a > div,
.home-banner-zone .ecitizen-creative > div > div {
    border-radius: 0 !important;
    width: 100% !important;
    min-height: var(--banner-slot-min-height) !important;
}
/* Make banner images fill full width */
.auth-banner-zone .ecitizen-creative img,
.auth-banner-zone .ecitizen-creative video,
.auth-banner-zone .ecitizen-creative iframe,
.home-banner-zone .ecitizen-creative img,
.home-banner-zone .ecitizen-creative video,
.home-banner-zone .ecitizen-creative iframe {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
}
.auth-banner-zone .ecitizen-creative > a,
.home-banner-zone .ecitizen-creative > a {
    display: block !important;
    width: 100% !important;
}
.auth-banner-zone .ecitizen-creative,
.home-banner-zone .ecitizen-creative {
    width: 100% !important;
}

/* Hero overlay (login.html frosted bar) */
.login-hero-frosted-overlay .ecitizen-ad-wrapper,
.login-hero-frosted-overlay .ecitizen-ad-carousel,
.login-hero-frosted-overlay .ecitizen-carousel-slides {
    width: 100%;
}
.login-hero-frosted-overlay .ecitizen-creative > a > div,
.login-hero-frosted-overlay .ecitizen-creative > div > div {
    border-radius: 0 !important;
    background: transparent !important;
}
.login-hero-frosted-overlay .ecitizen-sponsored-label {
    display: none !important;
}

/* Carousel dots — absolute position inside panel/sidebar containers */
.auth-right-ad-area .ecitizen-carousel-dots,
.auth-sidebar-ad .ecitizen-carousel-dots {
    position: absolute !important;
    bottom: 16px !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0 !important;
    z-index: 10;
}
.auth-right-ad-area .ecitizen-carousel-dots .ecitizen-dot,
.auth-sidebar-ad .ecitizen-carousel-dots .ecitizen-dot {
    background: rgba(255,255,255,0.4) !important;
}
.auth-right-ad-area .ecitizen-carousel-dots .ecitizen-dot-active,
.auth-sidebar-ad .ecitizen-carousel-dots .ecitizen-dot-active {
    background: #fff !important;
}

/* Sponsored label styling for panels/sidebars */
.auth-right-ad-area .ecitizen-sponsored-label,
.auth-sidebar-ad .ecitizen-sponsored-label {
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    background: rgba(0,0,0,0.4) !important;
    color: rgba(255,255,255,0.8) !important;
}

/* ─── Responsive ─── */
@media (max-width: 1400px) {
    .auth-sidebar-ad { display: none; }
}

@media (max-width: 992px) {
    .login-hero-panel { display: none; }
    .login-form-panel { padding: 30px 24px; }
    .login-top-actions { top: 30px; right: 24px; }
    .auth-right-ad-area { display: none; }
    .home-banner-zone { --banner-slot-min-height: 220px; }
    .nav-links { display: none; }
    .hero-title { font-size: 1.8rem; }
    .services-grid { gap: 12px; }
    .service-item { width: 100px; }
}

@media (max-width: 576px) {
    .home-banner-zone { --banner-slot-min-height: 180px; }
    .hero-title { font-size: 1.5rem; }
    .hero-section { min-height: 320px; }
    .service-item { width: 80px; }
    .service-item .service-icon-circle { width: 44px; height: 44px; font-size: 1.2rem; }
    .service-item .service-label { font-size: 0.7rem; }
    .get-started-bar .bar-content { flex-direction: column; gap: 16px; text-align: center; }
    .auth-identity-card { padding: 32px 24px; }
    .auth-header { padding: 16px 20px; }
}
