body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}
/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: gold;
}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA "ABOUT" (NUEVO) --- */
/* Esto asegura que el fondo negro solo se vea en About Us */
.about-page-body {
    background: #000000 !important;
}
.about-logo-top {
    text-align: center;
    padding-top: 40px;
}
.about-logo-top img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}
.about-section {
    padding: 40px 20px 80px;
    text-align: center;
}
.about-section h1 {
    color: gold;
    font-size: 3.5em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}
.about-section p {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}
/* Galería de Lujo */
.luxury-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.gallery-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: 380px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    transition: 0.4s;
}
.gallery-item:hover {
    transform: translateY(-10px);
    border-color: gold;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}
.gallery-item:hover img {
    filter: brightness(1);
}
/* --- RESTO DE TUS ESTILOS ORIGINALES (NO TOCAR) --- */
.hero { text-align: center; padding: 100px 20px; }
.hero .highlight { color: yellow; text-shadow: 0 0 10px rgba(255, 255, 0, 0.8); font-size: 2em; }
.why-choose-us { text-align: center; padding: 50px; }
.why-choose-us .features { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
.feature-item {
    display: flex; align-items: center; background: rgba(0, 0, 0, 0.6);
    padding: 15px; border-radius: 8px; width: 300px; box-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}
.feature-item i { font-size: 24px; color: gold; margin-right: 10px; }
.partners { text-align: center; padding: 50px; }
.partners-logos { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.partner-item img { width: 100px; height: auto; filter: brightness(0) invert(1); }
footer { background-color: rgba(0, 0, 0, 0.8); text-align: center; padding: 20px; }
.cta-button {
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    color: black; font-size: 18px; font-weight: bold; padding: 15px 30px;
    border: none; border-radius: 50px; cursor: pointer;
    box-shadow: 0px 0px 10px rgba(255, 165, 0, 0.8); transition: all 0.3s ease-in-out;
}
.cta-button:hover { transform: scale(1.1); box-shadow: 0px 0px 20px rgba(255, 165, 0, 1); }
/* Nuevo Logo Header */
.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    position: relative; width: 45px; height: 45px; background: #001a33;
    border: 2px solid gold; border-radius: 50%; display: flex; justify-content: center; align-items: center; overflow: hidden;
}
.logo-icon i { color: white; font-size: 20px; z-index: 2; transform: translateX(-2px); }
.road-path { position: absolute; bottom: 6px; width: 120%; height: 10px; background: gold; transform: rotate(-15deg); z-index: 1; opacity: 0.8; }
.logo-text { display: flex; flex-direction: column; line-height: 0.8; }
.ramlid { font-size: 24px; font-weight: 900; color: white; letter-spacing: 1px; }
.express { font-size: 11px; font-weight: bold; color: gold; letter-spacing: 4px; text-transform: uppercase; }
.lang-switch { background: transparent; color: gold; border: 1px solid gold; padding: 6px 15px; border-radius: 20px; cursor: pointer; font-weight: bold; }
.lang-switch:hover { background: gold; color: black; }
/* --- SECCIÓN COMPROMISO PROFESIONAL --- */
.commitment-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.85); /* Fondo oscuro para resaltar el texto */
    text-align: center;
}
.commitment-content {
    max-width: 1000px;
    margin: 0 auto;
}
.main-title {
    font-size: 2.8em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}
.intro-text {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #f0f0f0;
}
.gold-subtitle {
    color: gold;
    font-size: 1.8em;
    margin-bottom: 10px;
    text-transform: none; /* Se ve más elegante en Serif o Normal */
}
.commitment-item-full {
    margin-bottom: 40px;
    padding: 0 10%;
}
.commitment-item-full p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #cccccc;
}
/* Ajuste para móviles */
@media (max-width: 768px) {
    .main-title { font-size: 2em; }
    .commitment-item-full { padding: 0; }
}
body.about-page-body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh; /* Asegura que el fondo cubra toda la altura */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/background-about.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
    display: block;
}
/* Quitamos cualquier fondo negro que pueda estar ocultando el del body */
.about-section {
    background: transparent !important;
    padding: 60px 0;
}
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.about-logo img {
    max-width: 180px; /* Reducimos el tamaño del logo para que sea elegante */
    height: auto;
    margin-bottom: 30px;
}
.about-text h1 {
    color: gold;
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-text p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 25px;
}
/* Galería */
.luxury-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: 0.3s;
}
.gallery-item img:hover {
    border-color: gold;
    transform: scale(1.03);
}
/* --- DISEÑO PROFESIONAL CONTACTO --- */
.contact-page-body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    font-family: 'Arial', sans-serif;
}
.contact-overlay {
    background: rgba(0, 0, 0, 0.85); /* Capa oscura para que el texto resalte */
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-contact-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 800;
}
.contact-flex-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    gap: 50px;
    margin-top: 50px;
    align-items: flex-start;
}
.contact-info-panel, .contact-form-panel {
    flex: 1;
}
.gold-text { color: #D4AF37; font-size: 2rem; }
.white-text { color: white; font-size: 2rem; }
.contact-list { list-style: none; padding: 0; margin-top: 20px; }
.contact-list li { color: white; margin-bottom: 15px; font-size: 1.1rem; }
.gold { color: #D4AF37; margin-right: 10px; }
/* --- ESTILO DEL FORMULARIO --- */
.pro-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-row {
    display: flex;
    gap: 15px;
}
.pro-form input, .pro-form textarea {
    padding: 15px;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 5px;
    width: 100%;
}
.pro-form input:focus, .pro-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.2);
}
.gold-btn {
    background: #D4AF37;
    color: black;
    padding: 15px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}
.gold-btn:hover {
    background: white;
}
/* Responsive */
@media (max-width: 850px) {
    .contact-flex-container { flex-direction: column; }
    .form-row { flex-direction: column; }
}
/* --- ESTILO DE PÁGINA DE SERVICIOS --- */
.services-page-body {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('../images/ramlid-truck-solo.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
}
.services-main {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.services-hero {
    text-align: center;
    margin-bottom: 60px;
}
.services-hero h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
/* --- GRID DE TARJETAS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}
.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
}
.service-content {
    padding: 30px;
    text-align: center;
}
.gold-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}
.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
}
.service-content p {
    color: #ccc;
    line-height: 1.6;
}
/* Animación de entrada */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.service-card {
    animation: fadeInUp 0.6s ease forwards;
}
.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.8); /* Esto oscurece un poco la foto para que se vea más profesional */
    transition: 0.3s;
}
.service-card:hover .service-image img {
    filter: brightness(1); /* Se ilumina al pasar el ratón */
}
.client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37; /* Borde dorado para combinar */
}
.stars {
    color: #D4AF37;
    font-size: 0.8rem;
}
/* --- ESTILO PARA EL FORMULARIO DE QUOTE --- */
.quote-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    min-height: 80vh;
}
.quote-form-box {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #D4AF37;
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.form-header { text-align: center; margin-bottom: 30px; }
.input-group { display: flex; flex-direction: column; margin-bottom: 20px; flex: 1; }
.input-group label { color: #D4AF37; margin-bottom: 8px; font-weight: bold; font-size: 0.9rem; }
.form-row { display: flex; gap: 20px; }
.premium-form input, .premium-form select, .premium-form textarea {
    background: #222;
    border: 1px solid #444;
    color: white;
    padding: 12px;
    border-radius: 5px;
}
.gold-btn-submit {
    background: #D4AF37;
    color: black;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
}
.gold-btn-submit:hover { background: white; }
.close-btn-simple {
    background: transparent;
    color: white;
    border: 1px solid #444;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}
@media (max-width: 600px) { .form-row { flex-direction: column; } }
/* --- TESTIMONIALS REPAIR --- */
.testimonials-page-body {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    justify-content: center;
}
.testimonials-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}
.testimonial-container-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Crea columnas automáticas */
    gap: 30px;
    justify-content: center; /* Centra las tarjetas si hay pocas */
}
.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center; /* Centra el texto dentro de la tarjeta */
    transition: 0.3s;
}
.testimonial-card-premium:hover {
    border-color: #D4AF37;
    transform: translateY(-10px);
}
.client-photo-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    margin-bottom: 15px;
    object-fit: cover;
}
.stars-gold {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.quote-text {
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}
.client-footer-info h3 {
    color: white;
    margin-bottom: 5px;
}
.client-role {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}
/* --- ARREGLO DE ALINEACIÓN GENERAL --- */
.content-center {
    max-width: 1200px;
    margin: 0 auto; /* ESTO CENTRA TODO EL CONTENIDO EN LA PANTALLA */
    padding: 80px 20px;
    text-align: center;
}
/* --- GRID DE TESTIMONIOS --- */
.testimonials-premium-grid {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos pasen a la siguiente fila */
    justify-content: center; /* CENTRA los elementos de la última fila */
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}
.test-card {
    flex: 1 1 calc(33.333% - 30px); /* Intenta ocupar 3 por fila */
    min-width: 300px; /* Evita que se hagan muy pequeñas en tablets */
    max-width: 380px; /* Mantiene un tamaño elegante */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
test-card:hover {
    border-color: #D4AF37;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.client-thumb {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    margin-bottom: 15px;
    object-fit: cover;
}
.stars { color: #D4AF37; margin-bottom: 10px; }
/* Contenedor principal del logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
}
.luxury-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.5));
}
/* Estilo para las letras lujosas */
.luxury-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 0.9;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Efecto metálico plateado */
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 50%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}
.brand-subtext {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 2px;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px; /* Esto creará el espacio que necesitas */
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center; 
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    max-width: 850px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);

    /* --- CAMBIO AQUÍ: Esto sube el contenedor --- */
    transform: translateY(-80px); /* Ajusta este número: -120px sube más, -40px sube menos */
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- AJUSTES MÓVILES --- */
@media (max-width: 768px) {
    header { flex-direction: column; padding: 20px; }
    nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; }
    nav ul li { margin: 10px; }
    
    .hero-overlay {
        padding: 30px 20px;
        width: 90%;
        transform: translateY(-20px); /* Menos subida en móvil para evitar solapamientos */
    }
    
    .highlight { font-size: 1.8em; }
    
    .luxury-text img { height: 35px !important; } /* Ajuste de letras Ramlid */
    
    .form-row { flex-direction: column; gap: 0; }
}