:root {
    --colorPrimary: #ED6F2F;
    --colorPrimaryLight: rgba(237, 111, 47, 0.9);
    --colorDark: #262425;
    --colorLight: #FFF;
    --colorOverlay: rgba(0, 0, 0, 0.7);
    --transitionBase: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transitionSlow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --borderRadiusSm: 15px;
    --borderRadiusLg: 30px;
    --shadowBase: 0 10px 20px rgba(0,0,0,0.1);
    --shadowHover: 0 15px 30px rgba(0,0,0,0.2);
  }

/* ===== Barra de Navegación ===== */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .navLogo {
    position: absolute;
    top: 15px;
    left: 50px;
    z-index: 1001;
    display: flex;
    align-items: center; /* Alinea verticalmente */
    gap: 20px; /* Espacio entre logo y texto */
  }
  
  .navLogoImg {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .navLogoFont {
    height: 60px; /* Puedes ajustar según visual */
    width: auto;
  }
  
  .navLogoImg:hover {
    transform: scale(1.1);
  }
  
  .navLinksContainer {
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    justify-content: flex-end;
  }
  
  .navLinks {
    display: flex;
    gap: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
  }
  
  .navLink {
    color: white;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .navLink:hover {
    color: #ED6F2F;
    transform: scale(1.1);
  }
  
  .navLink::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ED6F2F;
    transition: width 0.3s ease;
  }
  
  .navLink:hover::after {
    width: 100%;
  }

/* ====================
   Contact Banner
   ==================== */
   .contactBanner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Imagen de fondo */
  .contactBanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  /* Overlay semi-transparente */
  .contactBanner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* 25% opacidad negra */
    z-index: 2;
  }
  
  /* Contenido encima del overlay */
  .contactBanner .bannerContent {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 40px;
    margin-bottom: 10%;
  }
  
  /* Título principal */
  .contactBanner .bannerContent h1 {
    font-family: 'Futura Medium', sans-serif;
    font-size: 100px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  /* Subtítulo */
  .contactBanner .bannerContent h3 {
    width: 60%;
    margin: auto;
    font-family: 'Avenir Medium', sans-serif;
    font-size: 40px;
    font-weight: 400;
  }

  /* ==========================
   Contact Body (Sección Central)
   ========================== */

.contactBody {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 860px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
  }

   /* Imagen de fondo */
   .contactBody img {
    height: 900px;
    width: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  /* Contenedor de tarjetas */
  .cardsContainer {
    position: relative;
    width: 90%;
    height: 90%;
    background-color: #fff;
    border-radius: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    bottom: 135px;
    z-index: 2;
  }
  
  /* Columnas individuales dentro de cardsContainer */
  .cardsContainer > div {
    width: 30%;
    height: 95%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

/* ===========================
   Primera Columna - Contact Card
   =========================== */
   .contactCard {
    margin-top: 1%;
    margin-left: 1%;
    background-color: #262425;
    color: white;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    box-sizing: border-box;
  }
  
  /* Contenedor del subtítulo + descripción (primer tercio) */
  .contactCardHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 33%;
    text-align: center;
  }
  
  .contactCardHeader h2 {
    font-family: 'Futura Medium', sans-serif;
    font-size: 40px;
    margin-bottom: 0px;
    text-align: left;
  }
  
  .contactCardHeader p {
    font-family: 'Avenir Medium', sans-serif;
    font-size: 20px;
    text-align: left;
    line-height: 1.5;
    color: #ccc;
  }
  
  /* Contenedor de íconos + texto (dos tercios inferiores) */
  .contactCardInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 60%;
    gap: 20px;
    margin-top: auto;
  }
  
  .contactRow {
    display: flex;
    align-items: center; /* Esto ya está en tu CSS */
    gap: 15px;
    width: 100%; /* Asegura que ocupe todo el ancho disponible */
}
  
.contactRow img {
    position: relative;
    width: 75px;
    height: 75px;
    object-fit: contain;
    display: block; /* Evita espacios fantasma */
}
  
  .contactRow p {
    font-family: 'Avenir Medium', sans-serif;
    font-size: 20px;
    color: #fff;
    margin: 0;
  }
  
  /* ===========================
   Segunda Columna - userInfo1
   =========================== */
.userInfo1 {
    margin-top: 1%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espacio entre elementos */
    padding: 0px; /* Ajusta según necesidad */
    box-sizing: border-box;
}

/* Estilos compartidos para inputs y selects */
.userInput {
    height: 120px;
    width: auto;
    padding: 0px 30px;
    border: none;
    border-radius: 25px;
    margin-bottom: 40px;
    font-family: 'Futura Medium', sans-serif;
    font-size: 25px;
    color: #262425; 
    background-color: rgba(237, 111, 47, 0.25);
    outline: none;
    transition: all 0.3s ease;
}

.userInput2 {
    height: 130px;
    width: auto;
    padding: 0px 30px;
    border: none;
    border-radius: 25px;
    margin-bottom: 40px;
    font-family: 'Futura Medium', sans-serif;
    font-size: 25px;
    color: #262425;
    background-color: rgba(237, 111, 47, 0.25);
    outline: none;
    transition: all 0.3s ease; 
}

.userInput::placeholder {
    color: #262425; /* Mismo color que el texto */
    opacity: 1; /* Asegura visibilidad al 100% */
}


.userInput:focus {
    border-color: #ED6F2F; /* Naranja AXIS al enfocar */
}

/* Estilo específico para el select (desplegable) */
.userInput select {
    appearance: none; 
    background-image: url('Recursos Digitales/axisIcons/axisArrowHead.png'); /* Ícono personalizado */
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

/* Contenedor del mapa */
.adressContainer {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

/* Contenedor para los elementos inferiores (texto + botón) */
.adressContainer .controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex; /* Activa Flexbox */
    align-items: center; /* Centra verticalmente */
    gap: 10px; /* Espacio entre elementos */
    padding: 15px; /* Margen interno */
    background: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
    box-sizing: border-box;
  }

/* Mapa de Google */
.mapInput {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(90%); /* Estilo visual */
  }
  
  /* Overlay interactivo */
  .mapOverlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Ancho del 80% del contenedor padre */
    z-index: 10;
    text-align: center;
  }

  #addressText {
    width: 100%; /* Ocupa el 100% del overlay (80% del mapa) */
    padding: 12px;
    border: 2px solid #262425;
    border-radius: 10px;
    font-family: 'Avenir Medium', sans-serif;
    font-size: 16px;
    background-color: rgba(237, 111, 47, 0.1);
    box-sizing: border-box;
  }
  
  
  .confirmLocation:hover {
    background-color: #e05c2a;
    transform: translateY(-2px);
  }

   /* ===========================
   Tercera Columna - userInfo2
   =========================== */
.userInfo2 {
    margin-top: 1%;
    margin-right: 1%;
    width: 518.4px;
    height: 760px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    box-sizing: border-box;
}

/* Contenedor de checkboxes */
.checkBoxContainer {
    position: relative;
    width: 100%;
    height: 40%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(40px, auto);
    gap: 12px;
    padding: 10px;
    border: none;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .axisServiceContainer {
    background-color: white;
    border: 2px solid #ED6F2F;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    padding: 10px 14px;
    font-family: 'Avenir', sans-serif;
    font-size: 0.9rem;
    color: #262425;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
    min-width: 0;
  }

  .axisServiceContainer:hover {
    background-color: #ED6F2F;
    color: white;
  }

  .axisServiceContainer input[type="checkbox"]:checked + span,
  .axisServiceContainer:has(input:checked) {
    background-color: #ED6F2F;
    color: white;
    border-color: #ED6F2F;
  }

  .selectionCounter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 50px;
    background-color: #ED6F2F;
    color: white;
    border-radius: 15px;
    font-weight: bold;
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  


/* Botón de enviar */
.sendInfo {
    height: 120px;
    width: 100%;
    margin-top: 20px;
    border: none;
    border-radius: 25px;
    background-color: #ED6F2F;
    color: white;
    font-family: 'Futura Medium', sans-serif;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.sendInfo:hover {
    background-color: #e05c2a;
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.axis-footer {
    background-color: var(--colorDark);
    color: var(--colorLight);
    padding: 2rem;
    text-align: center;
  }
  
  .footer-logo {
    width: 80px;
    margin: 0 auto 1rem;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: var(--colorLight);
    text-decoration: none;
    transition: var(--transitionBase);
  }
  
  .footer-links a:hover {
    color: var(--colorPrimary);
  }

  /* ===== Pop-Up Message ===== */

  .successPopup {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #262425;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9999;
  }
  
  .successPopup.show {
    opacity: 1;
    visibility: visible;
  }
  


    
  /* ========== RESPONSIVE ========== */
  @media (max-width: 1440px) {
    .contactBanner {
      height: 500px;
    }
  
    .contactBanner .bannerContent h1 {
      font-size: 80px;
    }
  
    .contactBanner .bannerContent h3 {
      font-size: 32px;
    }
  }
  
  @media (max-width: 1024px) {
    .contactBanner {
      height: 450px;
    }
  
    .contactBanner .bannerContent h1 {
      font-size: 60px;
    }
  
    .contactBanner .bannerContent h3 {
      font-size: 26px;
    }
  }
  
  @media (max-width: 768px) {
    .contactBanner {
      height: 400px;
    }
  
    .contactBanner .bannerContent h1 {
      font-size: 42px;
    }
  
    .contactBanner .bannerContent h3 {
      font-size: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .contactBanner {
      height: 320px;
    }
  
    .contactBanner .bannerContent h1 {
      font-size: 32px;
    }
  
    .contactBanner .bannerContent h3 {
      font-size: 18px;
    }
  }
  
  @media (max-width: 1440px) {
    .contactBody {
      height: 800px;
      padding-bottom: 110px;
    }
  
    .cardsContainer {
      padding: 30px;
    }
  }
  
  @media (max-width: 1024px) {
    .contactBody {
      height: auto;
      padding: 80px 0;
    }
  
    .cardsContainer {
      flex-direction: column;
      height: auto;
      gap: 40px;
    }
  
    .contactCard,
    .userInfo1,
    .userInfo2 {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .cardsContainer {
      padding: 20px;
      border-radius: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .cardsContainer {
      padding: 15px;
      gap: 30px;
    }
  }

  @media (max-width: 1024px) {
    .contactCard {
      width: 100%;
      height: auto;
      padding: 30px;
    }
  
    .contactCardHeader h2 {
      font-size: 24px;
    }
  
    .contactCardInfo {
      gap: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .contactCardHeader h2 {
      font-size: 20px;
    }
  
    .contactRow img {
      width: 20px;
      height: 20px;
    }
  
    .contactRow p {
      font-size: 14px;
    }
  }

  
  