/* =====================================
   GOOGLE FONTS
===================================== */

:root{
    --black:#111111;
    --dark:#1b1b1b;
    --gold:#C8A45A;
    --gold-light:#E8D6A3;
    --white:#ffffff;
    --gray:#f5f5f5;
    --text:#555;
    --shadow:0 15px 40px rgba(0,0,0,.15);
}

/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Poppins",sans-serif;
    background:#fff;
    color:#222;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* =====================================
   BUTTONS
===================================== */

.btn{
    background:var(--gold);
    color:#fff;
    padding:14px 32px;
    border-radius:40px;
    display:inline-block;
    transition:.35s;
    font-weight:600;
}

.btn:hover{
    background:#b98d37;
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:12px 30px;
    border-radius:40px;
    margin-left:15px;
    transition:.35s;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

/* =====================================
   HEADER
===================================== */

/* =====================================
   HEADER - LUXURY GOLD THEME
===================================== */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

  background:#0B1F3A;

    z-index:999;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}


header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}


.logo img{

    width:150px;

    height:auto;

}


.logo a{

    color:#111;

    font-size:1.7rem;

    font-weight:700;

    font-family:"Playfair Display",serif;

}


nav ul{

    display:flex;

    gap:35px;

}


nav a{

    color:#111;

    font-weight:600;

    transition:.3s;

}


nav a:hover{

    color:white;

}


.header-right{

    display:flex;

    align-items:center;

    gap:20px;

}


.phone{

    color:#111;

    font-weight:600;

}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

.logo a{
    color:white;
    font-size:1.7rem;
    font-weight:700;
    font-family:"Playfair Display",serif;
}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:var(--gold);
}

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.phone{
    color:white;
}

/* =====================================
   HERO
===================================== */

.hero{
    position:relative;
    height:100vh;
    background:url("../images/hero.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.hero-content{
    position:relative;
    text-align:center;
    color:white;
    width:min(800px,90%);
}

.hero h1{
    font-size:4rem;
    font-family:"Playfair Display",serif;
    margin-bottom:25px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:45px;
}

/* =====================================
   GENERAL SECTIONS
===================================== */

section{
    padding:100px 0;
}

section h2{
    text-align:center;
    font-size:2.6rem;
    font-family:"Playfair Display",serif;
    margin-bottom:25px;
    color:var(--black);
}

section p{
    color:var(--text);
}

/* =====================================
   ABOUT
===================================== */

.about p{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:1.1rem;
}

/* =====================================
   SERVICES
===================================== */

.services{
    background:var(--gray);
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.card{
    background:white;
    padding:45px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:3rem;
    color:var(--gold);
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

/* =====================================
   FLEET
===================================== */

.fleet-content{
    display:flex;
    justify-content:center;
    text-align:center;
    margin-top:50px;
}

.fleet-content > div{
    max-width:600px;
}

..fleet img{
    width:100%;
    max-width:700px;
    height:auto;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.fleet ul{
    margin-top:25px;
}

.fleet li{
    padding:12px 0;
    border-bottom:1px solid #ddd;
}

/* =====================================
   FEATURES
===================================== */

.why-us{
    background:#111;
    color:white;
}

.why-us h2{
    color:white;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.features div{
    background:#1f1f1f;
    padding:30px;
    text-align:center;
    border-radius:12px;
    border:1px solid #333;
}

/* =====================================
   AREAS
===================================== */

.areas{
    text-align:center;
}

/* =====================================
   CTA
===================================== */

.cta{
    background:linear-gradient(135deg,#111,#2c2c2c);
    color:white;
    text-align:center;
}

.cta h2{
    color:white;
}

.cta p{
    color:#ddd;
    margin-bottom:35px;
}

/* =====================================
   CONTACT
===================================== */

.contact form{
    max-width:700px;
    margin:40px auto 0;
}

.contact input,
.contact textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:1rem;
    font-family:"Poppins",sans-serif;
}

.contact textarea{
    resize:vertical;
}

.contact button{
    border:none;
    cursor:pointer;
}

/* =====================================
   FOOTER
===================================== */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:50px 20px;
}

footer h3{
    font-family:"Playfair Display",serif;
    margin-bottom:15px;
}

footer p{
    color:#ccc;
    margin-top:10px;
}

/* =====================================
   ANIMATIONS
===================================== */

.card,
.btn,
.btn-outline,
img{
    transition:all .35s ease;
}

.card:hover img{
    transform:scale(1.05);
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    header .container{
        flex-direction:column;
        height:auto;
        padding:20px 0;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        margin:20px 0;
    }

    .fleet-content{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:3rem;
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:2.3rem;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
        align-items:center;
    }

    .btn-outline{
        margin-left:0;
    }

    section{
        padding:70px 0;
    }

    section h2{
        font-size:2rem;
    }

    .header-right{
        flex-direction:column;
        gap:10px;
    }
}
/* =====================================
   MOBILE MENU
===================================== */

.menu-toggle{

    display:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}


/* MOBILE SCREEN */

@media(max-width:768px){


    .menu-toggle{

        display:block;

        position:absolute;

        right:25px;

        top:25px;

    }


    header .container{

        position:relative;

    }


    nav{

        width:100%;

    }


    .nav-links{

        display:none;

        flex-direction:column;

        background:#111;

        width:100%;

        text-align:center;

        padding:25px 0;

        margin-top:20px;

    }


    .nav-links li{

        margin:15px 0;

    }


    .nav-links.active{

        display:flex;

    }


    .header-right{

        display:none;

    }


}
/* =====================================
   BOOKING FORM
===================================== */


.booking-intro{

    text-align:center;

    max-width:700px;

    margin:0 auto 40px;

}


.booking-form{

    max-width:900px;

    margin:auto;

}


.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}


.booking-form input,
.booking-form select,
.booking-form textarea{


    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:8px;

    font-family:"Poppins",sans-serif;

    font-size:1rem;

}


.booking-form textarea{

    margin:20px 0;

}


.booking-form select{

    background:white;

}


.booking-form button{

    margin-top:10px;

}



@media(max-width:768px){


    .form-grid{

        grid-template-columns:1fr;

    }


}
/* ==========================
   LOGO IMAGE
========================== */

.logo img {

    width: 120px;

    height: auto;

    display: block;

}