/* 
Ventanilla Única Virtual - Departamento del Quindío
Desarrollado por: Carlos Eduardo Trujillo Villa
Fecha: 05/03/2026
Entidad: Gobernación del Quindío 
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #f0b100;
  --primary-light: #f5c842;
  --primary-dark: #c49200;
  --accent: #1A3A6B;
  --accent-light: #2255A4;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --text: #1C2230;
  --text-muted: #5A6477;
  --border: #E8E8E8;
  --shadow-sm: 0 2px 8px rgba(240,177,0,0.10);
  --shadow-md: 0 6px 24px rgba(240,177,0,0.15);
  --radius: 14px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text);}

/* ── TOP BAR ── */
.topbar { background: #1a1a1a; padding: 8px 0; font-size: 12px; color: rgba(255,255,255,0.70); }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: rgba(255,255,255,0.70); text-decoration: none; }
.topbar a:hover { color: var(--primary); }
.topbar-links { display: flex; gap: 20px; }

/* ── HEADER ── */
header { background: var(--white); border-bottom: 3px solid var(--primary); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-block { display: flex; align-items: center; gap: 14px; }
.logo-icon { width: 62px; height: 62px; border-radius: 12px; display: flex; align-items: center; justify-content: center;box-shadow: 0px 1px 6px -2px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 1px 6px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 6px -2px rgba(0, 0, 0, 0.75); overflow: hidden;}
.logo-icon img { width: 62px; height: 62px; fill: white; object-fit: cover; }
.logo-text h1 { font-size: 17px; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.logo-text p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

nav { display: flex; gap: 4px; align-items: center; }
nav a { font-size: 13.5px; font-weight: 500; color: var(--text-muted); padding: 8px 14px; border-radius: var(--radius-sm); text-decoration: none; transition: all .2s; }
nav a:hover, nav a.active { color: #1a1a1a; background: #FFF8E0; }
.btn-login { background: var(--primary) !important; color: #1a1a1a !important; font-weight: 700 !important; }
.btn-login:hover { background: var(--primary-dark) !important; color: white !important; }

.btn-primary, .btn-login {
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover, .btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.main-nav { display: flex; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1a1a1a;
}

/* ── HERO ── */
.hero { background-image: url(assets_public_view_2/Slide.png); background-size: cover; background-repeat: no-repeat; background-position: bottom; padding: 64px 24px 80px; }
.hero-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.15); border: 1px solid rgba(240,177,0,0.4); color: var(--primary); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px; }
.hero h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 14px; }
.hero h2 span { color: var(--primary); }
.hero p { font-size: 16px; color: rgb(255, 255, 255); max-width: 600px; margin: 0 auto 36px; line-height: 1.65; }
.hero-actions { margin-top: 4px; margin-bottom: 8px; display: flex; justify-content: center; }
.hero-cta { border-radius: 999px; padding-inline: 28px; text-decoration: none; box-shadow: 0 8px 20px rgba(240,177,0,0.45); display: inline-flex; align-items: center; gap: 6px; }
.search-bar { max-width: 640px; margin: 0 auto; display: flex; background: white; border-radius: 50px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); overflow: hidden; }
.search-bar input { flex: 1; border: none; outline: none; padding: 16px 22px; font-size: 14.5px; font-family: 'Inter', sans-serif; }
.search-bar button { background: var(--primary); border: none; cursor: pointer; padding: 0 28px; font-size: 14px; font-weight: 700; color: #1a1a1a; white-space: nowrap; transition: background .2s; }
.search-bar button:hover { background: var(--primary-dark); color: white; }

.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; color: white; }
.stat-label { font-weight: 600; font-size: 12px; color: rgba(255, 255, 255, 0.932); margin-top: 2px; }

/* ── SECTIONS ── */
section { max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.section-header { margin-bottom: 36px; }
.section-header h3 { font-size: 22px; font-weight: 700; color: #1a1a1a; }
.section-header p { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.section-row {margin-bottom: 36px; }
.section-row h3 { font-size: 22px; font-weight: 700; color: #1a1a1a; }
.section-row p { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.section-row a { font-size: 13px; font-weight: 600; color: var(--primary-dark); text-decoration: none; }
.section-row a:hover { color: var(--primary); }

/* ── ALERT BANNER ── */
.alert-banner { background: #FFF8E0; border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 14px 20px; display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.alert-banner p { font-size: 13px; color: #7A5A00; flex: 1; line-height: 1.5; }
.alert-banner p b { color: #5C4000; }
.alert-close { background: none; border: none; cursor: pointer; font-size: 18px; color: #999; padding: 4px; }

/* ── ACCESO RÁPIDO ── */
.quick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 16px; }
.quick-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px; text-align: center; text-decoration: none; color: var(--text); display: block; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.quick-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quick-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; }
.quick-card span { font-size: 13px; font-weight: 600; line-height: 1.35; }

/* ── TRÁMITES DESTACADOS ── */
.tramites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.tramite-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.tramite-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-2px); }
.tramite-top { display: flex; align-items: flex-start; gap: 12px; }
.tramite-ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.tramite-title { font-size: 14.5px; font-weight: 700; color: #1a1a1a; line-height: 1.3; }
.tramite-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.tramite-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--border); }
.tramite-arrow { color: var(--primary-dark); font-size: 18px; font-weight: 700; }

.tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; letter-spacing: .3px; }
.tag-online { background: #E6F9F0; color: #0D7A4E; }
.tag-presencial { background: #FFF3E0; color: #B45309; }

/* ── CONSULTA ESTADO ── */
.consulta-box { background: linear-gradient(135deg, #FFFBEE, #FFF8DC); border: 1px solid #F5DFA0; border-radius: var(--radius); padding: 40px; display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.consulta-info { flex: 1; min-width: 240px; }
.consulta-info h4 { font-size: 19px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.consulta-info p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.consulta-form { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; gap: 10px; }
.form-input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border .2s; }
.form-input:focus { border-color: var(--primary); }
.btn-primary { background: var(--primary); color: #1a1a1a; border: none; border-radius: var(--radius-sm); padding: 12px 24px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; transition: background .2s; }
.btn-primary:hover { background: var(--primary-dark); color: white; }

/* ── NOTICIAS ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.news-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; display: block; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--primary); }
.news-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.news-body { padding: 20px; }
.news-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--primary-dark); margin-bottom: 8px; }
.news-title { font-size: 14.5px; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 8px; }
.news-date { font-size: 12px; color: var(--text-muted); }

/* ── CANALES DE AYUDA ── */
.ayuda-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.ayuda-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.ayuda-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-2px); }
.ayuda-icon { font-size: 32px; margin-bottom: 12px; }
.ayuda-title { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.ayuda-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* ── BOTÓN VOLVER ARRIBA ── */
.btn-back-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  z-index: 120;
}
.btn-back-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btn-back-top:hover {
  background: #2d2d2d;
  color: #fff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 14px 32px rgba(0,0,0,0.4);
}
.btn-back-top:active {
  transform: translateY(-1px) scale(0.96);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* ── CÓMO FUNCIONA ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.how-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px 20px 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.how-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.how-step {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #FFF3C4;
  color: #7A4C00;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.how-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.how-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer { background: #f0b100; color: var(--text); padding: 48px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 100px; border-bottom: 1px solid rgba(143, 137, 54, 0.527); }
.footer-brand h4 { color: var(--text); font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.footer-brand p { font-size: 12.5px; line-height: 1.65; }
.footer-brand .footer-accent { color: var(--primary); font-weight: 600; }
.footer-col h5 { color: var(--text); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 12.5px; color: var(--text); text-decoration: none; transition: color .2s; }
.footer-col li a:hover { color: var(--accent-light); }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--text); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset-inline: 0;
    top: 64px;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 12px 20px 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    gap: 4px;
  }
  .main-nav a {
    width: 100%;
    padding: 10px 12px;
  }
  body.nav-open .main-nav {
    display: flex;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 44px 16px 60px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .consulta-box { padding: 24px; }
}

/* ── MODAL MAPA DEL SITIO ── */
.modal-mapa-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-mapa-overlay.modal-mapa-open {
  opacity: 1;
  visibility: visible;
}
.modal-mapa-container {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.modal-mapa-overlay.modal-mapa-open .modal-mapa-container {
  transform: scale(1);
}
.modal-mapa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 2px solid var(--primary);
  background: linear-gradient(180deg, #FFFDF5 0%, var(--white) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}
.modal-mapa-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.modal-mapa-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--border);
  border-radius: var(--radius-sm);
  font-size: 18px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-mapa-close:hover {
  background: var(--primary);
  color: #1a1a1a;
}
.modal-mapa-body {
  padding: 24px;
  overflow-y: auto;
}
.mapa-sitio-nav {
  font-size: 14px;
}
.mapa-sitio-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mapa-sitio-list > li {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.mapa-sitio-list > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.mapa-sitio-list > li > a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.mapa-sitio-list > li > a:hover {
  color: var(--primary-dark);
}
.mapa-seccion {
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  margin-bottom: 8px;
  font-size: 14.5px;
}
.mapa-sitio-list ul {
  list-style: none;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}
.mapa-sitio-list ul li {
  margin-bottom: 6px;
}
.mapa-sitio-list ul li:last-child {
  margin-bottom: 0;
}
.mapa-sitio-list ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.mapa-sitio-list ul a:hover {
  color: var(--primary-dark);
}
.mapa-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

/* ── MODAL INICIAR SESIÓN / REGISTRARSE ── */
.modal-login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-login-overlay.modal-login-open {
  opacity: 1;
  visibility: visible;
}
.modal-login-container {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(240, 177, 0, 0.15);
  max-width: 720px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-login-overlay.modal-login-open .modal-login-container {
  transform: scale(1) translateY(0);
}
.modal-login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--border);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}
.modal-login-close:hover {
  background: var(--primary);
  color: #1a1a1a;
  transform: rotate(90deg);
}
.modal-login-header {
  text-align: center;
  padding: 36px 32px 24px;
  background: linear-gradient(180deg, #FFFDF5 0%, #FFFBF0 50%, var(--white) 100%);
  border-bottom: 2px solid rgba(240, 177, 0, 0.25);
}
.modal-login-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.modal-login-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-login-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.modal-login-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.modal-login-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  padding: 32px 28px;
  align-items: stretch;
}
.modal-login-col {
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: background 0.2s;
}
.modal-login-col:hover {
  background: #FFFDF8;
}
.modal-login-col-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF8E0 0%, #FFEFB8 100%);
  border: 2px solid rgba(240, 177, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.modal-login-col h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.modal-login-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}
.modal-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  width: 100%;
  max-width: 200px;
}
.modal-login-btn-primary {
  background: var(--primary);
  color: #1a1a1a;
  border-color: var(--primary);
}
.modal-login-btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 177, 0, 0.35);
}
.modal-login-btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.modal-login-btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 107, 0.25);
}
.modal-login-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.modal-login-divider span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-login-footer {
  padding: 16px 28px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: #FAFAFA;
}
.modal-login-footer a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.modal-login-footer a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .modal-login-columns {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 24px 20px;
  }
  .modal-login-divider {
    padding: 8px 0;
  }
  .modal-login-divider span {
    margin: 0;
  }
  .modal-login-col {
    padding: 20px 16px;
  }
}