@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Squada+One&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
    font-family: var(--font-family-2);
}

/*--------VARIABLES START-------*/
:root {
    --main-color: #5a6d8c;       
    --second-color: #3f4c65;        
    --text-color: #313949;          
    --container-color: #ebeef3;     
    --bg-color: #f6f7f9;
    --text-alter-color: #8092b0;
    --poppins-font: "Poppins", sans-serif;
    --font-family-2: "Squada One", sans-serif;
    --formBg:#343F4B;
}
/*--------VARIABLES END---------*/


/*------CUSTOM SCROLL BAR START-------*/
html ::-webkit-scrollbar {
    width: 0.5rem;
    background: transparent;
}

html ::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

/*------CUSTOM SCROLL BAR END-------*/

/*-------GLOBAL CSS START-----------*/
.content {
    overflow: hidden;
}

body {
    color:  var(--text-color);
    background: var(--bg-color);
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

section {
    padding: 3rem 0 2rem;
}

.container {
    max-width: 1060px;
    margin: auto;
    width: 100%;
}

/*-------GLOBAL CSS END-----------*/





/*--------HEADER SECTION START----*/
header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav {
    display: flex;
    align-self: center;
    justify-content: space-between;
    background: var(--text-alter-color);
    padding: 17px 20px;
    border-radius: 0.8rem;
}

.logo {
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--bg-color);
    text-align: uppercase;
    font-family: var(--font-family-2);
}

.logo span {
    color: var(--main-color);
}

.navbar {
    display:flex;
    align-items: center;
    column-gap: 1.5rem;
}

.nav-link {
    font-size: 0.88rem;
    color: var(--text-alter-color);
    font-family: var(--poppins-font);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, .1);
}

.nav-link:hover {
    color: var(--bg-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, .1);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icons i {
    color: var(--bg-color);
    font-size: 20px;
}

.nav-icons .user-icon {
    padding: 7px;
    background: var(--main-color);
    border-radius: 50%;
}

.nav-icons .user-icon:hover {
    background: var(--second-color);
    transition: 0.3s ease;
}

.menu-icon {
    display: none;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
    cursor: pointer;
    z-index: 200;
    transition: 0.3s;
}

.menu-icon div {
    display: block;
    background: var(--bg-color);
    height: 2px;
    width: 23px;
    transition: 0.3s;
}

.move .line1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.move .line2 {
    opacity: 0;
}

.move .line3 {
    transform: rotate(45deg) translate(-5px, -5px);
}

/*---------------------------------HEADER SECTION END---------------------------------------*/






/*--------HEADER SECTION START----*/

.home {
    background: var(--second-color);
    min-height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8rem  !important;
}

.home-content {
    z-index: 1;
}

.home-img {
    position: relative;
}

.home-img  img {
    width: 100%;
}

/*.home-img::before {
    width: 100%;
    content: "Let's Go!";
    font-size: 8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2rem;
    position: absolute;
    text-align: center;
    top: -20px;
    color: #212530;
    z-index: 2;
    transform: translateX(5px);
    transition: transform 2.5s ease, opacity 2.5s ease;
    animation: revealfromright 2.5s ease forwards;
}*/

@keyframes revealfromright {
    0% {
        opacity: 0;
        transform: translateX(0px);
    }
}

.input-form {
    max-width: 550px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--bg-color);
    padding: 12px;
    border-radius: 0.5rem;
}

.input-box {
    flex: 1 1 7rem;
    display: flex;
    flex-direction: column;
}

.input-box span {
    font-weight: 500;
}

.input-box input {
    outline: none;
    border: none;
    color: var(--text-alter-color);
    background: transparent;
    font-size: 0.94rem;
    margin-top: 7px;
}

.input-border {
    border-right: 1pxx solid var(--text-alter-color);
    padding-right: 5px;
}

.search-btn {
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
}

.search-btn:hover {
    background: var(--second-color);
    transition: 0.3s ease;
}
/*-------------------------HEADER SECTION END-----------------------------------------------*/


/*-------------TRENDING SECTION START-----------------*/

.heading {
    margin-bottom: 2rem;
}

.heading h2 {
    font-size: 2.2rem;
    font-weight: 500;
}

.trending-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 1.5rem;
}

.trend-box {
    background: var(--container-color);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: background .5s ease;
}

.trend-box img {
    border-radius: 5px;
}

.trend-box:hover {
    background: #fff;
    border-color: var(--container-color);
    transition: background .6s ease;
}

.trend-box h4 {
    display: inline-block;
    font-family: var(--poppins-font);
    background: #fff;
    font-size: 0.8rem;
    padding: 4px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.trend-box h4:hover {
    background: #eeeff2;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: all .5s ease;
}

.trend-box img {
    margin: 1.4rem 0 1rem;
}

.trend-box h3 {
    font-size: 1.4rem;
    font-weight: 500;
}

.trend-box p {
    font-size: 0.9rem;
    margin-top: 10px;
}

.trend-box p span {
    color: var(--text-alter-color);
}
/*------------------------------TRENDING SECTION END-------------------------------------*/


/*-------------RENTAL SECTION START-----------------*/

.rental .heading {
    text-align: center;
}

.heading p {
    max-width: 550px;
    width: 100%;
    font-size: 0.9rem;
    font-family: var(--poppins-font);
    margin: 1rem auto;
}

.rentals-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 1.5rem;
}

.rental-box {
    background: var(--container-color);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.rental-box:hover {
    transform: translateY(-10px);
    transition: transform 0.5s ease;
}

.rental-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rental-top h3 {
    display: inline-block;
    font-family: var(--poppins-font);
    background: #fff;
    font-size: 0.77rem;
    padding: 4px 7px;
    border-radius: 4px;
    font-weight: 600;
}

.rental-top i {
    font-size: 20px;
    color: var(--text-alter-color);
    cursor: pointer;
}

.rental-top i:hover {
    color: var(--main-color);
    transition: 0.3s ease;
}

.rental-box img {
    margin: 1.8rem 0 1rem;
    height: 74px;
    object-fit: contain;
    object-position: center;
}

.rental-box h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-alter-color);
    margin-top: 5px;
}

.price-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.price-btn p {
    font-size: 0.97rem;
}

.price-btn p span {
    color: var(--text-alter-color);
}

.rental-btn {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 7px 10px;
    font-size: 0.97rem;
    border-radius: 4px;
    transition: 0.4s ease;
}

.rental-btn:hover {
    background: var(--main-color);
    transition: 0.4s ease;
}
/*-------------------------------RENTAL SECTION END-------------------------------------*/





/*-------------DESTINATION SECTION START-----------------*/

.destination .heading {
    text-align: left;
}

.destination .heading p {
    max-width: 550px;
    width: 100%;
    font-size: 0.9rem;
    font-family: var(--poppins-font);
    margin: 1rem auto;
}

.destinations-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 1.5rem;
}

.destination-box {
    background: var(--container-color);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.destination-box:hover {
    transform: translateY(-10px);
    transition: transform 0.5s ease;
}

.destination-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.destination-top h3 {
    display: inline-block;
    font-family: var(--poppins-font);
    background: #fff;
    font-size: 0.77rem;
    padding: 4px 7px;
    border-radius: 4px;
    font-weight: 600;
}

.destination-top i {
    font-size: 20px;
    color: var(--text-alter-color);
    cursor: pointer;
}

.destination-top i:hover {
    color: var(--main-color);
    transition: 0.3s ease;
}

.destination-box img {
    margin: 1.4rem 0 1rem;
    border-radius: 5px;
}

.destination-box h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-alter-color);
    margin-top: 5px;
}

.dprice-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.dprice-btn p {
    font-size: 0.97rem;
}

.dprice-btn p span {
    color: var(--text-alter-color);
}

.drental-btn {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 7px 10px;
    font-size: 0.97rem;
    border-radius: 4px;
    transition: 0.4s ease;
}

.drental-btn:hover {
    background: var(--main-color);
    transition: 0.4s ease;
}
/*-------------------------------DESTINATION SECTION END-------------------------------------*/







/*-------------TEAM SECTION START-----------------*/

.team .heading {
    text-align: center;
}

.team-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 1.5rem;
}

.team-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.team-box h2 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--second-color);
    margin-top: 1rem;
}

.team-box span {
    font-size: 0.77rem;
    color: var(--text-alter-color);
    font-family: var(--poppins-font);
}

.team-box p {
    font-size: 0.88rem;
    font-family: var(--poppins-font);
    color: var(--text-color);
    margin-top: 8px;
}
/*-----------------------------TEAM SECTION END----------------------------------------*/

/*-------------REVIEW SECTION START-----------------*/

.reviews .heading {
    text-align: center;
}

.reviews-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.t-box {
    background: var(--container-color);
    padding: 30px;
    border-radius: 10px;
}

.t-box .stars {
    color: var(--main-color);
    font-size: 20px;
}

.t-box p {
    font-size: 1rem;
    margin: 10px 0;
}

.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-data h3 {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
}

.profile-data span {
    font-size: 0.94rem;
    font-weight: 400;
    color: var(--text-alter-color);
}

/*----------------------------------REVIEW SECTION END---------------------------------*/


/*-----------------NEWSLETTER SECTION START-----------------*/

.newsletter {
    max-width: 1040px;
    width: 90%;
    margin: auto;
}

.newsletter h2 {
    font-size: 3.5rem;
    font-weight: 500;
    text-align: center;
}

.newsletter p {
    font-family: var(--poppins-font);
    text-align: center;
}

.newsletter form {
    max-width: 600px;
    margin: 1.8rem auto auto auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--text-color);
    padding: 7px;
    border-radius: 0.5rem;
}

.newsletter form input {
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 1.17rem;
    background: transparent;
}

.newsletter form .email {
    width: 100%;
}

.newsletter form::placeholder {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 400;
}

.newsletter form .s-btn {
    background: var(--main-color);
    color: var(--bg-color);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
}

.newsletter form .s-btn:hover {
    background: var(--text-color);
    transition: 0.4s ease-in-out;
}

/*----------------------------------NEWSLETTER SECTION END---------------------------------*/



/*-----------------FOOTER SECTION START-----------------*/

.footer {
    background: var(--text-color);
    color: var(--bg-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 40px 0 30px;
}

.footer-box {
    display: flex;
    flex-direction: column;
}

.social {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.social a i {
    font-size: 20px;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: 50%;
    padding: 8px;
    margin-right: 0.8rem;
}

.social a i:hover {
    color: var(--text-color);
    background: var(--bg-color);
    transition: background 0.4s ease-in-out;
}

.footer-box h3 {
    font-size: 1..2rem;
    font-weight: 500;
    color: var(--bg-color);
    margin-bottom: 1rem;
}

.footer-box p {
    margin-bottom: 8px;
}

.footer-box p span {
    display: inline-block;
    width: 50px;
}

.footer-box a {
    color: var(--bg-color);
    margin-bottom: 10px;
}

.copyright {
    padding: 30px;
    color: var(--bg-color);
    text-align: center;
}


/*---------------------------------FOOTER SECTION END------------------------------------*/



.WA_Chat_Widget * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.WA_Chat_Widget .WA_FloatingButton {
    position: fixed;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.185);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    z-index: 1000;
}

.WA_Chat_Widget .WA_FloatingButton svg {
    width: 40px;
    height: 40px;
    fill: #4fce5d;
}

.WA_Chat_Widget[data-position^="top-"] .WA_FloatingButton {
    top: 20px;
}

.WA_Chat_Widget[data-position^="bottom-"] .WA_FloatingButton {
    bottom: 20px;
}

.WA_Chat_Widget[data-position$="-left"] .WA_FloatingButton {
    left: 20px;
}

.WA_Chat_Widget[data-position$="-right"] .WA_FloatingButton {
    right: 20px;
}

.WA_Chat_Widget[data-position$="-center"] .WA_FloatingButton {
    left: 50%;
    transform: translateX(-50%);
}

.WA_Chat_Widget[data-position^="top-"] .WA_ChatBox {
    top: 110px;
}

.WA_Chat_Widget[data-position^="bottom-"] .WA_ChatBox {
    bottom: 110px;
}

.WA_Chat_Widget[data-position$="-left"] .WA_ChatBox {
    left: 30px;
}

.WA_Chat_Widget[data-position$="-right"] .WA_ChatBox {
    right: 30px;
}

.WA_Chat_Widget[data-position$="-center"] .WA_ChatBox {
    left: 50%;
    transform: translateX(-50%);
}

.WA_Chat_Widget .WA_ChatBox {
    position: fixed;
    width: 360px;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 25px 0px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 99999;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header {
    width: auto;
    background: #095e54;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .name {
    color: #fff;
    font-weight: 600;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .answer_time {
    color: #e4e4e4;
    font-size: 14px;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close {
    background: transparent;
    color: #fff;
    border: none;
    outline: none;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close svg {
    fill: #ffff;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body {
    padding: 20px;
    background: #e6ddd4;
    position: relative;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(./bg-pattern.png);
    opacity: 0.1;
    z-index: 0;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message {
    max-width: 280px;
    background: #fff;
    padding: 20px;
    padding-top: 10px;
    border-radius: 8px;
    z-index: 1;
    position: relative;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    left: -10px;
    top: 0px;
    border-radius: 3px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .username {
    color: darkgray;
    font-weight: 500;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .message_content {
    font-size: 14px;
    color: #000;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer {
    padding: 20px;
    background-color: #fff;
    width: 100%;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn {
    width: 100%;
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 1000px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn.btn-whatsapp {
    background: #095e54;
    color: #fff;
    display: block;
    text-align: center;
}


/*-----------------RESPONSIVE SECTION START-----------------*/

@media(max-width: 1080px) {
    .container {
        width: 90%;
        margin: 0 auto;
    }
}

@media(max-width: 970px) {
    section {
        padding: 2rem 0;
    }

    .home-img::before {
        font-size: 8rem;
        top: -60px;
    }
}

@media(max-width: 880px) {
    .nav {
        padding: 12px 20px;
        border-radius: 0.6rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .home {
        min-height: 500px;
        padding-top: 9rem !important;
    }

    .home-img {
        font-size: 6rem;
        top: -38px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 620px) {
    header {
        top: 15px;
    }

    .nav-icons i {
        font-size: 17px;
    }

    .menu-icon {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 110%;
        left: 50%;
        transform: translate(-50%);
        width: 90vw;
        background: var(--text-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-radius: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .open-menu {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .nav-link {
        display: block;
        margin: 1rem 0;
    }

    .home {
        min-height: 440px;
        padding-top: 8rem  !important;
    }

    .home-img::before {
        font-size: 5rem;
        top: -34px;
        letter-spacing: 1.2rem;
    }

    .newsletter h2 {
        font-size: 2.1rem;
    }

    .newsletter p {
        font-size: 0.94rem;
    }

}

@media(max-width: 477px) {
    .home-img {
        width: 95%;
        margin: auto;
    }

    .home-img::before {
        font-size: 4rem;
        top: -32px;
        letter-spacing: 1rem;
    }

    .input-form {
        flex-direction: column;
        align-items: normal;
    }

    .input-box {
        flex: none;
    }

    .input-border {
        border-right: none;
        padding: 0 0 10px;
        border-bottom: 1px solid var(--text-alter-color);
    }

    .heading h2 {
        font-size: 2rem;
    }

    .reviews-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 380px) {
    .home-img::before {
        font-size: 3.5rem;
        top: -32px;
        letter-spacing: 0.8rem;
    }
}

/*----------------------------RESPONSIVE SECTION END-------------------------------------*/


/* =========================================
   ENQUIRY PAGE
========================================= */

.enquiry-page {
    min-height: 100vh;
    padding: 100px 20px 40px;
    background: var(--bg-color);
}

.enquiry-container {
    max-width: 1060px;
    width: 100%;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;

    align-items: stretch;
}


/* =========================================
   FORM BOX
========================================= */

.enquiry-form-box {
    background: var(--container-color);
    padding: 30px;
    border-radius: 12px;
}

.enquiry-form {
    width: 100%;
    margin: 0;
}

.enquiry-form .form-group {
    margin-bottom: 15px;
}


/* INPUTS */

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d5dae1;
    border-radius: 7px;

    outline: none;

    background: var(--bg-color);
    color: var(--text-color);

    font-family: var(--poppins-font);
    font-size: 0.84rem;

    transition: 0.3s;
}


/* PLACEHOLDER */

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: var(--text-alter-color);
}


/* FOCUS */

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--main-color);
}


/* TEXTAREA */

.enquiry-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 15px;
}


/* TWO COLUMN ROW */

.enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    margin-bottom: 15px;
}


/* BUTTON */

.enquiry-form button {

    width: 100%;

    padding: 14px;

    border: none;
    border-radius: 7px;

    background: var(--text-color);
    color: var(--bg-color);

    font-family: var(--poppins-font);
    font-size: 0.9rem;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.enquiry-form button:hover {
    background: var(--main-color);
}

.enquiry-form button i {
    margin-left: 5px;
}


/* =========================================
   MAP
========================================= */

.enquiry-map {
    padding: 0;

    overflow: hidden;

    border-radius: 12px;

    background: var(--container-color);

    min-height: 100%;
}

.enquiry-map iframe {
    width: 100%;
    height: 100%;

    min-height: 550px;

    border: 0;

    display: block;
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 800px) {

    .enquiry-page {
        padding: 80px 15px 30px;
    }

    .enquiry-container {
        grid-template-columns: 1fr;
    }

    .enquiry-map iframe {
        min-height: 350px;
    }

}


/* SMALL MOBILE */

@media (max-width: 500px) {

    .enquiry-form-box {
        padding: 20px;
    }

    .enquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


/* =========================================
   ABOUT PAGE
========================================= */


/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
    min-height: 65vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(49, 57, 73, 0.92),
            rgba(63, 76, 101, 0.68)
        ),
        url("../img/about-bg.jpg");

    background-size: cover;
    background-position: center;

    padding: 120px 0 70px;
}

.about-hero-content {
    color: #fff;
}

.about-hero-content > span {
    display: inline-block;

    font-family: var(--poppins-font);
    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.about-hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;

    margin-bottom: 25px;
}

.about-hero-content h1 span {
    color: #dce2ea;
}

.about-hero-content p {
    max-width: 550px;

    font-family: var(--poppins-font);
    font-size: 0.9rem;
    line-height: 1.8;

    color: #e5e8ed;
}


/* =========================================
   SECTION TAG
========================================= */

.section-tag {
    display: inline-block;

    color: var(--main-color);

    font-family: var(--poppins-font);
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 12px;
}


/* =========================================
   WHO WE ARE
========================================= */

.about-intro {
    padding: 6rem 0;
}

.about-intro-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}

.about-intro-image {
    height: 480px;

    overflow: hidden;

    border-radius: 14px;
}

.about-intro-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.about-intro-image:hover img {
    transform: scale(1.04);
}

.about-intro-content h2,
.about-heading h2,
.about-why h2 {

    font-size: clamp(2.3rem, 4vw, 3.7rem);

    line-height: 1;

    color: var(--text-color);

    margin-bottom: 25px;
}

.about-intro-content p {

    font-family: var(--poppins-font);

    font-size: 0.86rem;

    line-height: 1.9;

    color: var(--text-alter-color);

    margin-bottom: 15px;
}


/* BUTTON */

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

    padding: 13px 20px;

    border-radius: 7px;

    background: var(--text-color);

    color: var(--bg-color);

    font-family: var(--poppins-font);

    font-size: 0.8rem;

    font-weight: 600;

    transition: 0.3s;
}

.about-btn:hover {
    background: var(--main-color);
}


/* =========================================
   SERVICES
========================================= */

.about-services {

    padding: 5rem 0;

    background: var(--container-color);
}

.about-heading {
    text-align: center;

    margin-bottom: 45px;
}

.about-heading h2 {
    margin-bottom: 0;
}


.about-service-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.about-service-card {

    background: var(--bg-color);

    padding: 35px 30px;

    border-radius: 12px;

    transition: 0.3s;
}

.about-service-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(49, 57, 73, 0.08);
}


.about-service-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 9px;

    background: var(--main-color);

    color: #fff;

    font-size: 1.4rem;
}


.about-service-card h3 {

    color: var(--text-color);

    font-size: 1.3rem;

    margin-bottom: 12px;
}


.about-service-card p {

    font-family: var(--poppins-font);

    color: var(--text-alter-color);

    font-size: 0.8rem;

    line-height: 1.8;
}


/* =========================================
   WHY US
========================================= */

.about-why {

    padding: 6rem 0;
}


.about-why-content {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: start;
}


.about-points {

    display: flex;

    flex-direction: column;

    gap: 28px;
}


.about-point {

    display: flex;

    gap: 18px;

    padding-bottom: 25px;

    border-bottom: 1px solid #dfe3e8;
}


.about-point > i {

    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--container-color);

    color: var(--main-color);

    font-size: 1.2rem;
}


.about-point h3 {

    color: var(--text-color);

    font-size: 1.15rem;

    margin-bottom: 6px;
}


.about-point p {

    font-family: var(--poppins-font);

    font-size: 0.78rem;

    line-height: 1.7;

    color: var(--text-alter-color);
}


/* =========================================
   CTA
========================================= */

.about-cta {

    padding: 0 0 5rem;
}


.about-cta-box {

    background: var(--text-color);

    border-radius: 14px;

    padding: 65px 40px;

    text-align: center;

    color: #fff;
}


.about-cta-box span {

    font-family: var(--poppins-font);

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 2px;

    color: #bfc7d4;
}


.about-cta-box h2 {

    font-size: clamp(2.3rem, 5vw, 4rem);

    line-height: 1;

    margin: 15px 0 30px;
}


.about-cta-box a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 13px 22px;

    border-radius: 7px;

    background: var(--bg-color);

    color: var(--text-color);

    font-family: var(--poppins-font);

    font-size: 0.8rem;

    font-weight: 600;

    transition: 0.3s;
}


.about-cta-box a:hover {

    background: var(--main-color);

    color: #fff;
}


/* =========================================
   HEADER ACTIVE LINK
========================================= */

.navbar a.active {
    color: var(--main-color);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .about-hero {
        min-height: 55vh;

        padding: 110px 20px 60px;
    }


    .about-intro {
        padding: 4rem 0;
    }


    .about-intro-container {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .about-intro-image {
        height: 400px;
    }


    .about-service-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .about-why {

        padding: 4rem 0;
    }


    .about-why-content {

        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 500px) {

    .about-hero {

        min-height: 60vh;

        padding: 100px 15px 50px;
    }


    .about-hero-content h1 {

        font-size: 3rem;
    }


    .about-intro-image {

        height: 300px;
    }


    .about-intro-content h2,
    .about-heading h2,
    .about-why h2 {

        font-size: 2.5rem;
    }


    .about-service-card {

        padding: 28px 22px;
    }


    .about-cta-box {

        padding: 50px 20px;
    }


    .about-cta-box h2 {

        font-size: 2.6rem;
    }

}