/* general.css */

:root {
  --bg-color: #FFFFFF;
  --section-bg: #DCE3EA;
  --header-footer-bg: #0B1F3A;
  --button-color: #007ACC;
  --button-hover: #2E4A62;
  --accent-color: #D14900;
  --border-color: #DCE3EA;
  --title-color: #0B1F3A;
  --text-color: #2A2A2A;
  --font-main: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}
  /*header y navegación */

/* ===== ESTILOS PRINCIPALES ===== */
.skytech-header {
  background: #0B1F3A;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.header-container {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-link {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.logo-link:hover {
  transform: scale(1.05);
}

.header-logo {
  height: 180px;
  width: auto;
}

/* Navegación principal */
.main-navigation {
  flex-grow: 1;
  margin: 0 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #D14900;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D14900;
  transition: width 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown-icon {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.4s ease;
}

/* Menú desplegable */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  padding: 15px 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  color: #2A2A2A;
  text-decoration: none;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #D14900;
  background: #f8f8f8;
  padding-left: 30px;
}

.dropdown-menu li a i {
  margin-right: 12px;
  color: #007ACC;
  width: 18px;
  text-align: center;
}

/* Botón de contacto */
.contact-btn {
  background: #007ACC;
  color: white !important;
  padding: 8px 22px;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.contact-btn:hover {
  background: #2E4A62;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 122, 204, 0.3);
}

/* --- Contenedor de herramientas (lupa + idioma) --- */
.header-tools {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto; /* Opcional: alinea a la derecha */
}

/* Elementos individuales */
.search-icon, 
.language-selector {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: auto;
}

/* ===== BÚSQUEDA ===== */
.search-wrapper {
 /* position: relative;
  z-index:  100; ;*/
   display: none !important;
}

.search-icon {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  margin-right: 60px;
  transition: all 0.3s ease;
}

.search-icon:hover {
  color: #D14900;
  transform: scale(1.1);
}

/* Asegura que el panel esté oculto inicialmente */
.search-panel {
  position: fixed;
  top: 0;  /*0 antes*/
  /*right: -100%; /* Cambiado de -100% */
left:0;
  width: 100%;  /*antes 100%*/
  max-width: 500px; /*antes 500px*/
  height: 100vh;
  background: white;
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
   transform: translateX(100%); /* 👉 Oculto fuera de pantalla */
  padding: 20px; /*20px*/
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}


/*.search-wrapper.active .search-panel {
  right: 0; /* Cambiado de transform/position a right 
}*/



.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
 margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.search-header h3 {
  font-size: 1.5rem;
  color: #0B1F3A;
  margin: 0;
}

.close-search {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001; /* Mayor que el panel */
}

.close-search:hover {
  color: #D14900;
  transform: rotate(90deg);
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-input {
  width: 100%;
  padding: 0.5rem;
  border: 2px solid #DCE3EA;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border 0.3s;
}

.search-input:focus {
  border-color: #007ACC;
  box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.2);
  outline: none;
}

.search-submit {
  background: #007ACC;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.search-submit:hover {
  background: #0B1F3A;
}

/* Overlay - ajustes importantes */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
    right: 0;
    bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none; /* Importante para evitar conflictos */
}

.search-wrapper.active .search-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* Solo interactuable cuando está activo */
}

/* ===== SELECTOR DE IDIOMAS PREMIUM ===== */
.language-selector {
  position: relative;
  z-index: 40;
}

.language-current {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.language-current:hover {
  background: rgba(255, 255, 255, 0.2);
}

.language-flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  margin-right: 8px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-flag.en { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNjAgMzAiIHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjYwMCI+CjxjbGlwUGF0aCBpZD0icyI+Cgk8cGF0aCBkPSJNMCwwIHYzMCBoNjAgdi0zMCB6Ii8+CjwvY2xpcFBhdGg+CjxjbGlwUGF0aCBpZD0idCI+Cgk8cGF0aCBkPSJNMzAsMTUgaDMwIHYxNSB6IHYxNSBoLTMwIHogaC0zMCB2LTE1IHogdi0xNSBoMzAgeiIvPgo8L2NsaXBQYXRoPgo8ZyBjbGlwLXBhdGg9InVybCgjcykiPgoJPHBhdGggZD0iTTAsMCB2MzAgaDYwIHYtMzAgeiIgZmlsbD0iIzAxMjE2OSIvPgoJPHBhdGggZD0iTTAsMCBMNjAsMzAgTTYwLDAgTDAsMzAiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI2Ii8+Cgk8cGF0aCBkPSJNMCwwIEw2MCwzMCBNNjAsMCBMMCwzMCIgY2xpcC1wYXRoPSJ1cmwoI3QpIiBzdHJva2U9IiNDODEwMkUiIHN0cm9rZS13aWR0aD0iNCIvPgoJPHBhdGggZD0iTTMwLDAgdjMwIE0wLDE1IGg2MCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEwIi8+Cgk8cGF0aCBkPSJNMzAsMCB2MzAgTTAsMTUgaDYwIiBzdHJva2U9IiNDODEwMkUiIHN0cm9rZS13aWR0aD0iNiIvPgo8L2c+Cjwvc3ZnPgo=');}
.language-flag.fr { background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzIgMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjMyIiBoZWlnaHQ9IjE2IiBmaWxsPSIjZWRlZGVkIi8+PHJlY3Qgd2lkdGg9IjEwLjY2IiBoZWlnaHQ9IjE2IiBmaWxsPSIjMDAyM2Y2Ii8+PHJlY3QgeD0iMjEuMzQiIHdpZHRoPSIxMC42NiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2NlMTEyNCIvPjwvc3ZnPg==');}
.language-flag.de { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MCAzMCI+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTAgMGg2MHYxMEgweiIvPjxwYXRoIGZpbGw9IiNkZDAiIGQ9Ik0wIDEwaDYwdjEwSDB6Ii8+PHBhdGggZmlsbD0iI2YwMCIgZD0iTTAgMjBoNjB2MTBIMHoiLz48L3N2Zz4='); }
.language-flag.tr { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MCAzMCI+PHBhdGggZmlsbD0iI2UzMDEzOCIgZD0iTTAgMGg2MHYzMEgweiIvPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0zMCAxNWMwIDMuODY1LTMuMTM1IDctNyA3cy03LTMuMTM1LTctN3MzLjEzNS03IDctNyA3IDMuMTM1IDcgN3oiLz48cGF0aCBmaWxsPSIjZTMwMTM4IiBkPSJNMzAgMTJjMCAxLjY1Ny0xLjM0MyAzLTMgM3MtMy0xLjM0My0zLTNzMS4zNDMtMyAzLTMgMyAxLjM0MyAzIDN6Ii8+PC9zdmc+'); }
.language-flag.ru { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MCAzMCI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg2MHYxMEgweiIvPjxwYXRoIGZpbGw9IiMwMDM5YTciIGQ9Ik0wIDEwaDYwdjEwSDB6Ii8+PHBhdGggZmlsbD0iI2Q1MDAwMCIgZD0iTTAgMjBoNjB2MTBIMHoiLz48L3N2Zz4='); }

.language-current i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 180px;
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  will-change: transform, opacity;
  z-index: 100;
}

.language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown li {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-dropdown li:hover {
  background: #f5f5f5;
  color: #D14900;
}

.language-dropdown li span:last-child {
  margin-left: 10px;
}






/*hero de index*/
.hero {
  position: relative;
  height: 85vh; /* altura grande, casi pantalla completa */
  min-height: 600px; /* Altura mínima para móviles */
  background: url('..images/airplane.jpg') no-repeat center center/cover;
   background-size: cover; /* Asegura que cubra todo el espacio */
  color: white;
  padding: 0 1rem; /* algo de espacio lateral */
  display: flex;
  flex-direction: column;
  justify-content: center; /* centrar verticalmente el contenido */
  text-align: center;
  align-items: center;
  overflow: hidden;
  animation: backgroundZoom 20s ease-in-out infinite alternate;
}

/* Efecto overlay mejorado */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
   to bottom,
    rgba(11, 31, 58, 0.25) 0%,     /* antes: 0.7 */
    rgba(0, 122, 204, 0.15) 100%   /* antes: 0.4 */
  );
  z-index: 1;
}

/* Contenido del hero */
.hero-content > * {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 2rem;
  opacity: 1;
  animation: fadeIn 2s ease 0.5s forwards;
}

/* Tipografía responsive */
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); /* Rango fluido */
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 4s ease forwards;
}

.hero p {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.5s ease 0.5s forwards;
}

/*hero de subpg services*/
.services-hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  background: url('..images/aircraft.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
  overflow: hidden;
animation: backgroundZoom 20s ease-in-out infinite alternate;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.services-hero > * {
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInDown 2s ease forwards;
}

.services-hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 2s ease 0.5s forwards;
}

.cta-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  opacity: 0;
  animation: fadeInUp 2s ease 1s forwards;
}

.cta-btn:hover {
  background-color: darken(var(--accent-color), 10%);
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
  }

.services {
  background-color: var(--section-bg);
  padding: 2rem 0;
}

.services ul {
  padding-left: 1.2rem;
}


/*no sé si es de index*/
section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-color);
  padding-left: 0.5rem;
  color: var(--title-color);
}

section h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--title-color);
}

p {
  font-size: 1rem;
  font-weight: 400;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-box i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-block;
}

/* Estilos base del formulario */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  font-family: 'Inter', sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 3rem 1rem 1rem;
  background-color: #f9f9f9;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.description {
  color: #718096;
}

/* Estructura del formulario */
.modern-form {
  display: grid;
  gap: 1.5rem;
}

.form-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Elementos del formulario */
label {
  font-weight: 600;
  color: #2d3748;
  font-size: 0.95rem;
}

.required {
  color: #e53e3e;
  font-weight: 400;
}

input, select, textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.2s;
  background-color: #f8fafc;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

.input-hint {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 0.25rem;
}

/* Selector de teléfono */
.phone-input {
  position: relative;
}

.phone-container {
  display: flex;
  align-items: center;
}

.country-code {
  width: 150px;
  margin-right: 0.5rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

/* Botón de submit */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: #3182ce;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
  font-size: 1rem;
}

.submit-btn:hover {
  background-color: #2c5282;
  transform: translateY(-1px);
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  stroke: currentColor;
}

/* Servicios destacados - diseño Skytech */
/* Fondo general de la sección servicios */
.featured-services {
  background-color: #f5faff; /* azul claro suave Skytech */
  padding: 60px 0;
}

/* Fila individual de servicio */
.service-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 60px;
  background-color: #f3f8fc; /* azul claro Skytech */
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

.service-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenedor de texto */
.service-text {
  flex: 1;
  max-width: 50%;
  padding: 3rem;
  background-color: white;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.service-text h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #d14900; /* naranja Skytech */
}

.service-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  max-width: 90%;
}

/* Alterna lado de la imagen */
.service-row.reverse {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 991px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .service-image,
  .service-text {
    max-width: 100%;
    flex: unset;
  }

  .service-text {
    padding: 2rem;
    text-align: center;
    align-items: center;
  }

  .service-text p {
    max-width: 100%;
  }
}


/*cjas d elocalizaciones en index*/
.locations-section {
  background-color: #f5faff;
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 3rem;
  border-left: 5px solid #D14900;
  padding-left: 15px;
  font-family: 'Montserrat', sans-serif;
}

/* GRID actualizado para 4 columnas en desktop */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Tarjetas */
.location-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-info {
  padding: 1.5rem;
  text-align: center;
}

.location-info h4 {
  font-size: 1.25rem;
  color: #D14900;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.location-info p {
  font-size: 1rem;
  color: #003057;
  font-family: 'Montserrat', sans-serif;
}

/*botones see all locations y make an enquiry index*/
.locations-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.cta-section {
  text-align: center;
  background-color: #f5faff; /* color suave consistente con tu estilo */
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.cta-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section a.btn-primary {
  display: inline-block;
}

/* Responsive tablet: 2 por fila */
@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive móvil: 1 por fila */
@media (max-width: 576px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card img {
    height: 160px;
  }
}




/* Footer Compacto */
.compact-footer {
  background-color: #1a202c;
  color: #e2e8f0;
  padding: 2.5rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* CENTRADO específico para la columna del logo */
.footer-col.logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* opcional si quieres centrar el texto también */
  height: 100%; /* asegura que pueda centrarse verticalmente */
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.footer-logo span {
  color: #4299e1;
}

.footer-description {
  color: #a0aec0;
  margin-bottom: 1rem;
  line-height: 1.5;
  max-width: 220px;

}
.footer-rights {
  font-size: 0.7rem;
  color: #aaa;
  margin-top: 0.5rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: white;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #4299e1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #4299e1;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #a0aec0;
}

.footer-contact i {
  width: 16px;
  color: #4299e1;
}



.footer-legal {
  color: #718096;
  font-size: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #2d3748;
}





/*buttons and inputs*/
input,
textarea,
button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

button {
  background-color: var(--button-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease; 
  font-weight: 500;

}

button:hover {
  background-color: var(--button-hover);
}

footer {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--header-footer-bg);
  color: white;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
}

.btn-primary {
  background-color: #e63946; /* Rojo principal */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #d62828; /* Más oscuro al pasar el ratón */
  transform: translateY(-3px);
}

.btn-primary:active {
  background-color: #a61e1e; /* Más oscuro aún al hacer clic */
  transform: translateY(0px);
}


 



/*acordeones*/
.accordion .expand-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion .expand-btn span {
  font-size: 1.5rem;
  line-height: 1;
  color: #007bff;
}

.accordion .service-details {
  display: none;
  padding: 10px 15px;
  margin-bottom: 10px;
  background-color: #f5f5f5;
  border-left: 3px solid #007bff;
}

/* Empiezan las Animaciones */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 1.5s infinite;
}

/* Animation hero */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backgroundZoom {
  0% {
    background-position: center center;
    background-size: 110% 110%;
  }
  100% {
    background-position: center center;
    background-size: 120% 120%;
  }
} 



/*media queries*/
/* Responsive header*/
@media (max-width: 1200px) {
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .main-navigation {
    display: none;
  }
  
}

@media (max-width: 768px) {
  .search-panel {
    width: 100%;
    right: -100%;
  }
  
  .language-selector {
    margin-left: 10px;
  }
  
  @media (max-width: 768px) {
  .header-logo {
    width: 140px;
  }
}

 /*animaciones hero index*/
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backgroundZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Responsive hero para móvil */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
}

/* Responsive hero para tablets */
@media (max-width: 992px) {
  .hero {
    height: 70vh;
    background-attachment: scroll; /* Mejor rendimiento en móviles */
  }
}

/* Responsive tarjetas servicos subpag*/
@media (max-width: 600px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-icon {
    margin-bottom: 0.5rem;
  }
}

/* Responsive footer*/
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-col {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d3748;
  }
  
  .footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }






  /*aircraft pages*/
.hero-image {
  background-size: cover;
  background-position: center;
  padding: 10rem 1rem 6rem;
  color: white;
  text-align: center;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-image .container {
  position: relative;
  z-index: 2;
}

.page-content .with-image {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.page-content .with-image .text {
  flex: 1 1 50%;
}

.page-content .with-image .image {
  flex: 1 1 40%;
}

.page-content .with-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.custom-list i {
  color: #007bff;
  margin-right: 0.5rem;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 1rem;
}

}





/*fbo*/

}
.fbo-hero {
  color: white;
  padding: 6rem 1rem;
  text-align: center;
}

.fbo-overview .feature-box i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero.fbo-hero h1,
.hero.fbo-hero p {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}






/*completions*/
.completions-hero {
  background: url('../images/completions-hero.jpg') center/cover no-repeat;
  padding: 6rem 1rem;
  text-align: center;
  color: white;
}

.completions-hero h1, .completions-hero p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}




/*maintenance*/

.maintenance-hero {
  background: url('../images/maintenance-hero.jpg') center/cover no-repeat;
  padding: 6rem 1rem;
  text-align: center;
  color: white;
}

.maintenance-hero h1, .maintenance-hero p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}




/*government programs*/
.government-hero {
  background: url('../images/government-hero.jpg') center/cover no-repeat;
  padding: 6rem 1rem;
  text-align: center;
  color: white;
}

.government-hero h1, .government-hero p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}


/*staffing*/
.staffing-hero {
  background: url('../images/staffing-hero.jpg') center/cover no-repeat;
  padding: 6rem 1rem;
  text-align: center;
  color: white;
}

.staffing-hero h1, .staffing-hero p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}



/*services*/
.services-hero {
  background: url('../images/services-hero.jpg') center/cover no-repeat;
  padding: 6rem 1rem;
  text-align: center;
  color: white;
}

.services-hero h1, .services-hero p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}


/*location page*/
.filters-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center; /* o left según tu diseño */
}
.filters {
  display: none !important;
}

/*company page*/

/* TIMELINE SECTION */
.timeline-section {
  padding: 4rem 1rem;
  background-color: #f8f9fb;
}

.timeline-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  padding-left: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #007bff;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin: 2rem 0;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  width: 45%;
  z-index: 2;
}

.timeline-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #007bff;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #007bff;
  border-radius: 50%;
  z-index: 3;
  border: 4px solid #fff;
}

/* VIDEO SECTION */
.video-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.video-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.video-wrapper {
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* OUR PROMISE SECTION */
.our-promise {
  padding: 4rem 1rem;
  background-color: #f1f3f5;
}

.our-promise .grid-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.our-promise .text-block {
  flex: 1 1 45%;
}

.our-promise .text-block h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.our-promise .text-block p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.our-promise .image-block {
  flex: 1 1 45%;
}

.our-promise .image-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column !important;
    align-items: center;
  }

  .timeline::before {
    left: 0;
    transform: none;
  }

  .timeline-content {
    width: 90%;
  }

  .timeline-dot {
    left: 0;
    transform: none;
  }

  .our-promise .grid-layout {
    flex-direction: column;
  }

  .our-promise .text-block,
  .our-promise .image-block {
    flex: 1 1 100%;
  }

  .video-wrapper iframe {
    height: 250px;
  }
}

/*fomr*/

.contact-form-enhanced {
  max-width: 800px;  /* Límite de ancho */
  margin: 0 auto;    /* Centrado horizontal */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

@media (max-width: 480px) {
  .contact-form-enhanced {
    padding: 1rem;
  }
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
}


/*contact*/
/* Global offices section title */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
}

/* Contenedor horizontal con márgenes */
.regions-wrapper {
  overflow-x: auto;
  padding: 0 1rem;
}

/* Fila horizontal de tarjetas */
.regions-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  min-width: max-content;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

/* Scrollbar oculto (opcional) */
.regions-row::-webkit-scrollbar {
  display: none;
}
.regions-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Tarjetas de región más pequeñas */
.region-box {
  flex: 0 0 200px;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.region-box:hover {
  transform: translateY(-4px);
}

/* Iconos más pequeños */
.region-box i {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #007bff;
}

/* Título y contenido */
.region-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.region-box p {
  font-size: 0.95rem;
  color: #555;
}



/* Contact form layout */
.contact-section {
  background-color: #f1f1f1;
  padding: 4rem 1rem;
}
.contact-form-section {
  padding: 4rem 1rem;
  background: #f1f1f1;
}

.contact-form-enhanced {
  max-width: 700px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding:3rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-enhanced input,
.contact-form-enhanced textarea {
 padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form-enhanced .submit-btn {
  background-color: var(--accent-color);
  color: white;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-enhanced .submit-btn:hover {
   background-color: #004e99;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.contact-header h2 {
  font-size: 2rem;
  color: #D14900;
  margin-bottom: 0.5rem;
}

.contact-header .subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #007bff;
  margin-bottom: 0.25rem;
}

.contact-header .description {
  font-size: 1rem;
  color: #555;
}
.center-button {
  display: flex;
  justify-content: center;
}
