* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header - Only visible on hero section */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: transparent;
}

.navbar.hide {
    display: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo a img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background images with fade effect */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content .section-subtitle {
    font-size: 28px;
    color: #f8db7e;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #f8db7e;
    border-radius: 50px;
    background: rgba(248, 219, 126, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(248, 219, 126, 0.5),
        0 0 40px rgba(248, 219, 126, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(248, 219, 126, 0.8);
    transition: opacity 0.5s ease-in-out;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    transition: opacity 0.5s ease-in-out;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
    min-width: 280px;
    text-align: center;
    background: rgba(248, 219, 126, 0.15);
    color: #f8db7e;
    border: 2px solid #f8db7e;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(248, 219, 126, 0.3);
    text-shadow: 0 0 10px rgba(248, 219, 126, 0.6);
}

.btn-primary:hover {
    background: #f8db7e;
    color: #040004;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(248, 219, 126, 0.5);
    text-shadow: none;
}

/* Premium Experience Section */
.premium-section {
    padding: 80px 0;
    background: #040004;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #f8db7e;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 35px;
    border: 2px solid #f8db7e;
    border-radius: 50px;
    background: rgba(248, 219, 126, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(248, 219, 126, 0.5),
        0 0 40px rgba(248, 219, 126, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(248, 219, 126, 0.8);
    min-height: 56px;
    white-space: nowrap;
    overflow: hidden;
}

.section-subtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f8db7e;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040004;
    font-size: 30px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.feature-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #040004;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Force grid layout for different screen sizes */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.service-card {
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(248,219,126,0.1);
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248,219,126,0.3);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(248, 219, 126, 0.3), rgba(4, 0, 4, 0.6));
    z-index: 1;
}

/* Imágenes específicas para cada servicio */
.service-image.paseos-escolares {
    background-image: url('images/servicio-paseos.jpg');
}

.service-image.transfer-aeropuerto {
    background-image: url('images/servicio-transfer.jpg');
}

.service-image.transporte-personal {
    background-image: url('images/servicio-personal.jpg');
}

.service-image.viajes-especiales {
    background-image: url('images/servicio-viajes.jpg');
}

.service-content {
    padding: 25px;
    background: #1a1a1a;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.service-category {
    color: #f8db7e;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-link {
    color: #f8db7e;
    text-decoration: none;
    font-weight: 500;
}

/* Fleet Section */
.fleet-section {
    padding: 80px 0;
    background: #040004;
    text-align: center;
}

.fleet-section p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fleet-item {
    text-align: center;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(248,219,126,0.2);
    transition: transform 0.3s;
}

.fleet-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248,219,126,0.3);
}

.fleet-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #f8db7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040004;
    font-size: 24px;
}

.fleet-item h3 {
    color: white;
    margin-bottom: 10px;
}

.fleet-item p {
    color: #ccc;
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: rgb(0, 0, 0);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: #f8db7e;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040004;
    font-size: 40px;
}

.benefit-item h3 {
    color: white;
}

.benefit-item p {
    color: #ccc;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #040004;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.partner-logo {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(248,219,126,0.2);
    transition: transform 0.3s;
    border: 1px solid #333;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248,219,126,0.3);
    color: white;
}

.social-link i {
    font-size: 30px;
    color: #f8db7e;
}

.social-link:hover i {
    color: #f8db7e;
    text-shadow: 0 0 10px rgba(248,219,126,0.8);
}

/* Footer */
.footer {
    background: #171A21;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f8db7e;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f8db7e;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}


/* Desktop improvements */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 72px;
    }

    .hero-content .section-subtitle {
        font-size: 32px;
        padding: 15px 40px;
    }

    .container {
        max-width: 1400px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }


    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(4, 0, 4, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease-in-out;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 30px;
}

.mobile-menu-link {
    color: #f8db7e;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(248, 219, 126, 0.8);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f8db7e;
    color: #040004;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(248, 219, 126, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #040004;
    color: #f8db7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(248, 219, 126, 0.5);
}

.page-header {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Imágenes específicas para cada página */
.servicios-header {
    background-image: url('images/bus-servicios.jpg');
}

.flota-header {
    background-image: url('images/bus-flota.jpg');
}

.contacto-header {
    background-image: url('images/bus-contacto.jpg');
}

/* Services Detail Section */
.services-detail-section {
    padding: 80px 0;
    background: #040004;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 50px;
}

.service-detail-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f8db7e, transparent);
    transition: left 0.5s ease;
}

.service-detail-card:hover::before {
    left: 100%;
}

.service-detail-card:hover {
    border-color: #f8db7e;
    box-shadow: 0 10px 30px rgba(248, 219, 126, 0.2);
    transform: translateY(-5px);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: #f8db7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040004;
    font-size: 30px;
    margin-bottom: 25px;
}

.service-detail-content h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-detail-content .service-category {
    color: #f8db7e;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #f8db7e;
    margin-right: 10px;
    font-size: 14px;
}

.service-cta {
    margin-top: 30px;
}

.btn-service {
    background: rgba(248, 219, 126, 0.15);
    color: #f8db7e;
    border: 2px solid #f8db7e;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-service:hover {
    background: #f8db7e;
    color: #040004;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 219, 126, 0.4);
}

/* Fleet Specific Styles */
.fleet-overview-section {
    padding: 80px 0;
    background: #040004;
}

.fleet-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fleet-intro p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

.fleet-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(248, 219, 126, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(248, 219, 126, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #f8db7e;
    margin-bottom: 10px;
}

.stat-label {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.fleet-categories-section {
    padding: 80px 0;
    background: #040004;
}

.fleet-category-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.fleet-category-card:hover {
    border-color: #f8db7e;
    box-shadow: 0 10px 30px rgba(248, 219, 126, 0.2);
    transform: translateY(-5px);
}

.fleet-category-icon {
    width: 80px;
    height: 80px;
    background: #f8db7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040004;
    font-size: 30px;
    margin-bottom: 25px;
}

.fleet-category-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.capacity {
    color: #f8db7e;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.category-description p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.category-features {
    list-style: none;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.category-features li {
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.category-features li i {
    color: #f8db7e;
    margin-right: 8px;
    font-size: 12px;
}

.safety-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.safety-item {
    text-align: center;
    padding: 30px 20px;
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: #f8db7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040004;
    font-size: 30px;
    margin: 0 auto 20px;
}

.safety-item h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.safety-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Specific Styles */
.contact-methods-section {
    padding: 80px 0;
    background: #040004;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-intro p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-method-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-method-card.primary {
    border-color: #f8db7e;
    background: rgba(248, 219, 126, 0.05);
}

.contact-method-card:hover {
    border-color: #f8db7e;
    box-shadow: 0 10px 30px rgba(248, 219, 126, 0.2);
    transform: translateY(-5px);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: #f8db7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040004;
    font-size: 30px;
    margin: 0 auto 25px;
}

.contact-method-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-detail {
    color: #f8db7e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-contact {
    background: rgba(248, 219, 126, 0.15);
    color: #f8db7e;
    border: 2px solid #f8db7e;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-contact:hover {
    background: #f8db7e;
    color: #040004;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 219, 126, 0.4);
}

.location-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: #f8db7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040004;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.location-text h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.location-text p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-section {
    padding: 80px 0;
    background: #040004;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #f8db7e;
    box-shadow: 0 5px 15px rgba(248, 219, 126, 0.1);
}

.faq-item h3 {
    color: #f8db7e;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #040004;
    text-align: center;
    border-top: 1px solid #333;
}

.cta-section h2 {
    color: #f8db7e;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: #f8db7e;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(248, 219, 126, 0.15);
    color: #f8db7e;
    border: 2px solid #f8db7e;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(248, 219, 126, 0.3);
    text-shadow: 0 0 10px rgba(248, 219, 126, 0.6);
}

.btn-secondary:hover {
    background: #f8db7e;
    color: #040004;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(248, 219, 126, 0.5);
    text-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    /* Corrección para alineación del navbar en móvil */
    .nav-container {
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
    }

    /* Hero section responsive */
    .hero-content .section-subtitle {
        font-size: 18px;
        letter-spacing: 1px;
        padding: 8px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .btn-primary, .btn-secondary {
        padding: 15px 25px;
        font-size: 14px;
        min-width: 250px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: 1px;
        padding: 10px 25px;
        max-width: 95%;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .features-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 35px;
    }

    /* Páginas nuevas responsive */
    .page-header {
        height: 40vh;
    }
    
    .services-detail-grid,
    .fleet-grid,
    .contact-methods-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fleet-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-features {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card,
    .fleet-category-card,
    .contact-method-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}