/* style.css */

body{
    background:#0f0f0f;
    color:#ffffff;
    font-family:'Poppins',sans-serif;
}

html,
body{
    overflow-x:hidden;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

.section-padding{
    padding:120px 0;
}

.bg-black{
    background:#0f0f0f;
}

.bg-dark-custom{
    background:#181818;
}

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

.custom-navbar{
    padding:5px 0;
    transition:0.3s;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
}

.logo-text{
    color:#d4af37;
    font-family:'Cinzel',serif;
    font-weight:700;
    letter-spacing:2px;
}

.nav-link{
    color:#ffffff !important;
    margin-left:15px;
    transition:0.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#d4af37 !important;
}

.bg-gold{
    background:#d4af37;
}

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

.btn-gold{
    background:#d4af37;
    color:#000;
    padding:12px 28px;
    border:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.btn-gold:hover{
    background:#ffffff;
    color:#000;
}

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

.hero-section{
    height:100vh;
    background:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center center/cover no-repeat;
    position:relative;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    top:0;
    left:0;
}

.hero-title{
    font-size:65px;
    font-family:'Cinzel',serif;
    color:#ffffff;
    font-weight:700;
}

.hero-text{
    font-size:18px;
    color:#dcdcdc;
    margin-top:20px;
    max-width:650px;
}

.hero-text{
    max-width:700px;
    line-height:1.9;
}

.btn-gold{
    padding:14px 34px;
    font-size:15px;
}

/* ================= TITLES ================= */
.section-padding{
    padding:120px 0;
}

.section-subtitle{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-family:'Cinzel',serif;
    margin-bottom:20px;
}

.section-text{
    color:#cfcfcf;
    line-height:1.9;
}

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

.tour-card{
    background:#111;
    border:1px solid rgba(212,175,55,0.3);
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

.tour-card img[src*="premium-journeys"]{
    height:auto;
    object-fit:contain;
    background:#000;
    padding:0;
}

.tour-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.tour-img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.tour-content{
    padding:25px;
}

.tour-price{
    color:#d4af37;
    font-size:22px;
    font-weight:700;
}

/* ================= PREMIUM PACKAGE IMAGE ================= */

.premium-tour-img{
    width:100%;
    height:auto;
    display:block;
    border-bottom:1px solid rgba(212,175,55,0.15);
}

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

.service-box{
    background:#151515;
    padding:40px 20px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,175,55,0.2);
    transition:0.3s;
}

.service-box:hover{
    border-color:#d4af37;
    transform:translateY(-8px);
}

.service-icon{
    font-size:50px;
    color:#d4af37;
    margin-bottom:20px;
}

/* ================= TESTIMONIAL ================= */

.testimonial-card{
    background:#111;
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.2);
    height:100%;
}

/* ================= CONTACT ================= */

.custom-input{
    background:#181818;
    border:1px solid rgba(212,175,55,0.3);
    color:#fff;
    padding:15px;
}

.custom-input:focus{
    background:#181818;
    color:#fff;
    border-color:#d4af37;
    box-shadow:none;
}

.gold{
    color:#d4af37;
}

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

.footer{
    background:#000;
    padding:50px 0;
}

.social-icons a{
    color:#d4af37;
    font-size:22px;
    margin:0 10px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#fff;
}

.footer-line{
    border-color:rgba(255,255,255,0.1);
    margin:30px 0;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .hero-title{
        font-size:42px;
    }

    .section-title{
        font-size:32px;
    }

    .navbar{
        background:#000;
    }

}

/* ================= ABOUT PAGE ================= */

.about-banner{
    height:60vh;
    background:url('../images/journeys/about-banner.png') center center/cover no-repeat;
    position:relative;
}

.page-title{
    font-size:60px;
    font-family:'Cinzel',serif;
    color:#fff;
    font-weight:700;
}

.page-subtitle{
    color:#dcdcdc;
    margin-top:15px;
    font-size:18px;
}

.about-box{
    background:#151515;
    padding:25px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.2);
    text-align:center;
}

.gold-number{
    color:#d4af37;
    font-size:40px;
    font-weight:700;
}

.team-card{
    background:#111;
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.2);
    transition:0.3s;
}

.team-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.team-img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #d4af37;
}

/* ================= JOURNEYS PAGE ================= */

.journeys-banner{
    height:60vh;
    background:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center center/cover no-repeat;
    position:relative;
}

.tour-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#d4af37;
    color:#000;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    z-index:2;
}

.tour-card{
    position:relative;
}

.tour-info{
    display:flex;
    justify-content:space-between;
    color:#dcdcdc;
    font-size:14px;
}

.tour-card:hover .tour-img{
    transform:scale(1.05);
}

.tour-img{
    transition:0.5s;
}


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

.services-banner{
    height:60vh;
    background:url('../images/journeys/service-banner.png') center center/cover no-repeat;
    position:relative;
}

.service-card{
    background:#111;
    padding:40px 30px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.2);
    transition:0.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.service-icon-box{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(212,175,55,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:20px;
    font-size:16px;
}

/* ================= GALLERY PAGE ================= */

.gallery-banner{
    height:60vh;
    background:url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center center/cover no-repeat;
    position:relative;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.gallery-img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    top:0;
    left:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
    text-align:center;
}

.gallery-overlay h4{
    color:#fff;
    font-family:'Cinzel',serif;
}

.gallery-overlay p{
    color:#d4af37;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-card:hover .gallery-img{
    transform:scale(1.1);
}

.video-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.video-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    background:#d4af37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.video-play i{
    font-size:40px;
    color:#000;
}

/* ================= TESTIMONIALS PAGE ================= */

.testimonials-banner{
    height:60vh;
    background:url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c') center center/cover no-repeat;
    position:relative;
}

.testimonial-box{
    background:#111;
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.2);
    transition:0.4s;
    height:100%;
}

.testimonial-box:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.quote-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(212,175,55,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.quote-icon i{
    font-size:35px;
    color:#d4af37;
}

.testimonial-text{
    color:#dcdcdc;
    line-height:1.9;
}

.testimonial-rating i{
    color:#d4af37;
    margin-right:3px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #d4af37;
}

.stats-box{
    padding:30px;
}

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

.contact-banner{
    height:60vh;
    background:url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center center/cover no-repeat;
    position:relative;
}

.contact-info-box{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.contact-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(212,175,55,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-icon i{
    font-size:28px;
    color:#d4af37;
}

.contact-form-box{
    background:#111;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.2);
}

.form-select.custom-input{
    height:58px;
}

iframe{
    filter:grayscale(100%) invert(92%) contrast(90%);
}


/* ================= LOGO ================= */

.main-logo{
    height:90px;
    width:auto;
    object-fit:contain;
    transition:0.3s;
}

.custom-navbar.scrolled .main-logo{
    height:65px;
}

/* Mobile */

@media(max-width:768px){

    .main-logo{
        height:65px;
    }

}

/* ================= WELCOME SECTION ================= */

.welcome-section{
    position:relative;
}

.welcome-image-box{
    overflow:hidden;
    border-radius:25px;
}

.welcome-img{
    border-radius:25px;
    width:100%;
    transition:0.5s;
}

.welcome-img:hover{
    transform:scale(1.05);
}

/* ================= HIGHLIGHTS SECTION ================= */

.highlight-card{
    background:#111;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,175,55,0.15);
    transition:0.4s;
    height:100%;
}

.highlight-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.highlight-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:rgba(212,175,55,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.highlight-icon i{
    font-size:38px;
    color:#d4af37;
}

.highlight-card h5{
    color:#fff;
    line-height:1.7;
}


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

.footer{
    background:#070707;
    padding:100px 0 30px;
}

.footer-logo{
    height:85px;
    width:auto;
}

.footer-title{
    color:#ffffff;
    font-size:30px;
    margin-bottom:30px;
    font-family:'Cinzel',serif;
}

.footer-text{
    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-contact p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:18px;
}

.footer-contact i{
    color:#d4af37;
    margin-right:12px;
}

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:18px;
}

.footer-links a{
    color:#dcdcdc;
    transition:0.3s;
}

.footer-links a:hover{
    color:#d4af37;
    padding-left:8px;
}

.footer-links i{
    color:#d4af37;
    margin-right:10px;
}

.footer-line{
    border-color:rgba(255,255,255,0.08);
    margin:60px 0 30px;
}

.footer-copy{
    color:#a8a8a8;
}

/* ================= SOCIAL ICONS ================= */

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#111;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    color:#d4af37;
    font-size:18px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#d4af37;
    color:#000;
}

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

.footer-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#25d366;
    color:#fff;
    padding:15px 26px;
    border-radius:50px;
    margin-top:25px;
    font-weight:600;
    transition:0.3s;
}

.footer-whatsapp-btn:hover{
    background:#1ebe5d;
    color:#fff;
}

/* ================= FLOATING WHATSAPP ================= */

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
    transition:0.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
    color:#fff;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .footer{
        text-align:center;
    }

    .footer-logo{
        height:70px;
    }

}

.tour-card:hover,
.service-box:hover,
.highlight-card:hover{

    box-shadow:0 20px 40px rgba(212,175,55,0.08);

}

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

.custom-navbar.scrolled{
    background:#000000ee;
    padding:5px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

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

.hero-section{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470')
    center center/cover no-repeat;
    position:relative;
}

.hero-title{
    font-size:72px;
    line-height:1.2;
    font-family:'Cinzel',serif;
    font-weight:700;
    max-width:800px;
}

.hero-text{
    font-size:18px;
    color:#d8d8d8;
    line-height:1.9;
    max-width:700px;
    margin-top:25px;
}

/* ================= PREMIUM HOVER EFFECT ================= */

.tour-card,
.highlight-card,
.service-box,
.testimonial-card{
    transition:0.4s ease;
}

.tour-card:hover,
.highlight-card:hover,
.service-box:hover,
.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    0 0 20px rgba(212,175,55,0.08);

}

.btn-gold{
    background:#d4af37;
    color:#000;
    padding:14px 34px;
    border:none;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(212,175,55,0.2);
}

.btn-gold:hover{
    background:#fff;
    color:#000;
    transform:translateY(-3px);
}

@media(max-width:991px){

    .navbar-collapse{

        background:#050505;
        padding:25px;
        border-radius:20px;
        margin-top:15px;
        border:1px solid rgba(212,175,55,0.15);

    }

    .nav-link{
        padding:12px 0;
    }

}


/* ================= TOUR HIGHLIGHTS ================= */

.tour-highlights{
    padding-left:18px;
    margin-top:15px;
}

.tour-highlights li{
    color:#cfcfcf;
    margin-bottom:10px;
    line-height:1.7;
}

/* ================= DETAILS PAGE ================= */

.journey-details-banner{
    height:70vh;
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1582510003544-4d00b7f74220')
    center center/cover no-repeat;
}

.details-sidebar{
    background:#111;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.15);
}

.details-list li{
    color:#d8d8d8;
    margin-bottom:18px;
}


/* ================= MOBILE FIXES ================= */

html,
body{
    overflow-x:hidden;
}

/* Prevent all sections overflow */

section{
    overflow:hidden;
}

/* Container fix */

.container{
    width:100%;
    max-width:100%;
}

/* Hero Section */

@media(max-width:768px){

    .hero-section{
        height:auto;
        padding:180px 0 120px;
    }

    .hero-title{
        font-size:42px;
        line-height:1.3;
    }

    .hero-text{
        font-size:16px;
        line-height:1.8;
        max-width:100%;
    }

    .btn-gold{
        padding:12px 24px;
        font-size:14px;
    }

}

/* Welcome Section */

@media(max-width:768px){

    .welcome-img{
        width:100%;
        height:auto;
    }

    .welcome-section .row{
        flex-direction:column;
    }

}

/* Images */

img{
    max-width:100%;
    height:auto;
}

/* Cards */

.tour-card,
.service-card,
.highlight-card,
.testimonial-box,
.testimonial-card{

    width:100%;

}

/* Footer */

@media(max-width:768px){

    .footer{
        text-align:center;
    }

    .footer .row > div{
        margin-bottom:40px;
    }

}

/* Navbar */

@media(max-width:991px){

    .navbar-brand{
        max-width:70%;
    }

    .main-logo{
        height:60px;
    }

    .navbar-toggler{
        padding:8px 12px;
    }

}

/* WhatsApp Button */

@media(max-width:768px){

    .floating-whatsapp{
        width:55px;
        height:55px;
        font-size:28px;
        right:15px;
        bottom:15px;
    }

}

/* Section Padding */

@media(max-width:768px){

    .section-padding{
        padding:80px 0;
    }

}

/* Page Titles */

@media(max-width:768px){

    .page-title{
        font-size:38px;
    }

    .section-title{
        font-size:34px;
        line-height:1.4;
    }

}

/* Prevent Bootstrap Row Overflow */

.row{
    margin-left:0;
    margin-right:0;
}

/* ================= WELCOME SECTION FIX ================= */

.welcome-image-box{
    overflow:hidden;
    border-radius:25px;
    max-height:500px;
}

.welcome-img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
    transition:0.5s;
}

/* Desktop Large */

@media(min-width:1400px){

    .welcome-img{
        height:650px;
    }

}

/* Tablet */

@media(max-width:991px){

    .welcome-img{
        height:500px;
    }

}

/* Mobile */

@media(max-width:768px){

    .welcome-img{
        height:400px;
    }

}


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

.hero-slider{
    position:relative;
}

.hero-slide{
    height:100vh;
    display:flex;
    align-items:center;
    position:relative;
}

.hero-slide .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.hero-title{
    font-size:72px;
    line-height:1.2;
    font-family:'Cinzel',serif;
    color:#fff;
    font-weight:700;
    max-width:850px;
}

.hero-text{
    font-size:18px;
    color:#d8d8d8;
    line-height:1.9;
    max-width:700px;
    margin-top:25px;
}

.carousel-indicators [data-bs-target]{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d4af37;
}

.carousel-control-prev,
.carousel-control-next{
    width:5%;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .hero-slide{
        height:90vh;
        text-align:center;
    }

    .hero-title{
        font-size:42px;
        line-height:1.3;
    }

    .hero-text{
        font-size:16px;
        line-height:1.8;
    }

}

/* ================= TOUR HIGHLIGHTS ================= */

.tour-highlights{
    padding-left:18px;
    margin-top:15px;
}

.tour-highlights li{
    color:#d0d0d0;
    margin-bottom:10px;
    line-height:1.7;
}

.tour-content p{
    color:#cfcfcf;
    line-height:1.8;
}

.tour-content h4{
    margin-bottom:15px;
}

/* ================= GALLERY SECTION ================= */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.gallery-img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:0.5s;
    border-radius:25px;
}

.gallery-card:hover .gallery-img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:30px;
    background:linear-gradient(to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.1));
}

.gallery-overlay h4{
    color:#ffffff;
    margin-bottom:10px;
    font-family:'Cinzel',serif;
}

.gallery-overlay p{
    color:#d4af37;
    margin-bottom:0;
}

.tour-content{
    display:flex;
    flex-direction:column;
    height:100%;
}

.tour-card{
    height:100%;
}

.tour-content .btn{
    margin-top:auto;
}

.tour-tags{
    margin-top:15px;
}

.tour-tags span{
    display:inline-block;
    background:rgba(212,175,55,0.12);
    color:#d4af37;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    margin-right:8px;
    margin-bottom:8px;
}

/* ================= TOUR CARD HEIGHT ================= */

.tour-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.tour-content{
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.tour-content .btn{
    margin-top:auto;
}

.tour-card{
    transition:0.4s;
}

.tour-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

/* ================= ENQUIRY MODAL ================= */

.enquiry-modal{
    background:#111;
    border-radius:25px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,0.2);
}

.enquiry-header{
    background:#d4af37;
    padding:25px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.enquiry-header h3{
    margin:0;
    color:#000;
    font-size:30px;
    font-weight:700;
    letter-spacing:5px;
}

.enquiry-modal .modal-body{
    padding:40px;
    background:#111;
}

.enquiry-modal .custom-input{
    background:#181818;
    border:1px solid rgba(212,175,55,0.2);
    color:#fff;
    padding:16px;
    border-radius:14px;
    min-height:58px;
}

.enquiry-modal .custom-input:focus{
    background:#181818;
    color:#fff;
    border-color:#d4af37;
    box-shadow:none;
}

.enquiry-modal textarea.custom-input{
    min-height:140px;
    resize:none;
}

.enquiry-modal .btn-close{
    filter:invert(1);
    opacity:1;
}

.enquiry-modal .btn-gold{
    min-width:240px;
}

/* ================= MODAL BACKDROP ================= */

.modal-backdrop.show{
    opacity:0.8;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:768px){

    .modal-dialog{
        margin:15px;
    }

    .enquiry-header{
        padding:20px;
    }

    .enquiry-header h3{
        font-size:22px;
        letter-spacing:3px;
    }

    .enquiry-modal .modal-body{
        padding:25px 20px;
    }

    .enquiry-modal .custom-input{
        padding:14px;
        font-size:15px;
        min-height:54px;
    }

    .enquiry-modal textarea.custom-input{
        min-height:120px;
    }

    .enquiry-modal .btn-gold{
        width:100%;
        min-width:100%;
    }

}

/* Extra Small Devices */

@media(max-width:480px){

    .enquiry-header h3{
        font-size:18px;
        letter-spacing:2px;
    }

    .enquiry-modal .modal-body{
        padding:20px 15px;
    }

}

/* ================= FORM TEXT WHITE ================= */

.custom-input,
.custom-input::placeholder,
.custom-input option,
.custom-input select,
.custom-input textarea{
    color:#ffffff !important;
}

/* Placeholder */

.custom-input::placeholder{
    color:#cfcfcf !important;
    opacity:1;
}

/* Select Dropdown */

select.custom-input{
    color:#ffffff !important;
}

/* Date Input */

input[type="date"].custom-input{
    color:#ffffff !important;
}

/* Number Input */

input[type="number"].custom-input{
    color:#ffffff !important;
}

/* ================= DATE INPUT FIX ================= */

input[type="date"]{
    color-scheme:dark;
}

/* Autofill Fix */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill{

    -webkit-text-fill-color:#ffffff;
    transition:background-color 5000s ease-in-out 0s;

}

/* ================= MOBILE DATE INPUT WHITE ================= */

@media(max-width:768px){

    input[type="date"].custom-input{
        color:#ffffff !important;
    }

    input[type="date"].custom-input::-webkit-calendar-picker-indicator{
        filter:invert(1);
        cursor:pointer;
    }

}

/* =========================================================
   WAFES JOURNEYS - GALLERY PAGE
========================================================= */

/* ================= SECTION ================= */

.section-padding{
    padding: 100px 0;
}

.gallery-top-text{
    max-width: 720px;
    margin: auto;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
}

/* ================= GALLERY CARD ================= */

.gallery-card{
    background: linear-gradient(145deg, #111111, #0a0a0a);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.gallery-card:hover{
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.45);
    box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

/* ================= IMAGE ================= */

.gallery-img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img{
    transform: scale(1.05);
}

/* ================= CONTENT ================= */

.gallery-content{
    padding: 24px;
}

.gallery-date{
    display: inline-block;
    color: #d4af37;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.gallery-title{
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.gallery-description{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 0;
}

/* ================= PAGINATION ================= */

.gallery-pagination{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination{
    gap: 10px;
}

.pagination .page-item{
    list-style: none;
}

.pagination .page-link{
    background: #111111;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 11px 18px;
    border-radius: 12px;
    transition: 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    box-shadow: none !important;
}

.pagination .page-link:hover{
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link{
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
    font-weight: 600;
}

.pagination .page-item.disabled .page-link{
    background: #0d0d0d;
    color: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.05);
}

/* ================= BANNER ================= */

.gallery-banner{
    min-height: 60vh;
    position: relative;
    background: url('../images/journeys/service-banner.png') center center/cover no-repeat;
}

.gallery-banner .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.page-title{
    font-size: 58px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-subtitle{
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px){

    .page-title{
        font-size: 48px;
    }

}

@media (max-width: 991px){

    .section-padding{
        padding: 80px 0;
    }

    .gallery-img{
        height: 240px;
    }

    .page-title{
        font-size: 42px;
    }

}

@media (max-width: 767px){

    .section-padding{
        padding: 70px 0;
    }

    .gallery-img{
        height: 220px;
    }

    .gallery-title{
        font-size: 21px;
    }

    .gallery-content{
        padding: 20px;
    }

    .page-title{
        font-size: 34px;
    }

    .page-subtitle{
        font-size: 16px;
    }

    .pagination .page-link{
        padding: 9px 14px;
        font-size: 14px;
    }

}

@media (max-width: 575px){

    .gallery-img{
        height: 210px;
    }

    .gallery-title{
        font-size: 20px;
    }

    .gallery-description{
        font-size: 14px;
    }

}

