/* ============================================================
   ============================================================ */
:root {
    --hm-theme: var(--theme-color, #af0000);
    --hm-heading: #1f2530;
    --hm-body: #3a4049;
    --hm-muted: #6c727a;
    --hm-border: #e6e8ee;
    --hm-bg: #f7f8fb;
}

.hm-section { padding: clamp(70px, 9vw, 110px) 0; }
.hm-section--soft { background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%); }
.hm-section--dark {
    background: linear-gradient(135deg, #1f2530 0%, #2d1313 100%);
    color: #fff;
}
.hm-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.hm-section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.hm-eyebrow {
    display: inline-block; text-transform: uppercase;
    letter-spacing: .14em; font-size: 12px; font-weight: 700;
    color: var(--hm-theme); margin-bottom: 14px;
    padding: 7px 16px; background: rgba(175, 0, 0, .08); border-radius: 999px;
}
.hm-section--dark .hm-eyebrow {
    color: #fff; background: rgba(255, 255, 255, .14);
}
.hm-title {
    font-size: clamp(28px, 4vw, 40px); font-weight: 800;
    color: var(--hm-heading); margin: 0 0 14px; line-height: 1.15;
    letter-spacing: -.01em;
}
.hm-section--dark .hm-title { color: #fff; }
.hm-subtitle {
    font-size: clamp(15px, 1.5vw, 17px); color: var(--hm-muted);
    line-height: 1.6; margin: 0;
}
.hm-section--dark .hm-subtitle { color: rgba(255, 255, 255, .82); }

.hm-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 999px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    border: 0; cursor: pointer;
}
.hm-btn--primary { background: var(--hm-theme); color: #fff; }
.hm-btn--primary:hover {
    background: #931212; color: #fff; transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(175, 0, 0, .35);
}
.hm-btn--ghost {
    background: rgba(255, 255, 255, .12); color: #fff;
    backdrop-filter: blur(8px); border: 1.5px solid rgba(255, 255, 255, .3);
}
.hm-btn--ghost:hover {
    background: rgba(255, 255, 255, .22); color: #fff; transform: translateY(-2px);
}

.hero-video-bg {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: #000;
}
.hero-video-bg .yt-bg-wrapper {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh; height: 56.25vw;
    min-width: 100%; min-height: 100%;
}
.hero-video-bg .yt-bg-wrapper iframe {
    width: 100%; height: 100%;
    pointer-events: none;
    border: 0;
}
@media (max-width: 767px) {
    .hero-area.hero-video-bg {
        height: 56.25vw !important;
    }
    .hero-area.hero-video-bg .yt-bg-wrapper {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
}

.insurance-hero {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background-image: url('/assets/img/bg-europe.jpg');
    background-size: cover;
    background-position: center;
}
.insurance-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(45, 10, 10, 0.75);
}
.insurance-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.insurance-hero h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: .5px;
    line-height: 1.2;
}
.insurance-hero p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: .95;
    color: #fff;
}
.insurance-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: #fff;
    color: #930404;
    font-weight: 600;
    border-radius: 4px;
    font-size: 16px;
}
@media (max-width: 768px) {
    .insurance-hero { padding: 70px 20px; }
    .insurance-hero h2 { font-size: 28px; }
    .insurance-hero p { font-size: 17px; }
}

.travel-dreams-area {
    background-color: #F0F3F9;
    padding: 110px 0;
}
.travel-dreams-area .section-content h5 {
    text-decoration: underline;
    color: var(--hm-theme);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.travel-dreams-area .section-content h4 {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    color: var(--hm-heading);
    line-height: 1.2;
    margin: 0 0 20px;
}
.travel-dreams-area .section-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--hm-body);
    margin: 0 0 26px;
}
.travel-dreams-area .site-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--hm-theme); color: #fff;
    font-weight: 700; padding: 13px 26px;
    border-radius: 6px; text-decoration: none;
    margin-right: 10px; margin-bottom: 10px;
    transition: background .2s, transform .2s;
    font-size: 14px;
}
.travel-dreams-area .site-btn:hover {
    background: #931212; color: #fff; transform: translateY(-2px);
}
.travel-dreams-area #world-map-container {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(20, 24, 31, .06);
}
@media (max-width: 991px) {
    .travel-dreams-area { padding: 70px 0; }
    .travel-dreams-area .col-md-7 { margin-top: 30px; }
}

.pilgrimage-split {
    width: 100%;
    background: #0b1b2b;
    color: #fff;
}
.pilgrimage-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 20px;
}
.pilgrimage-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}
.pilgrimage-image {
    flex: 1;
    min-width: 320px;
}
.pilgrimage-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}
.pilgrimage-content {
    flex: 1.15;
}
.pilgrimage-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 16px;
}
.pilgrimage-title {
    font-size: 34px;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 20px;
    font-weight: 700;
}
.pilgrimage-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,.9);
    margin: 0 0 18px;
}
.pilgrimage-points {
    margin: 18px 0 30px;
    padding: 0;
    list-style: none;
}
.pilgrimage-points li {
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(255,255,255,.92);
    line-height: 1.4;
    font-size: 15px;
}
.pilgrimage-points li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: #ffd28a;
    font-weight: 700;
    font-size: 18px;
}
.pilgrimage-actions { margin-top: 6px; }
.pilgrimage-actions a {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    padding: 13px 22px;
    margin-right: 12px;
    margin-bottom: 10px;
    font-size: 14.5px;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.pilgrimage-actions .btn-primary {
    background: #ffd28a;
    color: #0b1b2b;
}
.pilgrimage-actions .btn-primary:hover {
    background: #ffba5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 210, 138, .35);
}
.pilgrimage-actions .btn-secondary {
    border: 1.5px solid rgba(255,255,255,.28);
    color: #fff;
    background: transparent;
}
.pilgrimage-actions .btn-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.pilgrimage-footnote {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}
@media (max-width: 980px) {
    .pilgrimage-grid { flex-direction: column; gap: 36px; }
    .pilgrimage-image img { height: 320px; }
    .pilgrimage-wrap { padding: 70px 20px; }
}

.service-area {
    padding: 110px 0;
    background: #fff;
}
.service-area .section-title h5 {
    text-decoration: underline;
    color: var(--hm-theme);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}
.service-area .section-title h3 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--hm-heading);
    margin: 0 0 50px;
    line-height: 1.15;
}
.features-services .row { row-gap: 28px; }
.features-service-item {
    text-align: center;
    padding: 36px 28px;
    transition: transform .25s, box-shadow .25s;
    border-radius: 14px;
}
.features-service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(20, 24, 31, .08);
}
.service-icon-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hm-theme) 0%, #6b0808 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 22px;
    box-shadow: 0 10px 24px rgba(175, 0, 0, .25);
}
.features-service-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hm-heading);
    margin: 0 0 12px;
}
.features-service-item p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--hm-muted);
    margin: 0;
}
@media (max-width: 767px) {
    .service-area { padding: 70px 0; }
    .service-area .section-title h3 { margin-bottom: 30px; }
}

.pd-section {
    padding: 110px 0;
    background-color: #F0F3F9;
}
.pd-section .section-title h5 {
    text-decoration: underline;
    color: var(--hm-theme);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}
.pd-section .section-title h3 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--hm-heading);
    margin: 0 0 50px;
    line-height: 1.15;
}
.pd-grid {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    max-width: 1280px; margin: 0 auto;
}
.pd-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(20, 24, 31, .07);
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.pd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(20, 24, 31, .14);
    color: inherit;
}
.pd-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--hm-bg);
}
.pd-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.pd-card:hover .pd-card__media img { transform: scale(1.08); }
.pd-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20, 24, 31, .55) 0%, transparent 50%);
    pointer-events: none;
}
.pd-card__flag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255, 255, 255, .94); color: var(--hm-heading);
    padding: 5px 11px; border-radius: 6px;
    font-size: 11px; font-weight: 800; letter-spacing: .08em;
    backdrop-filter: blur(6px);
}
.pd-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pd-card__title {
    font-size: 18px; font-weight: 700; color: var(--hm-heading);
    margin: 0 0 10px; line-height: 1.3;
}
.pd-card__blurb {
    color: var(--hm-muted); font-size: 14px; line-height: 1.6;
    margin: 0 0 16px; flex: 1;
}
.pd-card__cta {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--hm-theme); font-weight: 700; font-size: 14px;
    transition: gap .2s;
}
.pd-card:hover .pd-card__cta { gap: 12px; }
.pd-section__cta { text-align: center; margin-top: 50px; }
.pd-section__cta .site-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--hm-theme); color: #fff;
    font-weight: 700; padding: 14px 28px;
    border-radius: 6px; text-decoration: none;
    transition: background .2s, transform .2s;
}
.pd-section__cta .site-btn:hover {
    background: #931212; color: #fff; transform: translateY(-2px);
}

.sj-feature-area {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    color: #fff;
}
.sj-feature-area .feature-bg {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: -2;
}
.sj-feature-area .feature-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(20, 24, 31, .82) 0%, rgba(75, 19, 19, .78) 100%);
}
.sj-feature-area .feature-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.sj-feature-area .section-video { padding: 30px; }
.sj-feature-area .circle-icon {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: #fff;
    color: var(--hm-theme);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: transform .25s;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    position: relative;
}
.sj-feature-area .circle-icon::before,
.sj-feature-area .circle-icon::after {
    content: ""; position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .35);
    animation: sjPulse 2.4s ease-out infinite;
}
.sj-feature-area .circle-icon::after { animation-delay: 1.2s; }
@keyframes sjPulse {
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(1.7); opacity: 0;  }
}
.sj-feature-area .circle-icon:hover { transform: scale(1.06); color: var(--hm-theme); }
.sj-feature-area .circle-icon i { margin-left: 4px; }
.sj-feature-area .section-content h4 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.15;
}
.sj-feature-area .section-content p {
    font-size: 16.5px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin: 0 0 24px;
}
.sj-feature-area .site-btn {
    display: inline-flex; align-items: center;
    background: #fff;
    color: var(--hm-theme);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
}
.sj-feature-area .site-btn:hover {
    background: var(--hm-theme); color: #fff; transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}
@media (max-width: 767px) {
    .sj-feature-area { padding: 80px 0; }
    .sj-feature-area .section-content { text-align: center !important; }
    .sj-feature-area .circle-icon { width: 90px; height: 90px; font-size: 28px; }
}

.hm-tours {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.hm-tour {
    background: #fff; border-radius: 18px; overflow: hidden;
    box-shadow: 0 10px 28px rgba(20, 24, 31, .07);
    border: 1px solid var(--hm-border);
    transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column;
}
.hm-tour:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20, 24, 31, .14); }
.hm-tour__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--hm-bg); }
.hm-tour__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hm-tour:hover .hm-tour__media img { transform: scale(1.06); }
.hm-tour__badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--hm-theme); color: #fff;
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.hm-tour__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hm-tour__title { font-size: 19px; font-weight: 700; color: var(--hm-heading); margin: 0 0 12px; line-height: 1.35; flex: 1; }
.hm-tour__meta { display: flex; gap: 16px; color: var(--hm-muted); font-size: 13px; margin-bottom: 18px; flex-wrap: wrap; }
.hm-tour__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hm-tour__btn { display: inline-flex; align-items: center; gap: 8px; color: var(--hm-theme); font-weight: 700; font-size: 14px; text-decoration: none; transition: gap .2s, color .2s; }
.hm-tour__btn:hover { color: #931212; gap: 12px; }

/* Testimonials carousel (kept) */
.hm-testi {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 24px;
}
.hm-testi__card {
    background: #fff; border: 1px solid var(--hm-border);
    border-radius: 18px; padding: 30px 28px;
    box-shadow: 0 10px 28px rgba(20, 24, 31, .07);
    display: flex; flex-direction: column; position: relative;
}
.hm-testi__card::before {
    content: '\201C'; position: absolute; top: -8px; left: 22px;
    font-size: 90px; line-height: 1; color: rgba(175, 0, 0, .12);
    font-family: Georgia, serif; pointer-events: none;
}
.hm-testi__stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; position: relative; }
.hm-testi__title { font-size: 17px; font-weight: 700; color: var(--hm-heading); margin: 0 0 10px; position: relative; }
.hm-testi__text {
    color: #4a4e56; font-size: 14.5px; line-height: 1.65; margin: 0; flex: 1; position: relative;
    display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.hm-testi__foot {
    margin-top: 22px; padding-top: 18px;
    border-top: 1px dashed var(--hm-border);
    display: flex; align-items: center; gap: 14px; position: relative;
}
.hm-testi__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(175, 0, 0, .18), rgba(175, 0, 0, .05));
    color: var(--hm-theme); display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}
.hm-testi__name { font-weight: 700; color: var(--hm-heading); font-size: 14px; margin: 0; line-height: 1.2; }
.hm-testi__pos { font-size: 12px; color: var(--hm-muted); margin-top: 2px; }

/* Gallery teaser */
.hm-gallery {
    display: grid; gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    grid-auto-flow: dense;
}
@media (max-width: 991px) { .hm-gallery { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 160px); } }
@media (max-width: 575px) { .hm-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; } }
.hm-gallery a { display: block; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 20px rgba(20, 24, 31, .06); position: relative; transition: transform .25s; }
.hm-gallery a:hover { transform: translateY(-3px); }
.hm-gallery a:first-child { grid-column: span 2; grid-row: span 2; }
@media (max-width: 575px) { .hm-gallery a:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; } }
.hm-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 575px) { .hm-gallery a:not(:first-child) { aspect-ratio: 1/1; } }

/* YouTube grid */
.hm-yt {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.hm-yt__card {
    background: #000; border-radius: 16px; overflow: hidden;
    box-shadow: 0 10px 28px rgba(20, 24, 31, .12);
    aspect-ratio: 16/9; position: relative;
}
.hm-yt__card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Closing CTA — "Are you a tour leader?"
   ============================================================ */
.tl-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(80px, 11vw, 140px) 0;
    color: #fff;
    text-align: center;
}
.tl-cta__bg {
    position: absolute; inset: 0;
    z-index: -2;
    background-image: url('/assets/img/feature/bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}
.tl-cta__overlay {
    position: absolute; inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(175, 0, 0, .35) 0%, transparent 65%),
        linear-gradient(180deg, rgba(20, 24, 31, .82) 0%, rgba(20, 24, 31, .95) 100%);
}
.tl-cta__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}
.tl-cta__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #fff;
    backdrop-filter: blur(8px);
}
.tl-cta__title {
    font-size: clamp(28px, 4.4vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 18px;
    letter-spacing: -.01em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .35);
}
.tl-cta__text {
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    margin: 0 auto 32px;
    max-width: 580px;
}
.tl-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
    color: var(--hm-theme);
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.tl-cta__btn:hover {
    background: var(--hm-theme);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
}
