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

:root {
    /* Hotel Sherpa Soul brand palette (matches live site's blue-700 / orange-500) */
    --yellow: #F97316;
    --yellow-dark: #EA580C;
    --orange: #F97316;
    --navy: #1D4ED8;
    --navy-dark: #1E40AF;
    --charcoal: #23272B;

    /* Legacy aliases kept so existing markup / other pages keep working */
    --green: var(--navy);
    --green-dark: var(--navy-dark);
    --green-light: #4C6C8A;
    --green-pale: #EEF3F8;
    --mud: var(--yellow);
    --mud-dark: var(--yellow-dark);
    --mud-light: var(--orange);
    --mud-pale: #FDF3E1;

    --green-primary: var(--navy);
    --orange-accent: var(--yellow);
    --orange-light: var(--orange);

    --text-dark: #1F2328;
    --text-mid: #62666C;
    --text-light: #93979E;
    --border-light: #E7E9EC;
    --white: #ffffff;
    --paper: #FAFAFA;
    --shadow: 0 4px 18px rgba(15,25,35,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); }

.mobile-menu-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
}
.mobile-menu-btn:hover, .mobile-menu-btn:focus { background: var(--yellow); color: #ffffff; }

/* ===== 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);
}

/* ===== BRAND EMBLEM (logo, no border) ===== */
.brand-emblem-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease, height 0.3s ease;
}
.brand-emblem-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-main.is-scrolled .brand-emblem-wrap {
    width: 56px;
    height: 56px;
}
.footer-main .brand-emblem-wrap {
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.footer-main .brand-emblem-wrap img {
    width: 84%;
    height: 84%;
}
.min-width-0 { min-width: 0; }
.header-brand-name { font-family: 'Lora', serif; font-weight: 700; font-size: 1.25rem; color: var(--navy-dark); line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-brand-tag { font-size: 0.74rem; font-weight: 700; color: var(--yellow-dark); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 767px) {
    .brand-emblem-wrap { width: 52px; height: 52px; }
    .header-main.is-scrolled .brand-emblem-wrap { width: 42px; height: 42px; }
    .header-brand-name { font-size: 0.95rem; }
    .header-brand-tag { font-size: 0.6rem; letter-spacing: 0.5px; }
}
@media (max-width: 380px) {
    .header-brand-name { font-size: 0.82rem; }
    .header-brand-tag { display: none; }
}

/* ===== 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 (full photo card, overlaid text — admin-managed slider image) ===== */
.hero-frame { background: var(--paper); padding: 30px 0 0; }
.hero-photo { position: relative; border-radius: 22px; overflow: hidden; }
.hero-photo img { width: 100%; height: 560px; object-fit: cover; display: block; }
.hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(20,32,26,0.82) 0%, rgba(20,32,26,0.55) 40%, rgba(20,32,26,0.1) 70%);
}
.hero-photo-content { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 60px; max-width: 640px; }
.hero-badge {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 7px 18px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: fit-content;
}
.hero-badge i { color: var(--mud-light); margin-right: 4px; }
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mud-light);
    position: relative;
    flex-shrink: 0;
}
.hero-badge-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid var(--mud-light);
    animation: badgePulse 1.8s ease-out infinite;
}
@keyframes badgePulse {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}
.hero-title {
    font-family: "Lora", serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 18px 0 20px;
    line-height: 1.22;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero-title-accent { color: var(--mud-light); display: inline-block; position: relative; }
.hero-title-accent::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 6px;
    bottom: 2px;
    height: 8px;
    background: rgba(181,147,106,0.35);
    z-index: -1;
    border-radius: 2px;
}
.hero-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 460px;
    padding-left: 16px;
    border-left: 2px solid var(--mud-light);
    line-height: 1.7;
}
.hero-cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 32px; }
.hero-link-cta {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
}
.hero-link-cta i { transition: transform 0.2s; }
.hero-link-cta:hover { color: var(--mud-light); border-color: var(--mud-light); }
.hero-link-cta:hover i { transform: translateX(4px); }
.hero-float-card {
    position: absolute;
    left: 60px;
    bottom: -28px;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 14px 34px rgba(38,38,34,0.2);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}
.hero-float-avatars { display: flex; }
.hero-float-avatars span {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem; font-weight: 700; font-family: "Lora", serif;
    border: 2px solid #fff; margin-left: -10px;
}
.hero-float-avatars span:first-child { margin-left: 0; }
.hero-float-avatars span:nth-child(2) { background: var(--mud); }
.hero-float-avatars span:nth-child(3) { background: var(--green-light); }
.hero-float-avatars span:nth-child(4) { background: var(--mud-light); }
.hero-float-text strong { display: block; font-family: "Lora", serif; font-size: 1.1rem; color: var(--green-dark); }
.hero-float-text span { font-size: 0.76rem; color: var(--text-mid); }
.hero-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--border-light); padding: 0; cursor: pointer; }
.hero-dots button.active { background: var(--mud); width: 22px; border-radius: 5px; transition: all 0.2s; }
.hero-mini-stats { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; padding: 48px 0 20px; }
.hero-mini-stats strong { display: block; font-family: "Lora", serif; font-size: 1.6rem; color: var(--green-dark); text-align: center; }
.hero-mini-stats span { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 991px) {
    .hero-photo img { height: 460px; }
    .hero-photo-content { padding: 0 30px; }
    .hero-title { font-size: 2.1rem; }
    .hero-float-card { left: 30px; }
}
@media (max-width: 767px) {
    .hero-photo-overlay { background: linear-gradient(180deg, rgba(20,32,26,0.75) 0%, rgba(20,32,26,0.85) 100%); }
    .hero-photo-content { padding: 0 22px; align-items: flex-start; }
    .hero-title { font-size: 1.6rem; }
    .hero-photo img { height: 520px; }
    .hero-float-card { left: 22px; right: 22px; bottom: -24px; }
    .hero-mini-stats { gap: 24px; padding-top: 44px; }
}

/* ===== 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: 10px;
    padding: 28px;
    box-shadow: 0 2px 14px rgba(38,38,34,0.07);
    border-left: 3px solid var(--mud);
    margin: 0 8px;
}
.testimonial-block_user_image img { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--green); }
.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.9rem; line-height: 1.7; 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);
}
.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: 16px; }
.footer-follow-us li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.2s;
}
.footer-follow-us li a:hover { background: var(--mud); color: #fff; }
.custom-list { list-style: none; padding: 0; }
.custom-list li { margin-bottom: 10px; }
.custom-list li a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.5; transition: all 0.2s; }
.custom-list li a:hover { color: var(--mud-light); transform: translateX(3px); }
.custom-list li a::before {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--mud-light);
    flex-shrink: 0;
}

/* 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;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.2s;
}
.whatsapp-float:hover { transform: scale(1.06); color: #fff; }
.whatsapp-float-i { color: #fff; font-size: 1.7rem; }

/* ===== 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: #13202e;
    padding: 96px 0 48px;
    margin-top: 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201,154,91,0.35);
}
.page-title h1 { color: #fff; font-size: 2.4rem; font-weight: 700; position: relative; margin-bottom: 10px; }
.page-title p { color: rgba(255,255,255,0.72); position: relative; font-size: 1.02rem; max-width: 620px; margin-left: auto; margin-right: auto; }
@media (max-width: 767px) {
    .page-title { padding: 84px 0 36px; }
    .page-title h1 { font-size: 1.7rem; }
}

/* ===== 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; justify-content: center; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.breadcrumb-item a { color: rgba(255,255,255,0.65) !important; transition: color 0.2s; }
.breadcrumb-item a:hover { color: #c99a5b !important; }
.breadcrumb-item.active { color: #c99a5b !important; }

/* ===== 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; }

/* ===== 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(--green-pale); border-radius: 8px; padding: 24px; text-align: center; margin-bottom: 20px; }
.contact-info-box i { font-size: 2rem; color: var(--green); margin-bottom: 12px; }
.contact-info-box h5 { color: var(--text-dark); }
.contact-info-box p { color: var(--text-mid); font-size: 0.9rem; }

/* ===== 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; }
.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: ''; width: 18px; height: 2px; background: var(--mud); display: inline-block; }
.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;
}

/* ===== 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: 14px; margin-bottom: 20px; }
.reason-list .reason-dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.reason-list .reason-dot.c1 { background: var(--green); }
.reason-list .reason-dot.c2 { background: var(--mud); }
.reason-list .reason-dot.c3 { background: var(--green-light); }
.reason-list .reason-dot.c4 { background: var(--mud-light); }
.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;
}
.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, .itinerary-description h2, .includes-package h2, .excludes-package h2,
#tripOverview h3, .itinerary-description h3, .includes-package h3, .excludes-package h3 {
    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::before, .itinerary-description h2::before, .includes-package h2::before, .excludes-package h2::before,
#tripOverview h3::before, .itinerary-description h3::before, .includes-package h3::before, .excludes-package h3::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 {
    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: 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.1rem; color: var(--text-dark); margin: 0 0 8px; }
.trip-location { color: var(--green-dark); font-weight: 600; font-size: 0.92rem; margin-bottom: 20px; }
.trip-location i { color: var(--mud); margin-right: 4px; }
.trip-quickfacts { display: flex; flex-wrap: wrap; gap: 28px; }
.qf-item { display: flex; align-items: center; gap: 10px; }
.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; }

/* ===== 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 6px 24px rgba(38,38,34,0.1);
    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: 1.9rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.package-sidebar-price .text-strike { font-size: 1rem; font-weight: 400; }
.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); }

/* ===== 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); }

/* =====================================================================
   EGovt-STYLE NGO THEME COMPONENTS
   ===================================================================== */

/* ----- TOPBAR ----- */
.topbar { background: var(--charcoal); color: rgba(255,255,255,0.75); font-size: 0.82rem; padding: 8px 0; }
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--yellow); }
.topbar-left span { margin-right: 22px; display: inline-flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--yellow); }
.topbar-right { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }
.topbar-social { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; }
.topbar-social a:hover { background: var(--yellow); color: #23272B; }
@media (max-width: 767px) { .topbar-left span:nth-child(2) { display: none; } }

/* ----- HEADER ----- */
.header-main { box-shadow: none; border-bottom: 1px solid var(--border-light); }
.header-donate-btn { background: var(--yellow); color: #fff; font-weight: 700; border-radius: 6px; padding: 12px 26px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.header-donate-btn:hover { background: var(--yellow-dark); color: #fff; }
ul#main-menu > li > a:hover, ul#main-menu > li.current > a, ul#main-menu > li > a.active { color: var(--yellow-dark); }
ul#main-menu .mega-menu, .nav-submenu { border-top: 2px solid var(--yellow); }
.mega-menu-nav a.text-main { color: var(--yellow-dark); }
.mega-menu-nav a:hover, .nav-submenu li a:hover { color: var(--yellow-dark); }
.nav-submenu li a:hover { background: var(--mud-pale); }

/* ----- HERO ----- */
.hero-photo-overlay { background: linear-gradient(100deg, rgba(18,40,62,0.86) 0%, rgba(18,40,62,0.55) 45%, rgba(18,40,62,0.08) 75%); }
.hero-title-accent::after { background: rgba(240,165,14,0.4); }
.hero-badge-dot, .hero-badge i { color: var(--yellow); background: var(--yellow); }
.hero-intro { border-left-color: var(--yellow); }
.hero-link-cta:hover { color: var(--yellow); border-color: var(--yellow); }
.hero-dots button.active { background: var(--yellow); }
.hero-mini-stats strong { color: var(--navy-dark); }

/* Split CTA banner under hero: Donate Now / Get Involved */
.split-cta { display: flex; flex-wrap: wrap; margin-top: -1px; border-radius: 0 0 14px 14px; overflow: hidden; box-shadow: var(--shadow); }
.split-cta > div { flex: 1 1 260px; padding: 34px 40px; position: relative; }
.split-cta .split-donate { background: var(--yellow); color: #fff; }
.split-cta .split-involve { background: var(--navy-dark); color: #fff; }
.split-cta h4 { color: #fff; font-family: "Lora", serif; font-size: 1.3rem; margin-bottom: 6px; }
.split-cta p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 16px; }
.split-cta .btn-light-outline { background: #fff; color: var(--text-dark); font-weight: 700; border-radius: 6px; padding: 10px 22px; display: inline-block; }
.split-cta .split-donate .btn-light-outline:hover { background: var(--navy-dark); color: #fff; }
.split-cta .split-involve .btn-light-outline:hover { background: var(--yellow); color: #fff; }

/* ----- SECTION EYEBROW (yellow) ----- */
.section-eyebrow { color: var(--yellow-dark); }
.section-eyebrow::before { background: var(--yellow-dark); }
.theme-heading::after { background: var(--yellow); }

/* ----- CAUSES GRID (raise funds) ----- */
.cause-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 3px 16px rgba(15,25,35,0.08); border: 1px solid var(--border-light); transition: all 0.25s; margin-bottom: 26px; }
.cause-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,25,35,0.14); }
.cause-card .cause-img { height: 200px; overflow: hidden; position: relative; }
.cause-card .cause-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cause-card:hover .cause-img img { transform: scale(1.06); }
.cause-card .cause-tag { position: absolute; top: 14px; left: 14px; background: var(--yellow); color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 5px 12px; border-radius: 4px; }
.cause-card .cause-body { padding: 22px; }
.cause-card .cause-title { font-size: 1.08rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; display: block; }
.cause-card .cause-title:hover { color: var(--yellow-dark); }
.cause-progress { height: 6px; border-radius: 4px; background: var(--border-light); overflow: hidden; margin-bottom: 10px; }
.cause-progress > span { display: block; height: 100%; background: var(--yellow); border-radius: 4px; }
.cause-meta { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-mid); margin-bottom: 16px; }
.cause-meta strong { color: var(--navy-dark); }
.cause-card .btn-cause { background: var(--navy-dark); color: #fff; font-weight: 700; border-radius: 6px; padding: 9px 0; text-align: center; display: block; width: 100%; transition: all 0.2s; }
.cause-card .btn-cause:hover { background: var(--yellow); color: #fff; }

/* ----- MISSION / VISION / VALUES ----- */
.mission-media { position: relative; border-radius: 14px; overflow: hidden; }
.mission-media img { width: 100%; height: 420px; object-fit: cover; display: block; }
.mission-play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 74px; height: 74px; border-radius: 50%; background: var(--yellow);
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    box-shadow: 0 0 0 14px rgba(240,165,14,0.25);
}
.mission-tabs { display: flex; gap: 10px; margin: 20px 0 18px; flex-wrap: wrap; }
.mission-tabs .mtab-btn {
    background: var(--mud-pale); color: var(--navy-dark); font-weight: 700; font-size: 0.86rem;
    padding: 9px 18px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s;
}
.mission-tabs .mtab-btn.active, .mission-tabs .mtab-btn:hover { background: var(--yellow); color: #fff; }
.mtab-panel { display: none; }
.mtab-panel.active { display: block; }

/* ----- STATS DARK BAND ----- */
.stats-dark-band { background: var(--charcoal); padding: 46px 0; }
.stats-dark-band .stat-item .stat-num { color: var(--yellow); }
.stats-dark-band .stat-item .stat-label { color: rgba(255,255,255,0.65); }

/* ----- UPCOMING EVENTS ----- */
.event-feature { position: relative; border-radius: 12px; overflow: hidden; height: 100%; min-height: 300px; }
.event-feature img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.event-feature .event-badge { position: absolute; top: 18px; left: 18px; background: var(--yellow); color: #fff; text-align: center; border-radius: 6px; padding: 8px 14px; font-family: "Lora", serif; z-index: 2; }
.event-feature .event-badge .em { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; }
.event-feature .event-badge .ed { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.event-feature-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,40,62,0.88) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 22px; }
.event-feature-overlay h4 { color: #fff; margin: 0 0 6px; font-size: 1.15rem; }
.event-feature-overlay span { color: rgba(255,255,255,0.75); font-size: 0.82rem; }

.event-list { list-style: none; padding: 0; margin: 0; }
.event-list li { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.event-list li:last-child { border-bottom: none; }
.event-date-box { background: var(--mud-pale); color: var(--navy-dark); border-radius: 8px; text-align: center; padding: 10px 14px; flex-shrink: 0; font-family: "Lora", serif; min-width: 64px; }
.event-date-box .em { display: block; font-size: 0.65rem; text-transform: uppercase; color: var(--yellow-dark); font-weight: 700; }
.event-date-box .ed { display: block; font-size: 1.3rem; font-weight: 700; }
.event-info h5 { font-size: 0.98rem; margin-bottom: 6px; }
.event-info .event-time { font-size: 0.82rem; color: var(--text-mid); }
.event-info .event-time i { color: var(--yellow-dark); margin-right: 4px; }

/* ----- TESTIMONIALS (light card grid) ----- */
.testi-card { background: var(--white); border-radius: 10px; padding: 26px; box-shadow: 0 3px 16px rgba(15,25,35,0.07); position: relative; margin-bottom: 24px; }
.testi-card .testi-quote { color: var(--mud-pale); font-size: 2.6rem; position: absolute; top: 14px; right: 20px; font-family: Georgia, serif; line-height: 1; }
.testi-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; }
.testi-card .testi-user { display: flex; align-items: center; gap: 12px; }
.testi-card .testi-user img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-card .testi-user strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.testi-card .testi-user span { font-size: 0.78rem; color: var(--yellow-dark); }

/* ----- SUPPORT OUR CAUSE (floating donate widget over photo) ----- */
.support-cause-wrap { position: relative; border-radius: 16px; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.support-cause-wrap .sc-bg { position: absolute; inset: 0; z-index: 0; }
.support-cause-wrap .sc-bg img { width: 100%; height: 100%; object-fit: cover; }
.support-cause-wrap .sc-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(18,40,62,0.55) 0%, rgba(18,40,62,0.2) 100%); }
.donate-widget-card {
    background: var(--white); border-radius: 12px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    position: relative; z-index: 2; max-width: 380px; margin: 30px 0 30px 30px;
}
.donate-widget-card .dw-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-mid); margin-bottom: 8px; }
.donate-widget-card .dw-row strong { color: var(--navy-dark); font-size: 1.05rem; }
.donate-widget-card .cause-progress { margin: 14px 0 18px; }
.donate-widget-card .dw-amounts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.donate-widget-card .dw-amounts button { border: 1px solid var(--border-light); background: var(--paper); border-radius: 6px; padding: 10px; font-weight: 700; color: var(--navy-dark); cursor: pointer; transition: all 0.2s; }
.donate-widget-card .dw-amounts button.active, .donate-widget-card .dw-amounts button:hover { background: var(--yellow); border-color: var(--yellow); color: #fff; }
.donate-widget-card .btn-donate-full { width: 100%; background: var(--navy-dark); color: #fff; font-weight: 700; padding: 12px; border-radius: 6px; border: none; }
.donate-widget-card .btn-donate-full:hover { background: var(--yellow); }
.donate-widget-card .dw-secure { text-align: center; font-size: 0.76rem; color: var(--text-light); margin-top: 10px; }
.support-cause-text { position: relative; z-index: 2; color: #fff; padding: 30px; }
.support-cause-text h2 { color: #fff; font-family: "Lora", serif; }
.support-cause-text p { color: rgba(255,255,255,0.85); }

/* ----- DONATE CATEGORY ICONS ----- */
.donate-cat-item { text-align: center; padding: 20px; }
.donate-cat-icon {
    width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px; display: flex;
    align-items: center; justify-content: center; font-size: 2rem; color: #fff;
}
.donate-cat-icon.c1 { background: #3AA6D8; }
.donate-cat-icon.c2 { background: var(--yellow); }
.donate-cat-icon.c3 { background: #E05656; }
.donate-cat-icon.c4 { background: #3EAE6B; }
.donate-cat-item h5 { font-size: 1rem; margin-bottom: 8px; }
.donate-cat-item p { color: var(--text-mid); font-size: 0.85rem; margin: 0; }

/* ----- GALLERY MOSAIC ----- */
.mosaic-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 14px; }
.mosaic-item { position: relative; border-radius: 12px; overflow: hidden; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.mosaic-item:hover img { transform: scale(1.08); }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.wide { grid-column: span 2; }
.mosaic-tile { background: var(--navy-dark); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 20px; }
.mosaic-tile.tile-yellow { background: var(--yellow); }
.mosaic-tile h5 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.mosaic-tile a { color: #fff; font-weight: 700; font-size: 0.85rem; text-decoration: underline; }
.mosaic-tile .mosaic-percent { font-family: "Lora", serif; font-size: 2.4rem; font-weight: 800; }
.mosaic-tile .mosaic-percent-label { font-size: 0.82rem; opacity: 0.9; }
@media (max-width: 767px) {
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
    .mosaic-item.wide { grid-column: span 2; }
}

/* ----- NEWS / PUBLICATIONS ----- */
.news-card { border-radius: 10px; overflow: hidden; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(15,25,35,0.06); background: #fff; border: 1px solid var(--border-light); transition: all 0.25s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(15,25,35,0.12); }
.news-card .news-img { position: relative; height: 190px; overflow: hidden; }
.news-card .news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card .news-cat { position: absolute; bottom: 12px; left: 12px; background: var(--yellow); color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.news-card .news-body { padding: 18px 20px; }
.news-card .news-meta { font-size: 0.76rem; color: var(--text-light); margin-bottom: 8px; }
.news-card .news-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; display: block; }
.news-card .news-title:hover { color: var(--yellow-dark); }
.news-card .news-readmore { font-size: 0.82rem; color: var(--yellow-dark); font-weight: 700; }

/* ----- PARTNER LOGOS ----- */
.partners-strip { padding: 40px 0; background: var(--paper); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.partners-strip .partner-logo { text-align: center; font-family: "Lora", serif; font-weight: 700; font-size: 1.1rem; color: var(--text-light); opacity: 0.6; transition: all 0.2s; filter: grayscale(1); }
.partners-strip .partner-logo:hover { opacity: 1; filter: none; color: var(--navy-dark); }

/* ----- SUBSCRIBE CTA BAND ----- */
.subscribe-band { background: var(--yellow); padding: 22px 0; }
.subscribe-band .row { align-items: center; }
.subscribe-band h4 { color: #fff; font-family: "Lora", serif; margin: 0; font-size: 1.3rem; }
.subscribe-band .btn-navy { background: var(--navy-dark); color: #fff; font-weight: 700; padding: 12px 30px; border-radius: 6px; display: inline-block; }
.subscribe-band .btn-navy:hover { background: #fff; color: var(--navy-dark); }

/* ----- FOOTER (dark, 4-column) ----- */
.footer-main { background: var(--charcoal); }
.footer-title { border-bottom-color: var(--yellow); }
.custom-list li a::before { color: var(--yellow); }
.footer-follow-us li a:hover { background: var(--yellow); }
.footer-main a:hover { color: var(--yellow); }
.footer-main i { color: var(--yellow); }
.footer { background: #17191c; }
.footer a { color: var(--yellow); }
