/* =====================================================
   1. RESET GENERAL Y BASE
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

/* =====================================================
   2. TOP BAR (SHOP / LOCATIONS / CAREERS / LOGIN)
   ===================================================== */
.top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #34a8aa;
    padding: 10px 40px;
    color: white;
    font-size: 14px;
    gap: 20px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: black;
}

/* Icono hamburguesa para móvil */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* =====================================================
   3. NAVBAR PRINCIPAL
   ===================================================== */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background-color: white;
    border-bottom: 2px solid #e6e6e6;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 60px;
}

/* Menú principal */
.nav-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Botón de contacto */
.contact-btn {
    background-color: #34a8aa;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-btn:hover {
        background: #e2e219;
    color: black;
}

@media (max-width: 600px) {
    .contact-btn {
        margin: 10px 0px 10px 30px;
        text-align: center;
    }
}


/* =====================================================
   4. DROPDOWNS DEL MENÚ
   ===================================================== */
.dropdown {
    position: relative;
}

.drop-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #002b5c;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.drop-btn:hover {
    color: #1e90ff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    list-style: none;
    min-width: 180px;
    z-index: 20;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #002b5c;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #002b5c;
    color: white;
}


/* =====================================================
   5. HERO SECTION
   ===================================================== */
.hero {
    background: linear-gradient(135deg, #69b2b3, #34C9CC); /* Azul degradado limpio */
    color: white;
    text-align: center;
    padding: 200px 0px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   6. SERVICES SECTION
   ===================================================== */
.services-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.services-title {
    font-size: 28px;
    color: #002b5c;
    margin-bottom: 50px;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    perspective: 1000px;
    transition: transform 0.6s ease;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 350px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-image, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,43,92,0.9);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

.service-back {
    background-color: #34a8aa;
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.service-back h3 {
    margin-bottom: 10px;
}

.service-btn {
    margin-top: 10px;
    background: white;
    color: #002b5c;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.service-btn:hover {
    background: #e2e219;
    color: black;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 🔹 Solo 4 columnas máximo */
    gap: 30px;
    justify-items: center;
}

/* 🔸 Responsive: 2 columnas en tablets, 1 en móviles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SECCIÓN DE CARRUSEL DE EMPRESAS
   ========================= */
/* ============================= */
/* 🔹 Contenedor general del carrusel */
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.carousel-title {
  font-size: 28px;
  color: #002b5c;
  margin-bottom: 40px;
  font-weight: 700;
}

/* 🔹 Contenedor que recorta el contenido extra */
/* Corrige la alineación y visibilidad */
.carousel-container {
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 25px;
  transform: translateX(0);
  transition: transform 0.5s ease;
  padding-left: 20px; /* 🔹 asegura que no se corte la primera card */
}



/* 🔹 Cada card */
.carousel-card {
  flex: 0 0 auto;
  width: 320px;
  height: 380px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* 🔹 Imagen del logo */
.carousel-card img {
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* 🔹 Nombre de la empresa */
.carousel-card h3 {
  font-size: 20px;
  color: #002b5c;
  font-weight: 600;
}

/* 🔹 Flechas de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #002b5c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #1e90ff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* 🔹 Enlaces dentro de las tarjetas (quitar subrayado y mantener color del texto) */
.carousel-card a {
  text-decoration: none; /* quita el subrayado */
  color: inherit; /* usa el mismo color que el h3 o el elemento padre */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-card a:hover {
  text-decoration: none; /* asegura que no aparezca al pasar el mouse */
}


/* 🔹 Responsivo (tablets y celulares) */
@media (max-width: 1024px) {
  .carousel-card {
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    gap: 20px;
  }

  .carousel-card {
    width: 85%;
    height: 340px;
    margin: 0 auto;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    width: 90%;
    height: 320px;
  }

  .carousel-card img {
    max-width: 120px;
    max-height: 120px;
  }

  .carousel-card h3 {
    font-size: 18px;
  }
}


/* ============================= */
/* BOTÓN VOLVER ARRIBA */
/* ============================= */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #002b5c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

#scrollTopBtn:hover {
  background-color: #1e90ff;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
/* Carrusel principal */
.carousel-section {
  position: relative;
  text-align: center;
  padding: 40px 0;
  background: #f7f7f7;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.carousel-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  height: 350px;
  padding: 30px 20px;
  text-align: center;
  flex-shrink: 0;
}

.carousel-logo {
  max-width: 150px;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.carousel-card h3 {
  font-size: 20px;
  color: #333;
  margin-top: 10px;
}

/* Botones del carrusel */
.carousel-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}

.carousel-btn:hover {
  color: #ff0000;
}

/* Botón circular para ir al inicio */
.btn-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ffcc00;
  color: #000;
  border: none;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.btn-top:hover {
  background-color: #ff9900;
}

/* Responsividad */
@media (max-width: 768px) {
  .carousel-track {
    gap: 15px;
  }
  .carousel-card {
    min-width: 250px;
    height: 300px;
  }
  .carousel-logo {
    max-width: 120px;
  }
}



/* =====================================================
   7. INVESTOR SECTION
   ===================================================== */
.investor-section {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: #fff;
    padding: 60px 40px;
}

.investor-image-container img {
    max-width: 100%;
    border-radius: 8px;
}

.investor-content {
    flex: 1;
    padding: 30px;
}

.investor-content h2 {
    font-size: 32px;
    color: #002b5c;
    margin-bottom: 30px;
}

.investor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.investor-card {
    background: #f4f6fa;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.read-more-btn {
    background-color: #34a8aa;
    color: white;
    border: none;
    margin-top: 10px;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.read-more-btn:hover {
        background: #e2e219;
    color: black;
}

/* =====================================================
   8. ABOUT SECTION
   ===================================================== */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 40px;
    background-color: #f8f8f8;
}

.about-video {
    flex: 1;
    background: url('img/img6.jpg') no-repeat center/cover;
    height: 400px;
    border-radius: 10px;
    position: relative;
}

.play-button {
    width: 70px;
    height: 70px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.about-content {
    flex: 1;
    padding: 30px;
}

.about-content h2 {
    color: #002b5c;
    margin-bottom: 20px;
}

.button_p2 {
    background-color: #002b5c;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.button_p2:hover {
    background-color: #1e90ff;
}



/* =====================================================
   9. CONTACT FORM SECTION
   ===================================================== */
/* === FORMULARIO ESTILO FORMS === */
/* --- FORMULARIO: diseño responsivo --- */

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* 📱 En celular: cada input ocupa toda la fila */
@media (max-width: 768px) {
  .row {
    flex-direction: column; /* 🔥 Los inputs uno debajo del otro */
  }

  .form-container {
    padding: 20px;
  }

  .form-card {
    width: 100%;
  }

  form input,
  form textarea,
  form select {
    width: 100%;
    font-size: 16px;
  }

  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}


   
.contact-form {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    padding: 60px 40px;
}

.form-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px; /* Aumenta separación entre formulario e imagen */
    flex-wrap: wrap;
    padding: 0px 20px;
}

.form-card {
    background: #f4f6fa;
    padding: 30px;
    border-radius: 10px;
}

.form-card h2 {
    color: #002b5c;
}

.row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.submit-btn {
    background-color: #002b5c;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #1e90ff;
}

.form-image-container {
    flex: 1;
    text-align: center;
}

.form-image-container img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

/* === CHECKBOX GROUP: alineación perfecta en una sola columna === */
.checkbox-group {
  display: grid;
  gap: 10px;                 /* separación entre filas */
  margin-top: 12px;
  width: 100%;
}

/* Cada label usa grid: 24px fijo para el checkbox + resto para el texto */
.checkbox-group label {
  display: grid;
  grid-template-columns: 26px 1fr; /* 26px columna fija para el checkbox */
  align-items: center;             /* centra verticalmente el checkbox y el texto */
  gap: 10px;                       /* espacio entre checkbox y texto */
  padding: 6px 0;                  /* padding vertical */
  cursor: pointer;
  color: #333;
  font-size: 15px;
}

/* Estilo visual del checkbox */
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #002b5c; /* color del check */
}


/* =====================================================
   10. FOOTER
   ===================================================== */
.pro-footer {
  background-color: #01294b;
  color: #fff;
  font-family: "Segoe UI", Tahoma, sans-serif;
  padding: 50px 60px 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-logo {
  height: 40px;
}

.footer-cta h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 20px 0 0;
}

.footer-btn {
  display: inline-block;
  background-color: #34a8aa;
  color: white;
  margin-top: 20px;
  margin-left: 70px;
  font-weight: 600px;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: #ffcc00;
  color: #01294b;
}

hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column a {
  display: block;
  color: #d3d9e3;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffcc00;
}

/* Newsletter */
.newsletter-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #cfd8e3;
}

.newsletter-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  max-width: 250px;
}

.newsletter-input input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  padding: 8px;
}

.newsletter-input button {
  background: #fff;
  border: none;
  color: #01294b;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.newsletter-input button:hover {
  background: #ffcc00;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #cfd8e3;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-legal a {
  color: #cfd8e3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #ffcc00;
}

.footer-social a {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-btn {
    margin-top: 10px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-legal {
    justify-content: center;
  }
}



/* =====================================================
   11. RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 768px) {
    .top-bar {
        justify-content: space-between;
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        border-top: 1px solid #ddd;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .drop-btn, .dropdown-menu li a {
        width: 100%;
        text-align: left;
        padding: 12px 20px;
    }

    .contact-btn {
        width: 100%;
        margin-top: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .about-section, .investor-section, .contact-form {
        flex-direction: column;
        padding: 40px 20px;
    }
}


/* ==== BOTÓN VOLVER AL INICIO ==== */
.btn-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%; /* 🔵 hace que sea perfectamente redondo */
  background-color: #0077cc;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  display: none; /* oculto por defecto */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

/* Al pasar el cursor */
.btn-scroll-top:hover {
  background-color: #005fa3;
  transform: scale(1.1);
}

/* Mostrar el botón con animación */
.btn-scroll-top.show {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Ajuste para pantallas pequeñas */
@media (max-width: 600px) {
  .btn-scroll-top {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* =====================================================
   11. LOCATION SECTION
   ===================================================== */


.location-section {
            min-height: 100vh;
            padding: 80px 0;
            background: linear-gradient(135deg, #f9f9f9 0%, #e8e8e8 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .location-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0,58,112,0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .location-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(200,16,46,0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .location-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
            z-index: 1;
        }

        /* Title Animation */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            animation: fadeInDown 0.8s ease forwards;
        }

        .section-title h1 {
            color: #003a70;
            font-size: 48px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #c8102e, #003a70);
            animation: none;
            display: none;
        }

        .section-title p {
            color: #666;
            font-size: 18px;
            margin-top: 20px;
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 50px;
            align-items: stretch;
        }

        /* Map Container */
        .map-container {
            position: relative;
            opacity: 0;
            transform: translateX(-100px);
            animation: slideInLeft 1s ease forwards 0.3s;
        }

        .map-wrapper {
            position: relative;
            height: 100%;
            min-height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .map-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border: none;
        }

        /* Decorative corner badges */
        .location-badge {
            position: absolute;
            background: linear-gradient(135deg, #c8102e, #a00d25);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(200,16,46,0.3);
            z-index: 10;
            animation: pulse 2s ease infinite;
        }

        .location-badge.top {
            top: 20px;
            left: 20px;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Form Container - Now Location Details */
        .form-container {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateX(100px);
            animation: slideInRight 1s ease forwards 0.5s;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements for form container */
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #c8102e, #003a70);
        }

        .form-container::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 20px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0,58,112,0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Location Details Styles */
        .location-details {
            position: relative;
            z-index: 1;
        }

        .location-details h2 {
            color: #003a70;
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .location-details .subtitle {
            color: #666;
            font-size: 16px;
            margin-bottom: 35px;
            line-height: 1.6;
        }

        .detail-item {
            margin-bottom: 25px;
            padding-left: 35px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .detail-item:hover {
            transform: translateX(5px);
        }

        .detail-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #34a8aa, #2a8789);
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(52, 168, 170, 0.3);
        }

        .detail-label {
            color: #003a70;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
            display: block;
        }

        .detail-value {
            color: #333;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.5;
        }

        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
            margin: 30px 0;
        }

        /* Read More Button with custom colors */
        .location-read-more-btn {
            background-color: #34a8aa;
            color: white;
            border: none;
            margin-top: 20px;
            padding: 14px 35px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(52, 168, 170, 0.3);
        }

        .location-read-more-btn:hover {
            background: #e2e219;
            color: black;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(226, 226, 25, 0.4);
        }

        .location-read-more-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .location-read-more-btn:hover::after {
            transform: translateX(5px);
        }

        /* Buttons - with location prefix */
        .location-btn {
            background-color: #c8102e;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .location-btn:hover {
            background-color: #a00d25;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200,16,46,0.3);
        }

        .location-btn-secondary {
            background-color: transparent;
            color: #003a70;
            border: 2px solid #003a70;
            padding: 15px 40px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .location-btn-secondary:hover {
            background-color: #003a70;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,58,112,0.3);
        }

        /* Read more link - with location prefix */
        .location-read-more {
            color: #003a70;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .location-read-more:hover {
            color: #c8102e;
            gap: 12px;
        }

        .location-read-more::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .location-read-more:hover::after {
            transform: translateX(5px);
        }

        /* Stats Section */
        .stats-grid {
            margin-top: 80px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.8s;
        }

        .stat-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #c8102e, #003a70);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 42px;
            font-weight: bold;
            color: #003a70;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #003a70;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .map-wrapper,
            .form-container {
                min-height: 450px;
            }
        }

        @media (max-width: 768px) {
            .location-container {
                padding: 0 20px;
            }

            .section-title h1 {
                font-size: 32px;
            }

            .section-title p {
                font-size: 16px;
            }

            .form-container {
                padding: 30px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .map-wrapper,
            .form-container {
                min-height: 400px;
            }

            .location-btn,
            .location-btn-secondary {
                padding: 12px 30px;
                font-size: 14px;
            }
        }

        /* Loading animation for map */
        .location-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #c8102e;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 5;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .location-loading.hidden {
            display: none;
        }

/* =====================================================
   12. CAREARS SECTION
   ===================================================== */

        /* CAREERS INFO SECTION */
        .careers-info-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px 60px;
        }

        .careers-info-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .careers-info-content {
            padding-right: 40px;
        }

        .careers-info-label {
            color: #6b7280;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }

        .careers-info-label::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }

        .careers-info-title {
            font-size: 48px;
            color: #1f2937;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .careers-info-intro {
            font-size: 18px;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 50px;
        }

        .careers-info-benefits {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 50px;
        }

        .careers-info-benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .careers-info-check-icon {
            width: 28px;
            height: 28px;
            background: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .careers-info-check-icon svg {
            width: 16px;
            height: 16px;
            stroke: #3b82f6;
            stroke-width: 3;
        }

        .careers-info-benefit-text {
            font-size: 17px;
            color: #1f2937;
            font-weight: 500;
        }

        .careers-info-contact {
            font-size: 16px;
            color: #6b7280;
        }

        .careers-info-contact a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
        }

        .careers-info-contact a:hover {
            text-decoration: underline;
        }

        .careers-info-image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .careers-info-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* CAREERS FORM SECTION */
        .careers-form-wrapper {
            background-color: #ffffff;
            padding: 60px 40px;
        }

        .careers-form-main-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .careers-form-container {
            order: 2;
        }

        .careers-form-image-side {
            order: 1;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            height: 100%;
            min-height: 500px;
        }

        .careers-form-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .careers-form-container {
            order: 2;
            padding: 40px;
            background-color: #f0f4f8;
            border-radius: 8px;
        }

        .careers-form-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a3a52;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .careers-form-subtitle {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .careers-form-required {
            font-size: 12px;
            color: #718096;
            font-style: italic;
            margin-bottom: 25px;
        }

        .careers-form-group {
            margin-bottom: 30px;
        }

        .careers-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 30px;
        }

        .careers-form-label {
            display: block;
            font-size: 14px;
            color: #2d3748;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .careers-form-required-mark {
            color: #e53e3e;
            margin-right: 2px;
        }

        .careers-form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            font-size: 14px;
            color: #2d3748;
            background-color: #ffffff;
            transition: border-color 0.2s;
        }

        .careers-form-input:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
        }

        .careers-form-input::placeholder {
            color: #a0aec0;
        }

        .careers-form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            font-size: 14px;
            color: #2d3748;
            background-color: #ffffff;
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .send-email-btn {
    background-color: #34a8aa;
    color: white;
    border: none;
    margin-top: 10px;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.send-email-btn:hover {
        background: #e2e219;
    color: black;
}

        .careers-form-textarea:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
        }

        .careers-form-section-title {
            font-size: 14px;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .careers-form-checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .careers-form-checkbox-item {
            display: flex;
            align-items: center;
        }

        .careers-form-checkbox {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            cursor: pointer;
            accent-color: #38b2ac;
        }

        .careers-form-checkbox-label {
            font-size: 14px;
            color: #2d3748;
            cursor: pointer;
            user-select: none;
        }

        .careers-form-file-upload {
            border: 2px dashed #cbd5e0;
            border-radius: 4px;
            padding: 30px 20px;
            text-align: center;
            background-color: #ffffff;
            transition: all 0.2s;
            cursor: pointer;
        }

        .careers-form-file-upload:hover {
            border-color: #38b2ac;
            background-color: #f7fafc;
        }

        .careers-form-file-upload.dragover {
            border-color: #38b2ac;
            background-color: #e6fffa;
        }

        .careers-form-file-input {
            display: none;
        }

        .careers-form-file-icon {
            font-size: 36px;
            color: #38b2ac;
            margin-bottom: 10px;
        }

        .careers-form-file-text {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 5px;
        }

        .careers-form-file-hint {
            font-size: 12px;
            color: #718096;
        }

        .careers-form-file-name {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 15px;
            background-color: #e6fffa;
            color: #234e52;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
        }

        .careers-form-file-remove {
            margin-left: 10px;
            color: #e53e3e;
            cursor: pointer;
            font-weight: 600;
        }

        .careers-form-submit {
            background-color: #38b2ac;
            color: #ffffff;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.1s;
            letter-spacing: 0.5px;
            margin-top: 10px;
        }

        .careers-form-submit:hover {
            background-color: #319795;
            transform: translateY(-1px);
        }

        .careers-form-submit:active {
            transform: translateY(0);
        }

        /* RESPONSIVE */
        @media (max-width: 968px) {
            .careers-info-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .careers-info-content {
                padding-right: 0;
            }

    .send-email-btn {
     background-color: #34a8aa;
    color: white;
    border: none;
    margin-top: 10px;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.send-email-btn:hover {
        background: #e2e219;
    color: black;
}

            .careers-info-title {
                font-size: 36px;
            }

            .careers-info-container {
                padding: 40px 20px 40px;
            }

            .careers-form-main-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .careers-form-wrapper {
                padding: 40px 20px;
            }

            .careers-form-container {
                padding: 30px 20px;
            }

            .careers-form-image-side {
                min-height: 300px;
            }

            .careers-form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }