/* ==========================================================================
   DISEÑO WEB CORPORATIVO EDITORIAL Y ACADÉMICO (SIN BADGES / SIN PILLS)
   Centro Educativo Felipe Villanueva — Centro de Enlace Cuautitlán Izcalli (100% En Línea)
   Fondo: Blanco Puro (#ffffff) | Color Principal: #077D7A
   ========================================================================== */

/* --- 1. VARIABLES Y SISTEMA DE DISEÑO --- */
:root {
  /* Marca e Identidad */
  --primary-teal: #077D7A;
  --primary-teal-dark: #044342;
  --primary-teal-deep: #022c2b;
  --secondary-teal: #0c9491;
  --teal-light-bg: #f0fdfa;
  --teal-border: #b2f5ea;

  /* WhatsApp Oficial */
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;

  /* Neutros Limpios */
  --bg-main: #ffffff;
  --bg-surface: #ffffff;
  --bg-alt: #f8fafc;
  --bg-subtle: #f1f5f9;
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Bordes de alta precisión */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-strong: #077D7A;

  /* Elevación Editorial */
  --shadow-flat: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 12px 24px -4px rgba(7, 125, 122, 0.12);
  --shadow-nav: 0 2px 10px rgba(0, 0, 0, 0.04);

  /* Radio Estructurado */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;

  /* Transiciones */
  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --font-main: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1240px;
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- 3. CONTENEDORES Y MAQUETACIÓN --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-bg-alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-bg-teal {
  background-color: var(--primary-teal-dark);
  color: #ffffff;
}

/* Encabezados de Sección Editoriales */
.section-header {
  margin-bottom: 3rem;
  position: relative;
}

.section-header.text-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-teal-dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.section-bg-teal .section-title {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

.section-bg-teal .section-subtitle {
  color: #ccfbf1;
}

.header-accent-line {
  width: 45px;
  height: 3px;
  background-color: var(--primary-teal);
  margin-top: 1rem;
}

.text-center .header-accent-line {
  margin-left: auto;
  margin-right: auto;
}

/* --- 4. BOTONES Y COMPONENTES CTA --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary, .btn-teal {
  background-color: var(--primary-teal);
  color: #ffffff;
  border-color: var(--primary-teal-dark);
}

.btn-primary:hover, .btn-teal:hover {
  background-color: var(--primary-teal-dark);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(7, 125, 122, 0.25);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-color: #1eb954;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  background-color: var(--teal-light-bg);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Botón Flotante WhatsApp */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), background-color var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  background-color: var(--whatsapp-dark);
}

.floating-whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* --- 5. TOPBAR & ENCABEZADO DE NAVEGACIÓN --- */
.topbar {
  background-color: var(--primary-teal-deep);
  color: #e2f1f0;
  font-size: 0.825rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-icon {
  width: 15px;
  height: 15px;
  stroke: #99f6e4;
}

.status-text {
  font-weight: 600;
  color: #99f6e4;
}

/* Header Navbar */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-nav);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo Corporativo Institucional */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img-header {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.logo-img-footer {
  height: 75px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Menú Navegación */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-teal);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-teal);
}

/* Submenú Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.dropdown-link:hover, .dropdown-link.active {
  background-color: var(--teal-light-bg);
  color: var(--primary-teal);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-icon {
  width: 26px;
  height: 26px;
  stroke: var(--primary-teal);
}

/* --- 6. HERO SECTION CON IMAGEN DE FONDO --- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(4, 54, 53, 0.88) 0%, rgba(7, 105, 102, 0.82) 100%), url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  padding-top: 6rem;
  padding-bottom: 6.5rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-subhead {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #99f6e4;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-title-highlight {
  color: #5eead4;
}

.hero-description {
  font-size: 1.15rem;
  color: #e2f1f0;
  line-height: 1.65;
  margin: 0 auto 2.25rem auto;
  max-width: 720px;
}

.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.hero-section .btn-outline:hover {
  border-color: #ffffff;
  color: var(--primary-teal-dark);
  background-color: #ffffff;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto 0 auto;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 760px;
}

.hero-section .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-section .stat-label {
  font-size: 0.875rem;
  color: #99f6e4;
  font-weight: 600;
  margin-top: 0.25rem;
}

.contact-whatsapp-icon-lg {
  width: 64px;
  height: 64px;
  background-color: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner Page Hero (Nosotros, Licenciaturas, Maestrías, Doctorados) */
.inner-hero {
  background: linear-gradient(135deg, rgba(4, 54, 53, 0.90) 0%, rgba(7, 105, 102, 0.85) 100%), url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 3px solid var(--primary-teal);
}

.inner-hero .hero-title {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.inner-hero .hero-description {
  color: #e2f1f0;
  max-width: 720px;
  font-size: 1.05rem;
}

/* --- 7. TARJETAS DE PROGRAMAS ACADÉMICOS (ACADEMIC CARDS) --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.program-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.program-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.program-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background-color: var(--teal-light-bg);
}

.program-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.program-card:hover .program-card-img {
  transform: scale(1.05);
}

.program-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(4, 54, 53, 0.88);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
}

.program-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-card-header {
  margin-bottom: 0.75rem;
}

.program-degree-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-teal);
  display: block;
  margin-bottom: 0.25rem;
}

.program-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-teal-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.program-summary {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.program-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* --- 8. TARJETAS DE CARACTERÍSTICAS / VENTAJAS --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-flat);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-card);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: var(--teal-light-bg);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon {
  width: 26px;
  height: 26px;
  stroke: var(--primary-teal);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-teal-dark);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- 9. CALCULADORA DE BECA --- */
.calculator-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.calculator-body {
  padding: 2.5rem;
}

.calculator-result-panel {
  background-color: var(--primary-teal-dark);
  color: #ffffff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xs);
  background-color: #ffffff;
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(7, 125, 122, 0.15);
}

.range-input-group {
  margin-top: 1rem;
}

.range-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.range-current-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-teal);
  background-color: var(--teal-light-bg);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-xs);
}

.form-range {
  width: 100%;
  height: 6px;
  background: var(--border-light);
  outline: none;
  accent-color: var(--primary-teal);
  cursor: pointer;
}

.calculator-result-box {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xs);
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.result-row:last-child {
  border-bottom: none;
}

.result-row.highlight-final {
  padding-top: 0.85rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.result-val-final {
  font-size: 1.75rem;
  font-weight: 900;
  color: #99f6e4;
}

/* --- 10. MODAL PLAN DE ESTUDIOS (NATIVE DIALOG) --- */
body.modal-open {
  overflow: hidden !important;
  height: 100vh;
}

dialog {
  border: none;
  border-radius: var(--radius-sm);
  padding: 0;
  max-width: 820px;
  width: 90%;
  max-height: 85vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  background: #ffffff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  overflow: hidden;
  z-index: 9999;
}

dialog::backdrop {
  background-color: rgba(2, 44, 43, 0.75);
  backdrop-filter: blur(3px);
}

.dialog-content-wrapper {
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.dialog-header {
  background-color: var(--primary-teal-dark);
  color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: sticky;
  top: 0;
  z-index: 10;
}

.dialog-title-group h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.close-dialog-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.close-dialog-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.dialog-body {
  padding: 1.75rem 2rem;
}

.modal-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background-color: var(--bg-alt);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xs);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}

.modal-info-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.modal-info-item strong {
  font-size: 0.9rem;
  color: var(--primary-teal-dark);
}

.curriculum-term-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.curriculum-term-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.term-card-header {
  background-color: var(--primary-teal);
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 800;
  text-align: center;
}

.term-subjects-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.825rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.term-subjects-list li {
  list-style: none;
  position: relative;
  padding-left: 0.85rem;
}

.term-subjects-list li::before {
  content: "•";
  color: var(--primary-teal);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.dialog-footer {
  padding: 1rem 2rem;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
}

/* --- 11. FOOTER CORPORATIVO --- */
.footer-main {
  background-color: var(--primary-teal-deep);
  color: #cbd5e1;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 4px solid var(--primary-teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr 0.9fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity var(--transition);
}

.footer-brand-logo:hover {
  opacity: 0.9;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.footer-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent-gold);
  border-radius: 1px;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-links-list li {
  margin: 0;
  padding: 0;
}

.footer-links-list a {
  color: #cbd5e1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}

.footer-links-list a:hover {
  color: #99f6e4;
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.5;
  color: #cbd5e1;
}

.contact-icon {
  width: 20px;
  height: 20px;
  stroke: #99f6e4;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-link {
  color: #99f6e4;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-contact-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: #94a3b8;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit-link {
  color: #99f6e4;
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition);
}

.footer-credit-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
