/*=========================================
    RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;
    color:#333;
    background:#ffffff;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}

/*=========================================
    COLORS
=========================================*/

:root{

    --primary:#d97706;
    --primary-dark:#b45309;
    --dark:#222;
    --light:#ffffff;
    --border:#eeeeee;
    --text:#555;
    --shadow:0 5px 20px rgba(0,0,0,.15);

}

/*=========================================
    DESKTOP TOP BAR
=========================================*/

.top-bar{

    display:none;

}

.top-left{

    display:flex;
    align-items:center;
    gap:20px;

}

.top-left a{

    color:#fff;
    font-size:16px;
    transition:.3s;

}

.top-left a:hover{

    color:#ffcc66;

}

.top-left span{

    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;

}

.top-right{

    display:flex;
    align-items:center;
    gap:20px;

}

.top-right a{

    color:#fff;
    transition:.3s;

}

.top-right a:hover{

    color:#ffcc66;

}

/*=========================================
    DESKTOP NAVIGATION
=========================================*/

.desktop-nav{

    display:none;

}

.desktop-logo img{

    width:95px;

}

.desktop-menu{

    display:flex;
    align-items:center;
    gap:35px;

}

.desktop-menu a{

    color:#333;
    font-size:17px;
    font-weight:600;
    transition:.3s;

}

.desktop-menu a:hover{

    color:var(--primary);

}

.book-btn{

    background:var(--primary);
    color:#fff !important;

    padding:12px 28px;

    border-radius:30px;

}

.book-btn:hover{

    background:var(--primary-dark);

}

/*=========================================
    MOBILE HEADER
=========================================*/

.logo-header{

    background:#fff;
    text-align:center;
    padding:20px;
    border-bottom:1px solid var(--border);

}

.logo-header img{

    width:95px;
    margin:auto;

}

.mobile-nav{

    background:var(--primary);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 20px;

    color:#fff;

}

.search-box{

    display:flex;
    align-items:center;
    gap:10px;

}

.search-box i{

    font-size:22px;

}

.search-box span{

    font-size:17px;

}

.menu-btn{

    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;

}

.menu-btn i{

    font-size:34px;

}

.menu-btn span{

    font-size:18px;
    font-weight:bold;

}

/*=========================================
    DRAWER
=========================================*/

.drawer{

    position:fixed;

    top:0;

    left:-90%;

    width:90%;

    height:100vh;

    background:#fff;

    transition:left .35s ease;

    z-index:9999;

    overflow-y:auto;

    box-shadow:var(--shadow);

}

.drawer.active{

    left:0;

}

.drawer-header{

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

    font-size:22px;

    font-weight:bold;

}

.drawer-header i{

    cursor:pointer;
    font-size:28px;

}

.drawer a{

    display:block;

    padding:12px 25px;

    color:#333;

    border-bottom:1px solid var(--border);

    transition:.3s;

}

.drawer a:hover{

    color:var(--primary);

    padding-left:35px;

    background:#fafafa;

}

.divider{

    height:10px;
    background:#f7f7f7;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);

}

/*=========================================
    DRAWER CONTACT
=========================================*/

.drawer-contact{

    padding:25px;

}

.drawer-contact p{

    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:12px;

    color:#555;

    font-size:14px;

}

.drawer-contact i{

    color:var(--primary);
    width:20px;

}

/*=========================================
    DRAWER SOCIAL
=========================================*/

.drawer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    padding:25px;

}

.drawer-social a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:#f3f3f3;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:20px;

    transition:.3s;

}

.drawer-social a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/*=========================================
    OVERLAY
=========================================*/

.overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.overlay.active{

    opacity:1;

    visibility:visible;

}

/*=========================================
    HERO
=========================================*/

.hero{

height:780px;
background:url("../../assets/background.jpg") center center/cover no-repeat fixed;

    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
    padding-right:60px;
    position:relative;
}

.about-gallery{
    padding:55px 60px;
    background:#ffffff;
}

.about-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.about-left{
    flex:1;
}

.about-left h2{
    font-size:34px;
    margin-bottom:12px;
    color:#222;
}

.about-left p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}

.about-right{
    width:420px;
}

.gallery-section{
    width:100%;
}

.gallery-header h2{
    font-size:26px;
    text-align:center;
    color:#222;
    margin-bottom:12px;
}


.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
}

.gallery-item{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    display:block;
}

.gallery-item img{
    width:100%;
    height:120px;
    object-fit:cover;
    display:block;
    transform:scale(1);
    transition:.25s;
}

/*=========================================
    ARCHIVE (small frames for About right side)
=========================================*/

.archive-section{ 
    width:100%;
}

.archive-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
}

.archive-item{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    display:block;
}

.archive-item img{
    width:100%;
    height:85px;
    object-fit:cover;
    display:block;
    transform:scale(1);
    transition:.25s;
}

.archive-item:hover img{
    transform:scale(1.05);
}

.about-right .archive-header h2{
    font-size:18px;
    margin-bottom:12px;
    color:#222;
}


.gallery-item:hover img{
    transform:scale(1.05);
}


.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.10) 55%, rgba(0,0,0,.00) 70%);
    pointer-events:none;
}

.hero-content{

    background:transparent;
    padding:0;
    border-radius:0;
    text-align:center;
    color:#fff;
    z-index:1;
}

.hero-form-card{
    position:relative;
    z-index:2;
    width:360px;
background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.22);
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    padding:18px;
    backdrop-filter: blur(8px);

}



.hero-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hero-form .field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.hero-form label{
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.2px;
}

.hero-form select{
    height:44px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.35);
    background:rgba(0,0,0,.25);
    color:#fff;
    padding:0 12px;
    outline:none;
}

.hero-form select option{
    color:#333;
}

.field-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.field-value{
    color:#fff;
    font-size:14px;
    font-weight:800;
}

.range{
    width:100%;
    accent-color:var(--primary);
}

.range-scale{
    display:flex;
    justify-content:space-between;
    color:rgba(255,255,255,.75);
    font-size:12px;
    margin-top:-2px;
}

.hero-form-btn{
    margin-top:2px;
    height:46px;
    border:none;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
    font-weight:900;
    cursor:pointer;
    transition:.25s;
}

.hero-form-btn:hover{
    background:var(--primary-dark);
}


/* If hero text is removed, avoid leaving an empty “card” area */
.hero-content[aria-hidden="true"]{

    display:none;

}

.hero-content h1{

    font-size:48px;

    margin-bottom:20px;

}

.hero-content p{

    font-size:20px;

    line-height:1.7;

}

/*=========================================
    STICKY HEADER
=========================================*/

header{

    position:sticky;

    top:0;

    z-index:999;

}

/*=========================================
    DESKTOP
=========================================*/

@media(min-width:992px){

/* Hide Mobile */

.logo-header,
.mobile-nav,
.drawer,
.overlay{

    display:none;

}

/* Top Bar */

.top-bar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#222;

    color:#fff;

    padding:12px 60px;

}

/* Navigation */

.desktop-nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fff;

    padding:18px 60px;

    box-shadow:0 2px 12px rgba(0,0,0,.08);

}

/* Fixed Navigation */

.desktop-nav{

    position:sticky;

    top:0;

    z-index:999;

}

.desktop-menu{

    margin-left:auto;

}

.desktop-menu a{

    padding:10px 0;

    position:relative;

}

/* Underline Hover */

.desktop-menu a:not(.book-btn)::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:3px;

    background:var(--primary);

    transition:.3s;

}

.desktop-menu a:not(.book-btn):hover::after{

    width:100%;

}

.book-btn{

    margin-left:20px;

}

/* Hero */

.hero{

    height:700px;

}

}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

.hero{

    height:500px;

    justify-content:center;

    padding-right:0;

    padding-top:30px;

}

.hero-content{

    width:90%;

    padding:35px;

}

.hero-form-card{

    margin:0 0 30px;

}

.hero-content h1{

    font-size:34px;

}

.hero-content p{

    font-size:18px;

}

.about-inner{
    flex-direction:column;
}

.about-right{
    width:100%;
}

}



/*=========================================
    SMALL PHONES
=========================================*/

/*=========================================
    SITE FOOTER
=========================================*/

.site-footer{
    padding:40px 60px;
    background:var(--primary);
    color:#fff;
    margin-top:10px;
}


.footer-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.footer-col{
    flex:1;
}

.footer-col--left{ flex:0.9; }
.footer-col--middle{ flex:1.2; }
.footer-col--right{ flex:0.8; }

.site-footer h3{
    font-size:18px;
    margin-bottom:14px;
}

.footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:12px;
    color:rgba(255,255,255,.9);
    font-size:14px;
    line-height:1.5;
}

.footer-contact i{
    color:#ffffff;
    width:20px;
    margin-top:2px;
}


.footer-map iframe{
    width:100%;
    height:190px;
    border:0;
    border-radius:12px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{ margin-bottom:10px; }

.footer-links a{
    color:rgba(255,255,255,.92);
    font-weight:600;
    transition:.25s;
}

.footer-links a:hover{ color:#1d4ed8; }

@media(max-width:991px){
    .footer-inner{ flex-direction:column; }
    .footer-map iframe{ height:220px; }
}

.footer-bottom{
    margin-top:28px;
    background:#ffffff;
    padding:18px 0 10px;
}



.footer-divider{
    height:1px;
    background:rgba(255,255,255,.35);
    max-width:1100px;
    margin:0 auto 14px;
}

.footer-copyright{
    text-align:center;
    color:#666;
    font-weight:700;
    font-size:13px;
}





/* Testimonials (desktop/tablet and mobile) */
.testimonials-section{
    padding:55px 60px;
    background:#ffffff;
}

.testimonials-inner{
    max-width:1100px;
    margin:0 auto;
}

.testimonials-header h2{
    font-size:26px;
    text-align:center;
    color:#222;
    margin-bottom:18px;
}

.testimonials-arrows{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1100px;
    margin:0 auto 18px;
}

.testimonial-arrow{
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:rgba(217,119,6,.12);
    color:var(--primary);
    font-size:28px;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.25s;
}

.testimonial-arrow:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-2px);
}


.testimonials-row{
    display:flex;
    flex-direction:row;
    align-items:stretch;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
}

.testimonials-row::-webkit-scrollbar{ height:8px; }
.testimonials-row::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.15); border-radius:999px; }

.testimonial-card{
    flex:0 0 320px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:18px 18px 16px;
    scroll-snap-align:start;
}

.testimonial-profile{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.testimonial-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    object-fit:cover;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    color:#444;
}

.testimonial-avatar--letter{ font-size:16px; }
.testimonial-name{ font-weight:800; color:#222; }

.testimonial-rating{
    display:flex;
    gap:6px;
    margin-bottom:10px;
}

.testimonial-star{ color:#f59e0b; }
.testimonial-comment{ color:#555; font-size:14px; line-height:1.7; }

@media(max-width:576px){

/* Testimonials (base) */
.testimonials-section{
    padding:55px 60px;
    background:#ffffff;
}

.testimonials-inner{
    max-width:1100px;
    margin:0 auto;
}

.testimonials-header h2{
    font-size:22px;
    color:#222;
    margin-bottom:18px;
}

.testimonials-row{
    display:flex;
    flex-direction:row;
    align-items:stretch;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
}

.testimonials-row::-webkit-scrollbar{ height:8px; }
.testimonials-row::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.15); border-radius:999px; }

.testimonial-card{
    flex:0 0 320px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:18px 18px 16px;
    scroll-snap-align:start;
}

.testimonial-profile{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.testimonial-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    object-fit:cover;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    color:#444;
}

.testimonial-avatar--letter{ font-size:16px; }
.testimonial-name{ font-weight:800; color:#222; }

.testimonial-rating{
    display:flex;
    gap:6px;
    margin-bottom:10px;
}

.testimonial-star{ color:#f59e0b; }

.testimonial-comment{
    color:#555;
    font-size:14px;
    line-height:1.7;
}


/* =========================================
    TESTIMONIALS
=========================================*/

.testimonials-section{
    padding:55px 60px;
    background:#ffffff;
}

.testimonials-inner{
    max-width:1100px;
    margin:0 auto;
}

.testimonials-header h2{
    font-size:22px;
    color:#222;
    margin-bottom:18px;
}

.testimonials-row{
    display:flex;
    flex-direction:row;
    align-items:stretch;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
}

.testimonials-row::-webkit-scrollbar{
    height:8px;
}

.testimonials-row::-webkit-scrollbar-thumb{
    background:rgba(0,0,0,.15);
    border-radius:999px;
}

.testimonial-card{
    flex:0 0 320px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:18px 18px 16px;
    scroll-snap-align:start;
}

.testimonial-profile{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.testimonial-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    object-fit:cover;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    color:#444;
}

.testimonial-avatar--letter{
    font-size:16px;
}

.testimonial-name{
    font-weight:800;
    color:#222;
}

.testimonial-rating{
    display:flex;
    gap:6px;
    margin-bottom:10px;
}

.testimonial-comment{
    color:#555;
    font-size:14px;
    line-height:1.7;
}


.logo-header img{

    width:80px;

}

.mobile-nav{

    padding:14px 15px;

}

.search-box span{

    font-size:15px;

}

.menu-btn span{

    font-size:16px;

}

.menu-btn i{

    font-size:30px;

}

.drawer{

    width:90%;

    left:-90%;

}

.hero-content{

    padding:25px;

}

.hero-content h1{

    font-size:28px;

}

.hero-content p{

    font-size:16px;

}

}

/*=========================================
    PACKAGE DETAILS PAGE
=========================================*/

.package-details-page{
    background:#f8fafc;
    color:#1f2937;
    min-height:100vh;
}

.package-hero{
    width:100%;
    max-height:460px;
    overflow:hidden;
    background:#111827;
}

.package-hero img{
    width:100%;
    height:460px;
    object-fit:cover;
}

.package-content{
    padding:40px 20px 20px;
}

.package-layout{
    max-width:1250px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:24px;
    align-items:start;
}

.package-content-inner{
    max-width:1000px;
    margin:0 auto;
    width:100%;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    padding:26px;
}

.package-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:16px;
    margin-bottom:8px;
}

.package-content h1{
    font-size:36px;
    color:#111827;
    margin-bottom:10px;
}

.package-book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#d97706;
    color:#fff;
    font-weight:800;
    border-radius:10px;
    padding:12px 18px;
    white-space:nowrap;
    transition:background .2s, transform .2s;
}

.package-book-btn:hover{
    background:#b45309;
    transform:translateY(-1px);
}

.package-category{
    display:inline-block;
    background:#fff7ed;
    color:#9a3412;
    border:1px solid #fed7aa;
    font-size:14px;
    font-weight:700;
    border-radius:999px;
    padding:7px 14px;
    margin-bottom:18px;
}

.package-section{
    border-top:1px solid #f1f5f9;
    padding:18px 0;
}

.package-section:first-of-type{
    border-top:none;
    padding-top:0;
}

.package-section h2{
    font-size:22px;
    color:#111827;
    margin-bottom:10px;
}

.package-section p{
    color:#475569;
    line-height:1.8;
    font-size:16px;
}

.package-section ul{
    margin-left:20px;
    color:#475569;
    line-height:1.8;
    font-size:16px;
}

.itinerary-accordion{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.itinerary-day{
    border:1px solid #e5e7eb;
    border-radius:10px;
    background:#f8fafc;
    overflow:hidden;
}

.itinerary-day summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 16px;
    font-weight:700;
    color:#111827;
    user-select:none;
}

.itinerary-day summary::-webkit-details-marker{
    display:none;
}

.itinerary-day-title{
    font-size:15px;
}

.itinerary-toggle-indicator{
    width:24px;
    height:24px;
    border-radius:50%;
    background:#fff;
    border:1px solid #d1d5db;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    color:#d97706;
    font-weight:700;
    flex-shrink:0;
}

.itinerary-day[open] .itinerary-toggle-indicator{
    content:"−";
}

.itinerary-day[open] .itinerary-toggle-indicator::before{
    content:"−";
}

.itinerary-day:not([open]) .itinerary-toggle-indicator::before{
    content:"+";
}

.itinerary-day-content{
    border-top:1px solid #e5e7eb;
    background:#ffffff;
    padding:12px 16px 14px;
}

.itinerary-day-content p{
    margin:0;
    font-size:15px;
    color:#475569;
    line-height:1.75;
}

.package-inquiry{
    padding:20px 20px 50px;
}

.package-inquiry h2{
    font-size:26px;
    color:#111827;
    margin-bottom:10px;
}

.package-inquiry-name{
    font-size:16px;
    color:#374151;
    margin-bottom:18px;
}

.inquiry-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    font-size:14px;
    font-weight:700;
    color:#111827;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:10px;
    padding:12px 14px;
    font-size:15px;
    color:#111827;
    background:#fff;
    outline:none;
    transition:border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#d97706;
    box-shadow:0 0 0 3px rgba(217,119,6,.15);
}

.form-group textarea{
    resize:vertical;
    min-height:140px;
}

.form-group:nth-child(8),
.inquiry-form .inquiry-submit-btn{
    grid-column:1 / -1;
}

.inquiry-submit-btn{
    border:none;
    background:#d97706;
    color:#fff;
    font-weight:800;
    border-radius:10px;
    height:48px;
    cursor:pointer;
    transition:background .2s, transform .2s;
}

.inquiry-submit-btn:hover{
    background:#b45309;
    transform:translateY(-1px);
}

.featured-trips{
    position:sticky;
    top:20px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    padding:18px;
}

.featured-trips--mobile{
    display:none;
}

.featured-trips h3{
    font-size:20px;
    color:#111827;
    margin-bottom:14px;
}

.featured-trip-card{
    display:block;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    margin-bottom:14px;
    transition:transform .2s, box-shadow .2s, border-color .2s;
}

.featured-trip-card:last-child{
    margin-bottom:0;
}

.featured-trip-card:hover{
    transform:translateY(-2px);
    border-color:#fed7aa;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.featured-trip-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.featured-trip-body{
    padding:12px;
}

.featured-trip-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:6px;
}

.featured-trip-body h4{
    font-size:16px;
    color:#111827;
    margin:0;
}

.featured-trip-link{
    font-size:13px;
    font-weight:700;
    color:#d97706;
    white-space:nowrap;
}

.featured-trip-body p{
    font-size:14px;
    line-height:1.6;
    color:#475569;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

@media(max-width:1024px){
    .package-layout{
        display:block;
    }

    .featured-trips{
        display:none;
    }

    .package-inquiry .featured-trips{
        display:block;
        position:static;
        margin-top:20px;
    }
}

@media(max-width:768px){
    .package-hero img{
        height:300px;
    }

    .package-title-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .package-content h1{
        font-size:30px;
    }

    .inquiry-form{
        grid-template-columns:1fr;
    }

    .form-group:nth-child(8),
    .inquiry-form .inquiry-submit-btn{
        grid-column:auto;
    }
}

/*=========================================
    BOOKING PAGE FORM (styled to match site)
=========================================*/

.booking-page{
    background:#f8fafc;
    min-height:60vh;
}

.booking-hero{
    padding:40px 20px 10px;
}

.booking-inner{
    max-width:920px;
    margin:0 auto;
}

.booking-header{
    margin-bottom:18px;
    padding:18px 18px 0;
}

.booking-header h1{
    font-size:30px;
    color:#111827;
    margin-bottom:8px;
}

.booking-amount{
    color:#475569;
    font-size:16px;
}

.booking-form{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    padding:22px;
}

.booking-error{
    color:#b91c1c;
    background:rgba(185,28,28,.08);
    border:1px solid rgba(185,28,28,.18);
    border-radius:10px;
    padding:12px 14px;
    margin-bottom:16px;
    font-weight:700;
}

.booking-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    align-items:start;
}

.form-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-field label{
    font-size:14px;
    font-weight:700;
    color:#111827;
}

.form-field input{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:10px;
    padding:12px 14px;
    font-size:15px;
    color:#111827;
    background:#fff;
    outline:none;
    transition:border-color .2s, box-shadow .2s;
}

.form-field input:focus{
    border-color:#d97706;
    box-shadow:0 0 0 3px rgba(217,119,6,.15);
}

.booking-date{
    grid-column:1 / -1;
}

.form-field--full{
    grid-column:1 / -1;
}

.booking-checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    cursor:pointer;
    user-select:none;
    font-weight:700;
    color:#374151;
}

.booking-checkbox input{
    width:18px;
    height:18px;
    margin-top:3px;
    accent-color:#d97706;
}

.form-actions{
    display:flex;
    justify-content:flex-end;
    padding-top:4px;
}

.booking-submit{
    border:none;
    background:#d97706;
    color:#fff;
    font-weight:900;
    border-radius:10px;
    height:48px;
    cursor:pointer;
    padding:0 22px;
    transition:background .2s, transform .2s;
    font-size:15px;
    min-width:240px;
}

.booking-submit:hover{
    background:#b45309;
    transform:translateY(-1px);
}

/* Header-like look for the booking block (professional header section) */
.booking-header{
    background:linear-gradient(135deg, rgba(217,119,6,.12), rgba(217,119,6,.04));
    border:1px solid rgba(217,119,6,.18);
    border-radius:14px;
    padding:18px 18px;
}

.booking-header .booking-amount{
    margin-top:6px;
}

.booking-form{
    margin-top:14px;
}

.booking-checkbox span{
    line-height:1.4;
}

@media(max-width:768px){
    .booking-hero{ padding:28px 16px 10px; }
    .booking-header{ padding:0 0 14px; }
    .booking-header h1{ font-size:26px; }
    .booking-grid{ grid-template-columns:1fr; }
    .booking-date{ grid-column:auto; }
    .form-actions{ justify-content:stretch; }
    .booking-submit{ width:100%; min-width:0; }
}





