/* GALA LOGISTICS - Brand Identity Colors */
:root {
    --navy-blue: #1a2a40;
    --charcoal-grey: #2e2e2e;
    --gala-orange: #ff8c00;
    --soft-white: #f8f9fa;
    --text-dark: #333;
}

/* Base Styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--soft-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Header */
header {
    background-color: #ffffff; 
    padding: 10px 0;
    border-bottom: 3px solid var(--gala-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
    display: block;
}

.logo:hover { transform: scale(1.05); }

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

nav ul li a:hover { color: var(--gala-orange); }

/* Hero Section (Home) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                url('Imagen/web4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 140px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Buttons Styling */
.btn {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    margin: 5px;
}

.btn-primary {
    background-color: var(--gala-orange);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover { background-color: #e67e00; transform: translateY(-3px); }
.btn-secondary:hover { background-color: white; color: var(--charcoal-grey); }

/* Trust Section */
.trust-section { padding: 80px 0; }

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.img-rounded {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--navy-blue);
}

/* Services Cards */
.services {
    padding: 80px 0;
    background-color: #f1f3f5;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.icon { font-size: 40px; margin-bottom: 15px; }

/* --- SECCIÓN CAREERS (NUEVO DISEÑO CON FORMULARIO) --- */

.careers-hero-slim {
    background-color: var(--charcoal-grey);
    color: white;
    padding: 35px 0;
    text-align: center;
}

.careers-hero-slim h1 { font-size: 2.2rem; margin-bottom: 5px; }

.careers-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 60px 0;
    align-items: start;
}

.form-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-card h3 { margin-top: 0; color: var(--navy-blue); margin-bottom: 20px; }

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-group { margin-bottom: 20px; }

/* Estilo de Disponibilidad Mejorado (3 Columnas) */
.availability-section {
    margin: 25px 0;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 12px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 20px;
    display: block;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.day-card {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid var(--gala-orange);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.day-name {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--charcoal-grey);
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

/* Corrección de alineación para los turnos */
.shift-options {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espacio uniforme entre filas */
    margin-top: 10px;
}

.shift-options label {
    display: grid;
    grid-template-columns: 20px 1fr; /* Columna fija para el cuadro y el resto para el texto */
    align-items: center; /* Centra verticalmente el cuadro con el texto */
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    margin: 0 !important;
    font-weight: 500 !important;
    text-align: left; /* Asegura que el texto siempre esté a la izquierda */
}

/* Ajuste del tamaño del cuadro para que no se vea gigante */
.shift-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

/* Resaltado del nombre del día */
.day-name {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    display: block;
}

.file-inputs label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 15px;
    color: var(--charcoal-grey);
}

/* Forzar el botón de "Upload" a inglés */
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Choose Photo';
  display: inline-block;
  background: var(--navy-blue);
  color: white;
  border-radius: 5px;
  padding: 8px 15px;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  margin-right: 10px;
}

.btn-submit {
    width: 100%;
    background-color: var(--gala-orange);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-submit:hover { background-color: #e67e00; transform: translateY(-2px); }

/* Ajuste para móviles */
@media (max-width: 600px) {
    .availability-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FIN SECCIÓN CAREERS --- */

/* Footer */
footer {
    background-color: var(--navy-blue);
    color: white;
    padding: 50px 0;
    text-align: center;
}

footer p { margin-bottom: 10px; opacity: 0.8; }