/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Encabezado de la página */
.fleet-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.fleet-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    z-index: 0;
}

.fleet-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.fleet-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

.fleet-subtitle {
    font-size: 1.5rem;
    color: var(--pearl);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 20px auto 0;
}
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1C1C1C 0%, #000000 100%);
    color: #FFFFFF;
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ===== HEADER DE SERVICIOS ===== */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #C9A227);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-header p {
    font-size: 1.2rem;
    color: #E6E6E6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== LISTA DE SERVICIOS ===== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* ===== FILAS DE SERVICIO ===== */
.service-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(145deg, #1C1C1C, #000000);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-row:hover::before {
    left: 100%;
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

/* ===== FILAS REVERSAS (IMAGEN | CONTENIDO) ===== */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* ===== CONTENIDO DE SERVICIO ===== */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* ===== IMAGEN DE SERVICIO ===== */
.service-image {
    flex: 0 0 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-image svg {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-row:hover .service-image svg {
    transform: scale(1.05);
}

/* ===== ICONOS DE SERVICIO ===== */
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C9A227, #FFD700);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-row:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* ===== CONTENIDO DE SERVICIOS ===== */
.service-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content p {
    color: #E6E6E6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content li {
    color: #FFFFFF;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.service-content li::before {
    content: '✈';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.service-row:hover .service-content li {
    color: #FFD700;
}

/* ===== SECCIÓN DE CONTACTO DE SERVICIOS ===== */
.services-contact-section {
    text-align: center;
    background: linear-gradient(135deg, #000000, #1C1C1C);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
}

.services-contact-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-contact-section p {
    font-size: 1.1rem;
    color: #E6E6E6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== BOTÓN DE CONTACTO DE SERVICIOS ===== */
.services-contact-btn {
    background: linear-gradient(135deg, #C9A227, #FFD700);
    color: #000000;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.services-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFD700, #C9A227);
}

.services-contact-btn:active {
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .services-container {
        padding: 1rem;
    }
    
    .services-header h1 {
        font-size: 2.5rem;
    }
    
    .services-header p {
        font-size: 1rem;
    }
    
    .services-list {
        gap: 2rem;
    }
    
    .service-row {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .service-row.reverse {
        flex-direction: column !important;
    }
    
    .service-content {
        align-items: center;
        text-align: center;
    }
    
    .service-image {
         flex: none;
         width: 100%;
         height: 300px;
         max-width: 300px;
     }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-header h1 {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }