/* ========================= */
/* GLOBAL */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f7f5f0;
    color:#101828;
    overflow-x:hidden;

}

img{
    max-width:100%;
}

.container-custom{

    width:100%;
    max-width:1320px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;

}

.section-padding{
    padding:80px 0;
}

h1,h2,h3,h4,h5{

    font-family:'Playfair Display',serif;
    font-weight:700;

}

/* ========================= */
/* HEADER */
/* ========================= */

.main-header{

    position:fixed;
    top:0;
    width:100%;
    z-index:999;

    background:rgba(255,255,255,.82);
    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.header-flex{

    min-height:74px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.logo-text{

    font-size:28px;
    font-weight:700;
    text-decoration:none;

    font-family:'Playfair Display',serif;

}

.logo-green{
    color:#0d3b2e;
}

.logo-gold{
    color:#d4af37;
}

.desktop-nav ul{

    display:flex;
    list-style:none;
    gap:34px;

}

.desktop-nav a{

    text-decoration:none;
    color:#101828;
    font-weight:500;
    transition:.3s;

}

.desktop-nav a:hover{
    color:#d4af37;
}

.header-right{

    display:flex;
    align-items:center;
    gap:22px;

}

.header-phone{

    text-decoration:none;
    color:#0d3b2e;
    font-weight:600;

}

.btn-primary-custom{

    background:#0d3b2e;
    color:#fff;

    padding:14px 28px;

    border-radius:60px;

    text-decoration:none;
    font-weight:600;

    transition:.35s;

    display:inline-flex;
    align-items:center;
    justify-content:center;

}

.btn-primary-custom:hover{

    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);

}

.mobile-toggle{

    display:none;

    border:none;
    background:none;

    font-size:32px;

}

/* ========================= */
/* MOBILE MENU */
/* ========================= */

.mobile-menu{

    position:fixed;
    top:0;
    right:-100%;

    width:320px;
    height:100vh;

    background:#fff;

    z-index:9999;

    transition:.4s ease;

    padding:30px;

}

.mobile-menu.active{
    right:0;
}

.mobile-menu-top{

    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:40px;

}

.close-menu{

    border:none;
    background:none;

    font-size:22px;

}

.mobile-menu ul{

    list-style:none;
    padding:0;

}

.mobile-menu li{
    margin-bottom:24px;
}

.mobile-menu a{

    text-decoration:none;
    color:#101828;
    font-weight:600;

}

.mobile-btn-full{

    width:100%;
    margin-top:25px;

}

/* ========================= */
/* HERO */
/* ========================= */

.hero-section{

    min-height:88vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
    to right,
    rgba(0,0,0,.82),
    rgba(0,0,0,.45),
    rgba(0,0,0,.20)
    ),

    url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?q=80&w=1800');

    background-size:cover;
    background-position:center;

    padding-top:100px;

}

.hero-content{

    max-width:780px;

}

.hero-tagline{

    color:#d4af37;

    letter-spacing:4px;
    font-size:14px;
    font-weight:600;

}

.hero-content h1{

    font-size:72px;
    line-height:0.95;

    color:#fff;

    margin-top:20px;
    margin-bottom:28px;

}

.hero-content p{

    color:#fff;
    font-size:18px;
    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.btn-gold{

    background:#d4af37;
    color:#101828;

    padding:14px 26px;

    border-radius:60px;

    text-decoration:none;
    font-weight:700;

}

.btn-outline-light-custom{

    border:1px solid rgba(255,255,255,.5);

    color:#fff;

    padding:14px 26px;

    border-radius:60px;

    text-decoration:none;

    backdrop-filter:blur(12px);

}

.trust-bar{

    display:flex;
    gap:35px;

    margin-top:38px;

    flex-wrap:wrap;

    color:#fff;

    font-size:15px;

}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-section{
    background:#f7f5f0;
}

.about-grid{

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;

}

.section-mini-title{

    color:#0d3b2e;

    letter-spacing:4px;
    font-size:14px;
    font-weight:600;

}

.about-content h2{

    font-size:56px;
    line-height:1;

    margin-top:20px;
    margin-bottom:30px;

}

.about-content p{

    font-size:21px;
    line-height:1.9;

    color:#475467;

    margin-bottom:20px;

}

.about-buttons{

    display:flex;
    gap:18px;

    margin-top:35px;

    flex-wrap:wrap;

}

.btn-outline-dark-custom{

    border:2px solid #0d3b2e;

    color:#0d3b2e;

    padding:14px 28px;

    border-radius:60px;

    text-decoration:none;
    font-weight:600;

}

.stats-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;

}

.stat-card{

    background:#fff;

    border-radius:26px;

    padding:45px;

    box-shadow:0 10px 40px rgba(0,0,0,.05);

}

.stat-card h3{

    font-size:52px;
    color:#0d3b2e;

    margin-bottom:10px;

}

.stat-card p{

    color:#475467;
    font-size:18px;

}

/* ========================= */
/* MOBILE BOTTOM BAR */
/* ========================= */

.mobile-bottom-bar{

    position:fixed;
    bottom:0;
    left:0;

    width:100%;

    background:#fff;

    display:none;

    justify-content:space-around;
    align-items:center;

    padding:12px 10px;

    z-index:999;

    box-shadow:0 -5px 20px rgba(0,0,0,.08);

}

.mobile-bottom-bar a{

    text-decoration:none;
    color:#101828;

    font-size:14px;
    font-weight:600;

    display:flex;
    flex-direction:column;
    align-items:center;

}

.mobile-plan-btn{

    background:#0d3b2e;
    color:#fff !important;

    padding:12px 18px;

    border-radius:40px;

}

/* ========================= */
/* SECTION HEADINGS */
/* ========================= */

.section-heading-wrap{

    margin-bottom:60px;

}

.section-heading-between{

    display:flex;
    justify-content:space-between;
    gap:30px;
    align-items:end;

    margin-bottom:60px;

}

.section-main-title{

    font-size:54px;
    line-height:1;

    max-width:760px;

    margin-top:18px;

}

.section-subtext{

    font-size:20px;
    color:#475467;

    max-width:780px;

    margin-top:25px;

    line-height:1.8;

}

.custom-link-arrow{

    text-decoration:none;
    color:#0d3b2e;

    font-weight:600;

}

/* ========================= */
/* USP SECTION */
/* ========================= */

.usp-section{
    background:#f7f5f0;
}

.usp-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.usp-card{

    background:#fff;

    padding:30px;

    border-radius:22px;

    border:1px solid rgba(0,0,0,.05);

    transition:.35s;

}

.usp-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.usp-icon{

    width:68px;
    height:68px;

    border-radius:20px;

    background:#f2f4f7;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

}

.usp-icon i{

    font-size:28px;
    color:#0d3b2e;

}

.usp-icon-gold{
    background:#d4af37;
}

.usp-card h3{

    font-size:38px;
    line-height:1.2;

    margin-bottom:22px;

}

.usp-card p{

    font-size:18px;
    line-height:1.9;

    color:#475467;

}

/* ========================= */
/* PACKAGES SECTION */
/* ========================= */

.packages-section{
    background:#f7f5f0;
}

.packages-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.package-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    height:100%;

    display:flex;
    flex-direction:column;

}

.package-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.08);

}

.package-image{

    position:relative;
    overflow:hidden;

}

.package-image img{

    width:100%;
    height:260px;

    object-fit:cover;

    transition:1s;

}

.package-card:hover img{

    transform:scale(1.08);

}

.package-badge{

    position:absolute;
    top:20px;
    left:20px;

    background:#fff;

    padding:10px 18px;

    border-radius:60px;

    font-size:14px;
    font-weight:600;

}

.package-content{

    padding:26px;

    display:flex;
    flex-direction:column;

    flex:1;

}

.package-content h3{

    font-size:32px;
    line-height:1.15;

    margin-bottom:18px;

}

.package-duration{

    color:#475467;
    font-size:16px;

    margin-bottom:25px;

}

.package-features{

    list-style:none;
    padding:0;

    margin-bottom:35px;

}

.package-features li{

    margin-bottom:14px;

    position:relative;

    padding-left:24px;

    color:#475467;

}

.package-features li::before{

    content:'◆';

    position:absolute;
    left:0;
    top:0;

    color:#d4af37;
    font-size:12px;

}

.package-bottom{

    margin-top:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-top:1px solid rgba(0,0,0,.06);

    padding-top:28px;

}

.package-price span{

    font-size:13px;
    letter-spacing:2px;

    color:#667085;

}

.package-price h4{

    font-size:42px;
    color:#0d3b2e;

}

.package-price small{

    font-size:18px;
    color:#667085;

}

/* ========================= */
/* HOTELS SECTION */
/* ========================= */

.hotels-section{
    background:#f7f5f0;
}

.hotels-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.hotel-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

}

.hotel-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.08);

}

.hotel-image{

    position:relative;

}

.hotel-image img{

    width:100%;
    height:260px;

    object-fit:cover;

}

.hotel-tag{

    position:absolute;
    top:18px;
    left:18px;

    background:#0d3b2e;

    color:#d4af37;

    padding:10px 16px;

    border-radius:60px;

    font-size:13px;
    font-weight:700;

}

.hotel-content{

    padding:26px;

}

.hotel-top{

    display:flex;
    justify-content:space-between;
    gap:15px;

    margin-bottom:12px;

}

.hotel-top h3{

    font-size:30px;
    line-height:1.15;

}

.hotel-rating{

    color:#d4af37;
    font-weight:700;

    white-space:nowrap;

}

.hotel-location{

    color:#475467;

    margin-bottom:30px;

}

.hotel-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-top:1px solid rgba(0,0,0,.06);

    padding-top:24px;

}

.hotel-price span{

    font-size:13px;
    letter-spacing:2px;

    color:#667085;

}

.hotel-price h4{

    font-size:40px;
    color:#0d3b2e;

}

.hotel-price small{

    font-size:16px;
    color:#667085;

}

.hotel-link{

    color:#0d3b2e;
    text-decoration:none;

    font-weight:700;

}

/* ========================= */
/* TESTIMONIALS */
/* ========================= */

.testimonials-section{
    background:#f7f5f0;
}

.testimonials-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:30px;

    border-radius:22px;

    position:relative;

}

.testimonial-stars{

    color:#d4af37;

    font-size:22px;

    margin-bottom:25px;

}

.testimonial-text{

    font-size:19px;
    line-height:1.8;

    color:#101828;

    margin-bottom:40px;

}

.testimonial-user{

    border-top:1px solid rgba(0,0,0,.08);

    padding-top:28px;

}

.testimonial-user h4{

    font-size:24px;
    margin-bottom:8px;

}

.testimonial-user span{

    color:#667085;

}

/* ========================= */
/* FORM SECTION */
/* ========================= */

.form-section{
    background:#f7f5f0;
}

.form-grid{

    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:50px;

    align-items:start;

}

.form-subtext{

    font-size:20px;
    line-height:1.9;

    color:#475467;

    margin-top:25px;
    margin-bottom:40px;

}

.contact-info-wrap{

    display:flex;
    flex-direction:column;
    gap:24px;

}

.contact-info-item{

    display:flex;
    align-items:flex-start;
    gap:20px;

}

.contact-icon{

    width:60px;
    height:60px;

    border-radius:18px;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    color:#0d3b2e;

}

.contact-info-item span{

    color:#667085;
    display:block;

    margin-bottom:5px;

}

.contact-info-item h5{

    font-size:22px;

}

.form-card{

    background:#fff;

    border-radius:24px;

    padding:32px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.form-row-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;

}

.form-group-custom{

    margin-bottom:24px;

}

.form-group-custom label{

    display:block;

    margin-bottom:12px;

    font-size:13px;
    letter-spacing:2px;

    color:#344054;
    font-weight:600;

}

.form-control-custom{

    width:100%;

    height:54px;

    border:1px solid #d0d5dd;

    border-radius:18px;

    padding:0 20px;

    background:#fff;

    font-size:16px;

}

.textarea-custom{

    height:180px;

    padding-top:18px;

    resize:none;

}

.form-submit-btn{

    min-width:220px;
    height:60px;

    border:none;

    cursor:pointer;

}

/* ========================= */
/* FAQ SECTION */
/* ========================= */

.faq-section{
    background:#f7f5f0;
}

.faq-heading{

    max-width:900px;
    margin:auto;

    margin-bottom:70px;

}

.faq-wrap{

    max-width:900px;
    margin:auto;

}

.faq-item{

    border-bottom:1px solid rgba(0,0,0,.08);

    padding:28px 0;

}

.faq-question{

    width:100%;

    background:none;
    border:none;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:22px;
    font-weight:600;

    text-align:left;

    cursor:pointer;

    color:#101828;

}

.faq-answer{

    display:none;

    margin-top:22px;

    color:#667085;

    font-size:18px;
    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}

/* ========================= */
/* FOOTER */
/* ========================= */

.main-footer{

    background:#06281f;

    color:#fff;

    padding:65px 0 24px;

}

.footer-grid{

    display:grid;
    grid-template-columns:1.2fr .8fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    font-size:32px;

    text-decoration:none;

    font-family:'Playfair Display',serif;
    font-weight:700;

}

.logo-green-light{
    color:#fff;
}

.footer-about{

    margin-top:30px;

    color:rgba(255,255,255,.75);

    line-height:2;

    font-size:17px;

    max-width:420px;

}

.footer-contact{

    margin-top:30px;

    display:flex;
    flex-direction:column;
    gap:14px;

}

.footer-contact a{

    color:#fff;
    text-decoration:none;

}

.footer-title{

    font-size:24px;

    margin-bottom:28px;

}

.footer-links{

    list-style:none;
    padding:0;

}

.footer-links li{

    margin-bottom:16px;

}

.footer-links a{

    text-decoration:none;

    color:rgba(255,255,255,.75);

    transition:.3s;

}

.footer-links a:hover{

    color:#d4af37;

}

.footer-tags{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

}

.footer-tags a{

    border:1px solid rgba(255,255,255,.18);

    padding:12px 18px;

    border-radius:40px;

    color:#fff;

    text-decoration:none;

    font-size:14px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:70px;
    padding-top:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.7);

}

.footer-bottom-links{

    display:flex;
    gap:24px;

}

.footer-bottom-links a{

    color:rgba(255,255,255,.7);

    text-decoration:none;

}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1200px){

.section-main-title{

    font-size:48px;

}

.package-content h3,
.hotel-top h3{

    font-size:28px;

}

}

@media(max-width:991px){

.desktop-nav{
    display:none;
}

.desktop-btn{
    display:none;
}

.mobile-toggle{
    display:block;
}

.hero-content h1{
    font-size:60px;
}

.about-grid{
    grid-template-columns:1fr;
}

.about-content h2{
    font-size:48px;
}

.usp-grid,
.packages-grid,
.hotels-grid{

    grid-template-columns:1fr 1fr;

}

.section-heading-between{

    flex-direction:column;
    align-items:flex-start;

}

.testimonials-grid{

    grid-template-columns:1fr;

}

.form-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.section-padding{
    padding:60px 0;
}

.hero-section{
    min-height:92vh;
}

.hero-content h1{

    font-size:40px;

}

.hero-content p{

    font-size:18px;
    line-height:1.7;

}

.hero-buttons{
    flex-direction:column;
}

.btn-gold,
.btn-outline-light-custom{

    width:100%;
    text-align:center;

}

.about-content h2{

    font-size:38px;

}

.about-content p{

    font-size:17px;

}

.stats-grid{
    grid-template-columns:1fr;
}

.mobile-bottom-bar{
    display:flex;
}

body{
    padding-bottom:80px;
}

.usp-grid,
.packages-grid,
.hotels-grid{

    grid-template-columns:1fr;

}

.section-main-title{

    font-size:34px;

}

.section-subtext{

    font-size:17px;

}

.usp-card,
.package-content,
.hotel-content{

    padding:28px;

}

.package-content h3,
.hotel-top h3{

    font-size:28px;

}

.package-image img,
.hotel-image img{

    height:240px;

}

.package-bottom,
.hotel-bottom{

    flex-direction:column;
    align-items:flex-start;
    gap:20px;

}

.package-bottom .btn-primary-custom{

    width:100%;

}

.testimonial-card,
.form-card{

    padding:28px;

}

.testimonial-text{

    font-size:18px;

}

.form-row-grid{

    grid-template-columns:1fr;

}

.faq-question{

    font-size:20px;

}

.footer-grid{

    grid-template-columns:1fr;

}

.footer-bottom{

    flex-direction:column;
    gap:20px;

    text-align:center;

}

}