/* =========================================
   1. VARIABLES Y RESET (Base)
   ========================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  /* Paleta de Colores extraída de tus imágenes */
  --primary-blue: #2563eb;
  /* Azul brillante */
  --dark-blue: #1e40af;
  /* Azul oscuro (Footer/Overlay) */
  --accent-red: #e32b22;
  /* Rojo de botones */
  --text-dark: #1f2937;
  /* Texto principal */
  --text-light: #6b7280;
  /* Texto secundario */
  --white: #ffffff;
  --bg-light: #f9fafb;
  /* Fondo gris muy claro */

  /* Espaciado y Bordes */
  --border-radius: 8px;
  --container-width: 1250px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Vital para que el padding no rompa el ancho */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: inter;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

section {
  scroll-margin-top: 80px;
}

/* Clases de utilidad */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Botones */
.btn {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #e32b22;
  color: var(--white);
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #b91d15;
  transition: background-color 0.3s ease;
}

/* =========================================
   2. HEADER Y NAVEGACIÓN
   ========================================= */

header {
  position: sticky;
  top: 0;
  position: -webkit-sticky;
  z-index: 1000;
  width: 100%;
}

.top-bar {
  background-color: #1e40af;
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  width: 70px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links ul li a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
  transition:
    transform 0.1s ease-in-out,
    color 0.2s;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.nav-links ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--dark-blue);
  transition: all 0.3s ease;
}

.nav-links ul li a:hover::after {
  width: 100%;
  left: 0;
}

.nav-links .btn-primary {
  background-color: #e32b22;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.nav-links .btn-primary:hover {
  background-color: #b91d15;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 2rem;
  cursor: pointer;
  display: none;
  z-index: 1001;
}

/* =========================================
   3. HERO (PORTADA)
   ========================================= */

.hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(30, 64, 175, 0.85)),
    url("Imagenes/hero.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0 60px;
  text-align: left;
  height: 100svh;
  max-height: 930px;
}

.hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container_text {
  width: 60%;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero .hero-subtitle {
  font-size: 1.5rem;
}

.hero p:last-of-type {
  font-size: 1.2rem;
  margin: 10px 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
  margin-top: 2rem;
}

.hero-buttons i {
  font-size: 1.1rem;
}

.hero-buttons a:nth-child(2) i {
  font-size: 1.3rem;
}

.hero-buttons a {
  padding: 15px 35px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}

.hero-buttons a:first-of-type {
  background-color: #e32b22;
}

.hero-buttons a:first-of-type:hover {
  background-color: #b91d15;
  transition: 100ms ease;
}

.hero-buttons a:nth-of-type(2) {
  background-color: #00a844;
}

.hero-buttons a:nth-of-type(2):hover {
  background-color: #008f3a;
  transition: 100ms ease;
}

.hero-buttons a:last-of-type {
  background-color: #fff;
  color: #1e40af;
}

.hero-buttons a:last-of-type:hover {
  background-color: #1e40af;
  color: #fff;
  transition: 100ms ease;
}

.hero-stats {
  display: flex;
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 30px;
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 400;
}

/* =========================================
   4. SECCIONES GENERALES
   ========================================= */

section {
  padding: 80px 0;
}

.services-section {
  background-color: var(--bg-light);
}

section h2 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-desc {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-light);
  margin: 0 auto 50px auto;
  max-width: 650px;
}

/* =========================================
   5. SERVICIOS (GRID)
   ========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 00px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
  text-align: left;
  height: 350px;
  display: grid;
  grid-template-rows: 2fr 1fr;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.card-1 .icon {
  background: url(Imagenes/S1.webp) center / cover no-repeat;
}

.card-2 .icon {
  background: url(Imagenes/S2.webp) center / cover no-repeat;
}

.card-3 .icon {
  background: url(Imagenes/S3.webp) center / cover no-repeat;
}

.card-4 .icon {
  background: url(Imagenes/S4.webp) center / cover no-repeat;
}

.card-5 .icon {
  background: url(Imagenes/S5.webp) center / cover no-repeat;
}

.card-6 .icon {
  background: url(Imagenes/S6.webp) center / cover no-repeat;
}

.service-card_text {
  padding: 20px;
}

.service-card h3 {
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
}

/* =========================================
   6. NOSOTROS (LAYOUT 2 COLUMNAS)
   ========================================= */

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.text-col h2 {
  text-align: start;
  line-height: 1.1;
  font-weight: 600;
}

.text-col p {
  color: var(--text-light);
}

.text-col p {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.text-col {
  display: flex;
  flex-direction: column;
}

.text-col,
.image-col {
  flex: 1;
  width: 50%;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 2rem;
}

.features-list li {
  display: flex;
  gap: 15px;
}

.features-list li div p {
  margin-top: 0;
}

.features-list span {
  background-color: #dbeafe;
  font-size: 1.4rem;
  height: 45px;
  width: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #1d4ed8;
  flex-shrink: 0;
}

.text-col .features-list p {
  font-size: 0.9rem;
}

.features-list li h3 {
  font-weight: 600;
}

.image-col img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-container {
  position: relative;
}

.floating-badge {
  position: absolute;
  bottom: -5%;
  left: -5%;
  background-color: var(--accent-red);
  color: #fff;
  padding: 10px 20px 12px 20px;
  border-radius: 10px;
}

.floating-badge strong {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* =========================================
   7. CERTIFICACIONES (FONDO AZUL)
   ========================================= */

.certifications-section {
  background-color: var(--dark-blue);
  color: var(--white);
  text-align: center;
}

.certifications-section h2,
.certifications-section p {
  color: var(--white);
}

.certifications-section h2 {
  font-weight: 600;
}

.certifications-section p {
  font-size: 1.1rem;
  margin-top: 2rem;
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cert-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 10px;
  border-radius: var(--border-radius);
  width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.2s ease;
}

.cert-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transition: 0.2s ease;
}

.cert-card .icon,
.icon-2 {
  background-color: #ffe;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border-radius: 50%;
}

.icon img {
  width: 90px;
}

.icon-2 img {
  width: 60px;
}

.cert-card h3 {
  margin: 20px 0 10px 0;
}

.cert-card p {
  font-size: 0.9rem;
  line-height: 1rem;
  margin: 0;
}

/* =========================================
   8.COBERTURA INTERNACIONAL 
   ========================================= */

.coverage-section {
  text-align: center;
}

.coverage-section i {
  background-color: #fee2e2;
  font-size: 1.8rem;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: var(--accent-red);
}

.coverage-section h2 {
  font-weight: 600;
}

.coverage-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

.flags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 3.2rem 0;
  width: 100%;
}

.country-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0.5, 0.2);
  border-radius: 10px;
  border-top: 4px solid var(--accent-red);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.country-card:hover {
  transform: translateY(-5px);
}

.country-card h3 {
  margin: 1rem 0;
}

.country-card p {
  font-size: 1rem;
}

.country-card img {
  height: 80px;
}

/* =========================================
   9.RUTAS ESTRATEGICAS 
   ========================================= */

.coverage-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0.5, 0.2);
  border-radius: 10px;
  padding: 60px 40px;
}

.coverage-details h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.routes,
.advantages-box {
  text-align: start;
}

.routes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.routes-list li {
  display: flex;
  gap: 20px;
}

.routes-list i,
.advantages-box ul li i {
  background-color: initial;
  display: initial;
  width: initial;
  height: initial;
}

.routes-list i {
  font-size: 1.3rem;
  margin: 8px 0 0 0;
}

.routes-list h4 {
  font-weight: 400;
}

.routes-list p {
  font-size: 0.9rem;
}

.advantages-box {
  background-color: var(--dark-blue);
  color: #fff;
  padding: 30px 30px;
  border-radius: 10px;
}

.advantages-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advantages-box ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantages-box i {
  color: #fff;
  font-size: 0.6rem;
  margin: 0;
}

/* =========================================
   10. TESTIMONIALS
========================================= */

.testimonials-section {
  background-color: var(--bg-light);
}

.testimonials-section .testimonials-text {
  color: var(--text-light);
  text-align: center;
  margin-top: -10px;
}

.testimonials-grid {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0.5, 0.2);
  padding: 30px;
  transition: transform 0.3s ease;
}

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

.testimonial-card i {
  font-size: 3rem;
  color: #fdeae9;
}

.testimonial-card .stars i {
  font-size: 1rem;
  color: #facc15;
  margin: 15px 0 15px 0;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-light);
}

.testimonial-card figcaption {
  margin-top: 1rem;
  padding-top: 15px;
  border-top: 1px solid #fdeae9;
  display: flex;
  flex-direction: column;
}

.testimonial-card figcaption cite {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* =========================================
   11. FORMULARIO DE CONTACTO (TU PEDIDO ESPECÍFICO)
   ========================================= */

.contact-section .contact-section-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
}

.contact-info {
  flex: 1;
}

.contact-info address {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 1rem;
}

.wrapper-container {
  display: flex;
  gap: 10px;
}

.wrapper-container i {
  height: 50px;
  width: 50px;
  background-color: #fdeae9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: var(--accent-red);
  font-size: 1.5rem;
}

.wrapper-container div a {
  color: var(--text-light);
}

.black {
  color: var(--text-light);
}

.wrapper-container div p {
  max-width: 280px;
}

.wrapper-container .hours-box {
  margin-top: 2rem;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
}

.hours-box {
  background-color: var(--dark-blue);
  padding: 20px 30px;
  color: #fff;
  border-radius: 10px;
  margin-top: 2rem;
}

.hours-box h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

.hours-box p {
  font-size: 0.9rem;
  line-height: 1.7rem;
}

.hours-box div {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #fff;
}

.contact-info h3,
.contact-form-wrapper h3 {
  font-size: 1.5rem;
}

.contact-form-wrapper {
  flex: 1;
  background-color: var(--bg-light);
  box-shadow: 0 4px 7px rgba(0, 0, 0.2, 0.2);
  border-radius: 10px;
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  /* Para que el label ocupe su propia línea */
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  /* Borde gris suave */
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  /* Permite cambiar tamaño solo verticalmente */
  height: 120px;
}

.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  gap: 10px;
}

.btn-block i {
  font-size: 1.2rem;
}

/* =========================================
   9. FOOTER
   ========================================= */
footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.logo-wrapper {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.footer-col img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-col p {
  font-size: 0.9rem;
}

footer h4 {
  color: var(--white);
  margin-bottom: 20px;
}

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

footer a {
  font-weight: 600;
}

footer a:hover {
  color: var(--white);
}

.footer-contacto address {
  display: flex;
  flex-direction: column;
}

.footer-contacto address p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-content address i {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 20px;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.social-links i:first-child {
  font-size: 1rem;
}

.social-links a:hover > i {
  background-color: #3d4859;
  transition: 0.1s ease-in-out;
}

.social-links i {
  background-color: #2b323e;
  color: #ffff;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.legal-links {
  display: flex;
  gap: 20px;
}

/* =========================================
   10. RESPONSIVE (CELULARES)
   ========================================= */

@media (max-width: 1130px) {
  .hero {
    height: 50vh;
  }

  .container_text {
    width: 80%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
  }

  .hero-stats {
    gap: 80px;
  }

  .stat-item strong {
    font-size: 2rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .about-content {
    flex-direction: column;
  }

  .text-col {
    width: 100%;
  }

  .image-col {
    width: 90%;
  }

  .cert-grid {
    gap: 30px;
  }

  .cert-card {
    min-width: 280px;
  }

  .coverage-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 30px;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: max-content;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 40px;
    clip-path: circle(0px at 90% -10%);
    transition: clip-path 0.5s ease-in-out;
    pointer-events: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    clip-path: circle(1500px at 90% -10%);
    pointer-events: all;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-links li,
  .nav-links .btn-primary {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav-links.active li,
  .nav-links.active .btn-primary {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .nav-links .btn-primary {
    transition-delay: 0.6s;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .cert-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cert-card {
    width: 90%;
    margin: 0 auto;
  }

  .flags-grid {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 50px;
  }

  .nav-links {
    top: 50px;
  }

  .logo img {
    width: 40px;
  }

  .hero {
    height: calc(100svh - 90px);
  }

  .services-grid {
    gap: 15px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .cert-card .icon,
  .icon-2 {
    width: 80px;
    height: 80px;
  }

  .icon img {
    width: 70px;
  }

  .icon-2 img {
    width: 50px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 300px;
  }
}

@media (max-width: 350px) {
  .service-card {
    height: 280px;
  }

  .service-card_text {
    padding: 15px;
  }

  .service-card_text h3 {
    font-size: 1rem;
  }

  .service-card_text p {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .top-bar .container {
    flex-direction: column;
    justify-content: unset;
    align-items: center;
  }

  .top-bar {
    padding: 4px 0;
  }

  .hero {
    height: var(--hero-height, 100vh);
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero p:last-of-type {
    font-size: 0.9rem;
  }

  .hero-buttons {
    margin: 1.5rem 0;
  }

  .hero-buttons a {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .hero-buttons i {
    font-size: 0.9rem;
  }

  .hero-buttons a:nth-child(2) i {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item strong {
    font-size: 1.8rem;
  }

  .image-col {
    width: 95%;
  }

  .floating-badge {
    padding: 3px 15px 10px 15px;
  }

  .floating-badge strong {
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .floating-badge p {
    font-size: 0.8rem;
    margin-top: -7px;
  }

  .contact-wrapper {
    padding: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .legal-links {
    gap: 0;
    justify-content: space-between;
  }
}
