/* ===================================================================
   Packages UI — Premium overrides
   Covers: packages-types-list, packages-types, packages-list,
           packages-search.  Loaded after app.bundle.
   =================================================================== */

/* ── Shared background ───────────────────────────────────────────── */
.sidebar.prt-blog { background: #f7f5f2 !important; padding: 48px 0; }

/* ══════════════════════════════════════════════════════════════════
   1. PACKAGES TYPE LIST — category cards (/packages-types-list)
   ══════════════════════════════════════════════════════════════════ */

.pkg-types-section {
    background: #f7f5f2;
    padding: 56px 0 48px;
}

/* Section header */
.pkg-types-header {
    text-align: center;
    margin-bottom: 40px;
}
.pkg-types-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #987230;
    margin-bottom: 10px;
}
.pkg-types-heading {
    font-size: 34px;
    font-weight: 700;
    color: #281d0a;
    line-height: 1.25;
    margin: 0;
}
.pkg-types-heading span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #987230;
}

/* Grid spacing */
.pkg-types-grid { gap: 0; }
.pkg-type-col { margin-bottom: 26px; padding: 0 13px; }

/* Card */
.pkg-type-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(40,29,10,0.1);
    transition: box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
}
.pkg-type-card:hover {
    box-shadow: 0 14px 42px rgba(40,29,10,0.18);
    transform: translateY(-5px);
}

/* Image */
.pkg-type-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.pkg-type-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pkg-type-card:hover .pkg-type-img img { transform: scale(1.07); }

/* Gradient overlay */
.pkg-type-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20,14,4,0.82) 0%,
        rgba(20,14,4,0.25) 45%,
        transparent 75%
    );
    transition: opacity 0.3s;
}
.pkg-type-card:hover .pkg-type-overlay { opacity: 0.9; }

/* Text body */
.pkg-type-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px 22px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}
.pkg-type-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.pkg-type-cta {
    font-size: 11.5px;
    font-weight: 700;
    color: #987230;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(152,114,48,0.5);
    border-radius: 20px;
    padding: 5px 13px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.pkg-type-card:hover .pkg-type-cta {
    background: #987230;
    color: #fff;
    border-color: #987230;
}

/* Mobile */
@media (max-width: 575px) {
    .pkg-types-heading { font-size: 26px; }
    .pkg-type-col { padding: 0 10px; margin-bottom: 18px; }
    .pkg-type-title { font-size: 15px !important; }
}

/* ══════════════════════════════════════════════════════════════════
   HOMEPAGE SLIDER — pkg-type-card inside Slick
   ══════════════════════════════════════════════════════════════════ */

/* Give each slide some horizontal breathing room */
.pkg-home-slider .pkg-slide-item { padding: 0 8px; }

/* Card in slider context — slightly shorter aspect ratio */
.pkg-home-slider .pkg-type-img {
    aspect-ratio: 3 / 2;
}

/* Arrow space — overflow visible so -23px positioned arrows show */
.pkg-home-slider { overflow: visible !important; }
.pkg-home-slider .slick-list { overflow: hidden !important; }

/* Smaller title & cta for the tighter 4-col grid */
.pkg-home-slider .pkg-type-title { font-size: 14px !important; }
.pkg-home-slider .pkg-type-cta {
    font-size: 10.5px;
    padding: 4px 11px;
}
.pkg-home-slider .pkg-type-body { padding: 16px 16px 14px; }

/* ══════════════════════════════════════════════════════════════════
   HOMEPAGE — "Explore Packages" section
   ══════════════════════════════════════════════════════════════════ */

.hp-packages-section {
    background: #f7f5f2;
    padding: 60px 0 56px;
}

/* Section header */
.hp-section-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.hp-section-label {
    width: 100%;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #987230;
    margin: 0;
}
.hp-section-heading {
    font-size: 30px;
    font-weight: 700;
    color: #281d0a;
    margin: 0;
    flex: 1;
    line-height: 1.25;
}
.hp-section-heading span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #987230;
}
.hp-view-all {
    font-size: 13px;
    font-weight: 600;
    color: #987230;
    border: 1.5px solid #987230;
    border-radius: 24px;
    padding: 8px 20px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.hp-view-all:hover {
    background: #987230;
    color: #fff;
}
.hp-view-all .fa { margin-left: 5px; font-size: 11px; }

/* Slider */
.hp-pkg-slider { overflow: visible !important; }
.hp-pkg-slider .slick-list { overflow: hidden !important; }
.hp-pkg-slide { padding: 0 10px; }

/* Card */
.hp-pkg-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(40,29,10,0.08);
    border: 1px solid rgba(40,29,10,0.05);
    transition: box-shadow 0.28s, transform 0.28s;
}
.hp-pkg-card:hover {
    box-shadow: 0 12px 40px rgba(40,29,10,0.15);
    transform: translateY(-5px);
}

/* Image */
.hp-pkg-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.hp-pkg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.48s ease;
}
.hp-pkg-card:hover .hp-pkg-img-wrap img { transform: scale(1.06); }

.hp-pkg-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,14,4,0.45) 0%, transparent 55%);
}

/* Duration pill on image */
.hp-pkg-duration {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(20,14,4,0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    letter-spacing: 0.3px;
}
.hp-pkg-duration .fa { color: #987230; margin-right: 4px; }

/* Card body */
.hp-pkg-body { padding: 18px 20px 16px; }

/* Stars */
.hp-pkg-stars { margin-bottom: 6px; }
.hp-pkg-stars .fa { color: #987230; font-size: 12px; margin-right: 1px; }

/* Title */
.hp-pkg-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-pkg-title a {
    color: #281d0a;
    transition: color 0.2s;
}
.hp-pkg-title a:hover { color: #987230; }

/* Description */
.hp-pkg-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.65;
    margin-bottom: 14px;
}

/* Footer — price + button */
.hp-pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #f5f0ea;
    padding-top: 12px;
}
.hp-pkg-price { line-height: 1.2; }
.hp-pkg-price-curr {
    font-size: 18px;
    font-weight: 700;
    color: #987230;
}
.hp-pkg-price-curr .fa { font-size: 13px; }
.hp-pkg-price-orig {
    font-size: 12px;
    color: #bbb;
    margin-left: 5px;
    font-weight: 400;
}
.hp-pkg-price small {
    display: block;
    font-size: 10px;
    color: #aaa;
    margin-top: 1px;
}

/* CTA button */
.hp-pkg-btn {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #987230;
    border-radius: 22px;
    padding: 8px 18px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(152,114,48,0.28);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.hp-pkg-btn:hover {
    background: #7a5a22;
    box-shadow: 0 5px 18px rgba(152,114,48,0.4);
    transform: translateY(-1px);
    color: #fff;
}
.hp-pkg-btn .fa { margin-left: 5px; font-size: 11px; }

@media (max-width: 575px) {
    .hp-section-heading { font-size: 22px; }
    .hp-pkg-slide { padding: 0 6px; }
    .hp-pkg-price-curr { font-size: 15px; }
}

/* ══════════════════════════════════════════════════════════════════
   2. PACKAGES TYPES — destination cards (/packages-type/slug)
   ══════════════════════════════════════════════════════════════════ */

.featured-imagebox-services.style2 {
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.featured-imagebox-services.style2 .prt-box-view-overlay { position: relative; }
.featured-imagebox-services.style2 .featured-thumbnail { overflow: hidden; }
.featured-imagebox-services.style2 .featured-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

/* Destination info overlay */
.featured-imagebox-services.style2 .featured-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(40,29,10,0.72) 0%, transparent 100%);
}
.featured-imagebox-services.style2 .featured-desc p {
    font-size: 10.5px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 2px;
    font-weight: 500;
}
.featured-imagebox-services.style2 .featured-title h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin: 0;
}
.featured-imagebox-services.style2 .featured-title h3 a {
    color: #fff !important;
    transition: color 0.2s;
}
.featured-imagebox-services.style2 .featured-title h3 a:hover { color: #f0d080 !important; }

/* Hover image zoom */
.col-lg-3.col-md-6.my-15:hover .featured-imagebox-services.style2 .featured-thumbnail img {
    transform: scale(1.06);
}

/* .det info card below image */
.det {
    background: #fff;
    border-radius: 0 0 14px 14px;
    padding: 14px 18px 18px;
    box-shadow: 0 6px 20px rgba(40,29,10,0.09);
    border: 1px solid rgba(40,29,10,0.05);
    border-top: none;
    margin-bottom: 6px;
    transition: box-shadow 0.25s;
}
.col-lg-3.col-md-6.my-15:hover .det {
    box-shadow: 0 12px 32px rgba(40,29,10,0.14);
}
.det .row { align-items: flex-start; }
.det h2 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #281d0a;
    margin-bottom: 3px;
    line-height: 1.3;
}
.det h2 a { color: #281d0a; transition: color 0.2s; }
.det h2 a:hover { color: #987230; }
.det h3 {
    font-size: 12px !important;
    color: #987230 !important;
    font-weight: 600 !important;
    margin: 0;
}
.det h5 {
    font-size: 10px !important;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
    font-weight: 500 !important;
}
.det h4 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #987230;
    margin: 0;
}
.det h4 .fa-inr { font-size: 13px; }

/* ══════════════════════════════════════════════════════════════════
   3. PACKAGE CARDS — shared by packages-list + packages-search
   ══════════════════════════════════════════════════════════════════ */

/* Image column — col-sm-4 becomes a flex column so the wrap fills it */
.featured-imagebox-blog.style4 .row > .col-sm-4 {
    display: flex;
    flex-direction: column;
}
.pkg-list-img-wrap {
    position: relative;
    flex: 1;
    min-height: 220px;
    overflow: hidden;
}
/* img is absolute so its size follows the wrap (which is sized by flex) */
.pkg-list-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.featured-imagebox-blog.style4:hover .pkg-list-img { transform: scale(1.05); }
.pkg-list-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,14,4,0.6) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}
.pkg-list-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}
.pkg-list-duration {
    background: rgba(20,14,4,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    white-space: nowrap;
}
.pkg-list-duration .fa { color: #987230; margin-right: 4px; }
.pkg-list-customizable {
    background: rgba(152,114,48,0.92);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
@media (max-width: 575px) {
    .pkg-list-img-wrap { min-height: 200px; }
}

/* Card wrapper */
.featured-imagebox-blog.style4 {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(40,29,10,0.07);
    margin-bottom: 22px;
    transition: box-shadow 0.25s, transform 0.25s;
    border: 1px solid rgba(40,29,10,0.05);
}
.featured-imagebox-blog.style4:hover {
    box-shadow: 0 10px 34px rgba(40,29,10,0.13);
    transform: translateY(-3px);
}

/* Image column */
.packimgmbl,
.mblimgesss { min-height: 220px; }

.featured-imagebox-blog.style4 .prt-col-wrapper-bg-layer {
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.45s ease;
}
.featured-imagebox-blog.style4:hover .prt-col-wrapper-bg-layer { transform: scale(1.05); }

/* Duration badge */
.featured-imagebox-blog.style4 .prt-box-post-date {
    background: rgba(40,29,10,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.15);
}
.featured-imagebox-blog.style4 .prt-box-post-date span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.3;
    white-space: nowrap;
}
.featured-imagebox-blog.style4 .prt-box-post-date label {
    font-size: 10px;
    color: #987230;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    cursor: default;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

/* Content panel */
.featured-imagebox-blog.style4 .featured-content { padding: 18px 22px 16px; }

/* Package title */
.featured-imagebox-blog.style4 .contentsspack h2,
.featured-imagebox-blog.style4 .featured-title.contentsspack h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4;
    margin-bottom: 6px;
}
.featured-imagebox-blog.style4 .contentsspack h2 a,
.featured-imagebox-blog.style4 .featured-title.contentsspack h2 a {
    color: #281d0a;
    transition: color 0.2s;
}
.featured-imagebox-blog.style4 .contentsspack h2 a:hover { color: #987230; }

/* Star rating */
.featured-imagebox-blog.style4 .rating .fa-star { color: #987230; font-size: 13px; }
.featured-imagebox-blog.style4 .rating .fa-star.checked { color: #987230; }

/* Price block */
.featured-imagebox-blog.style4 .fontssamut h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #281d0a;
    margin-bottom: 2px;
    line-height: 1.4;
}
.featured-imagebox-blog.style4 .fontssamut #packageprice,
.featured-imagebox-blog.style4 .fontssamut span[id="packageprice"] {
    font-size: 18px !important;
    color: #987230 !important;
    font-weight: 700;
}
.featured-imagebox-blog.style4 .fontssamut del {
    font-size: 12px;
    color: #bbb;
    font-weight: 400;
}
.featured-imagebox-blog.style4 .fontssamut span:not([id]) {
    font-size: 10.5px;
    color: #aaa;
    display: block;
    margin-top: 2px;
}

/* Icon itinerary pills */
.featured-imagebox-blog.style4 .itnry {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 10px 0 8px;
}
.featured-imagebox-blog.style4 .itnry li {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f7f5f2;
    border-radius: 20px;
    padding: 4px 10px 4px 7px;
    font-size: 11.5px;
    color: #555;
    font-weight: 500;
    border: 1px solid #ede8e0;
    transition: background 0.2s, color 0.2s;
}
.featured-imagebox-blog.style4 .itnry li:hover,
.featured-imagebox-blog.style4 .itnry li.active {
    background: #987230;
    color: #fff;
    border-color: #987230;
}
.featured-imagebox-blog.style4 .itnry li figure {
    margin: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}
.featured-imagebox-blog.style4 .itnry li figure img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    opacity: 0.6;
}
.featured-imagebox-blog.style4 .itnry li.active figure img,
.featured-imagebox-blog.style4 .itnry li:hover figure img {
    filter: brightness(0) invert(1);
    opacity: 1;
}
.featured-imagebox-blog.style4 .itnry li p { margin: 0; line-height: 1; }

/* Description snippet */
.featured-imagebox-blog.style4 .paraass p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 6px 0 10px;
}

/* View More button */
.featured-imagebox-blog.style4 .prt-btn-color-skincolor {
    background: #987230 !important;
    border-color: #987230 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    padding: 9px 22px !important;
    box-shadow: 0 4px 14px rgba(152,114,48,0.28) !important;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
}
.featured-imagebox-blog.style4 .prt-btn-color-skincolor:hover {
    background: #7a5a22 !important;
    border-color: #7a5a22 !important;
    box-shadow: 0 6px 20px rgba(152,114,48,0.4) !important;
    transform: translateY(-1px);
}
.featured-imagebox-blog.style4 .prt-btn-color-skincolor::after { display: none !important; }

/* ══════════════════════════════════════════════════════════════════
   4. SIDEBAR FILTERS
   ══════════════════════════════════════════════════════════════════ */

.prt-blog-sidebar-content .widget {
    background: #fff;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 2px 16px rgba(40,29,10,0.07);
    margin-bottom: 20px;
    border: 1px solid rgba(40,29,10,0.05);
}

/* Widget title (uses <p class="widget-title"> in packages pages) */
.prt-blog-sidebar-content .widget-title,
.prt-blog-sidebar-content p.widget-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #281d0a !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding-bottom: 10px;
    margin-bottom: 14px !important;
    position: relative;
    border-bottom: none !important;
}
.prt-blog-sidebar-content .widget-title::after,
.prt-blog-sidebar-content p.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: #987230;
    border-radius: 1px;
}

/* Categories list */
.widget-categories ul { list-style: none; padding: 0; margin: 0; }
.widget-categories ul li {
    border-bottom: 1px solid #f5f0ea;
    padding: 0;
}
.widget-categories ul li:last-child { border-bottom: none; }
.widget-categories ul li a {
    display: block;
    padding: 9px 4px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s, padding-left 0.2s;
    position: relative;
}
.widget-categories ul li a::before {
    content: '›';
    color: #987230;
    margin-right: 8px;
    font-size: 15px;
    line-height: 1;
    vertical-align: middle;
}
.widget-categories ul li a:hover {
    color: #987230;
    padding-left: 6px;
}

/* Duration checkboxes */
.widget-categories ul li.form-group {
    padding: 4px 0;
    border-bottom: none;
}
.custom-control.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    padding: 5px 4px;
    border-radius: 6px;
    transition: background 0.15s;
}
.custom-control.custom-checkbox:hover { background: #faf7f2; color: #281d0a; }
.custom-control-input {
    width: 15px !important;
    height: 15px !important;
    accent-color: #987230;
    cursor: pointer;
    flex-shrink: 0;
}

/* Star rating in filters */
.filtrationg .fa-star.checked { color: #987230; }
.filtrationg .fa-star { color: #ddd; }

/* Price range slider */
.track-container {
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
    margin-top: 10px;
}
.range-value {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}
.range-value.min { top: 14px; left: 0; }
.range-value.max { top: 14px; right: 0; }
.range-value .fa-inr { font-size: 11px; }

.track {
    height: 5px;
    background: #e8e3da;
    border-radius: 3px;
    position: relative;
}
.track-highlight {
    height: 5px;
    background: #987230;
    border-radius: 3px;
    position: absolute;
    top: 0;
}
.track-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #987230;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(152,114,48,0.45);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    transition: box-shadow 0.15s, transform 0.15s;
}
.track-btn:active { cursor: grabbing; box-shadow: 0 3px 14px rgba(152,114,48,0.6); transform: translate(-50%, -50%) scale(1.15); }

/* ── Mobile: collapse sidebar above content on small screens ── */
@media (max-width: 991px) {
    .col-lg-4.widget-area.sidebar-right { margin-bottom: 24px; }
    .det { border-radius: 0 0 12px 12px; }
    .featured-imagebox-portfolio.style1 .featured-thumbnail img { height: 190px; }
    .featured-imagebox-services.style2 .featured-thumbnail img { height: 190px; }
}

@media (max-width: 575px) {
    .packimgmbl { min-height: 180px; }
    .featured-imagebox-blog.style4 .itnry { gap: 4px; }
    .featured-imagebox-blog.style4 .itnry li { font-size: 11px; padding: 3px 8px 3px 6px; }
}

/* ══════════════════════════════════════════════════════════════════
   5. HOMEPAGE — BLOG CARDS
   ══════════════════════════════════════════════════════════════════ */

.hp-blog-section {
    background: #f7f5f2;
    padding: 72px 0 80px;
}

.hp-blog-slide { padding: 0 10px; }

.hp-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(40,29,10,0.09);
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(40,29,10,0.05);
    display: flex;
    flex-direction: column;
}
.hp-blog-card:hover {
    box-shadow: 0 14px 42px rgba(40,29,10,0.16);
    transform: translateY(-5px);
}

.hp-blog-img-wrap {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.hp-blog-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.hp-blog-card:hover .hp-blog-img-wrap img { transform: scale(1.06); }

.hp-blog-date {
    position: absolute;
    top: 14px; left: 14px;
    background: #987230;
    color: #fff;
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 11.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.hp-blog-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hp-blog-meta {
    display: flex;
    gap: 14px;
    font-size: 11.5px;
    color: #aaa;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.hp-blog-meta i { color: #987230; margin-right: 4px; }

.hp-blog-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #281d0a;
    line-height: 1.45;
    margin: 0 0 8px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-blog-title a { color: inherit; }
.hp-blog-title a:hover { color: #987230; }

.hp-blog-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    flex: 1;
}

.hp-blog-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f2ece4;
    padding-top: 14px;
    margin-top: auto;
}

.hp-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #987230;
    letter-spacing: 0.2px;
    transition: gap 0.2s, color 0.2s;
}
.hp-blog-btn:hover { color: #7a5a22; gap: 10px; }

/* Blog section header — keep label above, heading + view-all on same row */
.hp-blog-section .hp-section-header,
.hp-gallery-section .hp-section-header {
    flex-wrap: wrap;
    align-items: center;
}

/* Slider base — block display so Slick can control layout; overflow visible for arrows */
.hp-blog-slider { overflow: visible; }
.hp-blog-slider .slick-list { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════════
   6. HOMEPAGE — GALLERY SLIDER
   ══════════════════════════════════════════════════════════════════ */

.hp-gallery-section {
    background: #fff;
    padding: 72px 0 80px;
}

.hp-gallery-slide { padding: 0 10px; }

.hp-gallery-slide .pkg-type-card .pkg-type-img {
    aspect-ratio: 4 / 3;
}

.hp-gallery-slider { overflow: visible; }
.hp-gallery-slider .slick-list { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════════
   7. HOMEPAGE — TESTIMONIALS (full-width card slider)
   ══════════════════════════════════════════════════════════════════ */

.hp-testimonial-section {
    background: linear-gradient(135deg, #281d0a 0%, #3d2c12 60%, #4e380f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hp-testimonial-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(152,114,48,0.12);
    pointer-events: none;
}

.hp-testimonial-section .hp-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}
.hp-testimonial-section .hp-section-header .hp-section-heading { flex: none; }
.hp-testimonial-section .hp-section-label { color: rgba(255,255,255,0.6); }
.hp-testimonial-section .hp-section-heading { color: #fff; }
.hp-testimonial-section .hp-section-heading span { color: #c49a40; }

.hp-testi-slide { padding: 0 12px; }

.hp-testi-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 32px 30px 28px;
    transition: background 0.3s, transform 0.3s;
}
.hp-testi-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-4px);
}

.hp-testi-quote {
    font-size: 28px;
    color: #987230;
    margin-bottom: 18px;
    line-height: 1;
}

.hp-testi-text {
    font-size: 14.5px;
    line-height: 1.85;
    color: rgba(255,255,255,0.82);
    margin-bottom: 20px;
    font-style: italic;
}

.hp-testi-stars {
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}
.hp-testi-stars i { color: #f5a623; font-size: 13px; }

.hp-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.hp-testi-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(152,114,48,0.5);
    flex-shrink: 0;
}
.hp-testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.hp-testi-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.hp-testi-slider { overflow: visible; }
.hp-testi-slider .slick-list { overflow: hidden; }
.hp-testi-slider .slick-prev,
.hp-testi-slider .slick-next {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.2) !important;
}
.hp-testi-slider .slick-prev::before,
.hp-testi-slider .slick-next::before { color: #fff !important; }
.hp-testi-slider .slick-prev:hover,
.hp-testi-slider .slick-next:hover {
    background: #987230 !important;
    border-color: #987230 !important;
}

/* ══════════════════════════════════════════════════════════════════
   8. HOMEPAGE — COUNTER / FID SECTION
   ══════════════════════════════════════════════════════════════════ */

.hp-counter-section {
    background: linear-gradient(135deg, #987230 0%, #b08840 50%, #7a5a22 100%);
    padding: 0;
}

.hp-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hp-counter-item {
    padding: 44px 28px;
    text-align: center;
    position: relative;
}

.hp-counter-item + .hp-counter-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.18);
}

.hp-counter-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.hp-counter-icon i { font-size: 22px; color: #fff; }

.hp-counter-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.hp-counter-suffix {
    font-size: 0.6em;
    font-weight: 700;
    vertical-align: super;
}

.hp-counter-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}

.hp-counter-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

@media (max-width: 767px) {
    .hp-counter-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-counter-item + .hp-counter-item::before {
        display: none;
    }
    .hp-counter-item:nth-child(2n+1)::after {
        content: '';
        position: absolute;
        right: 0; top: 20%; bottom: 20%;
        width: 1px;
        background: rgba(255,255,255,0.18);
    }
    .hp-counter-item {
        padding: 30px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }
}

/* ══════════════════════════════════════════════════════════════════
   9. HOMEPAGE — FAQ (modern accordion)
   ══════════════════════════════════════════════════════════════════ */

.hp-faq-section {
    background: #f7f5f2;
    padding: 80px 0;
}

.hp-faq-section .hp-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 52px;
}
.hp-faq-section .hp-section-header .hp-section-heading { flex: none; }

.hp-faq-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(40,29,10,0.16);
}
.hp-faq-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hp-faq-accordion { display: flex; flex-direction: column; gap: 12px; }

details.hp-faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(40,29,10,0.08);
    box-shadow: 0 2px 12px rgba(40,29,10,0.06);
    overflow: hidden;
    transition: box-shadow 0.25s;
}
details.hp-faq-item:hover {
    box-shadow: 0 6px 24px rgba(40,29,10,0.11);
}
details.hp-faq-item[open] {
    box-shadow: 0 6px 24px rgba(152,114,48,0.14);
    border-color: rgba(152,114,48,0.25);
}

summary.hp-faq-q {
    list-style: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    color: #281d0a;
    gap: 16px;
    user-select: none;
}
summary.hp-faq-q::-webkit-details-marker { display: none; }

.hp-faq-q-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #f7f5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    color: #987230;
    transition: background 0.2s, transform 0.2s;
}
details.hp-faq-item[open] .hp-faq-q-icon {
    background: #987230;
    color: #fff;
    transform: rotate(45deg);
}

.hp-faq-a {
    padding: 0 22px 18px;
    font-size: 13.5px;
    color: #666;
    line-height: 1.8;
    border-top: 1px solid #f5efe6;
    margin: 0 22px;
}

/* ══════════════════════════════════════════════════════════════════
   10. HOMEPAGE — WELCOME SECTION ENHANCEMENTS
   ══════════════════════════════════════════════════════════════════ */

.hp-welcome-section {
    background: #fff;
    padding: 80px 0;
}

.hp-welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.hp-welcome-feat {
    background: #f7f5f2;
    border-radius: 12px;
    padding: 16px 14px;
    border: 1px solid rgba(40,29,10,0.06);
    transition: background 0.2s, box-shadow 0.2s;
}
.hp-welcome-feat:hover {
    background: #fff;
    box-shadow: 0 4px 18px rgba(40,29,10,0.09);
}
.hp-welcome-feat i {
    font-size: 20px;
    color: #987230;
    margin-bottom: 8px;
    display: block;
}
.hp-welcome-feat strong {
    font-size: 12.5px;
    font-weight: 700;
    color: #281d0a;
    display: block;
    margin-bottom: 3px;
}
.hp-welcome-feat p {
    font-size: 11.5px;
    color: #888;
    margin: 0;
    line-height: 1.55;
}

.hp-welcome-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.hp-welcome-list li {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    padding: 7px 0 7px 26px;
    position: relative;
    line-height: 1.5;
}
.hp-welcome-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 11px;
    color: #987230;
    position: absolute;
    left: 0;
    top: 9px;
}

.hp-welcome-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #987230;
    padding: 12px 28px;
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(152,114,48,0.35);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.hp-welcome-cta:hover {
    background: #7a5a22;
    box-shadow: 0 6px 24px rgba(152,114,48,0.45);
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 767px) {
    .hp-welcome-features { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════════
   PACKAGES LIST — Vertical Card (.pkg-card-v-*) + Sidebar (.pkg-sb-*)
   ══════════════════════════════════════════════════════════════════ */

/* ── Vertical Package Card ────────────────────────────────────── */
.pkg-card-v {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(40,29,10,0.08);
    border: 1px solid rgba(40,29,10,0.05);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pkg-card-v:hover {
    box-shadow: 0 14px 42px rgba(40,29,10,0.15);
    transform: translateY(-5px);
}

.pkg-card-v-imglink { display: block; text-decoration: none; }
.pkg-card-v-imgwrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.pkg-card-v-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.48s ease;
}
.pkg-card-v:hover .pkg-card-v-img { transform: scale(1.06); }

.pkg-card-v-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,14,4,0.55) 0%, transparent 55%);
    pointer-events: none;
}

.pkg-card-v-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 6px;
    z-index: 2;
}
.pkg-card-v-dur {
    background: rgba(20,14,4,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    white-space: nowrap;
}
.pkg-card-v-dur .fa { color: #987230; margin-right: 4px; }
.pkg-card-v-custom {
    background: rgba(152,114,48,0.92);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.pkg-card-v-body {
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-card-v-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}
.pkg-card-v-stars .fa {
    color: #987230;
    font-size: 12px;
    margin-right: 1px;
}
.pkg-card-v-price { text-align: right; line-height: 1.2; }
.pkg-card-v-pcurr {
    font-size: 17px;
    font-weight: 700;
    color: #987230;
    display: block;
}
.pkg-card-v-pcurr .fa { font-size: 13px; }
.pkg-card-v-porig {
    font-size: 12px;
    color: #bbb;
    font-weight: 400;
    margin-left: 4px;
}
.pkg-card-v-price small {
    display: block;
    font-size: 10px;
    color: #aaa;
    margin-top: 1px;
}

.pkg-card-v-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.4;
    margin: 0 0 10px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pkg-card-v-title a { color: #281d0a; transition: color 0.2s; }
.pkg-card-v-title a:hover { color: #987230; }

.pkg-card-v-sep {
    height: 2px;
    background: linear-gradient(90deg, #987230 0%, rgba(152,114,48,0.12) 100%);
    border-radius: 1px;
    margin-bottom: 12px;
}

.pkg-card-v-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.pkg-card-v-feats li {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f7f5f2;
    border-radius: 20px;
    padding: 4px 10px 4px 7px;
    font-size: 11px;
    color: #555;
    font-weight: 500;
    border: 1px solid #ede8e0;
    transition: background 0.2s, color 0.2s;
}
.pkg-card-v-feats li:hover,
.pkg-card-v-feats li.active {
    background: #987230;
    color: #fff;
    border-color: #987230;
}
.pkg-card-v-feats li figure {
    margin: 0;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.pkg-card-v-feats li figure img {
    width: 13px;
    height: 13px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    opacity: 0.6;
}
.pkg-card-v-feats li.active figure img,
.pkg-card-v-feats li:hover figure img {
    filter: brightness(0) invert(1);
    opacity: 1;
}
.pkg-card-v-feats li span { line-height: 1; }

.pkg-card-v-desc {
    font-size: 12.5px;
    color: #888;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
    flex: 1;
}

.pkg-card-v-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #987230;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(152,114,48,0.28);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    margin-top: auto;
    text-decoration: none !important;
}
.pkg-card-v-btn:hover {
    background: #7a5a22;
    box-shadow: 0 6px 20px rgba(152,114,48,0.4);
    transform: translateY(-1px);
    color: #fff !important;
}
.pkg-card-v-btn .fa { margin-left: 6px; }

/* ── Premium Sidebar ────────────────────────────────────────────── */
.pkg-sidebar { position: sticky; top: 90px; }

.pkg-sb-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 22px 18px;
    box-shadow: 0 3px 20px rgba(40,29,10,0.08);
    border: 1px solid rgba(40,29,10,0.05);
    margin-bottom: 18px;
}

.pkg-sb-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5efe6;
}
.pkg-sb-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #987230 0%, #b08840 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pkg-sb-icon .fa { color: #fff; font-size: 14px; }
.pkg-sb-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #281d0a;
    margin: 0;
}

.pkg-sb-cats {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pkg-sb-cats li { border-bottom: 1px solid #f8f4ee; }
.pkg-sb-cats li:last-child { border-bottom: none; }
.pkg-sb-cat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 4px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s, padding-left 0.2s;
    text-decoration: none;
}
.pkg-sb-cat-link:hover { color: #987230; padding-left: 4px; text-decoration: none; }
.pkg-sb-cat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #987230;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.pkg-sb-cat-link:hover .pkg-sb-cat-dot { opacity: 1; }
.pkg-sb-cat-name { flex: 1; }
.pkg-sb-cat-arrow {
    font-size: 10px;
    color: #ccc;
    transition: color 0.2s, transform 0.2s;
}
.pkg-sb-cat-link:hover .pkg-sb-cat-arrow { color: #987230; transform: translateX(3px); }

.pkg-sb-checks { list-style: none; padding: 0; margin: 0; }
.pkg-sb-checks li { padding: 2px 0; }
.pkg-sb-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.15s;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    user-select: none;
    margin: 0;
}
.pkg-sb-check:hover { background: #faf7f2; color: #281d0a; }
.pkg-sb-check input { display: none; }
.pkg-sb-checkmark {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    border: 2px solid #ddd;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}
.pkg-sb-checkmark::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 9px;
    color: #fff;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s;
}
.pkg-sb-check input:checked ~ .pkg-sb-checkmark {
    background: #987230;
    border-color: #987230;
}
.pkg-sb-check input:checked ~ .pkg-sb-checkmark::after { opacity: 1; }

.pkg-sb-stars .fa { color: #987230; font-size: 12px; margin-right: 2px; }
.pkg-sb-stars em {
    font-style: normal;
    font-size: 12.5px;
    color: #555;
    font-weight: 600;
    margin-left: 4px;
}

.pkg-sb-cta {
    background: linear-gradient(135deg, #281d0a 0%, #3d2c12 60%, #4e380f 100%);
    border-radius: 16px;
    padding: 28px 24px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}
.pkg-sb-cta::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(152,114,48,0.15);
    pointer-events: none;
}
.pkg-sb-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(152,114,48,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid rgba(152,114,48,0.35);
}
.pkg-sb-cta-icon .fa { color: #c49a40; font-size: 20px; }
.pkg-sb-cta h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff;
    margin-bottom: 8px;
}
.pkg-sb-cta p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 18px;
}
.pkg-sb-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    border: 1.5px solid #987230;
    color: #fff;
    background: rgba(152,114,48,0.15);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    text-decoration: none;
}
.pkg-sb-cta-btn:hover {
    background: #987230;
    box-shadow: 0 4px 16px rgba(152,114,48,0.4);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}
.pkg-sb-cta-wa {
    border-color: #25d366;
    background: rgba(37,211,102,0.12);
    margin-bottom: 0;
}
.pkg-sb-cta-wa:hover {
    background: #25d366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    border-color: #25d366;
}

@media (max-width: 991px) {
    .pkg-sidebar { position: static; margin-bottom: 24px; }
}
@media (max-width: 575px) {
    .pkg-card-v-imgwrap, .pkg-card-v-img { height: 185px; }
    .pkg-card-v-body { padding: 14px 16px 12px; }
    .pkg-sb-card { padding: 18px 18px 14px; }
}

/* ══════════════════════════════════════════════════════════════════
   11. "What We Do" broken-section (existing, clean up)
   ══════════════════════════════════════════════════════════════════ */

.broken-section .section-title.style2 .title-header h3 {
    color: #c49a40 !important;
}
.broken-section .section-title.style2 .title-header h2.title {
    color: #fff !important;
}
.broken-section .section-title.style2 .title-header h2.title span {
    color: #c49a40 !important;
    font-style: italic;
}
.broken-section .prt-bg.bg-base-dark .pt-5 h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 8px !important;
}
.broken-section .prt-bg.bg-base-dark .pt-5 p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 0;
}
.broken-section .prt-bg.bg-base-dark .pt-5 hr {
    border-color: rgba(255,255,255,0.15);
    margin: 18px 0;
}

/* Broken-section mini counters (bg-base-skin boxes) */
.services-info-fid .prt-fid.bg-base-skin {
    background: rgba(152,114,48,0.88) !important;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
    backdrop-filter: blur(8px);
}
.services-info-fid .prt-fid .prt-fid-inner .numinate {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #fff !important;
}
.services-info-fid .prt-fid .prt-fid-title {
    font-size: 12px !important;
    color: rgba(255,255,255,0.8) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════════════
   PACKAGE DETAILS — full page premium redesign
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero card ──────────────────────────────────────────────────── */
.bgcclrss {
    background: #fff !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(40,29,10,0.12) !important;
    border: 1px solid rgba(40,29,10,0.06) !important;
    margin-bottom: 0 !important;
}
.bgcclrss .packimgmbl { min-height: 320px !important; }
.bgcclrss .featured-content { padding: 28px 30px !important; }

.detlhead h1 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #281d0a !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
}
.detlhead h1 a { color: #281d0a !important; text-decoration: none; }
.detlhead .rating .fa.checked { color: #987230; font-size: 14px; margin-right: 1px; }

.dtlpricess {
    background: #f7f5f2 !important;
    border-radius: 12px !important;
    border-left: 3px solid #987230 !important;
    padding: 14px 18px !important;
}
.dtlpricess .fa-inr { color: #987230; }
.dtlpricess del {
    font-size: 14px !important;
    color: #bbb !important;
    font-weight: 400 !important;
    margin-left: 8px;
}
.dtlpricess span {
    font-size: 11px !important;
    color: #888 !important;
    display: block !important;
    margin-top: 3px;
    font-weight: 400 !important;
}
.dtlpricess h3 {
    font-size: 24px !important;
    color: #987230 !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

/* ── Section wrappers ───────────────────────────────────────────── */
.timliness, .timeline1 {
    background: #fff !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 3px 20px rgba(40,29,10,0.07) !important;
    padding: 28px 28px !important;
    margin-top: 24px !important;
}
.contntdtls h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #281d0a !important;
    padding-bottom: 12px !important;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #f5efe6 !important;
    position: relative;
}
.contntdtls h2::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 36px; height: 2px;
    background: #987230;
    border-radius: 1px;
}

/* ── Hotels timeline ─────────────────────────────────────────────── */
.timeline1 ul {
    border-left: 3px solid #e8dfcf !important;
    padding: 6px 0 6px 6px !important;
    margin: 0 !important;
}
.timeline1 ul li {
    padding: 16px 16px 16px 22px !important;
    position: relative;
}
.timeline1 ul li::before {
    width: 12px !important;
    height: 12px !important;
    background: #987230 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 0 0 2px #987230 !important;
    left: -8px !important;
    top: 22px !important;
    border-radius: 50%;
}
.timeline1 ul li:hover::before {
    background: #281d0a !important;
    box-shadow: 0 0 0 2px #281d0a !important;
}
.timeline1 ul li h6 {
    background: linear-gradient(135deg, #987230 0%, #b08840 100%) !important;
    color: #fff !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 4px 14px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.3px;
}
.timeline1 ul li .content1 h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #281d0a !important;
    margin-bottom: 12px !important;
    padding-top: 0 !important;
}

/* Hotel card */
.featured-imagebox-blog.style4.krdetls {
    border-radius: 14px !important;
    box-shadow: 0 4px 22px rgba(40,29,10,0.10) !important;
    border: 1px solid rgba(40,29,10,0.07) !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    transition: box-shadow 0.25s, transform 0.25s;
}
.featured-imagebox-blog.style4.krdetls:hover {
    box-shadow: 0 10px 34px rgba(40,29,10,0.16) !important;
    transform: translateY(-2px);
}

/* Hotel image */
.imgsssgdhpack { overflow: hidden; }
.imgsssgdhpack img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
}
.imgsssgdhpack .slick-slider,
.imgsssgdhpack .slick-list,
.imgsssgdhpack .slick-track { height: 180px !important; }
.imgsssgdhpack .slick-slide,
.imgsssgdhpack .slick-slide > div { height: 100% !important; }

/* Hotel info */
.packadrsssd {
    padding: 20px 22px !important;
}
.packadrsssd h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #281d0a !important;
    margin-bottom: 8px !important;
    line-height: 1.35 !important;
}
.packadrsssd h5 {
    font-size: 12.5px !important;
    font-weight: 400 !important;
    color: #777 !important;
    line-height: 1.6 !important;
    margin: 0 0 10px !important;
    padding-left: 22px !important;
    font-family: inherit !important;
}
.packadrsssd h5 i {
    top: 3px !important;
    color: #987230 !important;
    font-size: 13px;
}
.packadrsssd .rating .fa.checked { color: #987230; font-size: 13px; margin-right: 2px; }

/* ── Inclusions / Exclusions ────────────────────────────────────── */
.featured-icon-box.style17 {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 3px 18px rgba(40,29,10,0.07);
    border: 1px solid rgba(40,29,10,0.05);
    height: 100%;
}
.inclusns h2 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #281d0a !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    padding-bottom: 10px !important;
    margin-bottom: 16px !important;
    border-bottom: 2px solid #f5efe6 !important;
    position: relative;
}
.inclusns h2::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 28px; height: 2px;
    background: #987230;
    border-radius: 1px;
}

/* ── Right sidebar enquiry form ─────────────────────────────────── */
.widget.widget-search.with-title {
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 4px 22px rgba(40,29,10,0.09);
    border: 1px solid rgba(40,29,10,0.05);
    margin-bottom: 20px;
}
.widget.widget-search.with-title .widget-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #281d0a !important;
    margin-bottom: 18px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #f5efe6 !important;
    position: relative;
}
.widget.widget-search.with-title .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 32px; height: 2px;
    background: #987230;
    border-radius: 1px;
}
.widget.widget-search.with-title input,
.widget.widget-search.with-title textarea {
    width: 100%;
    border: 1px solid #e8e3da !important;
    border-radius: 8px !important;
    padding: 10px 13px !important;
    font-size: 13px !important;
    color: #444 !important;
    background: #faf8f5 !important;
    transition: border-color 0.2s, background 0.2s;
    box-shadow: none !important;
}
.widget.widget-search.with-title input:focus,
.widget.widget-search.with-title textarea:focus {
    border-color: #987230 !important;
    background: #fff !important;
    outline: none;
}
.widget.widget-search.with-title label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
    display: block;
}
.widget.widget-search.with-title .prt-btn {
    width: 100%;
    justify-content: center;
    background: #987230 !important;
    border-color: #987230 !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(152,114,48,0.28) !important;
    transition: background 0.2s, box-shadow 0.2s !important;
}
.widget.widget-search.with-title .prt-btn:hover {
    background: #7a5a22 !important;
    box-shadow: 0 6px 20px rgba(152,114,48,0.4) !important;
}

/* Contact-info widget */
.widget.widget-contact-info.with-title {
    background: #fff;
    border-radius: 16px;
    padding: 22px 22px;
    box-shadow: 0 3px 18px rgba(40,29,10,0.07);
    border: 1px solid rgba(40,29,10,0.05);
    margin-bottom: 20px;
}
.widget.widget-contact-info.with-title .widget-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #281d0a !important;
    margin-bottom: 16px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #f5efe6 !important;
    position: relative;
}
.widget.widget-contact-info.with-title .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 28px; height: 2px;
    background: #987230;
    border-radius: 1px;
}
.widget.widget-contact-info.with-title .featured-icon-box-widget {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f8f4ee;
}
.widget.widget-contact-info.with-title .featured-icon-box-widget:last-child {
    border-bottom: none;
}
.widget.widget-contact-info.with-title .prt-icon i {
    color: #987230 !important;
    font-size: 18px;
}
.widget.widget-contact-info.with-title .featured-title h3 {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #999 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2px !important;
}
.widget.widget-contact-info.with-title .featured-desc p {
    font-size: 13px !important;
    color: #444 !important;
    margin: 0 !important;
}
.widget.widget-contact-info.with-title .featured-desc p a {
    color: #281d0a;
    transition: color 0.2s;
}
.widget.widget-contact-info.with-title .featured-desc p a:hover { color: #987230; }

@media (max-width: 991px) {
    .bgcclrss .packimgmbl { min-height: 240px !important; }
    .timliness, .timeline1 { padding: 20px 18px !important; }
}
@media (max-width: 575px) {
    .detlhead h1 { font-size: 18px !important; }
    .bgcclrss .featured-content { padding: 20px 18px !important; }
    .imgsssgdhpack img { height: 160px !important; }
}
