/* ============================================================
   HavvaaPlus — design system (indigo + violet)
   Loaded AFTER Styles.css / reset.css on purpose.
   Direction: modern yet grounded — friendly for students,
   credible for parents.
   ============================================================ */

:root {
    --indigo-50: #eef2ff;
    --indigo-100: #e0e7ff;
    --indigo-200: #c7d2fe;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --indigo-700: #4338ca;
    --indigo-800: #3730a3;
    --indigo-900: #312e81;

    --violet-50: #f5f3ff;
    --violet-100: #ede9fe;
    --violet-200: #ddd6fe;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;

    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --page-bg: #f7f7fb;
    --card: #ffffff;
    --border: #e5e7eb;

    --shadow-sm: 0 1px 3px rgba(17, 24, 39, .06);
    --shadow-md: 0 6px 18px rgba(17, 24, 39, .09);
    --radius: 14px;
}

body {
    background-color: var(--page-bg);
    color: var(--gray-800);
}

/* accessible focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--indigo-200) !important;
    outline-offset: 2px;
    border-radius: 4px;
}

/* recolor legacy blue helpers to indigo */
.bg-info {
    background-color: var(--indigo-600) !important;
}

.text-info {
    color: var(--indigo-600) !important;
}

/* ============ skip link ============ */
.skip-link {
    position: absolute;
    top: -60px;
    right: 16px;
    background: var(--indigo-700);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    font-weight: 700;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

/* ============ header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    box-shadow: 0 2px 14px rgba(17, 24, 39, .07);
    padding-top: 0;
}

.topbar {
    background: linear-gradient(90deg, var(--indigo-800), var(--indigo-600));
    color: var(--indigo-50);
    font-size: 13px;
    padding: 7px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar a {
    color: var(--indigo-50);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar a:hover {
    color: #fff;
}

.topbar i {
    font-size: 12px;
    opacity: .9;
}

.topbar-sep {
    opacity: .45;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.brand-text strong {
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 800;
}

.brand-text small {
    color: var(--gray-600);
    font-size: 12px;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nav-list li {
    font-weight: 700;
    font-size: 15px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}

.nav-list li a {
    display: block;
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: 999px;
    transition: color .2s ease;
}

.nav-list li:hover a {
    color: var(--indigo-700);
    background: var(--indigo-50);
}

.nav-list li.active a {
    color: #fff;
    background: linear-gradient(90deg, var(--indigo-600), var(--indigo-500));
    box-shadow: 0 3px 10px rgba(79, 70, 229, .35);
}

.nav-toggle {
    display: none !important;
    color: var(--indigo-700);
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.auth-actions .btn {
    padding: 8px 18px;
    font-size: 14px;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--indigo-700);
    background: var(--indigo-50);
    border: 1px solid var(--indigo-100);
    padding: 8px 18px;
    border-radius: 999px;
    transition: all .2s ease;
}

.auth-btn:hover {
    background: var(--indigo-600);
    border-color: var(--indigo-600);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* ============ notifications bell ============ */
.notif-bell {
    position: relative;
    display: inline-flex;
}

.notif-bell-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 17px;
    color: var(--indigo-700);
    background: var(--indigo-50);
    border: 1px solid var(--indigo-100);
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
}

.notif-bell-btn:hover {
    background: var(--indigo-600);
    border-color: var(--indigo-600);
    color: #fff;
}

.notif-badge {
    position: absolute;
    top: -6px;
    left: -4px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: #ef4444;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, .45);
}

.notif-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(17, 24, 39, .16);
    overflow: hidden;
    z-index: 80;
}

.notif-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 14px;
    color: var(--gray-900, #111827);
    background: var(--indigo-50);
    border-bottom: 1px solid var(--indigo-100);
}

.notif-mark-all {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--indigo-600);
    cursor: pointer;
}

.notif-mark-all:hover {
    text-decoration: underline;
}

.notif-menu-list {
    max-height: 340px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.notif-item a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-100, #f3f4f6);
    transition: background .15s ease;
}

.notif-item:last-child a {
    border-bottom: none;
}

.notif-item a:hover {
    background: var(--gray-50, #f9fafb);
}

.notif-item-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    color: var(--gray-700, #374151);
}

.notif-item.unread .notif-item-title {
    color: var(--gray-900, #111827);
    font-weight: 800;
}

.notif-dot {
    font-size: 7px;
    color: var(--indigo-500);
}

.notif-item-body {
    font-size: 12.5px;
    color: var(--gray-600, #4b5563);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-item-time {
    font-size: 11px;
    color: var(--gray-400, #9ca3af);
}

.notif-empty {
    padding: 26px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--gray-400, #9ca3af);
}

/* mobile menu */
#overlay {
    visibility: hidden;
}

#mobileMenu {
    right: -300px;
    width: 300px;
    background: linear-gradient(180deg, var(--indigo-800), var(--indigo-900));
    padding-right: 20px;
    padding-top: 22px;
}

#mobileMenu #closeMenu {
    color: #fff;
    left: 16px;
    top: 8px;
    position: absolute;
    font-size: 22px;
    font-style: normal;
    background: rgba(255, 255, 255, .12);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

#mobileMenu #closeMenu:hover {
    background: var(--violet-500);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.mobile-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.mobile-brand span {
    font-weight: 800;
    font-size: 15px;
}

#mobileMenu ul li a {
    padding: 10px 8px;
    font-weight: 700;
    border-radius: 10px;
    transition: background .2s ease;
}

#mobileMenu ul li a:hover {
    background: rgba(255, 255, 255, .1);
}

#mobileMenu ul li.active a {
    background: rgba(255, 255, 255, .16);
    box-shadow: inset 3px 0 0 var(--violet-500);
}

/* ============ buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 24px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
    text-align: center;
    line-height: 1.6;
}

.btn-primary {
    background: var(--indigo-600);
    color: #fff !important;
}

.btn-primary:hover {
    background: var(--indigo-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: #fff !important;
}

.btn-outline {
    border-color: var(--indigo-600);
    color: var(--indigo-600) !important;
    background: #fff;
}

.btn-outline:hover {
    background: var(--indigo-50);
    color: var(--indigo-700) !important;
}

.btn-violet {
    background: var(--violet-500);
    color: #fff !important;
}

.btn-violet:hover {
    background: var(--violet-600);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============ section titles ============ */
.page-title {
    text-align: center;
    color: var(--gray-800);
    font-size: 1.45rem;
    font-weight: 800;
    margin: 26px 0 18px;
    padding-bottom: 16px;
    position: relative;
}

.page-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--indigo-600), var(--violet-500));
}

/* detail pages */
.detail-title {
    color: var(--gray-800);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ============ cards & panels ============ */
.card,
.personnel-item,
.P-Ns_notification,
.P-Ns_notification-details,
.P-cultureds,
.p-cultured-item,
.P-aboutUs,
.branch_item,
.panelList,
.PanelCard {
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}

.personnel-item:hover,
.P-Ns_notification:hover,
.P-cultureds:hover,
.P-aboutUs:hover,
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* ============ homepage: fast access ============ */
.fast-access {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-sm);
    padding: 14px;
}

.fast_access_item {
    width: 88px;
    height: 76px;
    border-radius: 16px;
    background: var(--indigo-50);
    border: 1px solid var(--indigo-100);
    color: var(--indigo-700);
    transition: all .2s ease;
}

.fast_access_item i {
    font-size: 18px;
    margin-bottom: 6px;
}

.fast_access_item p {
    font-size: 12px;
    font-weight: 700;
}

.fast_access_item:hover {
    background: var(--indigo-600);
    border-color: var(--indigo-600);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fast_access_item-violet {
    background: var(--violet-50);
    border-color: var(--violet-200);
    color: var(--violet-600);
}

.fast_access_item-violet:hover {
    background: var(--violet-500);
    border-color: var(--violet-500);
    color: #fff;
}

/* ============ homepage: notifications aside ============ */
.section_fastAccess_notifications aside {
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--card);
}

.notif_icon {
    background-color: var(--violet-500);
    box-shadow: 0 0 0 4px var(--violet-100);
}

.notification {
    border-bottom: 1px solid var(--border);
}

.notification div h2 {
    color: var(--gray-800);
}

.notification div p a,
.more {
    color: var(--indigo-600);
}

.more_notif {
    border: 2px solid var(--indigo-600);
    color: var(--indigo-600);
    border-radius: 999px;
    transition: all .2s ease;
}

.more_notif:hover {
    background-color: var(--indigo-600);
    color: #fff;
}

/* ============ about us page ============ */
.about-hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--indigo-800);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}

.about-hero--plain {
    background: linear-gradient(120deg, var(--indigo-800), var(--indigo-600));
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, .55), rgba(17, 24, 39, .35));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 16px;
}

.about-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 26px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.about-hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

.about-hero-subtitle {
    margin-top: 8px;
    font-size: 14px;
    opacity: .92;
    letter-spacing: .3px;
}

.about-main {
    margin-top: 26px;
    padding: 28px 24px;
}

.about-body {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 2.1;
    text-align: justify;
}

.about-body p {
    margin-bottom: 14px;
}

.about-body h2,
.about-body h3 {
    color: var(--gray-800);
    font-weight: 800;
    margin: 18px 0 8px;
}

.about-body ul,
.about-body ol {
    padding-right: 20px;
    margin: 10px 0;
}

.about-body ul {
    list-style: disc;
}

.about-body ol {
    list-style: decimal;
}

.about-body li {
    margin: 4px 0;
}

.about-body a {
    color: var(--indigo-600);
    font-weight: 700;
}

.about-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 12px 0;
}

.about-body blockquote {
    border-right: 4px solid var(--indigo-500);
    background: var(--indigo-50);
    padding: 10px 14px;
    border-radius: 8px;
    margin: 12px 0;
    color: var(--gray-700);
}

/* mission / vision / values */
.about-mvv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.about-mvv-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px 18px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.about-mvv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.about-mvv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--indigo-50);
    color: var(--indigo-600);
    border: 1px solid var(--indigo-100);
    font-size: 20px;
    margin-bottom: 12px;
}

.about-mvv-card:nth-child(2) .about-mvv-icon {
    background: var(--violet-50);
    color: var(--violet-600);
    border-color: var(--violet-200);
}

.about-mvv-card:nth-child(3) .about-mvv-icon {
    background: #f5f3ff;
    color: #7c3aed;
    border-color: #ede9fe;
}

.about-mvv-card h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.about-mvv-body {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 2;
    text-align: justify;
}

.about-mvv-body ul {
    list-style: disc;
    padding-right: 18px;
}

.about-mvv-body p {
    margin: 4px 0;
}

.about-mvv-body li {
    margin: 3px 0;
}

/* stats band */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 28px;
    border-radius: var(--radius);
    background: linear-gradient(120deg, var(--indigo-800), var(--indigo-600));
    padding: 26px 18px;
    box-shadow: var(--shadow-md);
}

.about-stat {
    text-align: center;
    color: #fff;
    padding: 8px 4px;
}

.about-stat i {
    font-size: 22px;
    color: var(--violet-200);
    display: block;
    margin-bottom: 8px;
}

.about-stat strong {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.4;
}

.about-stat span {
    font-size: 13px;
    color: var(--indigo-100);
}

/* fields */
.about-fields {
    margin-top: 34px;
}

.about-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 768px) {
    .about-fields-grid {
        grid-template-columns: 1fr;
    }
}

.about-field-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 14px 16px;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
    color: var(--gray-800);
}

.about-field-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--indigo-200);
}

.about-field-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .06);
}

.about-field-card h3 {
    font-size: 15px;
    font-weight: 800;
}

.about-field-card p {
    font-size: 12.5px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-top: 3px;
}

.about-field-arrow {
    margin-right: auto;
    color: var(--gray-400);
    font-size: 13px;
}

.about-field-card:hover .about-field-arrow {
    color: var(--indigo-600);
}

/* CTA */
.about-cta {
    margin-top: 34px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 30px 20px;
    text-align: center;
}

.about-cta-inner h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.about-cta-inner p {
    color: var(--gray-600);
    font-size: 14.5px;
    margin-bottom: 18px;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.about-cta-actions .btn-outline {
    border: 2px solid var(--indigo-600);
    color: var(--indigo-600);
    background: transparent;
    border-radius: 999px;
    transition: all .2s ease;
}

.about-cta-actions .btn-outline:hover {
    background: var(--indigo-600);
    color: #fff;
}

/* ============ list pages ============ */
.P-N_notif_icon {
    background-color: var(--violet-500);
}

.P-Ns_notification {
    padding: 20px;
}

.P-Ns_notification p,
.P-Ns_notification-details p {
    line-height: 1.9;
}

/* ============ inputs ============ */
.customInput {
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.customInput:focus {
    border-color: var(--indigo-500);
    box-shadow: 0 0 0 3px var(--indigo-100);
}

/* ============ consultation CTA band ============ */
.consultation h2 {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    line-height: 1.8;
}

.consultation a.btn {
    border-radius: 999px;
}

/* ============ breadcrumbs ============ */
.breadcrumb-box {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

/* ============ footer ============ */
footer {
    background: linear-gradient(180deg, var(--indigo-800), var(--indigo-900));
    color: var(--indigo-100);
    box-shadow: none;
    margin-top: 44px;
    padding-top: 44px;
}

footer .footer {
    display: flex;
    gap: 28px;
}

footer h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
}

footer h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: var(--violet-500);
}

footer ul li {
    margin-top: 10px;
}

footer ul li a {
    color: var(--indigo-100);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s ease, padding-right .2s ease;
}

footer ul li a:hover {
    color: #fff;
    padding-right: 4px;
}

footer ul li a i {
    font-size: 12px;
    color: var(--violet-500);
}

footer .aboutUs_footer p {
    color: var(--indigo-100);
    line-height: 1.9;
    font-size: 14px;
}

footer .aboutUs_footer a {
    color: var(--violet-100);
    font-weight: 700;
    display: inline-block;
    margin-top: 8px;
}

footer .aboutUs_footer a:hover {
    color: #fff;
}

footer .services,
footer .helpful_links,
footer .aboutUs_footer,
footer .footer-contact {
    width: 25%;
}

footer .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--indigo-100);
    line-height: 1.9;
}

footer .footer-contact p i {
    color: var(--violet-500);
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 36px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
}

.footer-bottom p {
    color: var(--indigo-100);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--violet-100);
    font-weight: 700;
}

/* ============ responsive ============ */
@media screen and (max-width: 1200px) {
    .nav-list li {
        font-size: 13.5px;
    }

    .nav-list li a {
        padding: 8px 10px;
    }
}

@media screen and (max-width: 992px) {
    .brand-text small {
        display: none;
    }

    footer .footer {
        flex-wrap: wrap;
    }

    footer .services,
    footer .helpful_links,
    footer .footer-contact {
        width: 45%;
    }

    footer .aboutUs_footer {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .topbar-inner {
        justify-content: center;
    }

    .topbar-school {
        display: none;
    }

    .main-header {
        padding: 8px 0;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .auth-actions .auth-btn {
        font-size: 13px;
        padding: 7px 14px;
    }

    .fast_access_item {
        width: 74px;
        height: 70px;
    }
}

@media screen and (max-width: 450px) {
    footer .services,
    footer .helpful_links,
    footer .footer-contact,
    footer .aboutUs_footer {
        width: 100%;
    }

    footer .services,
    footer .helpful_links {
        margin-bottom: 0;
    }
}

/* ============ honeypot anti-bot field ============ */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}
