/* =========================
   Dolphin Travels
   style.css
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#f7f9fc;
    line-height:1.6;
}

/* Navbar */

header{
    position: static;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:#ffffff;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.navbar{
    max-width:1200px;
    margin:auto;
    padding:10px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:45px;
    height:45px;
    border-radius:50%;
}

.logo h2{
    color:#0077ff;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:#222;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#0077ff;
}

.call-btn{
    text-decoration:none;
    background:#0077ff;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    transition:.3s;
}

.call-btn:hover{
    background:#005dd1;
}

/* Hero */

.hero{
    background-image:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("hero.png");

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; /* or cover */

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 2px;
}
.hero h1{
    font-size:58px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn,
.btn2{
    text-decoration:none;
    padding:16px 32px;
    border-radius:50px;
    font-size:18px;
    transition:.3s;
}

.btn{
    background:#0077ff;
    color:white;
}

.btn:hover{
    background:#005fd6;
}

.btn2{
    background:#25D366;
    color:white;
}

.btn2:hover{
    background:#18b857;
}

/* Sections */

section{
    padding:90px 10%;
}

.section-title{
    text-align:center;
    font-size:38px;
    color:#0077ff;
    margin-bottom:50px;
}

/* Cards */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:15px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:45px;
    color:#0077ff;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

/* Fleet */

.fleet{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

.vehicle{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.vehicle:hover{
    transform:translateY(-10px);
}

.vehicle img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.vehicle h3{
    padding:18px;
}

/* Routes */

.route-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.route-card{
    background:#0077ff;
    color:white;
    padding:18px;
    border-radius:12px;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
    font-size:20px;
    font-weight:600;
}

.route-card:hover{
    background:#0056cc;
    transform:translateY(-3px);
}

/* CTA */

.cta{
    background:#0077ff;
    color:white;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:30px;
}

.cta .btn{
    background:white;
    color:#0077ff;
}

.cta .btn:hover{
    background:#f0f0f0;
}

/* Contact */

.contact-box{
    max-width:900px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.contact-box p{
    margin:15px 0;
    font-size:18px;
}

.contact-box a{
    color:#0077ff;
    text-decoration:none;
}

.contact-box iframe{
    width:100%;
    height:350px;
    border:none;
    border-radius:12px;
    margin-top:25px;
}

/* Footer */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px;
}

/* WhatsApp */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 5px 18px rgba(0,0,0,.3);
    z-index:999;
}

/* Responsive */

@media(max-width:900px){

.navbar{
flex-direction:column;
gap:18px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

.section-title{
font-size:30px;
}

.cta h2{
font-size:32px;
}

section{
padding:70px 6%;
}

}
.modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    z-index:9999;
}

.modal-content{
    background:#fff;
    width:90%;
    max-width:420px;
    margin:80px auto;
    padding:20px;
    border-radius:15px;
    text-align:center;
}

.close{
    float:right;
    font-size:30px;
    cursor:pointer;
}

.call{
    background:#0077ff;
    color:#fff;
    padding:12px 20px;
    text-decoration:none;
    border-radius:8px;
    display:inline-block;
    margin:8px;
}

.whatsapp{
    background:#25D366;
    color:#fff;
    padding:12px 20px;
    text-decoration:none;
    border-radius:8px;
    display:inline-block;
    margin:8px;
}
