/* ============================================================
   Gasolinera Huitepec — Capa moderna
   Etapa 1: Topbar · Navbar · Footer · Paleta
   ============================================================ */

:root {
  --v-dark:   #0a1f0e;
  --v-main:   #1a6b2f;
  --v-light:  #28a745;
  --ambar:    #f59e0b;
  --slate:    #0f172a;
  --texto:    #1e293b;
  --gris:     #64748b;
  --fondo:    #f8fafc;
  --blanco:   #ffffff;
  --sombra:   0 4px 16px rgba(0, 0, 0, 0.10);
  --trans:    all 0.3s ease;
}

/* ── Body ── */
body {
  background: var(--fondo) !important;
  font-family: "Poppins", sans-serif;
  color: var(--texto);
}

/* ── Containers ── */
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 95%;
  }
}

/* ── Botón flotante WhatsApp ── */
.whatsapp-float {
  position: fixed;
  right: 15px;
  bottom: 68px;
  z-index: 99999;
  width: 46px;
  height: 46px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.50);
  text-decoration: none;
  transition: var(--trans);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float i {
  font-size: 26px;
  color: #fff;
  line-height: 1;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.10);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.65);
  text-decoration: none;
  animation: none;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 54px;
  background: #1e293b;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1e293b;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── Back-to-top ── */
.back-to-top i {
  background: var(--v-main);
  border-radius: 50%;
}
.back-to-top i:hover {
  background: var(--v-light);
}

/* ============================================================
   HERO — Etapa 2
   ============================================================ */

/* Altura del hero */
#hero,
#hero .carousel-item {
  height: 85vh;
}

/* Overlay oscuro en degradado lateral */
#hero .carousel-item::before {
  content: '';
  background: linear-gradient(to right, rgba(0, 0, 0, 0.70) 40%, rgba(0, 0, 0, 0.20) 100%);
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  z-index: 1;
}

/* Texto e indicadores por encima del overlay */
#hero .carousel-container,
#hero .carousel-control-prev,
#hero .carousel-control-next,
#hero .carousel-indicators {
  z-index: 2;
}

/* Alinear contenido a la izquierda */
#hero .carousel-container {
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 100px 0;
}

/* Título principal del hero */
#hero .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Subtítulo */
#hero .hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}

/* Contenedor de botones */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Botón sólido verde */
.btn-hero-primary {
  background: var(--v-main);
  color: #fff;
  border: 2px solid var(--v-main);
  padding: 13px 32px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--trans);
  text-decoration: none;
  display: inline-block;
}
.btn-hero-primary:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}

/* Botón contorno blanco */
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 13px 32px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--trans);
  text-decoration: none;
  display: inline-block;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* Indicadores modernizados */
#hero .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  opacity: 1;
}
#hero .carousel-indicators li.active {
  background: var(--ambar);
  width: 28px;
}

/* Flechas */
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  color: rgba(255, 255, 255, 0.80);
  font-size: 36px;
}

/* Mobile */
@media (max-width: 768px) {
  #hero,
  #hero .carousel-item {
    height: 100vh !important;
  }
  #hero .hero-title {
    font-size: 28px;
  }
  #hero .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    padding: 11px 24px;
    font-size: 13px;
  }
}

/* ============================================================
   TOPBAR
   ============================================================ */
#topbar {
  background: var(--slate);
  padding: 9px 0;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.2px;
}
#topbar .contact-info {
  color: #cbd5e1;
}
#topbar .contact-info a {
  color: #cbd5e1;
}
#topbar .contact-info a:hover {
  color: var(--ambar);
}
#topbar .contact-info i {
  color: var(--ambar);
  padding: 4px;
}
#topbar .social-links a {
  color: #94a3b8;
  font-size: 15px;
  padding: 4px 0 4px 14px;
}
#topbar .social-links a:hover {
  color: var(--ambar);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#header {
  background: var(--blanco);
  box-shadow: var(--sombra);
  height: 70px;
  border-bottom: 3px solid var(--v-main);
}

/* Logo */
#header .logo h1 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border-left: 4px solid var(--v-main);
  padding: 0 0 0 12px;
  margin: 14px 0;
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--v-main);
  text-decoration: none;
}

/* Nav desktop — links */
.nav-menu a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--texto);
  padding: 14px 0 14px 22px;
}

/* Underline animado en hover / activo */
.nav-menu > ul > li > a {
  position: relative;
}
.nav-menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 22px;
  right: 0;
  height: 2px;
  background: var(--v-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-menu > ul > li > a:hover::after,
.nav-menu > ul > li.active > a::after {
  transform: scaleX(1);
}
.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: var(--v-main);
  text-decoration: none;
}

/* Facturación siempre en ámbar */
.nav-menu a[href*="gasofac"] {
  color: var(--ambar) !important;
}
.nav-menu a[href*="gasofac"]::after {
  background: var(--ambar) !important;
}
.nav-menu a[href*="gasofac"]:hover {
  color: #d97706 !important;
}

/* Nav mobile */
.mobile-nav-toggle i {
  color: var(--v-main);
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: var(--v-main);
}
.mobile-nav {
  border-radius: var(--radio, 10px);
}

/* Header fijo en pantallas pequeñas */
@media (max-width: 768px) {
  #header {
    position: fixed !important;
    top: 0;
    z-index: 50 !important;
  }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  background: var(--fondo);
  border-bottom: 2px solid #e2e8f0;
  padding: 18px 0;
  margin-bottom: 32px;
}
.breadcrumbs h2 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--v-main);
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title h2::after {
  background: var(--v-main);
}

/* ============================================================
   HORARIO STRIP
   ============================================================ */
.horario-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--blanco);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 20px 28px;
  margin: 20px 0 0 0;
  border-left: 4px solid var(--v-main);
}
.horario-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 200px;
}
.horario-item i {
  font-size: 24px;
  color: var(--v-main);
  flex-shrink: 0;
  margin-top: 2px;
}
.horario-item div {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gris);
  line-height: 1.6;
}
.horario-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 1px;
}
.horario-item a {
  color: var(--v-main);
  text-decoration: none;
  font-weight: 500;
}
.horario-item a:hover { color: var(--v-light); }

/* ============================================================
   CERTIFICACIONES (nosotros)
   ============================================================ */
.cert-strip {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}
.cert-strip h4 {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gris);
  text-align: center;
  margin-bottom: 24px;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition: var(--trans);
  text-align: center;
  height: 100%;
}
.cert-badge:hover {
  border-color: var(--v-main);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 107, 47, 0.10);
}
.cert-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--texto);
}
.cert-desc {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: var(--gris);
  line-height: 1.6;
}

/* ============================================================
   FEATURED — Etapa 3
   ============================================================ */
.featured {
  padding: 40px 0 60px 0;
}

.featured .icon-box {
  padding: 30px 26px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  background: var(--blanco);
  border-top: 4px solid var(--v-main);
  transition: var(--trans);
  height: 460px;
  overflow: hidden;
}
.featured .icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* El template original ponía los íconos en blanco en hover (pensado para fondo oscuro).
   Anulamos eso porque nuestras cards mantienen fondo blanco. */
.featured .icon-box:hover i,
.featured .icon-box:hover h3 a,
.featured .icon-box:hover p {
  color: inherit;
}
.featured-service-list li i {
  color: var(--v-light) !important;
}

.featured .icon-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--v-main);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

/* Lista de servicios en featured */
.featured-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.featured-service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: var(--texto);
  border-bottom: 1px solid #f1f5f9;
}
.featured-service-list li:last-child { border-bottom: none; }
.featured-service-list li i {
  color: var(--v-light);
  font-size: 17px;
  flex-shrink: 0;
}

/* Caja con imagen de fondo (box 3) */
.featured .box-img {
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.featured .box-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.10) 55%);
}
.featured .box-img h3 {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  border: none;
}

/* ============================================================
   NOSOTROS — Etapa 4
   ============================================================ */

/* Barra de estadísticas */
.stats-bar {
  background: var(--v-main);
  padding: 36px 0;
  margin-bottom: 50px;
}
.stats-bar .stat-item {
  text-align: center;
  padding: 10px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stats-bar .stat-item:last-child { border-right: none; }
.stats-bar .stat-number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--ambar);
  line-height: 1;
}
.stats-bar .stat-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Contenido about */
.about .intro-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--gris);
  text-align: justify;
  margin-bottom: 36px;
}
.about h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--v-main);
  margin-top: 0;
}
.about p.font-italic {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--gris);
  font-style: normal !important;
  text-align: justify;
}
.about hr { border-color: #e2e8f0; margin: 22px 0; }
.about .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about .content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--texto);
}
.about .content ul i.icofont-check-circled {
  color: var(--v-main);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about .img-fluid {
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

/* ============================================================
   SERVICIOS — Etapa 5
   ============================================================ */
.service-card {
  background: var(--blanco);
  border-radius: 14px;
  padding: 36px 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: var(--trans);
  margin-bottom: 24px;
}
.service-card:hover {
  border-color: var(--v-main);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26, 107, 47, 0.12);
}
.service-card .card-icon {
  width: 72px;
  height: 72px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  transition: var(--trans);
}
.service-card .card-icon i {
  font-size: 32px;
  color: var(--v-main);
  transition: var(--trans);
}
.service-card:hover .card-icon { background: var(--v-main); }
.service-card:hover .card-icon i { color: var(--blanco); }
.service-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--texto);
  margin: 0;
  transition: var(--trans);
  line-height: 1.4;
}
.service-card:hover h4 { color: var(--v-main); }

/* CTA Facturación al pie de la página */
.facturacion-cta {
  background: linear-gradient(135deg, var(--v-main) 0%, #2d9e4f 100%);
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.facturacion-cta h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.facturacion-cta p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
.facturacion-cta .btn-cta {
  background: var(--ambar);
  color: var(--slate);
  border: none;
  padding: 13px 36px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--trans);
}
.facturacion-cta .btn-cta:hover {
  background: #d97706;
  color: var(--slate);
  text-decoration: none;
}

/* ============================================================
   CONTACTO — Etapa 6
   ============================================================ */
.contact .info-box {
  padding: 26px 22px;
  background: var(--blanco);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border-left: 4px solid var(--v-main);
  transition: var(--trans);
  height: 100%;
  margin-bottom: 24px;
}
.contact .info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.11);
}
.contact .info-box i {
  font-size: 30px;
  color: var(--v-main);
  margin-bottom: 12px;
  display: block;
}
.contact .info-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--v-main);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact .info-box p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--gris);
  margin: 0;
  line-height: 1.8;
}
.contact .info-box p a {
  color: var(--gris);
  text-decoration: none;
}
.contact .info-box p a:hover { color: var(--v-main); }

/* Mapa */
.contact iframe {
  border-radius: 14px;
  width: 100%;
  height: 380px;
  border: 0;
}

/* Formulario */
.php-email-form {
  background: var(--blanco);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
.php-email-form .form-control {
  border: 1.5px solid #e2e8f0;
  border-radius: 9px;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--texto);
  background: var(--fondo);
  transition: var(--trans);
}
.php-email-form .form-control:focus {
  border-color: var(--v-main);
  background: var(--blanco);
  box-shadow: 0 0 0 3px rgba(26, 107, 47, 0.10);
  outline: none;
}
.php-email-form .form-group { margin-bottom: 16px; }
.php-email-form textarea.form-control { resize: vertical; }
.php-email-form .sent-message {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--v-main);
  background: #f0fdf4;
  border-radius: 8px;
  padding: 8px 14px;
}
.php-email-form .error-message {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  border-radius: 8px;
  padding: 8px 14px;
}
.php-email-form .loading {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gris);
}
.php-email-form button[type="submit"] {
  background: var(--v-main);
  color: var(--blanco);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  width: 100%;
  letter-spacing: 0.3px;
}
.php-email-form button[type="submit"]:hover { background: var(--v-light); }

/* ============================================================
   VENOBOX — imágenes adaptadas al viewport
   ============================================================ */
.vbox-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.vbox-content img {
  max-width:  90vw  !important;
  max-height: 85vh  !important;
  width:  auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 8px;
}

/* ============================================================
   PRODUCTOS (portfolio) — colores paleta verde + recuadros uniformes
   ============================================================ */

/* Altura fija igual para todos los recuadros */
.portfolio .portfolio-wrap {
  height: 250px;
  overflow: hidden;
}

/* Imagen rellena el recuadro sin deformarse */
.portfolio .portfolio-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: var(--v-main);
  color: #fff;
}
.portfolio .portfolio-wrap::before {
  background: rgba(26, 107, 47, 0.70);
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--ambar);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--v-dark);
  font-family: "Poppins", sans-serif;
  padding: 0 0 0 0;
}

#footer .footer-top {
  background: #0f2d16;
  border-top: none;
  border-bottom: none;
  padding: 50px 0 28px 0;
}

#footer .footer-top h4 {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ambar);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

/* Footer links */
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul i {
  color: var(--v-light);
  font-size: 16px;
  padding-right: 6px;
}
#footer .footer-top .footer-links ul a {
  color: #94a3b8;
  font-size: 14px;
  transition: var(--trans);
  display: inline-block;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--ambar);
  padding-left: 4px;
  text-decoration: none;
}

/* Footer contact */
#footer .footer-top .footer-contact p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}
#footer .footer-top .footer-contact p a {
  color: #94a3b8;
}
#footer .footer-top .footer-contact p a:hover {
  color: var(--ambar);
}
#footer .footer-top .footer-contact strong {
  color: #e2e8f0;
}

/* Footer map iframe */
#footer .footer-top .footer-info iframe {
  border-radius: 10px;
  filter: brightness(0.9) contrast(1.05);
}

/* Copyright bar */
#footer .footer-bottom {
  text-align: center;
  padding: 18px 0;
  color: #475569;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
#footer .footer-bottom a {
  color: var(--ambar);
  text-decoration: none;
}
#footer .footer-bottom a:hover {
  color: var(--v-light);
}
