/* ==========================================
   TravelsHoliday.com
   STYLE.CSS
========================================== */

/* ==========================================
   GOOGLE VARIABLES
========================================== */

:root{

    --green:#124734;
    --gold:#D4AF37;
    --white:#ffffff;
    --black:#1f1f1f;
    --light:#f7f7f7;
    --gray:#777777;

    --shadow:0 10px 30px rgba(0,0,0,.10);

}

/* ==========================================
   RESET
========================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--black);
    background:var(--white);
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ==========================================
   LOADER
========================================== */

#loader{

    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#124734;

    z-index:99999;

    transition:
        opacity .5s ease,
        visibility .5s ease;

}

.loader-content{

    text-align:center;

}

.loader-content h1{

    font-size:60px;
    font-family:'Playfair Display',serif;

}

.loader-white{

    color:white;

}

.loader-gold{

    color:var(--gold);

}

.loader-content p{

    color:white;
    margin:15px 0;

}

.loader-bar{

    width:250px;
    height:5px;
    background:rgba(255,255,255,.2);
    border-radius:30px;
    overflow:hidden;

}

.loader-bar span{

    display:block;
    width:0%;
    height:100%;
    background:var(--gold);
    animation:loading 2s linear infinite;

}

@keyframes loading{

    0%{

        width:0;

    }

    100%{

        width:100%;

    }

}

/* ==========================================
   HEADER
========================================== */

#header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    transition:.4s;

}

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#124734;
}

.navbar{

    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 0;

}

.logo{

    font-size:34px;
    font-weight:700;

}

.logo-green{

    color:white;

}

.logo-gold{

    color:var(--gold);

}

.logo-dot{

    color:white;
    font-size:18px;

}

.nav-menu{

    display:flex;
    gap:35px;

}

.nav-menu a{

    color:white;
    font-weight:500;
    transition:.3s;

}

.nav-menu a:hover{

    color:var(--gold);

}

.nav-btn{

    background:var(--gold);
    color:white;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.nav-btn:hover{

    background:white;
    color:var(--green);

}

/* ==========================================
   HERO
========================================== */

.hero{

    position:relative;
    height:100vh;
    overflow:hidden;

}

.hero-slider{

    position:absolute;
    width:100%;
    height:100%;

}

.slide{

    position:absolute;
    inset:0;

    opacity:0;
    transition:1s;

}

.slide.active{

    opacity:1;

}

.slide img{

    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoom 8s linear infinite;

}

@keyframes zoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}

.hero-overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;
    z-index:10;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    width:90%;
    margin:auto;

}

.hero-content h5{

    color:var(--gold);
    letter-spacing:3px;
    margin-bottom:20px;

}

.hero-content h1{

    font-size:72px;
    font-family:'Playfair Display',serif;
    line-height:1.2;

}

.hero-content p{

    max-width:850px;
    margin:30px auto;
    font-size:18px;
    line-height:1.8;

}

.hero-buttons{

    display:flex;
    gap:20px;

}

.primary-btn{

    background:var(--gold);
    color:white;
    padding:15px 40px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;

}

.primary-btn:hover{

    background:white;
    color:var(--green);

}

.secondary-btn{

    border:2px solid white;
    color:white;
    padding:15px 40px;
    border-radius:50px;
    transition:.3s;

}

.secondary-btn:hover{

    background:white;
    color:var(--green);

}
/* ==========================================
   SEARCH SECTION
========================================== */

.search-section{

    position:relative;
    margin-top:-70px;
    z-index:20;

}

.search-box{

    width:90%;
    max-width:1200px;

    margin:auto;

    background:rgba(255,255,255,.96);

    border-radius:18px;

    padding:30px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.search-field{

    display:flex;
    flex-direction:column;

}

.search-field label{

    font-weight:600;

    margin-bottom:10px;

    color:var(--green);

}

.search-field select{

    height:55px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    outline:none;

    font-size:15px;

    transition:.3s;

}

.search-field select:focus{

    border-color:var(--gold);

}

.search-box button{

    height:55px;

    align-self:end;

    border:none;

    background:var(--green);

    color:white;

    font-size:16px;

    font-weight:600;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.search-box button:hover{

    background:var(--gold);

}

/* ==========================================
   COMMON SECTION
========================================== */

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--gold);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:44px;

    color:var(--green);

    margin:15px 0;

    font-family:'Playfair Display',serif;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:var(--gray);

    line-height:1.8;

}

/* ==========================================
   SERVICES
========================================== */

.services{

    background:var(--light);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:var(--shadow);

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#f5f5f5;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin-bottom:25px;

}

.service-card h3{

    color:var(--green);

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    color:var(--gray);

    line-height:1.8;

}

/* ==========================================
   DESTINATIONS
========================================== */

.destination-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.destination-card{

    overflow:hidden;

    border-radius:20px;

    background:white;

    box-shadow:var(--shadow);

    transition:.4s;

}

.destination-card{

    position:relative;
    overflow:hidden;
    cursor:pointer;
    transition:all .45s ease;

}

.destination-card:hover{

    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 55px rgba(0,0,0,.22);

}

.destination-card img{

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.destination-card:hover img{

    transform:scale(1.08);

}

.destination-content{

    padding:25px;

}

.destination-content h3{

    color:var(--green);

    font-size:24px;

    margin-bottom:10px;

}

.destination-content p{

    color:var(--gray);

    line-height:1.8;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1100px){

.search-box{

grid-template-columns:repeat(2,1fr);

}

.destination-grid{

grid-template-columns:repeat(3,1fr);

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.hero-content h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.search-box{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.destination-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

}
/* ==========================================
   PACKAGES
========================================== */

.packages{

    background:var(--light);

}

.package-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.package-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.4s;

}

.package-card{

    position:relative;
    overflow:hidden;
    cursor:pointer;
    transition:all .45s ease;

}

.package-card:hover{

    transform:translateY(-15px);

    box-shadow:0 25px 60px rgba(0,0,0,.20);

}

.package-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:transform .8s ease;

}

.package-card:hover img{

    transform:scale(1.08);

}

.package-content{

    padding:25px;

}

.package-days{

    display:inline-block;

    background:var(--green);

    color:white;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:18px;

}

.package-content h3{

    font-size:24px;

    color:var(--green);

    margin-bottom:12px;

}

.package-content p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:20px;

}

.package-content ul{

    margin-bottom:25px;

}

.package-content ul li{

    margin:10px 0;

    color:#444;

}

.package-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:25px;

}

.package-footer h4{

    color:var(--gold);

    font-size:28px;

}

.package-footer span{

    color:var(--gray);

    font-size:14px;

}

.package-btn{

    background:var(--green);

    color:white;

    padding:12px 22px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.package-btn:hover{

    background:var(--gold);

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:white;

    padding:45px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

}

.why-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:rgba(212,175,55,.15);

    color:var(--gold);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    margin-bottom:25px;

}

.why-card h3{

    color:var(--green);

    margin-bottom:15px;

}

.why-card p{

    color:var(--gray);

    line-height:1.8;

}

/* ==========================================
   STATISTICS
========================================== */

.statistics{

    background:linear-gradient(rgba(18,71,52,.9),
    rgba(18,71,52,.9)),
    url("../images/hero2.jpg") center/cover;

    color:white;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}

.stat-box{

    padding:40px 20px;

}

.stat-box h2{

    font-size:56px;

    color:var(--gold);

    margin-bottom:10px;

}

.stat-box p{

    font-size:18px;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

.package-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.package-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

.package-footer{

flex-direction:column;

gap:20px;

text-align:center;

}

}
/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{

    background:#fff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.4s;

    position:relative;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:var(--gold);

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:25px;

}

.testimonial-card h4{

    color:var(--green);

    margin-bottom:5px;

}

.testimonial-card span{

    color:#888;

    font-size:14px;

}

/* ==========================================
   GALLERY
========================================== */

.gallery{

    background:var(--light);

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

/* ==========================================
   FAQ
========================================== */

.faq{

    background:white;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    padding:25px 30px;

    border-radius:15px;

    margin-bottom:20px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.faq-item:hover{

    transform:translateX(10px);

}

.faq-item h3{

    color:var(--green);

    margin-bottom:15px;

    font-size:22px;

}

.faq-item p{

    color:var(--gray);

    line-height:1.8;

}

/* ==========================================
   CONTACT
========================================== */

.contact{

    background:var(--light);

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:50px;

}

.contact-info{

    background:var(--green);

    color:white;

    padding:40px;

    border-radius:20px;

}

.contact-info h3{

    font-size:32px;

    margin-bottom:30px;

}

.contact-box{

    margin-bottom:30px;

}

.contact-box h4{

    color:var(--gold);

    margin-bottom:8px;

}

.contact-box p{

    line-height:1.8;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px 18px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:15px;

    transition:.3s;

    font-family:'Poppins',sans-serif;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:var(--gold);

}

.contact-form textarea{

    resize:vertical;

    min-height:160px;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1100px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.contact-info,

.contact-form{

padding:25px;

}

}
/* ==========================================
   NEWSLETTER
========================================== */

.newsletter{

    background:linear-gradient(135deg,var(--green),#1b5d46);

    color:white;

}

.newsletter-content{

    max-width:850px;

    margin:auto;

    text-align:center;

}

.newsletter-content h2{

    font-size:46px;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.newsletter-content p{

    color:rgba(255,255,255,.85);

    margin-bottom:35px;

    line-height:1.8;

}

.newsletter-form{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.newsletter-form input{

    flex:1;

    min-width:280px;

    max-width:520px;

    height:60px;

    border:none;

    border-radius:50px;

    padding:0 25px;

    outline:none;

    font-size:16px;

}

.newsletter-form button{

    height:60px;

    padding:0 35px;

    border:none;

    border-radius:50px;

    background:var(--gold);

    color:white;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.newsletter-form button:hover{

    background:white;

    color:var(--green);

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#0d3024;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-column h3{

    font-size:34px;

    margin-bottom:20px;

}

.footer-column h4{

    color:var(--gold);

    margin-bottom:20px;

    font-size:20px;

}

.footer-column p{

    color:#d6d6d6;

    line-height:1.9;

    margin-bottom:12px;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#d6d6d6;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:var(--gold);

    padding-left:8px;

}

footer hr{

    margin:50px 0 30px;

    border:none;

    height:1px;

    background:rgba(255,255,255,.12);

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    color:#cfcfcf;

}

/* ==========================================
   WHATSAPP
========================================== */

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp-btn:hover{

    transform:scale(1.12);

}

.whatsapp-btn img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* ==========================================
   BACK TO TOP
========================================== */

#topBtn{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:white;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

    box-shadow:var(--shadow);

}

#topBtn.show{

    opacity:1;

    visibility:visible;

}

#topBtn:hover{

    background:var(--green);

}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--green);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold);

}

/* ==========================================
   TEXT SELECTION
========================================== */

::selection{

    background:var(--gold);

    color:white;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1100px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.newsletter-content h2{

font-size:34px;

}

.newsletter-form{

flex-direction:column;

align-items:center;

}

.newsletter-form input{

width:100%;

max-width:100%;

}

.newsletter-form button{

width:100%;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.whatsapp-btn{

right:15px;

bottom:15px;

width:55px;

height:55px;

}

#topBtn{

left:15px;

bottom:15px;

width:48px;

height:48px;

}

}
/* ==========================================
   GLOBAL IMAGE EFFECTS
========================================== */

.destination-card img,
.package-card img,
.gallery-item img{

    will-change:transform;

}

/* ==========================================
   BUTTON ANIMATIONS
========================================== */

.primary-btn,
.secondary-btn,
.nav-btn,
.package-btn,
.newsletter-form button,
.contact-form button{

    transition:all .35s ease;

}

.primary-btn:hover,
.nav-btn:hover,
.package-btn:hover,
.newsletter-form button:hover,
.contact-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.secondary-btn:hover{

    transform:translateY(-3px);

}

/* ==========================================
   CARD ANIMATION
========================================== */

.service-card,
.destination-card,
.package-card,
.why-card,
.testimonial-card,
.gallery-item,
.faq-item{

    transition:all .35s ease;

}

.service-card:hover,
.destination-card:hover,
.package-card:hover,
.why-card:hover,
.testimonial-card:hover,
.gallery-item:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

/* ==========================================
   INPUT PLACEHOLDER
========================================== */

input::placeholder,
textarea::placeholder{

    color:#999;

}

/* ==========================================
   FOCUS STATES
========================================== */

button:focus,
input:focus,
textarea:focus,
select:focus{

    outline:none;

}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes zoomIn{

    from{

        transform:scale(.95);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

/* ==========================================
   HERO CONTENT
========================================== */

.hero-content h5{

    animation:fadeUp .8s ease;

}

.hero-content h1{

    animation:fadeUp 1s ease;

}

.hero-content p{

    animation:fadeUp 1.2s ease;

}

.hero-buttons{

    animation:fadeUp 1.4s ease;

}

/* ==========================================
   SECTION TITLES
========================================== */

.section-title{

    animation:fadeIn .8s ease;

}

/* ==========================================
   SHADOW HELPERS
========================================== */

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:20px;

}

/* ==========================================
   SPACING HELPERS
========================================== */

.mt-20{

    margin-top:20px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

/* ==========================================
   FLEX HELPERS
========================================== */

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

/* ==========================================
   GRID HELPERS
========================================== */

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* ==========================================
   RESPONSIVE HELPERS
========================================== */

@media(max-width:992px){

.grid-4{

grid-template-columns:repeat(2,1fr);

}

.grid-3{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.grid-2,
.grid-3,
.grid-4{

grid-template-columns:1fr;

}

.hero{

min-height:100vh;

}

.hero-content{

padding-top:80px;

}

.logo{

font-size:28px;

}

.navbar{

padding:18px 0;

}

}

/* ==========================================
   PERFORMANCE
========================================== */

img{

    user-select:none;

    -webkit-user-drag:none;

}

/* ==========================================
   END OF FILE
========================================== */