*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0d1b2a;
    color:white;
}

header{
    padding-top: 80px;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
padding-left:20px;
padding-right:20px;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("img/hero.jpg");

    background-size:cover;
    background-position:center;
}

h1{
    font-size:60px;
    margin-bottom:20px;
}

header p{
    max-width:100%;
    text-align:center;
    padding:0;
}

button{
    display:block;
    margin:20px auto 0;
    padding:15px 35px;
    font-size:20px;
    border:none;
    border-radius:10px;
    background:#00b4d8;
    color:white;
    cursor:pointer;
}
.whatsapp-btn{
    display:block;
    width:fit-content;
    margin:20px auto 0;
    padding:12px 28px;
    font-size:18px;
    border-radius:12px;
    background:#00b4d8;
    color:white;
    text-decoration:none;
    cursor:pointer;
}
.call-btn{
    display:block;
    width:fit-content;
    margin:10px auto 0;
    padding:12px 24px;
    font-size:18px;
    border-radius:10px;
    background:#1d4ed8;
    color:white;
    text-decoration:none;
    cursor:pointer;
    transition:.3s;
}

.call-btn:hover{
    background:#1e40af;
    color:white;
    text-decoration:none;
}

.whatsapp-btn:hover{
    background:#0096c7;
    color:white;
    text-decoration:none;
}

button:hover{
    background:#0096c7;
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:#08131f;

    position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
}


nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
}


nav a:hover{
    color:#00d4ff;
}
.airports{
    padding:80px 10%;
    background:#f5f7fa;
    color:#222;
    text-align:center;
}

.airports h2{
    font-size:40px;
    margin-bottom:50px;
}

.cards{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    background:white;
    width:300px;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#00b4d8;
    margin-bottom:15px;
}

.card p{
    color:#555;
    font-size:18px;
}
.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.3s;
    z-index:1000;
}

.whatsapp:hover{
    transform:scale(1.1);
}
.services{
    background:#08131f;
    color:white;
    padding:80px 10%;
    text-align:center;
}

.services h2{
    font-size:40px;
    margin-bottom:50px;
}

.service-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.service{
    width:300px;
    background:#122235;
    padding:30px;
    border-radius:15px;
    transition:.3s;
}

.service:hover{
    transform:translateY(-10px);
    background:#00b4d8;
}

.service p{
    margin-top:15px;
    line-height:1.6;
}
.why{
    padding:80px 10%;
    text-align:center;
    background:white;
    color:#222;
}

.why h2{
    font-size:40px;
    margin-bottom:50px;
}

.why-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    max-width:900px;
    margin:0 auto;
}

.why-box{
    width:100%;
    max-width:420px;
    margin:0 auto;
    padding:30px;
    border-radius:15px;
    background:#f5f7fa;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}
.booking{
    background:#08131f;
    color:white;
    padding:80px 10%;
    text-align:center;
}

.booking h2{
    font-size:40px;
    margin-bottom:40px;
}

#bookingForm{
    max-width:900px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

#bookingForm input,
#bookingForm select{
    padding:15px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

#bookingForm button{
    grid-column:1 / 3;
    padding:18px;
    border:none;
    border-radius:10px;
    background:#00b4d8;
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
}

#bookingForm button:hover{
    background:#0096c7;
}
/* ==========================
   VENTANA DE CONFIRMACIÓN
========================== */

.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.75);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal-content{
    background:white;
    color:#222;
    width:90%;
    max-width:500px;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
    animation:popup .35s ease;
}

.modal-content h2{
    color:#00b4d8;
    margin-bottom:20px;
}

.modal-content h3{
    color:#f39c12;
    margin:25px 0;
}

.modal-content p{
    margin:15px 0;
    line-height:1.6;
}

.modal-content button{
    margin-top:25px;
    padding:15px 35px;
    border:none;
    border-radius:10px;
    background:#00b4d8;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.modal-content button:hover{
    background:#0096c7;
}

@keyframes popup{
    from{
        transform:scale(.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }
}
/* ===== TARIFAS ===== */

.pricing{
    padding:80px 10%;
    background:#f8f9fa;
    text-align:center;
}

.pricing h2{
    font-size:2.3rem;
    margin-bottom:15px;
    color:#222;
}

.pricing-subtitle{
    color:#666;
    margin-bottom:45px;
}

.pricing-table{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.price-card{
    background:#fff;
    padding:30px 25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.price-card h3{
    color:#0d6efd;
    margin-bottom:15px;
}

.price{
    font-size:2rem;
    font-weight:bold;
    color:#198754;
    margin-bottom:12px;
}

.price-card span{
    display:block;
    color:#666;
    margin-bottom:20px;
}

.price-note{
    margin-top:45px;
    color:#666;
    font-size:.95rem;
    line-height:1.6;
}
/* ===== NUESTRO VEHÍCULO ===== */

.fleet{
    padding:80px 10%;
    background:#fff;
}

.fleet h2{
    text-align:center;
    font-size:2rem;
    color:#0d6efd;
    margin-bottom:40px;
}

.fleet-card{
    max-width:1000px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:40px;
    background:#f8f9fa;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.fleet-card img{
    width:420px;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    display:block;
}

.fleet-info{
    flex:1;
}

.fleet-info h3{
    font-size:1.8rem;
    margin-bottom:15px;
    color:#222;
}

.fleet-info p{
    margin-bottom:20px;
    color:#666;
}

.fleet-info ul{
    list-style:none;
    padding:0;
}

.fleet-info li{
    margin:12px 0;
    font-size:17px;
}

@media(max-width:768px){

.fleet-card{
    flex-direction:column;
    text-align:center;
}

.fleet-card img{
    width:100%;
}

}
/* ===== COTIZAR VIAJE ===== */

.quote-section{
    padding:80px 20px;
    background:#f5f7fa;
}

.quote-container{
    max-width:700px;
    margin:auto;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.quote-container h2{
    text-align:center;
    color:#0d6efd;
    font-size:2.2rem;
    margin-bottom:10px;
}

.quote-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:30px;
    font-size:17px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.form-group select{
    width:100%;
    padding:15px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    font-size:16px;
    background:#fff;
    outline:none;
}

.form-group select:focus{
    border-color:#0d6efd;
}

.quote-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#0d6efd;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.quote-btn:hover{
    background:#0b5ed7;
}

@media(max-width:768px){

    .quote-container{
        padding:25px;
    }

}
/* ===== OPINIONES ===== */

.reviews{
    padding:80px 10%;
    background:#f5f7fa;
}

.reviews h2{
    text-align:center;
    color:#0d6efd;
    font-size:2rem;
    margin-bottom:40px;
}

.reviews-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.review-card{
    width:300px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

.review-card p{
    color:#555;
    margin:20px 0;
    line-height:1.6;
}

.review-card h4{
    color:#0d6efd;
}

@media(max-width:768px){

    .review-card{
        width:100%;
    }

}
.footer{
    background:#111;
    color:white;
    text-align:center;
    padding:40px 20px;
}

.footer h2{
    margin-bottom:15px;
}

.footer p{
    margin:10px 0;
    color:#ddd;
}
.logo{
    font-size:28px;
    font-weight:bold;
    color:#fff;
    margin:0;
}

.logo span{
    color:#25D366;
}
nav ul::before{
    display: none !important;
}
@media (max-width: 768px) {

    nav{
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    nav ul{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    button{
        width: 100%;
    }

    header h1{
        font-size: 40px;
    }

    header p{
        font-size: 20px;
    }

}
.mapa{
    padding:60px 20px;
    text-align:center;
    background:#111827;
}

.mapa h2{
    font-size:36px;
    margin-bottom:15px;
}

.mapa p{
    margin-bottom:25px;
    font-size:18px;
    color:#d1d5db;
}

.mapa iframe{
    max-width:1000px;
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.footer a{
    color:#00b4d8;
    text-decoration:none;
    font-weight:bold;
}

.footer a:hover{
    color:white;
}
/* Botón hamburguesa */
.menu-toggle{
    display:none;
    font-size:30px;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
    margin-left:auto;
}

/* Diseño para celulares */
@media (max-width:768px){


.menu-toggle{
    display:block;
    margin-left:auto;
    width:auto;
    position:absolute;
    right:5px;
    top:5px;
    font-size:22px;
    padding:5px 10px;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#08131f;
}

    nav ul{
        display:none;
        width:auto;
        flex-direction:column;
        text-align:left;
        margin-top:10px;
        margin-left:auto;
        gap:15px;
        background:#08131f;
    }

    nav ul.active{
        display:flex;
    }

    nav a button{
        display:none;
    }

    h1{
        font-size:38px;
    }

    header p{
        font-size:18px;
        padding:0 20px;
    }
header{
    padding-top:220px;
}
.cards,
.services-container,
.fleet-container{
    flex-direction:column;
    align-items:center;
}
section{
    padding-left:20px;
    padding-right:20px;
}

.card,
.service-card,
.fleet-card,
.review-card{
    margin-left:auto;
    margin-right:auto;
}
.why-container{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.why-box{
    width:90%;
    max-width:350px;
    margin:0 auto 20px;
}

}
#language{
    background:#00b4d8;
    color:white;
    border:none;
    border-radius:8px;
    padding:8px 12px;
    font-size:15px;
    cursor:pointer;
    margin-left:15px;
}

#language option{
    color:black;
}

@media(max-width:768px){
    #language{
        margin:10px auto;
        display:block;
    }
}
.whatsapp-btn{
    background:#16c5e8;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    display:inline-block;
    font-size:24px;
    font-weight:bold;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#0fa8c7;
    color:#fff;
    text-decoration:none;
}

body{
    transition: opacity .25s ease;
}

body.fade{
    opacity: 0;
}
.logo img{
   height: 110px;
    width: auto;
    display: block;
}

nav{
    display:flex;
    align-items:center;
}

nav ul{
    margin-left:40px;
}

.whatsapp-btn{
    margin-left:auto;
}

#language{
    margin-left:15px;
}

@media(max-width:768px){

.logo img{
    height:55px;
}

.whatsapp-btn{
    display:none;
}

#language{
    margin:10px auto;
}

}