* {
    box-sizing: border-box;
    padding: 0;
    margin:0;
    font-family: 'Jost';
}

a {
    text-decoration: none;
    color: black;
}

li {
    list-style: none;
}

/* Header */


/* Top Navigation */
.topnav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    background-color: #ca7733;
    color: white;
    top:0px;
    font-weight: bolder;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.topnav h4 {
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background-color: white;
    position: fixed;
    top: 38px;
    width: 100%;
    z-index: 99;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-link:hover {
    color: black;
}


.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: black;
}

/* For screens smaller than 400px */
@media (max-width: 400px) {
    .topnav {
        text-align: center;
        color: white;
        font-weight: bolder;
        background-color: white;
    }
    .navbar {
        top:35px;
    }
}

@media (max-width: 320px) {
    .navbar {
        top: 40px;
    }   
}

@media (max-width:350px) {
    .navbar {
        top:52px;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        flex-direction: column;
        background-color: #ca7733;
        width: 100%;
        text-align: center;
        position: fixed;
        left: -100%;
        top: 120px;
        transition: 0.3s;
        gap: 10px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
       /* position:relative; /*Push other links further below*/
    }

    .nav-link {
        color: white;
    }
}

.heroimage {
    background-image: url('landing1.jpg');
    height:85vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.words {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:30px;
    margin-top: 100px;
    gap:30px;
}

.words h1 {
    color:white;
    text-align: center;
    font-size: 2.5rem;
}

@media(max-width:400px) {
    .words h1 {
        font-size: 1.8rem;
        margin-top: 50px;
    }
}

@media(max-width:350px) {
    .words h1 {
        font-size: 1.4rem;
        margin-top: 50px;
    }

    .btns a {
        font-size: 16px;
        padding:4px 4px;
    }
}

.btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:40px;
}

@media(max-width:600px) {
    .btns {
        flex-direction: column;
        gap:25px;
    }
}

.btns a {
    color:white;
    font-size: 20px;
    border:1px solid white;
    padding:6px 6px;
    border-radius: 10px;
    background-color: #472101;
}

.fleet {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
    margin-top: 30px;
}

.content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-flow: row;
    justify-content: center;
    gap:60px;
    padding: 30px;
}

@media(max-width:1100px) {
    .content {
        display:grid;
        grid-template-columns: repeat(2,1fr);
        grid-auto-flow: row;
        justify-content: center;
        gap:60px;
        padding: 30px;
    }
}

@media(max-width:768px) {
    .content {
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       margin: auto;
    }

    .range img {
        width:100% !important;
        max-width:100% !important;
        height:auto !important;
        padding:20px;
    }
}

.range {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media(max-width:540px) {
    .range {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cardesc {
        background-color: white !important;
        max-height:200px !important;
    }
    .range img {
        width:100% !important;
        max-width:100% !important;
        height:auto !important;
        padding: 20px;
    }

}

.range img {
    width:310px;
    height:190px;
}

.cardesc {
    padding: 20px;
    height:auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width:300px;
    gap:15px;
    /*background-color: whitesmoke;*/
}

@media(max-width:350px) {
    .cardesc {
        max-width:250px !important;
    }
    .range {
        max-width:20rem;
    }
    .range img {
        max-width:100% !important;
        padding: 20px;
        height:auto;    
    }
}

@media(max-width:320px) {
    .range img {
        max-width:100% !important;
        padding:20px;
        height:auto !important;
        margin: auto;
    }
    .content {
        padding: 0 !important;
    }
}

.cardesc a {
    padding:10px;
    color:white;
    border-radius: 10px;
    background-color: #472101;
}

.reachus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding:30px;
    font-size: 20px;
    background-color: whitesmoke;
    margin-bottom: 30px;
}

.details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    gap:30px;
    font-size: 18px;
}

@media(max-width:768px) {
    .detaillinks {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width:819px) {
    .details {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:30px;
    }
}

.direct,
.indirect {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:30px;
    text-align: center;
}

.detaillinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:30px;
}

.detaillinks a {
    border:1px solid white;
    background-color: #472101;
    color:white;
    padding:10px 10px;
    border-radius: 10px;
}

.destinations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:30px;
    margin-top: 30px;
}

.destination-group {
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap:10px;
}

@media(max-width:1250px) {
    .destination-group {
       display:grid;
       grid-template-columns: repeat(2,1fr);
       justify-content: center;
       gap:40px;
    }
}

@media(max-width:650px) {
    .destination-group {
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:40px;
    }
}

.portion,
.range {
    transition: all .2s ease-in-out;
}

.portion,
.range:hover {
	transform:scale(1.1);
}

.portion h3,
.portion h5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
    font-size: 20px;
    max-width: 300px;
    text-align: center;
}

.portion img {
    max-width: 300px;
}

@media(max-width:350px) {
    .portion img {
        max-width:250px !important;
    }

}

/*Inquiry Form*/
.maindiv {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
	gap:30px;
	padding: 30px;
    margin-left: 50px;
}

@media(max-width:950px) {
    .maindiv {
        display:grid;
        grid-template-columns: repeat(1, 1fr);
        margin-left: 0;
    }
    .mailsummary {
        text-align: center;
    }
    .contactinfo {
        display: flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
    #contactlinks {
        flex-direction: column;
    }
    #advisors .links {
        flex-direction: column;
    } 
}

@media(max-width:768px) {
    .maindiv .form .group:nth-child(-n+16) {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

@media(max-width:320px) {
    .maindiv {
        margin-left: 0;
        padding:10px;
        overflow-x: hidden;
    }
    
}

.maindiv .maindivright {
	background-color: #ca7733;
	border-radius: 10px;
	padding: 40px;
	color:#472101;
}

.maindiv .list {
	height:auto;
} 

.maindiv .maindivright .form {
	display: grid !important;
	grid-template-columns: repeat(2,1fr) !important;
	gap:10px !important;
	border-bottom: 2px solid #472101 !important;
	padding-bottom: 20px !important;
    color:white;
}
 
.maindiv .form input,
.maindiv .form select,
.maindiv .form textarea {
	width:100%;
	padding:10px 10px;
	box-sizing:border-box;
	border-radius: 10px;
	margin-top: 0px;
	border:none;
	background-color: #fff;
	color:black;
}

.maindivright h3 {
	margin-bottom: 20px;
}

.maindiv .row div:nth-child(2) {
	font-weight: bold;
	font-size: large;
	
}

 h2 {
    text-align: center;
}

.buttonsend {
	width:100%;
	height:40px;
	border:none;
	border-radius: 10px;
	margin-top: 20px;
	font-weight:bold;
	background-color: #472101;
    color:white;
}

.buttonsend:hover {
    background-color: #fff;
    color:#472101;
    cursor:pointer;
}

.maindiv .form textarea{
	background-color: #fff;
	color:black;
    display: grid;
    /*grid-template-columns: repeat(2,1fr);
    grid-column-start: 1;
	grid-column-end: 3;*/
    padding:10px;
    margin:10px 0;
    font-size: 18px;
}

.mailsummary {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contact {
    display: flex;
    flex-direction: column;
}

.contactinfo h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contactinfo p {
    font-size: 20px;
    line-height: 2.5rem;
    padding-left: 10px;
    padding-right: 10px;
}


.contactinfo {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

#contactlinks {
    display: flex;
    gap:30px;
    cursor: pointer;
}

.contactinfo a:hover {
    background-color: #ca7733;
}

.contactinfo a {
    background-color: #472101;
    color:white;
    text-align: center;
    padding:10px 10px;
    border-radius: 10px;
    width: 120px;
    font-size: 20px;
}

#mail {
    background-color: transparent;
    color:black;
}

.contactinfo p .tels {
    background-color: transparent !important;
    color:black;
}

.contactinfo p .tels2 {
    background-color: transparent !important;
    color:black;
}


/*WhatsApp*/
.whatsapp-icon {
    position: fixed;
    right:20px;
    bottom: 120px;
    z-index:1000;
}

.whatsapp-icon img {
    width:60px;
    height:60px;
}

@media(max-width:600px) {
    .whatsapp-icon img {
        width:50px;
        height: 50px;
    }
}

@media(max-width:300px) {
    .whatsapp-icon img {
        width:30px;
        height: 30px;
    }
}

/*FAQs section*/
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-item h3 {
    cursor: pointer;
    background-color: #ca7733;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin: 0;
}
.faq-item p {
    display: none;
    padding: 15px;
    background-color: #f4f4f4;
    border-left: 5px solid #ca7733;
}
.faq-item.active p {
    display: block;
}

.writetous {
	margin-top: 10vh;
}

.writetous p {
	max-width:65rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:30px;
	margin: auto;
    font-size: 20px;
}

.finalend {
    display:flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:768px) {
    .finalend {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:20px;
    }
}

.brand {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:10px;
   
}

.brand h4 {
    text-align: center;
}

.brand img {
    height:70px;
    width:70px;
    border-radius: 50%;
    display:flex;
    justify-content: center;
    align-items: center;
    
}
@media(max-width:350px) {
    .brand img {
        height:80px;
        width:80px;
    }
}

.links2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu2 {
    display: flex;
    flex-direction: column;
    gap:10px;
    justify-content: center;
    align-items: center;
}

.nav-menu2 a {
    color:white;
}

.calltoaction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.callicons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:20px;
}

footer {
    background-color: #ca7733;
    display: flex;
    flex-direction: column;
    color:white;
    text-align: center;
    padding:20px;
    gap:20px;
}

footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 40px;
}

/*Cookie Banner*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ca7733;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none;
    z-index: 1000;
    font-size: 20px;
}

/* Modal Styling */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); justify-content: center; align-items: center;z-index:1005; }
.modal-content { background: white; padding: 20px; border-radius: 8px; width: 80%; max-width: 500px; position:relative; padding: 20px; }
.close { position: absolute; right:10px; top:10px; cursor:pointer; font-size:24px; color :#472101; z-index:1006; }

    .modalTitle {
        display: inline-block;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
/*Vehicle Details Modal*/
#vehicleModal .modal-content {
    margin: 0 auto;
}

.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.slider-container img {
    width: 100%;
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 10px;
    color: white;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.vehicle-info {
    padding: 10px;
    text-align: left;
}
