@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Lora:wght@500;600;700&display=swap');

:root {
    /* Professional green + mud palette */
    --green: #3E6552;
    --green-dark: #294A3B;
    --green-light: #6F8C7C;
    --green-pale: #EAF0EC;
    --mud: #8A6642;
    --mud-dark: #6B4E30;
    --mud-light: #B5936A;
    --mud-pale: #F1E9DD;

    /* Backwards-compat aliases used across templates */
    --green-primary: var(--green);
    --orange-accent: var(--mud);
    --orange-light: var(--mud-light);

    --text-dark: #262622;
    --text-mid: #5C594F;
    --text-light: #8B8778;
    --border-light: #E2DDCF;
    --white: #ffffff;
    --paper: #FAF8F3;
    --shadow: 0 4px 18px rgba(38,38,34,0.08);
}

* { font-family: "Source Sans 3", sans-serif; }
body { background: var(--paper); }
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 { font-family: "Lora", serif; font-weight: 600; color: var(--text-dark); }
img { max-width: 100%; }

a { text-decoration: none; color: var(--green); }
a:hover { color: var(--green-dark); }

.container-fluid { max-width: 1600px; width: 95%; }

/* ===== COLORS ===== */
.text-main { color: var(--green); }
.text-alt { color: var(--mud); }
.bg-main { background: var(--green-pale); }
.bg-theme-3 { background: var(--mud-pale); }
.section-theme { background: linear-gradient(135deg, #EAF0EC 0%, #F1E9DD 100%); }

/* ===== BUTTONS ===== */
.btn-warning {
    background: var(--mud);
    color: #fff;
    border-color: var(--mud);
    font-weight: 600;
    border-radius: 6px;
    padding: 0.65rem 1.9rem;
    transition: all 0.2s;
}
.btn-warning:hover { background: var(--mud-dark); color: #fff; border-color: var(--mud-dark); }

.btn-primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }

.btn-outline-secondary { border-color: var(--green); color: var(--green); border-radius: 6px; font-weight: 600; }
.btn-outline-secondary:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ===== SPACING ===== */
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.pt-30 { padding-top: 30px; }
.pb-30 { padding-bottom: 30px; }
.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.pt-70 { padding-top: 70px; }
.pb-70 { padding-bottom: 70px; }
.mt-5  { margin-top: 5px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-5  { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.height-0 { height: 0; }

/* ===== HEADER ===== */
.header-main {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 0 var(--green);
}

.header-logo img { max-height: 55px; width: auto; }

/* ===== NAVIGATION ===== */
#main-navbar { display: block; }

ul#main-menu { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
ul#main-menu > li > a {
    display: block;
    padding: 18px 14px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    white-space: nowrap;
}
ul#main-menu > li > a:hover { color: var(--green); }
ul#main-menu > li.current > a,
ul#main-menu > li > a.active { color: var(--green); }

/* Mega menu */
ul#main-menu .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(38,38,34,0.12);
    border-top: 2px solid var(--green);
    list-style: none;
    padding: 30px 0;
    display: none;
    z-index: 999;
}
ul#main-menu li:hover > .mega-menu { display: block; }
.mega-menu-nav { padding: 0 20px; }
.mega-menu-nav a { color: var(--text-dark); font-size: 0.88rem; display: block; padding: 4px 0; }
.mega-menu-nav a.text-main { color: var(--green); font-weight: 700; margin-top: 10px; }
.mega-menu-nav a:hover { color: var(--green); }
ul.mega-menu-list { list-style: none; padding: 4px 0 0 10px; margin: 0; }
ul.mega-menu-list li { padding: 2px 0; }
ul.mega-menu-list li a { color: var(--text-mid); font-size: 0.83rem; }
ul.mega-menu-list li a:hover { color: var(--green); }

/* Dropdown nav */
.nav-submenu { position: absolute; background: var(--white); box-shadow: 0 10px 26px rgba(38,38,34,0.12); border-top: 2px solid var(--green); list-style: none; padding: 10px 0; min-width: 220px; display: none; z-index: 999; }
li:hover > .nav-submenu { display: block; }
.nav-submenu li a { display: block; padding: 8px 20px; color: var(--text-dark); font-size: 0.88rem; }
.nav-submenu li a:hover { color: var(--green); background: var(--green-pale); }

/* Mobile menu */
.menu-icon { display: none; }
@media (max-width: 767px) {
    .menu-icon { display: block; }
    .header-nav { display: none; }
    .header-nav.show { display: block; }
    #main-navbar { display: none; background: var(--white); border-top: 1px solid var(--border-light); }
    ul#main-menu { flex-direction: column; align-items: flex-start; gap: 0; }
    ul#main-menu > li > a { padding: 12px 20px; border-bottom: 1px solid var(--border-light); }
    .mega-menu, .nav-submenu { position: static; box-shadow: none; border-top: none; padding: 0 0 0 20px; display: block; }
}

/* ===== HERO (big full-bleed banner with overlay copy) ===== */
.hero-banner { position: relative; background: var(--paper); padding-bottom: 40px; }
.hero-slide { position: relative; }
.hero-slide img { width: 100%; height: 640px; object-fit: cover; display: block; }
.hero-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(15,26,20,0.78) 0%, rgba(15,26,20,0.48) 45%, rgba(15,26,20,0.12) 75%);
}
.hero-slide-content { position: absolute; left: 0; right: 0; bottom: 0; top: 0; display: flex; align-items: center; }
.hero-copy { max-width: 560px; }
.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mud-light);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--mud-light);
}
.hero-title {
    font-family: "Lora", serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
    text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
.hero-intro {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-link-cta {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.hero-link-cta:hover { color: var(--mud-light); border-color: var(--mud-light); }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 22px; display: flex; justify-content: center; gap: 8px; z-index: 2; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.4); padding: 0; cursor: pointer; }
.hero-dots button.active { background: #fff; }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    background: var(--white);
    max-width: 960px;
    margin: -36px auto 0;
    padding: 26px 10px;
    position: relative;
    z-index: 3;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(38,38,34,0.16);
}
.hero-stats > div { flex: 1 1 0; padding: 0 20px; text-align: center; border-right: 1px solid var(--border-light); }
.hero-stats > div:last-child { border-right: none; }
.hero-stats i { color: var(--mud); font-size: 1rem; margin-bottom: 8px; display: block; }
.hero-stats dt { font-family: "Lora", serif; font-size: 1.5rem; font-weight: 700; color: var(--green-dark); margin: 0; line-height: 1; }
.hero-stats dd { font-size: 0.74rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.6px; margin: 6px 0 0; }
@media (max-width: 991px) {
    .hero-slide img { height: 520px; }
    .hero-title { font-size: 2.3rem; }
}
@media (max-width: 767px) {
    .hero-slide img { height: 480px; }
    .hero-slide-overlay { background: linear-gradient(180deg, rgba(15,26,20,0.5) 0%, rgba(15,26,20,0.85) 100%); }
    .hero-title { font-size: 1.8rem; }
    .hero-intro { font-size: 0.96rem; margin-bottom: 24px; }
    .hero-stats { flex-wrap: wrap; margin-top: -24px; border-radius: 8px; }
    .hero-stats > div { flex: 1 1 50%; border-right: none; padding: 10px; margin-bottom: 8px; }
}

/* ===== SEARCH BAR ===== */
.search-wrap {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(38,38,34,0.14);
    z-index: 10;
}
.search-wrap.search-wrap-inline { position: relative; margin-bottom: 20px; }
.search-wrap .input-group input {
    border: none;
    padding: 18px 25px;
    font-size: 1rem;
    border-radius: 0;
}
.search-wrap .input-group input:focus { box-shadow: none; outline: none; }
.search-wrap .btn { border-radius: 0; padding: 0 28px; font-size: 1.1rem; }
.autosearch-wrap { position: absolute; top: 100%; left: 0; right: 0; z-index: 200; background: #fff; border-radius: 0 0 8px 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
ul.autosearch { list-style: none; padding: 8px 0; margin: 0; }
ul.autosearch li a { display: block; padding: 10px 20px; color: var(--text-dark); font-size: 0.9rem; }
ul.autosearch li a:hover { background: var(--green-pale); color: var(--green); }

/* ===== SECTION HEADINGS ===== */
.theme-heading {
    font-size: 2rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 30px;
}
.theme-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--mud);
}

/* ===== PROGRAM / PACKAGE CARDS ===== */
.product-card {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(38,38,34,0.06);
    transition: all 0.25s;
    margin-bottom: 24px;
    background: var(--white);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(38,38,34,0.14); border-color: var(--green); }
.product-card .card-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .card-img-wrap img { transform: scale(1.05); }
.product-card .card-img-wrap .price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--green-dark);
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}
.product-card .card-body { padding: 20px; }
.product-card .card-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.product-card .card-text { color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; }
.product-card .card-meta { display: flex; align-items: center; gap: 12px; color: var(--text-light); font-size: 0.82rem; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-light); }
.product-card .card-meta i { color: var(--green); }

/* Legacy _package-grid support */
.package-wrap { position: relative; }
.package-content { background: var(--white); padding: 16px; }
.package-content h3, .package-content h4 { font-size: 1rem; margin-bottom: 6px; }
.package-content .text-price { color: var(--green); font-weight: 700; }

/* ===== SERVICE GRID ===== */
.service-wrap { margin-bottom: 24px; }
.service-content { border-radius: 10px; overflow: hidden; position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.08); cursor: pointer; }
.service-content img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.service-content:hover img { transform: scale(1.06); }
.service-content-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(38,38,34,0.65) 0%, transparent 60%); }
.service-content-details { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.service-content-title { color: #fff; font-size: 1rem; margin: 0; }
.service-fadeIn-top { transition: all 0.3s; }

/* ===== WHY CHOOSE US ===== */
.service-box {
    background: var(--white);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(38,38,34,0.06);
    border-left: 3px solid var(--green);
    transition: all 0.2s;
    cursor: pointer;
    margin-bottom: 16px;
}
.service-box:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(38,38,34,0.12); }
.service-box h4 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 6px; }
.service-box p { color: var(--text-mid); font-size: 0.85rem; margin: 0; }

/* ===== BLOG GRID ===== */
.blog-card { border: 1px solid var(--border-light); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s; margin-bottom: 24px; background: var(--white); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(38,38,34,0.12); border-color: var(--green); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .blog-body { padding: 20px; }
.blog-card .blog-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; display: block; }
.blog-card .blog-title:hover { color: var(--green-dark); }
.blog-card .blog-excerpt { color: var(--text-mid); font-size: 0.86rem; line-height: 1.6; }
.blog-card .blog-readmore { display: inline-flex; align-items: center; gap: 6px; font-size: 0.84rem; font-weight: 700; color: var(--green-dark); }
.blog-card .blog-readmore i { font-size: 0.76rem; transition: transform 0.2s; }
.blog-card .blog-readmore:hover i { transform: translateX(4px); }
.blog-card .blog-meta { color: var(--text-light); font-size: 0.8rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-block {
    background: var(--white);
    border-radius: 14px;
    padding: 34px 34px 30px;
    box-shadow: 0 8px 26px rgba(38,38,34,0.09);
    border-left: 3px solid var(--mud);
    margin: 4px 8px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}
.testimonial-block::after {
    content: '\201C';
    position: absolute;
    top: -18px;
    right: 20px;
    font-family: 'Lora', serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--green-pale);
    line-height: 1;
    z-index: 0;
}
.testimonial-block > * { position: relative; z-index: 1; }
.testimonial-block_user_image img { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--green); }
.testimonial-block_user { text-align: center; }
.testimonial-block_user_image .avatar-initial { margin: 0 auto; width: 70px; height: 70px; font-size: 1.2rem; }
.testimonial-block_user_info_name { font-size: 1rem; color: var(--text-dark); }
.text-theme { color: var(--mud); }
.testimonial-block_content { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-top: 10px; }

/* ===== DESTINATION CAROUSEL ===== */
.cats-box { display: block; border-radius: 8px; overflow: hidden; position: relative; text-align: center; background: var(--white); border: 1px solid var(--border-light); transition: all 0.3s; }
.cats-box:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(38,38,34,0.14); border-color: var(--green); }
.cats-box img { width: 100%; height: 180px; object-fit: cover; }
.cats-box h4 { padding: 12px; font-size: 0.95rem; color: var(--text-dark); background: var(--white); margin: 0; }

/* ===== HOME WELCOME SECTION ===== */
.home-welcome { background: var(--green-pale); }
.home-welcome h1 { color: var(--green-dark); }

/* ===== FOOTER ===== */
.footer-main {
    background: var(--green-dark);
    color: rgba(255,255,255,0.85);
    position: relative;
    border-top: 3px solid var(--mud-light);
}
.footer-cta-strip {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    padding: 28px 36px;
    margin-top: -70px;
    margin-bottom: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-cta-strip-title { font-family: "Lora", serif; font-weight: 700; font-size: 1.2rem; color: var(--text-dark); }
.footer-cta-strip-sub { color: var(--text-mid); font-size: 0.88rem; margin-top: 2px; }
@media (max-width: 767px) {
    .footer-cta-strip { margin-top: -70px; padding: 22px; text-align: center; justify-content: center; }
}
.footer-title { position: relative; }
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 36px;
    height: 2px;
    background: var(--mud);
}
.footer-title {
    color: var(--white);
    font-family: "Lora", serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mud-light);
    display: inline-block;
}
.footer-main a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-main a:hover { color: var(--mud-light); }
.footer-main p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.8; }
.footer-main i { color: var(--mud-light); margin-right: 6px; }
.footer-follow-us { list-style: none; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.footer-follow-us li a {
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff !important;
    font-size: 1rem;
    text-align: center;
    transition: all 0.2s;
}
.footer-follow-us li a i {
    display: inline-block;
    width: 100%;
    line-height: 36px;
    text-align: center;
    vertical-align: top;
}
.footer-follow-us li a:hover { background: var(--mud); border-color: var(--mud); color: #fff !important; }
.custom-list { list-style: none; padding: 0; }
.custom-list li { transition: transform 0.2s; }
.custom-list li:hover { transform: translateX(4px); }
.custom-list li a { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.7; }
.custom-list li a:hover { color: var(--mud-light); }
.custom-list li::before { content: '\203A'; display: inline-block; width: 14px; color: var(--mud-light); font-weight: 700; }

/* Bottom footer bar */
.footer { background: #1e352a; }
.footer a { color: var(--mud-light); }
.footer a:hover { color: #fff; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #fff;
    height: 56px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.6);
    z-index: 9999;
    transition: all 0.2s;
    animation: whatsapp-glow 2s infinite;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.04); color: #fff; animation-play-state: paused; }
.whatsapp-float-i { color: #fff; font-size: 1.5rem; }
.whatsapp-float-label { color: #fff; font-size: 0.92rem; font-weight: 700; white-space: nowrap; }
@media (max-width: 575px) {
    .whatsapp-float { padding: 0; width: 56px; gap: 0; }
    .whatsapp-float-label { display: none; }
}
@keyframes whatsapp-glow {
    0% { box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== STATS BANNER ===== */
.stats-banner { background: var(--green-dark); padding: 40px 0; }
.stat-item { text-align: center; color: #fff; }
.stat-item .stat-num { font-size: 2.6rem; font-weight: 700; font-family: "Lora", serif; }
.stat-item .stat-label { font-size: 0.85rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

/* ===== VOLUNTEER PROGRAM TYPE CARDS ===== */
.volunteer-type-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 240px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 24px;
}
.volunteer-type-card:hover { transform: translateY(-5px); }
.volunteer-type-card img { width: 100%; height: 100%; object-fit: cover; }
.volunteer-type-card .vt-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(41,74,59,0.9) 0%, rgba(41,74,59,0.1) 60%); }
.volunteer-type-card .vt-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.volunteer-type-card .vt-info h4 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.volunteer-type-card .vt-info .vt-count { color: rgba(255,255,255,0.8); font-size: 0.82rem; }

/* ===== PAGE TITLE BAR ===== */
.page-title {
    background: var(--green-dark);
    padding: 56px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-title h1 { color: #fff; font-size: 2.3rem; position: relative; }
.page-title p { color: rgba(255,255,255,0.8); position: relative; }

/* ===== BOOKING / DETAIL PAGES ===== */
.booking-header { background: var(--green-pale); border-radius: 8px; padding: 24px; margin-bottom: 24px; }
.price-display { font-size: 2rem; color: var(--green-dark); font-weight: 700; font-family: "Lora", serif; }
.price-was { text-decoration: line-through; color: var(--text-light); font-size: 1rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--green); }
.breadcrumb-item.active { color: var(--text-mid); }

/* ===== FORMS ===== */
.form-control { border-radius: 6px; border: 1px solid var(--border-light); }
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 0.2rem rgba(62,101,82,0.15); }
.form-label { font-weight: 600; color: var(--text-dark); }

/* ===== VERTAB NAVIGATION ===== */
.vertab-menu .list-group-item { border: none; border-radius: 6px; margin-bottom: 4px; color: var(--text-dark); font-weight: 600; padding: 10px 16px; }
.vertab-menu .list-group-item:hover, .vertab-menu .list-group-item.active { background: var(--green-pale); color: var(--green); }

/* ===== TABLES ===== */
.table { font-size: 0.9rem; }
.table thead th { background: var(--green-pale); color: var(--green-dark); font-weight: 700; }

/* ===== MODALS ===== */
.modal-content { border-radius: 10px; overflow: hidden; }
.modal-header { background: var(--green-dark); color: #fff; }
.modal-header .btn-close { filter: invert(1); }
.modal-title { color: #fff; }

/* ===== BADGES ===== */
.badge-theme { border: 1px solid var(--border-light); color: var(--text-mid); background: #fff; font-size: 0.78rem; padding: 4px 10px; border-radius: 4px; }

/* ===== STAR RATING ===== */
.text-theme .fa-star { color: var(--mud); }

/* ===== IMAGE EFFECTS ===== */
.image-scale { overflow: hidden; border-radius: 8px; }
.image-scale img { transition: 0.4s; }
.image-scale:hover img { transform: scale(1.06); }

/* ===== OWL CAROUSEL ===== */
.owl-content .owl-nav, .owl-content .owl-dots { display: none; }
.owl-content { position: relative; }
.owl-carousel__nav { display: inline-flex; position: absolute; bottom: 0; right: 0; }
.owl-carousel__nav > div { background: var(--white); padding: 8px 15px; margin-left: 5px; cursor: pointer; border-radius: 6px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: all 0.2s; }
.owl-carousel__nav > div:hover { background: var(--green); color: #fff; }
.owl-review .owl-dots { text-align: center; margin-top: 6px; }
.owl-review .owl-dot span { width: 8px; height: 8px; margin: 0 4px; background: var(--border-light); border-radius: 50%; display: block; }
.owl-review .owl-dot.active span { background: var(--mud); }

/* ===== INCLUDE / EXCLUDE LISTS ===== */
.list-includes li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.list-excludes li::before { content: '✗ '; color: #a13f3f; font-weight: 700; }

/* ===== PACKAGE ITINERARY ===== */
.itinerary-day { border-left: 2px solid var(--green); padding-left: 20px; margin-bottom: 20px; position: relative; }
.itinerary-day::before { content: ''; width: 10px; height: 10px; background: var(--mud); border-radius: 50%; position: absolute; left: -6px; top: 4px; }
.itinerary-day h4 { color: var(--green-dark); font-size: 1rem; }

/* ===== CONTACT PAGE ===== */
.contact-info-box {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 30px 24px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.2s;
}
.contact-info-box:hover { border-color: var(--mud); box-shadow: 0 10px 26px rgba(38,38,34,0.1); transform: translateY(-3px); }
.contact-info-box i {
    width: 56px; height: 56px; line-height: 56px;
    border-radius: 50%;
    background: var(--green-pale);
    font-size: 1.4rem; color: var(--green-dark);
    margin: 0 auto 16px;
    display: block;
}
.contact-info-box h5 { color: var(--text-dark); font-family: "Lora", serif; font-weight: 700; }
.contact-info-box p { color: var(--text-mid); font-size: 0.9rem; }

/* ===== CONTACT FORM ===== */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 10px 34px rgba(38,38,34,0.1);
    padding: 36px;
    text-align: left;
}
.contact-form-card .section-eyebrow,
.contact-form-card .theme-heading { text-align: left; justify-content: flex-start; }
.contact-form-intro { color: var(--text-mid); margin-bottom: 26px; }
.contact-form-intro p:last-child { margin-bottom: 0; }
@media (max-width: 767px) { .contact-form-card { padding: 24px; } }
.page-form .form-group label { font-size: 0.86rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; display: inline-block; }
.page-form .form-group em { color: var(--mud-dark); font-style: normal; }
.page-form .form-control { border: 1px solid var(--border-light); border-radius: 6px; padding: 10px 14px; font-size: 0.92rem; }
.page-form .form-control:focus { border-color: var(--mud); box-shadow: 0 0 0 3px var(--mud-pale); }
.page-form textarea.form-control { resize: vertical; }

/* ===== ADMIN LAYOUT ===== */
.admin-sidebar { background: var(--green-dark); min-height: 100vh; }
.admin-sidebar a { color: rgba(255,255,255,0.8); }
.admin-sidebar a:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ===== UTILITIES ===== */
.text-xxxlg { font-size: 1.3rem; }
.text-xl { font-size: 1.05rem; line-height: 1.8; }
.text-bolder { font-weight: 700; }
.rounded-full { border-radius: 50%; }
.max-wrap { max-width: 1000px; margin: 0 auto; }
.p-less p { margin-bottom: 6px; }
.p-less p:last-child { margin-bottom: 0; }
.list-blank { list-style: none; padding: 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .theme-heading { font-size: 1.6rem; }
}
@media (max-width: 767px) {
    .search-wrap { border-radius: 8px; margin: 0 15px 20px; }
    .pt-70 { padding-top: 40px; }
    .pb-70 { padding-bottom: 40px; }
    .stats-banner .stat-num { font-size: 2rem; }
    .page-title h1 { font-size: 1.7rem; }
}

/* ===== DARK SECTION + TORN EDGE DIVIDERS ===== */
.section-dark {
    background: var(--green-dark);
    color: rgba(255,255,255,0.85);
    position: relative;
}
.section-dark .theme-heading, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .theme-heading::after { background: var(--mud-light); }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mud);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 10px;
}
.section-eyebrow::before { content: none; }
.section-dark .section-eyebrow { color: var(--mud-light); }

.zigzag-top, .zigzag-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 18px;
    background-repeat: repeat-x;
    background-size: 36px 36px;
    z-index: 2;
}
.zigzag-top { top: -1px;
    background-image: linear-gradient(-45deg, transparent 16px, var(--paper) 16px), linear-gradient(45deg, transparent 16px, var(--paper) 16px);
    background-position: 0 100%;
}
.zigzag-bottom { bottom: -1px;
    background-image: linear-gradient(135deg, transparent 16px, var(--paper) 16px), linear-gradient(225deg, transparent 16px, var(--paper) 16px);
    background-position: 0 0;
}

/* ===== PROGRAMS: CATEGORY STRIP ===== */
.category-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.category-pill {
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-mid);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.15s;
}
.category-pill:hover { border-color: var(--mud); color: var(--green-dark); }
.category-pill.active { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

/* ===== ABOUT PHOTO (single image) ===== */
.about-photo { border-radius: 6px; overflow: hidden; }
.about-photo img { width: 100%; height: 380px; object-fit: cover; display: block; }
@media (max-width: 767px) {
    .about-photo img { height: 260px; }
}

/* ===== PHOTO COLLAGE (About section) ===== */
.collage-wrap { position: relative; padding: 20px 30px 30px 0; }
.collage-wrap .collage-main { border-radius: 12px; overflow: hidden; box-shadow: 0 14px 34px rgba(38,38,34,0.18); }
.collage-wrap .collage-main img { width: 100%; height: 340px; object-fit: cover; display: block; }
.collage-wrap .collage-small { position: absolute; right: 0; bottom: -20px; width: 46%; border-radius: 12px; overflow: hidden; border: 6px solid var(--paper); box-shadow: 0 14px 30px rgba(38,38,34,0.2); }
.collage-wrap .collage-small img { width: 100%; height: 170px; object-fit: cover; display: block; }
.collage-wrap .collage-badge {
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 10px 26px rgba(38,38,34,0.16);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 0.85rem;
}
.collage-wrap .collage-badge i { color: var(--mud); font-size: 1.3rem; }

/* ===== STAT ROW ===== */
.stat-row-item { text-align: center; padding: 10px; }
.stat-row-item .stat-row-num { font-family: "Lora", serif; font-size: 2.2rem; font-weight: 700; color: var(--green-dark); }
.stat-row-item .stat-row-label { color: var(--text-mid); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.section-dark .stat-row-item .stat-row-num { color: #fff; }
.section-dark .stat-row-item .stat-row-label { color: rgba(255,255,255,0.7); }

/* ===== REASON LIST (colored dot legend) ===== */
.reason-list { list-style: none; padding: 0; margin: 0; }
.reason-list li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border-light); }
.reason-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.reason-list .reason-dot {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: "Lora", serif; font-weight: 700; font-size: 0.92rem;
}
.reason-list .reason-dot.c1 { background: var(--green-pale); color: var(--green-dark); }
.reason-list .reason-dot.c2 { background: var(--mud-pale); color: var(--mud-dark); }
.reason-list .reason-dot.c3 { background: var(--green-pale); color: var(--green-dark); }
.reason-list .reason-dot.c4 { background: var(--mud-pale); color: var(--mud-dark); }
.reason-list h5 { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.reason-list p { font-size: 0.86rem; color: var(--text-mid); margin: 0; }

/* ===== DONATE / SUPPORT CARDS ===== */
.donate-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(38,38,34,0.08); border: 1px solid var(--border-light); transition: all 0.25s; margin-bottom: 24px; }
.donate-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(38,38,34,0.15); border-color: var(--green); }
.donate-card .donate-img { height: 190px; overflow: hidden; }
.donate-card .donate-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.donate-card:hover .donate-img img { transform: scale(1.06); }
.donate-card .donate-body { padding: 20px; }
.donate-card .donate-title { font-size: 1.02rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.donate-card .donate-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--text-mid); border-top: 1px solid var(--border-light); padding-top: 12px; margin-top: 12px; }
.donate-card .donate-price { color: var(--green-dark); font-weight: 700; font-family: "Lora", serif; font-size: 1.1rem; }

/* ===== AVATAR INITIAL (volunteer voices) ===== */
.avatar-initial {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    background: var(--green);
    border: 3px solid var(--mud-light);
    margin: 0 auto 14px;
}
.community-banner { background-size: cover; background-position: center; padding: 70px 0; }
@media (max-width: 767px) { .community-banner { padding: 44px 0; } }
.voice-card { background: var(--white); border-radius: 12px; padding: 22px; text-align: center; box-shadow: 0 3px 14px rgba(38,38,34,0.07); border: 1px solid var(--border-light); transition: all 0.2s; margin-bottom: 24px; }
.voice-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(38,38,34,0.14); }
.voice-card h5 { font-size: 0.95rem; margin-bottom: 4px; }
.voice-card .text-theme { font-size: 0.85rem; }
.voice-card p { font-size: 0.82rem; color: var(--text-mid); margin-top: 10px; }

/* ===== DESTINATION GALLERY (Explore Nepal) ===== */
.gallery-card { position: relative; border-radius: 12px; overflow: hidden; height: 320px; box-shadow: 0 4px 18px rgba(0,0,0,0.12); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,32,26,0.85) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 20px; }
.gallery-card .gallery-overlay h4 { color: #fff; font-size: 1.1rem; margin: 0; }
.gallery-card .gallery-overlay span { color: var(--mud-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== TRUST STRIP ===== */
.trust-strip { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.9rem; }
.trust-item i { color: var(--mud-light); font-size: 1.4rem; }

/* ===== NEWSLETTER ===== */
.newsletter-box { background: var(--green-dark); border-radius: 14px; padding: 40px; color: #fff; }
.newsletter-box .form-control { border-radius: 6px 0 0 6px; border: none; }
.newsletter-box .btn { border-radius: 0 6px 6px 0; }

/* ===== RICH TEXT / CMS CONTENT (Overview, Itinerary intro, Includes/Excludes) ===== */
#tripOverview, .itinerary-description, .includes-package, .excludes-package {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.85;
}
#tripOverview p, .itinerary-description p, .includes-package p, .excludes-package p { margin-bottom: 18px; }
#tripOverview h2:not(.accordion-header), .itinerary-description h2:not(.accordion-header), .includes-package h2:not(.accordion-header), .excludes-package h2:not(.accordion-header),
#tripOverview h3:not(.accordion-header), .itinerary-description h3:not(.accordion-header), .includes-package h3:not(.accordion-header), .excludes-package h3:not(.accordion-header) {
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1B3A5C;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    padding-left: 42px;
    margin: 44px 0 22px;
    min-height: 26px;
    display: flex;
    align-items: center;
}
#tripOverview h2:first-child, .itinerary-description h2:first-child { margin-top: 0; }
#tripOverview h2:not(.accordion-header)::before, .itinerary-description h2:not(.accordion-header)::before, .includes-package h2:not(.accordion-header)::before, .excludes-package h2:not(.accordion-header)::before,
#tripOverview h3:not(.accordion-header)::before, .itinerary-description h3:not(.accordion-header)::before, .includes-package h3:not(.accordion-header)::before, .excludes-package h3:not(.accordion-header)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image:
        linear-gradient(var(--mud) 0 0), linear-gradient(var(--mud) 0 0),
        linear-gradient(var(--mud) 0 0), linear-gradient(var(--mud) 0 0);
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: 0 0, 14px 0, 0 14px, 14px 14px;
}
#tripOverview ul, .itinerary-description ul, .includes-package ul, .excludes-package ul {
    list-style: none;
    padding-left: 0;
    margin: 18px 0;
}
#tripOverview ul li, .itinerary-description ul li, .includes-package ul li, .excludes-package ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}
#tripOverview ul li::before, .itinerary-description ul li::before, .includes-package ul li::before, .excludes-package ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mud);
}
#tripOverview hr, .itinerary-description hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 40px 0;
}
#tripOverview strong, .itinerary-description strong { color: var(--text-dark); }

/* ===== PACKAGE DETAIL: EQUIPMENT LIST (icons already in content, suppress default bullet) ===== */
.equipment-list ul { list-style: none; padding-left: 0; margin: 18px 0; }
.equipment-list ul li { margin-bottom: 10px; color: var(--text-mid); }

/* ===== PACKAGE DETAIL: INCLUDES / EXCLUDES ===== */
.incl-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 10px; padding: 24px 26px; height: 100%; }
.incl-card-title { font-weight: 700; font-size: 0.98rem; margin-bottom: 14px; }
.incl-card-yes .incl-card-title { color: var(--green-dark); }
.incl-card-yes .incl-card-title i { color: var(--green); margin-right: 6px; }
.incl-card-no .incl-card-title { color: var(--text-dark); }
.incl-card-no .incl-card-title i { color: #c0554a; margin-right: 6px; }
.incl-card ul { margin: 0 !important; }
.incl-card .excludes-package ul li::before { background: #c0554a !important; }

/* ===== PACKAGE DETAIL: ITINERARY / FAQ ACCORDION ===== */
.accordion-item { border: 1px solid var(--border-light) !important; box-shadow: none !important; }
.accordion-button {
    background: var(--white) !important;
    color: var(--text-dark) !important;
    font-family: "Lora", serif;
    font-size: 1.02rem !important;
}
.accordion-button:not(.collapsed) { color: var(--green-dark) !important; background: var(--green-pale) !important; }
.accordion-button:focus { box-shadow: none; border-color: var(--border-light); }
.accordion-button::after { filter: hue-rotate(60deg) saturate(0.6); }
.accordion-body { color: var(--text-mid); font-size: 0.94rem; line-height: 1.75; }
.itinerary-icon .text-main { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--green-dark); font-weight: 700; margin-bottom: 2px; }
.itinerary-icon .text-main i { color: var(--mud); margin-right: 5px; }
.itinerary-icon > div { margin-bottom: 14px; font-size: 0.9rem; color: var(--text-mid); }

/* ===== PACKAGE DETAIL: TRIP HEADER ===== */
.trip-header { background: var(--green-pale); padding: 30px 0 34px; border-bottom: 1px solid var(--border-light); }
.trip-header .breadcrumb-item, .trip-header .breadcrumb-item a { font-size: 0.82rem; }
.trip-title { font-family: "Lora", serif; font-size: 2.3rem; color: var(--text-dark); margin: 0 0 12px; }
.trip-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-bottom: 22px; }
.trip-location { color: var(--green-dark); font-weight: 600; font-size: 0.92rem; }
.trip-location i { color: var(--mud); margin-right: 4px; }
.trip-rating { font-size: 0.92rem; font-weight: 600; color: var(--text-dark); }
.trip-rating i { color: #f5a623; margin-right: 4px; }
.trip-rating span { color: var(--text-light); font-weight: 400; margin-left: 2px; }
.trip-quickfacts { display: flex; flex-wrap: wrap; gap: 14px; }
.qf-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 10px 16px;
}
.qf-item i { font-size: 1.3rem; color: var(--mud); width: 26px; text-align: center; }
.qf-item strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.qf-item span { font-size: 0.74rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

.trip-header-photo {
    background-size: cover;
    background-position: center;
    padding: 60px 0 34px;
    border-bottom: none;
}
.trip-header-photo .breadcrumb-item, .trip-header-photo .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.trip-header-photo .breadcrumb-item.active { color: rgba(255,255,255,0.95); }
.trip-header-photo .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.trip-header-photo .trip-title { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.trip-header-photo .trip-location { color: rgba(255,255,255,0.92); }
.trip-header-photo .trip-location i { color: var(--mud-light); }
.trip-header-photo .trip-rating { color: #fff; }
.trip-header-photo .trip-rating span { color: rgba(255,255,255,0.7); }
.trip-header-photo .qf-item { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); backdrop-filter: none; }
.trip-header-photo .qf-item i { color: var(--mud-light); }
.trip-header-photo .qf-item strong { color: #fff; }
.trip-header-photo .qf-item span { color: rgba(255,255,255,0.7); }
@media (max-width: 767px) { .trip-header-photo { padding: 40px 0 28px; } }

/* ===== PACKAGE DETAIL: SUB NAV ===== */
.fixed-iti {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
}
.trip-subnav { background: var(--white); border-bottom: 1px solid var(--border-light); }
.trip-subnav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; overflow-x: auto; }
.trip-subnav .nav-link {
    display: block;
    padding: 16px 18px;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}
.trip-subnav .nav-link:hover, .trip-subnav .nav-link.active { color: var(--green-dark); border-bottom-color: var(--mud); }

/* ===== PACKAGE DETAIL: GALLERY ===== */
.pkg-gallery { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(38,38,34,0.1); }
.pkg-gallery .carousel-item img { width: 100%; height: 460px; object-fit: cover; }
.pkg-gallery-thumbs { position: static !important; margin: 10px 0 0; gap: 8px; }
.pkg-gallery-thumbs button.thumbnail {
    width: 70px; height: 54px; border-radius: 6px; overflow: hidden; opacity: 0.6;
    border: 2px solid transparent; padding: 0; text-indent: 0; background: none;
}
.pkg-gallery-thumbs button.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.pkg-gallery-thumbs button.thumbnail.active { opacity: 1; border-color: var(--mud); }
@media (max-width: 767px) { .pkg-gallery .carousel-item img { height: 260px; } }

/* ===== PACKAGE DETAIL: SIDEBAR ===== */
.package-sidebar {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 10px 34px rgba(38,38,34,0.14);
    padding: 26px;
}
.package-sidebar-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.package-sidebar-price { font-family: "Lora", serif; font-size: 2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0; }
.package-sidebar-price .text-strike { font-size: 1rem; font-weight: 400; }
.package-sidebar-unit { font-family: "Poppins", sans-serif; font-size: 0.82rem; font-weight: 400; color: var(--text-light); margin-left: 4px; }
.package-sidebar-discount { display: inline-block; background: var(--mud-pale); color: var(--mud-dark); font-size: 0.78rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; margin-top: 4px; }
.package-sidebar-trust { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--border-light); }
.package-sidebar-trust li { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.package-sidebar-trust li i { color: var(--green); }
.package-sidebar-trust li::before { content: none; }

/* ===== BLOG DETAIL SIDEBAR ===== */
.blog-sidebar-box {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(38,38,34,0.06);
    margin-bottom: 24px;
}
.blog-sidebar-title { font-family: "Lora", serif; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--mud); }
.blog-sidebar-item { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; text-decoration: none; }
.blog-sidebar-item:last-child { margin-bottom: 0; }
.blog-sidebar-item img { width: 64px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.blog-sidebar-item-title { font-size: 0.86rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.blog-sidebar-item:hover .blog-sidebar-item-title { color: var(--green-dark); }
.blog-sidebar-item-date { font-size: 0.74rem; color: var(--text-light); margin-top: 4px; }
.blog-sidebar-cta {
    background: var(--green-dark);
    color: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}
.blog-sidebar-cta i { font-size: 1.8rem; color: var(--mud-light); }
.blog-sidebar-cta h5 { color: #fff; font-family: "Lora", serif; margin-bottom: 8px; }
.blog-sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 0.86rem; margin-bottom: 18px; }

/* Choose Programs Page */
.program-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(38,38,34,0.08);
    transition: all 0.3s;
    background: #fff;
    margin-bottom: 28px;
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-light);
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(38,38,34,0.16); color: inherit; border-color: var(--green); }
.program-card img { width: 100%; height: 230px; object-fit: cover; display: block; }
.program-card .prog-body { padding: 22px; }
.program-card .prog-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.program-card .prog-link { color: var(--green); font-weight: 600; font-size: 0.9rem; }
.program-card .prog-link i { transition: transform 0.2s; }
.program-card:hover .prog-link i { transform: translateX(4px); }
