/*==================================================
    GA Tours & Transfers
    Style Sheet
==================================================*/

/*==============================
    GOOGLE FONTS
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==============================
    ROOT
==============================*/

:root{

    --primary:#C8A75B;
    --secondary:#111111;
    --white:#ffffff;
    --light:#f8f9fa;
    --gray:#6c757d;
    --border:#e8e8e8;

    --transition:.35s ease;

}

/*==============================
    RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    font-display: optional;
    color:var(--secondary);
    background:#fff;
    line-height:1.8;

    padding-top:95px;

}
@media (max-width: 1080px) {
    body{
        padding-top: 70px;
    }
    .hero p{
        display: none;
    }
    .hero .btn-gold{
        margin-bottom: 10px;
    }
    
}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

/*==============================
    TYPOGRAPHY
==============================*/

h1,h2,h3,h4,h5,h6{

    font-family:'Playfair Display',serif;
    font-weight:700;
    color:var(--secondary);

}

.section-title{

    margin-bottom:20px;
    text-align:center;

}

.section-subtitle{

    color:var(--gray);
    margin-bottom:60px;
    text-align:center;

}

/*==============================
    BUTTONS
==============================*/

.btn-gold{

    background:var(--primary);
    color:#fff;

    padding:14px 34px;

    border-radius:50px;

    border:none;

    font-weight:600;

    transition:var(--transition);

}

.btn-gold:hover{

    background:#111;
    color:#fff;

}

.btn-outline-gold{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:14px 34px;

    border-radius:50px;

}

.btn-outline-gold:hover{

    background:var(--primary);
    color:#fff;

}

/*==============================
    NAVBAR
==============================*/

.navbar{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(10px);

    box-shadow:0 5px 20px rgba(0,0,0,.05);

    transition:.4s;

}

.logo{

    height:60px;

}

.nav-link{

    color:#111 !important;

    font-weight:500;

    margin:0 12px;

    position:relative;

}

.nav-link:hover{

    color:var(--primary) !important;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

/*==============================
    HERO
==============================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
        linear-gradient(rgba(0,0,0,.55),
        rgba(0,0,0,.55)),
        url("../images/hero/hero.webp");

    background-size:cover;

    background-position:center;

}

.hero h1{

    color:#fff;

    font-size:60px;

    margin-bottom:25px;

}

.hero p{

    color:#fff;

    font-size:20px;

    max-width:650px;

}

.hero-subtitle{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

}

/*==============================
    SECTIONS
==============================*/

section{

    padding:100px 0;

}

.bg-light{

    background:#f9f9f9 !important;

}

/*==============================
    CARDS
==============================*/

.feature-box,
.service-card{

    background:#fff;

    padding:40px;

    border-radius:15px;

    text-align:center;

    transition:.3s;

    border:1px solid var(--border);

    height:100%;

}

.feature-box:hover,
.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.feature-box i,
.service-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:25px;

}

.feature-box h5,
.service-card h4{

    margin-bottom:15px;

}

/*==============================
    FLEET
==============================*/

.card{

    border:none;

    border-radius:20px;

    overflow:hidden;

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.card img{

    height:260px;

    object-fit:cover;

}
/*==================================
    TOURS PAGE
==================================*/

.tours-section{

    background:#ffffff;

}

.tour-card{

    height:100%;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:all .4s ease;

}

.tour-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.tour-image{

    overflow:hidden;

}

.tour-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:transform .5s ease;

}

.tour-card:hover .tour-image img{

    transform:scale(1.08);

}

.tour-content{

    padding:30px;

}

.tour-content h3{

    margin-bottom:15px;

}

.tour-content p{

    color:var(--gray);

    line-height:1.7;

    min-height:85px;

}

.tour-buttons{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-top:25px;

}

.tour-buttons .btn{

    flex:1;

    min-width:120px;

}
/*==================================
    FAQ
==================================*/

.faq-section{

    background:#ffffff;

}

.faq-section .accordion-item{

    border:1px solid #e5e5e5;

    margin-bottom:15px;

    border-radius:10px;

    overflow:hidden;

}

.faq-section .accordion-button{

    padding:22px 25px;

    font-size:17px;

    font-weight:600;

    color:#222;

    background:#ffffff;

    box-shadow:none;

}

.faq-section .accordion-button:not(.collapsed){

    color:var(--primary);

    background:#ffffff;

    box-shadow:none;

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-button::after{

    background-size:16px;

}

.faq-section .accordion-body{

    padding:0 25px 25px;

    color:var(--gray);

    line-height:1.8;

}

/*==================================
    =CTA CONTACT FORM
==================================*/

.cta-contact-section{

    background: var(--primary);

}

.cta-contact-section h2{

    font-size:42px;
    color: #fff;

}

.cta-contact-section p{

    color: #fff;

    line-height:1.8;

}

.cta-form-box{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.cta-form-box .form-control{

    min-height:52px;

    border:1px solid #dedede;

    border-radius:8px;

    padding:12px 15px;

}

.cta-form-box .form-control:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(200,167,91,.15);

}

/*==================================
    POPULAR DESTINATIONS
==================================*/

.popular-destinations{

    background:#fff;

}

.destination-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.destination-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.destination-card:hover img{

    transform:scale(1.08);

}

.destination-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.10)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    align-items:center;

    padding:30px;

    opacity:0;

    transition:.4s;

}

.destination-card:hover .destination-overlay{

    opacity:1;

}

.destination-overlay h4, .destination-overlay p{

    color:#fff;

    margin-bottom:20px;

}
/*==================================
    TESTIMONIALS
==================================*/

.testimonials{

    background:#f8f9fa;

}

.testimonial-box{

    max-width:850px;

    margin:auto;

    background:#ffffff;

    padding:60px 50px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.stars{

    font-size:28px;

    color:var(--primary);

    letter-spacing:4px;

}

.testimonial-text{

    font-size:20px;

    font-style:italic;

    color:#555;

    margin-bottom:30px;

    line-height:1.8;

}

.testimonial-box h5{

    margin-bottom:5px;

}

.testimonial-box span{

    color:var(--gray);

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:var(--primary);

    border-radius:50%;

    padding:20px;

}

.carousel-control-prev,
.carousel-control-next{

    width:6%;

}
/*==================================
    PAGE HEADER
==================================*/

.page-header{

    background:#f8f9fa;

    padding:100px 0 80px;

}

.page-header h1{

    font-size:52px;

    margin:15px 0;

}

.page-header p{

    color:var(--gray);

}
/*==================================
    =CONTACT PAGE
==================================*/

.contact-section{

    background:#ffffff;

}

.contact-info-item{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

}

.contact-info-icon{

    width:55px;

    height:55px;

    min-width:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(200,167,91,.12);

    color:var(--primary);

    font-size:22px;

}

.contact-info-item h5{

    margin-bottom:3px;

}

.contact-info-item a{

    color:#666;

}

.contact-info-item a:hover{

    color:var(--primary);

}

.contact-form-box{

    background:#ffffff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border:1px solid var(--border);

}

.contact-form-box .form-label{

    font-weight:500;

}

.contact-form-box .form-control,
.contact-form-box .form-select{

    min-height:52px;

    border:1px solid #dedede;

    border-radius:8px;

    padding:12px 15px;

}

.contact-form-box textarea.form-control{

    min-height:150px;

    resize:vertical;

}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(200,167,91,.15);

}

.alert{

    border-radius:10px;

}

/*==================================
    =SERVICES PAGE
==================================*/

.services-page{

    background:#ffffff;

}

.service-page-card{

    height:100%;

    padding:45px 35px;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    text-align:center;

    transition:.4s;

    display:flex;

    flex-direction:column;

}

.service-page-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.service-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(200,167,91,.12);

    color:var(--primary);

    font-size:32px;

}

.service-page-card h3{

    margin-bottom:20px;

}

.service-page-card p{

    color:var(--gray);

    margin-bottom:30px;

    flex-grow:1;

}

.service-buttons{

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

}

.btn-whatsapp{

    background:#25D366;

    color:#ffffff;

    border-radius:50px;

    padding:10px 20px;

    font-weight:500;

}

.btn-whatsapp:hover{

    background:#1ebe5d;

    color:#ffffff;

}

.service-buttons .btn-outline-gold{

    padding:10px 20px;

}

/*==============================
    FOOTER
==============================*/

.footer{

    background:#111;

    color:#bbb;

}

.footer h5{

    color:var(--primary);

    margin-bottom:25px;

}

.footer p,
.footer li{

    color:#bbb;

}

.footer a{

    color:#bbb;

}

.footer a:hover{

    color:var(--primary);

}

.footer-logo{

    max-width:180px;

}

.social-icons a{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#222;

    color:#fff;

    margin-right:10px;

    transition:.3s;

}

.social-icons a:hover{

    background:var(--primary);

    color:#111;

}
/*==================================
    WHATSAPP FLOAT BUTTON
==================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:all .3s ease;

}

.whatsapp-float:hover{

    background:#1EBE5D;

    color:#fff;

    transform:scale(1.1);

}

.whatsapp-float i{

    line-height:1;

}

/*==============================
    UTILITIES
==============================*/

.shadow-soft{

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.rounded-20{

    border-radius:20px;

}

.text-gold{

    color:var(--primary);

}

.bg-gold{

    background:var(--primary);

}

/*==============================
    SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}