/* ============================================
   GOLF TRANSFERS - CSS COMPLETO
   NÓMADA Travel Differently
   ============================================ */

/* ============================================
   VARIABLES Y RESET BASE
   ============================================ */
:root {
    --color-primary: #1a3a52;
    --color-secondary: #2d5a3a;
    --color-gold: #C7A14A;
    --color-gold-light: #d4b46a;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-gray-medium: #666;
    --color-gray-dark: #555;
    --color-dark: #333;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ============================================
   CONTAINER Y LAYOUT BASE
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION - VERSIÓN IMAGEN COMPLETA
   ============================================ */
.golf-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(26, 58, 82, 0.8), rgba(26, 58, 82, 0.5)), 
                url('../img/golf-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.golf-hero-content {
    padding: 60px 20px;
    color: white;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* HERO ALTERNATIVO - VERSIÓN SPLIT SCREEN */
.golf-hero.split-screen {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: left;
}

.golf-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.golf-hero.split-screen .golf-hero-content {
    padding: 60px 80px;
    text-align: left;
    max-width: none;
}

.golf-hero-image {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.golf-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.golf-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 50%);
    z-index: 1;
}

/* ============================================
   BADGE Y ELEMENTOS HERO
   ============================================ */
.golf-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(199, 161, 74, 0.2);
    border: 1px solid var(--color-gold);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.golf-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.golf-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.95);
}

/* ============================================
   ESTADÍSTICAS HERO
   ============================================ */
.golf-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.golf-stat {
    text-align: center;
}

.golf-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    display: block;
    line-height: 1;
}

.golf-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

/* ============================================
   BOTONES MODERNOS CTA
   ============================================ */
.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modern {
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.btn-modern i {
    font-size: 1.2rem;
}

.btn-modern-primary {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.btn-modern-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.btn-modern-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-modern-secondary:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* ============================================
   SECCIÓN DE SERVICIOS MODERNOS
   ============================================ */
.golf-services-modern {
    padding: 100px 0;
    background: white;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.golf-service-card-modern {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-gray-light);
    border-radius: 20px;
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.golf-service-card-modern:hover {
    background: white;
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(199, 161, 74, 0.15);
}

.golf-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: var(--transition-base);
}

.golf-service-card-modern:hover .golf-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(199, 161, 74, 0.3);
}

.golf-service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.golf-service-description {
    color: var(--color-gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   SECCIÓN CAMPOS DE GOLF
   ============================================ */
.golf-courses-section {
    padding: 100px 0;
    background: var(--color-gray-light);
}

/* Swiper específico para Golf */
.golf-courses-swiper {
    padding: 20px 10px 60px 10px !important;
    overflow: visible;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-gold) !important;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--color-gray-medium);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--color-gold) !important;
    opacity: 1;
}

/* Cards de Campos de Golf */
.golf-course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.golf-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.golf-course-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.golf-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.golf-course-card:hover .golf-course-image img {
    transform: scale(1.1);
}

.golf-course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-gold);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(199, 161, 74, 0.4);
}

.golf-course-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.golf-course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.golf-course-location {
    color: var(--color-gray-medium);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.golf-course-location i {
    color: var(--color-gold);
}

.golf-course-description {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.golf-course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.golf-feature-tag {
    background: rgba(199, 161, 74, 0.1);
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   TIMELINE DEL PROCESO
   ============================================ */
.golf-process-timeline {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    position: relative;
}

.golf-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.timeline-container {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    min-width: 80px;
    height: 80px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(199, 161, 74, 0.4);
    position: relative;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-description,
.timeline-content p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   SECCIÓN DE FLOTA CON TABS
   ============================================ */
.golf-fleet-tabs {
    padding: 100px 0;
    background: white;
}

.fleet-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.fleet-tab-btn {
    padding: 15px 35px;
    border: 2px solid var(--color-gold);
    background: white;
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
}

.fleet-tab-btn:hover {
    background: rgba(199, 161, 74, 0.1);
    transform: translateY(-2px);
}

.fleet-tab-btn.active {
    background: var(--color-gold);
    color: white;
    box-shadow: 0 8px 20px rgba(199, 161, 74, 0.3);
}

.fleet-tab-content {
    display: none;
}

.fleet-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fleet-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fleet-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.fleet-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.fleet-showcase:hover .fleet-image-wrapper img {
    transform: scale(1.05);
}

.fleet-info h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.fleet-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-gray-dark);
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.fleet-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fleet-spec-icon {
    width: 45px;
    height: 45px;
    background: rgba(199, 161, 74, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fleet-spec-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-size: 1rem;
}

.fleet-spec-item span {
    font-size: 0.9rem;
    color: var(--color-gray-medium);
    display: block;
}

/* ============================================
   CTA FINAL MODERNA
   ============================================ */
.golf-cta-modern {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.golf-cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.golf-cta-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.golf-cta-modern .container {
    position: relative;
    z-index: 1;
}

.golf-cta-modern h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: white;
}

.golf-cta-modern p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SISTEMA DE IDIOMAS
   ============================================ */
.lang {
    display: none;
}

body.lang-es .lang.es,
body.lang-en .lang.en,
body.lang-fr .lang.fr {
    display: inline;
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 1024px) {
    /* Hero Split Screen */
    .golf-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .golf-hero.split-screen .golf-hero-content {
        padding: 40px 30px;
    }
    
    .golf-hero-image {
        height: 50vh;
    }
    
    /* Fleet Showcase */
    .fleet-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Timeline */
    .timeline-item {
        gap: 25px;
    }
    
    .timeline-number {
        min-width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Commitments Grid */
    .commitments-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

/* ============================================
   RESPONSIVE - MÓVILES
   ============================================ */
@media (max-width: 768px) {
    /* Hero */
    .golf-hero {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .golf-hero-content {
        padding: 40px 20px;
    }
    
    .golf-hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .golf-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    /* Stats */
    .golf-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .golf-stat-number {
        font-size: 2rem;
    }
    
    /* CTA Buttons */
    .cta-buttons-modern {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    /* Sections Padding */
    .golf-services-modern,
    .golf-courses-section,
    .golf-process-timeline,
    .golf-fleet-tabs {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    /* Service Cards */
    .golf-service-card-modern {
        padding: 30px 20px;
    }
    
    .golf-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .golf-service-title {
        font-size: 1.1rem;
    }
    
    /* Timeline */
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .timeline-number {
        margin: 0 auto;
    }
    
    .timeline-title {
        font-size: 1.3rem;
    }
    
    /* Fleet Specs */
    .fleet-specs {
        grid-template-columns: 1fr;
    }
    
    .fleet-info h3 {
        font-size: 1.5rem;
    }
    
    .fleet-info p {
        font-size: 1rem;
    }
    
    /* Fleet Tabs */
    .fleet-tabs-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .fleet-tab-btn {
        width: 100%;
        padding: 12px 25px;
    }
    
    /* Golf Courses */
    .golf-course-image {
        height: 200px;
    }
    
    .golf-course-title {
        font-size: 1.3rem;
    }
    
    /* CTA Modern */
    .golf-cta-modern {
        padding: 60px 0;
    }
    
    .golf-cta-modern h2 {
        font-size: 1.8rem;
    }
    
    .golf-cta-modern p {
        font-size: 1.1rem;
    }
}

/* ============================================
   RESPONSIVE - MÓVILES PEQUEÑOS
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .golf-hero h1 {
        font-size: 1.8rem;
    }
    
    .golf-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .golf-service-title {
        font-size: 1rem;
    }
    
    .golf-service-description {
        font-size: 0.9rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .fleet-info h3 {
        font-size: 1.3rem;
    }
    
    .golf-cta-modern h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   UTILIDADES Y HELPERS
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* ============================================
   ANIMACIONES ADICIONALES
   ============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-slide-up {
    animation: slideInUp 0.6s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
}

/* ============================================
   ESTADOS DE CARGA
   ============================================ */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-gray-light);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .golf-badge,
    .cta-buttons-modern {
        display: none !important;
    }
    
    .golf-hero {
        min-height: auto;
        page-break-after: always;
    }
}

/* =========================================
   FIX FINAL PARA FLOTA E IDIOMAS
   Añadir al final del archivo CSS
   ========================================= */

/* 1. CONTROL DE IDIOMAS (Arregla superposición de texto) */
.lang {
    display: none;
}
/* Mostrar solo el idioma activo según la clase del body */
body.lang-es .lang.es,
body.lang-en .lang.en,
body.lang-fr .lang.fr {
    display: inline-block;
}

/* 2. GRID DE ESPECIFICACIONES (Diseño de tarjetas limpio) */
.fleet-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #cfa156; /* Línea dorada */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Iconos */
.spec-card i {
    font-size: 1.5rem;
    color: #1a3a52; /* Azul oscuro corporativo */
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

/* Texto dentro de las tarjetas */
.spec-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.spec-text strong {
    font-size: 1.1rem;
    color: #1a3a52;
    font-weight: 700;
    margin-bottom: 2px;
}

/* Limpieza forzada de estilos anteriores para el texto */
.spec-text span {
    font-size: 0.9rem;
    color: #666 !important;
    font-weight: 500;
    background: none !important; /* Quita el fondo azul oscuro */
    padding: 0 !important;       /* Quita el padding de botón */
    border: none !important;
    display: none; /* Por defecto oculto por el sistema de idiomas */
}

/* Reactivamos el display para el idioma correcto dentro de spec-text */
body.lang-es .spec-text .lang.es,
body.lang-en .spec-text .lang.en,
body.lang-fr .spec-text .lang.fr {
    display: block !important;
}

/* Subtítulos dorados (Modelo de coche) */
.fleet-subtitle {
    display: block;
    font-size: 0.6em;
    color: #cfa156;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
}

/* Ajustes Responsive */
@media (max-width: 768px) {
    .fleet-specs-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
    
    .fleet-image-wrapper {
        height: 250px; /* Ajuste de altura imagen en móvil */
    }
}

/* =======================================================
   FIX FINAL: VISIBILIDAD DE IDIOMAS EN TARJETAS DE FLOTA
   ======================================================= */

/* 1. REGLA MAESTRA: Ocultar TODOS los idiomas dentro de las tarjetas por defecto */
.fleet-specs-grid .spec-text .lang {
    display: none !important;
}

/* 2. REGLA DE VISIBILIDAD: Mostrar SOLO el idioma activo según el Body */
/* Si el body es Español -> Muestra solo español */
body.lang-es .fleet-specs-grid .spec-text .lang.es {
    display: block !important;
}

/* Si el body es Inglés -> Muestra solo inglés */
body.lang-en .fleet-specs-grid .spec-text .lang.en {
    display: block !important;
}

/* Si el body es Francés -> Muestra solo francés */
body.lang-fr .fleet-specs-grid .spec-text .lang.fr {
    display: block !important;
}

/* 3. ESTÉTICA DEL TEXTO (Para asegurar que se vea gris y limpio) */
.fleet-specs-grid .spec-text span {
    font-size: 0.85rem;
    color: #666 !important; /* Gris suave */
    font-weight: 500;
    margin-top: 2px;
    line-height: 1.2;
    background: none !important; /* Quita cualquier fondo azul residual */
    padding: 0 !important;
    border: none !important;
}



/* ============================================
   FIX: IMÁGENES DE FLOTA MISMO TAMAÑO
   ============================================ */
.fleet-image-wrapper {
    height: 350px;
    overflow: hidden;
}

.fleet-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .fleet-image-wrapper {
        height: 250px;
    }
}

/* Subtítulo de disponibilidad */
.fleet-availability {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 500;
    font-style: italic;
    margin-top: 8px;
    opacity: 0.9;
}