*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
}

header{
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

nav{
    margin-top: 10px;
}

nav a{
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.hero{
    text-align: center;
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.hero h2{
    font-size: 40px;
}

.hero p{
    margin: 20px 0;
}

button{
    background-color: #003366;
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
}

.vehiculos{
    padding: 40px;
    text-align: center;
}

.card{
    border: 1px solid #ccc;
    margin: 15px auto;
    padding: 20px;
    max-width: 300px;
    border-radius: 10px;
}
header{
    background: #001f3f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.logo-container img{
    height: 80px;
}

nav a{
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
}

nav a:hover{
    color: gold;
}
.hero{
    height: 90vh;

    background-image:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.hero-content{
    max-width: 800px;
    padding: 20px;
}

.hero-content h1{
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 22px;
    line-height: 1.6;
}

.hero-buttons{
    margin-top: 30px;
}

.btn-primary,
.btn-whatsapp{

    padding: 15px 30px;

    text-decoration: none;

    border-radius: 8px;

    margin: 10px;

    display: inline-block;

    font-weight: bold;
}

.btn-primary{
    background: gold;
    color: black;
}

.btn-whatsapp{
    background: #25D366;
    color: white;
}
.fleet-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card{
    width: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    background: white;
}

.card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3{
    margin-top: 15px;
}

.card p{
    margin: 10px;
}

.card button{
    margin-bottom: 20px;
}
.reservation{
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

#reservationForm{
    max-width: 600px;
    margin: auto;
}

#reservationForm input,
#reservationForm select,
#reservationForm textarea{
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#reservationForm textarea{
    height: 120px;
    resize: none;
}

#reservationForm button{
    width: 100%;
    padding: 15px;
}
.price-box{
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 5px solid gold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.price-box h3{
    color: #001f3f;
}

.price-box h2{
    color: #001f3f;
    font-size: 32px;
}
.info-box{
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-left: 5px solid #001f3f;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.info-box p{
    margin-top: 8px;
    line-height: 1.5;
}
.contact{
    padding: 70px 20px;
    background: #001f3f;
    color: white;
    text-align: center;
}

.contact h2{
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-intro{
    margin-bottom: 35px;
    font-size: 18px;
}

.contact-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.contact-card{
    background: white;
    color: #001f3f;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.20);
}

.contact-card h3{
    margin-bottom: 15px;
}

.contact-card p{
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-btn{
    display: inline-block;
    background: gold;
    color: black;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.contact-btn:hover{
    background: #d6b300;
}

.floating-whatsapp{
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: white;
    padding: 15px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.30);
    z-index: 1000;
}

footer{
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Diseño para celular */
@media(max-width: 900px){

    header{
        flex-direction: column;
        gap: 15px;
    }

    nav a{
        display: inline-block;
        margin: 8px;
    }

    .hero-content h1{
        font-size: 38px;
    }

    .hero-content p{
        font-size: 18px;
    }

    .contact-grid{
        grid-template-columns: 1fr;
    }

}
.contract-box{
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: left;
    border-left: 5px solid gold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.contract-box summary{
    cursor: pointer;
    font-weight: bold;
    color: #001f3f;
}

#contractPreview{
    margin-top: 15px;
    white-space: pre-line;
    line-height: 1.6;
}

.contract-acceptance{
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: left;
    border-left: 5px solid #001f3f;
}
:root{
    --blue-dark: #061A40;
    --blue-medium: #003B73;
    --turquoise: #00A6A6;
    --gold: #F4C542;
    --coral: #FF6B35;
    --white: #FFFFFF;
    --light: #F4F7FA;
    --text: #1f2937;
}

body{
    background: var(--light);
    color: var(--text);
}

header{
    background: rgba(6, 26, 64, 0.96);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 55px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.logo-container img{
    height: 85px;
    max-width: 230px;
    object-fit: contain;
    background: white;
    padding: 6px 12px;
    border-radius: 14px;
}

nav a{
    color: white;
    text-decoration: none;
    margin-left: 22px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover{
    color: var(--gold);
}

.hero{
    min-height: 92vh;
    background-image:
    linear-gradient(
        rgba(6,26,64,0.75),
        rgba(0,166,166,0.35)
    ),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-content{
    max-width: 900px;
}

.hero-badge{
    background: var(--gold);
    color: var(--blue-dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1{
    font-size: 62px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p{
    font-size: 22px;
    line-height: 1.6;
}

.btn-primary{
    background: var(--gold);
    color: var(--blue-dark);
}

.btn-whatsapp{
    background: #25D366;
    color: white;
}

.btn-primary,
.btn-whatsapp{
    padding: 15px 32px;
    border-radius: 50px;
    margin: 12px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover,
.btn-whatsapp:hover{
    transform: translateY(-4px);
}

.about-section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 8%;
    background: white;
}

.section-label{
    color: var(--coral);
    font-weight: bold;
    text-transform: uppercase;
}

.about-text h2{
    font-size: 38px;
    color: var(--blue-dark);
    margin: 15px 0;
}

.about-text p{
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-image img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
}

.mission-vision{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 70px 8%;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-medium));
}

.mv-card{
    background: white;
    padding: 30px;
    border-radius: 18px;
    border-top: 6px solid var(--gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.20);
}

.mv-card h3{
    color: var(--blue-dark);
    margin-bottom: 15px;
}

.mv-card p{
    line-height: 1.6;
}

.dominican-gallery{
    padding: 80px 8%;
    text-align: center;
    background: var(--light);
}

.dominican-gallery h2{
    font-size: 38px;
    color: var(--blue-dark);
}

.dominican-gallery p{
    margin: 15px 0 35px;
    font-size: 18px;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-grid img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    transition: 0.3s;
}

.gallery-grid img:hover{
    transform: scale(1.04);
}

.vehiculos{
    background: white;
}

.vehiculos h2,
.reservation h2,
.contact h2{
    color: var(--blue-dark);
}

.card{
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-8px);
}

.card button,
#reservationForm button{
    background: var(--coral);
    border-radius: 50px;
    font-weight: bold;
}

.card button:hover,
#reservationForm button:hover{
    background: var(--gold);
    color: var(--blue-dark);
}

.reservation{
    background:
    linear-gradient(
        rgba(244,247,250,0.92),
        rgba(244,247,250,0.92)
    ),
    url('https://images.unsplash.com/photo-1519046904884-53103b34b206?w=1400');
    background-size: cover;
    background-position: center;
}

.contact{
    background: linear-gradient(135deg, var(--blue-dark), var(--turquoise));
}

.contact-card{
    border-top: 5px solid var(--gold);
}

.floating-whatsapp{
    background: #25D366;
}

footer{
    background: var(--blue-dark);
}

/* Responsive */
@media(max-width: 900px){

    header{
        flex-direction: column;
        padding: 15px;
    }

    nav{
        text-align: center;
    }

    nav a{
        display: inline-block;
        margin: 8px;
    }

    .hero-content h1{
        font-size: 38px;
    }

    .hero-content p{
        font-size: 18px;
    }

    .about-section,
    .mission-vision,
    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .about-image img{
        height: 300px;
    }

}
.language-toggle{
    background: #F4C542;
    color: #061A40;
    border: none;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.language-toggle:hover{
    background: #FF6B35;
    color: white;
}
header{
    transition: transform 0.3s ease;
    z-index: 1000;
}

.header-hidden{
    transform: translateY(-100%);
}
.phone-row{
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
}

@media(max-width: 768px){
    .phone-row{
        grid-template-columns: 1fr;
    }
}
.iti{
    width: 100%;
}

.iti input{
    width: 100%;
}
.iti{
    width: 100%;
}

.iti input{
    width: 100%;
}