@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Great+Vibes&display=swap');

:root {
    --vn-blue: #0046ad;
    --vn-cyan: #00a3e0;
    --vn-yellow: #ffc107;
    --vn-dark-blue: #001a4d;
    --vn-dark: #0a1128;
    /* Azul muy profundo para el footer */
    --vn-white: #ffffff;
    --font-main: 'Outfit', sans-serif;
}

/* Ajuste quirúrgico: Ocultar elemento fantasma */
img[alt="Muni"] {
    display: none !important;
}

body {
    font-family: var(--font-main);
    background-color: #f4f7fe;
    margin: 0;
    overflow-x: hidden;
}

/* Ocultar barras de scroll pero mantener funcionalidad */
.no-scrollbar::-webkit-scrollbar,
.sidebar-laip::-webkit-scrollbar,
.main-content-laip::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
}

.no-scrollbar,
.sidebar-laip,
.main-content-laip,
body {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* HEADER REPLICA */
.top-bar {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 1001;
    color: white;
    padding: 10px 0;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 40px;
    z-index: 1001;
    padding: 20px 0;
}

.nav-link-vn {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0 15px;
    text-transform: uppercase;
}

.btn-portal {
    background: var(--vn-yellow);
    color: var(--vn-dark-blue);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* HERO SECTION - REFINED SPACING */
.hero-vn {
    height: 700px;
    /* Un poco más bajo */
    background: radial-gradient(circle at top right, #003399, #001a4d);
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 100px 0;
    /* Más aire arriba y abajo */
}

.hero-title-vn {
    font-size: 3.8rem;
    /* Reducido de 5rem */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc-vn {
    font-size: 0.95rem;
    /* Fuente más pequeña y elegante */
    max-width: 450px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* DATA CARDS - SMALLER & STYLISH */
.data-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 12px;
    width: 200px;
    /* Más estrechas */
    transition: 0.3s;
}

.data-card h4 {
    font-size: 0.65rem;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 3px;
}

.data-card .value {
    font-size: 1.3rem;
    /* Reducido */
    font-weight: 800;
    color: var(--vn-cyan);
}

/* SECTION HEADERS */
.section-title-vn {
    margin-bottom: 70px;
    /* Más espacio con las tarjetas */
}

.section-title-vn h2 {
    font-size: 2.5rem;
    /* Reducido de 3rem */
    font-weight: 900;
}

/* TRANSPARENCY CARDS REPLICA EXACTA */
.tr-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 35px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.tr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, transparent, #00a3e0, transparent);
    opacity: 0.4;
}

.tr-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 70, 173, 0.1);
}

.tr-card .card-num {
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 1;
}

.tr-card .top-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #ffeb3b;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 2;
}

.tr-card .main-icon {
    font-size: 4.5rem;
    margin-bottom: 35px;
    color: #0046ad;
    text-align: center;
    display: block;
    position: relative;
    z-index: 2;
}

.tr-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}

.tr-card p {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 30px !important;
}

.btn-explorar {
    background: #0046ad;
    color: #ffffff !important;
    padding: 10px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    text-transform: uppercase;
    width: fit-content;
}

.btn-explorar:hover {
    background: #00a3e0;
}

/* HERO BUTTONS - PREMIUM STYLING */
.hero-btns .btn {
    padding: 14px 35px;
    font-size: 0.85rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-transparencia {
    background: linear-gradient(135deg, var(--vn-cyan), var(--vn-blue));
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(0, 163, 224, 0.3);
}

.btn-transparencia:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 163, 224, 0.5);
    filter: brightness(1.1);
}

.btn-servicios {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-servicios:hover {
    background: white;
    color: var(--vn-dark-blue) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* FOOTER PREMIUM REFINED */
footer {
    background: linear-gradient(135deg, #0a1128 0%, #000000 100%) !important;
    color: white !important;
    border-top: 1px solid rgba(0, 163, 224, 0.2);
    padding: 80px 0 40px !important;
}

footer h5 {
    color: var(--vn-cyan);
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

footer .opacity-75 {
    opacity: 0.9 !important;
    font-size: 0.9rem;
    line-height: 1.8;
}

footer .fab {
    color: var(--vn-cyan);
    transition: all 0.3s ease;
    cursor: pointer;
}

footer .fab:hover {
    color: var(--vn-yellow);
    transform: scale(1.2) translateY(-3px);
}

footer ul li {
    margin-bottom: 12px;
    transition: 0.3s;
}

footer ul li:hover {
    color: var(--vn-yellow);
    padding-left: 5px;
}

/* MAYOR SECTION STYLES */
.mayor-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.mayor-text-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.mayor-quote {
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--vn-yellow);
}

.v-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    margin: 0 20px;
}

.mayor-stats-grid {
    transition: all 0.4s ease;
}

.mayor-stats-grid:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 70, 173, 0.08) !important;
}

.mayor-image-wrapper {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 163, 224, 0.1);
    box-shadow: inset 0 0 50px rgba(0, 163, 224, 0.05);
}

.mayor-decoration {
    width: 70%;
    height: 70%;
    background: url('/images/VNLogo.png') no-repeat center;
    background-size: contain;
    opacity: 0.85;
    /* Opacidad alta para máxima claridad */
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.mayor-section:hover .mayor-decoration {
    opacity: 1;
    transform: scale(1.02);
}

.contact-card-vn {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.96)),
        radial-gradient(circle at 90% 5%, rgba(255, 193, 7, 0.18), transparent 34%);
    border: 1px solid rgba(0, 163, 224, 0.18);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 26, 77, 0.12);
    isolation: isolate;
    animation: fadeInUp 0.9s ease-out both;
}

.contact-card-vn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.55), rgba(255, 193, 7, 0.45), rgba(0, 70, 173, 0.2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.contact-card-glow {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.22), transparent 65%);
    z-index: -1;
}

.contact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-kicker {
    margin: 0 0 6px;
    color: var(--vn-cyan);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-card-header h3 {
    margin: 0;
    color: var(--vn-dark-blue);
    font-size: 1.65rem;
    line-height: 1.05;
    font-weight: 900;
}

.contact-shield {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff, #eaf5ff);
    border: 1px solid rgba(0, 163, 224, 0.18);
    box-shadow: inset 0 0 20px rgba(0, 163, 224, 0.08), 0 12px 25px rgba(0, 26, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.contact-shield img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-field {
    margin-bottom: 15px;
}

.contact-field label {
    display: block;
    color: #0f1f3d;
    font-size: 0.79rem;
    font-weight: 800;
    margin-bottom: 7px;
}

.contact-field label span {
    color: #ef4444;
}

.contact-field input,
.contact-field select {
    width: 100%;
    min-height: 46px;
    border: 1.5px solid #d9e3ef;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.86);
    color: #14213d;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-field input:focus,
.contact-field select:focus {
    background: #ffffff;
    border-color: var(--vn-cyan);
    box-shadow: 0 0 0 4px rgba(0, 163, 224, 0.12);
    transform: translateY(-1px);
}

.contact-field small {
    display: block;
    min-height: 16px;
    margin-top: 4px;
    color: #dc2626;
    font-size: 0.68rem;
    font-weight: 700;
}

.contact-field.has-error input,
.contact-field.has-error select {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.contact-field.is-valid input,
.contact-field.is-valid select {
    border-color: rgba(22, 163, 74, 0.65);
}

.phone-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 1.5fr;
    gap: 10px;
}

.contact-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 6px;
}

.contact-security {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
}

.contact-security i {
    color: var(--vn-cyan);
}

.btn-contact-submit {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vn-yellow), #ffd95a);
    color: var(--vn-dark-blue);
    min-width: 150px;
    padding: 13px 24px;
    font-family: var(--font-main);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 24px rgba(255, 193, 7, 0.28);
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(255, 193, 7, 0.34);
    filter: brightness(1.03);
}

.btn-contact-submit:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    transform: none;
}

.btn-contact-submit.is-loading i {
    animation: spinContact 0.8s linear infinite;
}

.contact-status {
    display: none;
    margin-top: 16px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 0.78rem;
    font-weight: 800;
}

.contact-status.show {
    display: block;
    animation: fadeInUp 0.28s ease both;
}

.contact-status.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.contact-status.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-hp {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@keyframes spinContact {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   DASHBOARD TRANSPARENCIA REFINED (HIGH FIDELITY)
   ========================================================================== */

.dashboard-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f1f5f9;
}

/* TOP HEADER */
.portal-top-header {
    background: #001a4d;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.portal-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-portal-yellow {
    background-color: var(--vn-yellow);
    color: #001a4d !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.2s;
    border: none;
}

.btn-portal-yellow:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}


.portal-main-layout {
    display: flex;
    flex-grow: 1;
    gap: 60px;
}

/* SIDEBAR */
.sidebar-laip {
    width: 280px;
    min-width: 280px;
    flex-shrink: 0;
    background: #001a4d;
    color: white;
    height: calc(100vh - 70px);
    position: sticky;
    top: 70px;
    overflow-y: auto;
    z-index: 100;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header {
    padding: 15px 25px 5px;
}

.sidebar-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    font-weight: 800;
}

.menu-item-vn {
    padding: 6px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white !important;
    text-decoration: none !important;
    font-size: 0.72rem;
    font-weight: 600;
    transition: 0.2s;
    position: relative;
}

.menu-item-vn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white !important;
}

.menu-item-vn.active {
    background: #1e3a8a;
    color: white !important;
}

.menu-item-vn.active::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    background: var(--vn-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--vn-yellow);
}

.numeral-badge {
    font-size: 0.75rem;
    font-weight: 900;
    opacity: 1;
    min-width: 25px;
}

/* MAIN CONTENT AREA */
.main-content-laip {
    flex-grow: 1;
    min-width: 0;
    overflow-x: hidden;
    padding: 60px 120px 100px 100px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.search-main-laip {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-main-laip input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
    color: white;
}

.search-main-laip input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* STATS */
.stats-grid-laip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card-laip {
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f1f5f9;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* TABLE */
.doc-table-container {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.04);
    flex-grow: 1;
}

.doc-table th {
    padding: 15px 10px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 800;
    border-bottom: 1px solid #f1f5f9;
}

.doc-row td {
    padding: 18px 10px;
    border-bottom: 1px solid #f8fafc;
    font-size: 0.8rem;
    color: #334155;
    vertical-align: middle;
}

.file-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* PORTAL FOOTER */
.portal-footer {
    background: #001a4d;
    padding: 40px 60px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    border-radius: 30px;
}

.footer-item-vn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-icon-vn {
    font-size: 1.8rem;
    color: white;
}

.footer-text-vn div {
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.footer-text-vn p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.5;
}

.btn-contact-vn {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 35px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.btn-contact-vn:hover {
    background: white;
    color: #001a4d;
}

/* GLOBAL OVERRIDES */
.portal-page header:not(.portal-top-header),
.portal-page footer:not(.portal-footer) {
    display: none !important;
}

/* Ocultar header y footer publicos en paginas del CMS admin */
body:has(.dashboard-wrapper) > header,
body:has(.dashboard-wrapper) > footer {
    display: none !important;
}

/* El padding de main ahora es controlado por .main-content-laip */

.sidebar-trust-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 15px;
    margin: 15px 20px;
}

/* Login Layout Redesign - Split Screen */
.login-page-container {
    display: flex;
    min-height: 100vh;
    background-color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    width: 100%;
}

.login-sidebar {
    flex: 1;
    background: linear-gradient(135deg, #001a4d 0%, #003399 100%);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.sidebar-bg-circles {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.sidebar-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.login-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.login-logo-section img {
    height: 70px;
}

.login-logo-text-box h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-logo-text-box p {
    font-size: 14px;
    margin: 0;
    opacity: 0.7;
}

.sidebar-main-info h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.sidebar-main-info p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 450px;
}

.feature-login-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-login-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-login-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-login-details h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.feature-login-details p {
    font-size: 13px;
    opacity: 0.6;
    margin: 0;
}

.sidebar-building-footer {
    margin-top: auto;
    position: relative;
    height: 200px;
}

.sidebar-building-footer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.3;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.login-main-form-side {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f1f5f9;
}

.login-premium-card {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.login-card-header-premium {
    text-align: center;
    margin-bottom: 40px;
}

.premium-lock-icon {
    width: 70px;
    height: 70px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 26px;
    border: 1px solid #dbeafe;
}

.login-card-header-premium h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.login-card-header-premium p {
    color: #64748b;
    font-size: 16px;
}

.premium-form-group {
    margin-bottom: 25px;
}

.premium-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 10px;
}

.premium-input-box {
    position: relative;
}

.premium-input-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}

.premium-input-box input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    border: 1.5px solid #e2e8f0;
    border-radius: 15px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #1e293b;
}

.premium-input-box input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.pass-toggle-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
}

.pass-toggle-icon:hover {
    color: #64748b;
}

.login-extra-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
}

.forgot-pass-link {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.btn-premium-login {
    width: 100%;
    padding: 16px;
    background: #003399;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-premium-login:hover {
    background: #001a4d;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 51, 153, 0.2);
}

.premium-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 35px 0;
    color: #94a3b8;
    font-size: 14px;
}

.premium-divider::before,
.premium-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1.5px solid #e2e8f0;
}

.premium-divider:not(:empty)::before {
    margin-right: 15px;
}

.premium-divider:not(:empty)::after {
    margin-left: 15px;
}

.btn-google-premium {
    width: 100%;
    padding: 14px;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-google-premium:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.premium-login-footer {
    text-align: center;
    margin-top: 45px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .login-sidebar {
        display: none;
    }

    .login-premium-card {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .contact-card-vn {
        margin-top: 30px;
    }
}

@media (max-width: 640px) {
    .contact-card-vn {
        padding: 22px;
        border-radius: 22px;
    }

    .contact-card-header {
        align-items: flex-start;
    }

    .contact-card-header h3 {
        font-size: 1.35rem;
    }

    .contact-shield {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .contact-shield img {
        width: 44px;
        height: 44px;
    }

    .contact-grid,
    .phone-grid {
        grid-template-columns: 1fr;
    }

    .contact-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-contact-submit {
        width: 100%;
    }
}
