/*====================================================================
   Custom CSS File for most of Desktop and Mobile look for Kipya Template
   Developed by Amazing LWEGATECH LTD team.
===================================================================**/
:root {
    --kpy-font: "Ubuntu", sans-serif;
    --kpy-font-heading: 'Georgia', serif;
    --kpy-font-2: "Pacifico", cursive;
    --kpy-primary: #2B5219;
    --kpy-primary-rgb: 43, 82, 25;
    --kpy-secondary: #F5C518;
    --kpy-secondary-rgb: 245, 197, 24;
    --kpy-accent: #E87820;
    --kpy-accent-rgb: 232, 120, 32;
    --kpy-blue: #1A7DC8;
    --kpy-blue-rgb: 26, 125, 200;
    --kpy-white: #FFFFFF;
    --kpy-white-rgb: 255, 255, 255;
    --kpy-black: #1A1A1A;
    --kpy-black-rgb: 26, 26, 26;
    --kpy-grey: #808080;
    --kpy-gradient: linear-gradient(90deg, #F5C518 0%, #E87820 100%);
    --kpy-gradient-v: linear-gradient(180deg, #F5C518 0%, #E87820 100%);
}



/* Apply fonts globally */
body {
    font-family: var(--kpy-font);
    background-color: #f7f9f2;
}

/* Global airplane SVG dashed trail background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.10;
    pointer-events: none;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' preserveAspectRatio='xMidYMid slice'%3E%3Cpath stroke='%23fcd34d' stroke-width='5' stroke-dasharray='15, 20' fill='none' stroke-linecap='round' d='M-100,700 C150,650 300,450 450,550 C600,650 650,800 850,700 C1000,600 1000,300 800,200 C600,100 450,250 550,450 C650,650 850,500 1050,150'/%3E%3Cg transform='translate(1050, 150) rotate(-45)'%3E%3Cpath fill='%23fcd34d' d='M0,0 L-30,15 L-10,0 L-30,-15 Z'/%3E%3Cpath fill='%23fbbf24' d='M0,0 L-30,-15 L-20,-5 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--kpy-font-heading);
}

/* Ensure footer touches CTA section */
.du-footer {
    margin-top: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


/** =========================================================
Fading Effects
==========================================================**/
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up.animate {
    animation: fadeUp 0.8s ease-out forwards;
}

/* =========================
   TOUR PACKAGES FILTER SHORTCODE
========================= */
.packages-filter-wrapper,
.explore-uganda-packages-grid-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.packages-filter-wrapper {
    margin-bottom: 40px;
}

.tour-search-filter .filter-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.tour-search-filter .filter-item {
    display: flex;
    flex-direction: column;
}

.tour-search-filter .filter-item label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--kpy-primary);
    margin-bottom: 8px;
}

.tour-search-filter .filter-item select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 0.95rem;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.tour-search-filter .filter-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tour-search-filter .hero-btn {
    background: var(--kpy-secondary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tour-search-filter .hero-btn:hover {
    background: var(--kpy-accent);
    transform: translateY(-2px);
}

.tour-search-filter .clear-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-search-filter .clear-filter-btn:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.explore-uganda-packages-grid-wrapper .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 1200px) {
    .tour-search-filter .filter-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

.country-overview-section {
    max-width: 1280px;
    margin: 60px auto 0;
    padding: 32px 24px 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8f7f2 0%, #eef5ea 100%);
    box-shadow: 0 18px 45px rgba(27, 40, 20, 0.08);
}

/* Page-level overview (when using page meta instead of taxonomy meta) */
.country-overview-section.page-overview {
    margin-top: 48px;
    background: linear-gradient(180deg, #fafaf8 0%, #f0f4ed 100%);
}

.country-overview-header {
    text-align: center;
    margin-bottom: 28px;
}

.country-overview-header h2 {
    margin: 0;
    color: var(--kpy-primary, #2B5219);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.2;
}

.country-overview-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 32px;
    align-items: start;
}

/* Left sidebar with image and map stacked */
.country-overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.country-overview-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(43, 82, 25, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.country-overview-image,
.country-overview-map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.country-overview-image {
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-overview-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.country-overview-content {
    padding: 36px 32px;
    line-height: 1.8;
}

.country-overview-content h2,
.country-overview-content h3 {
    color: var(--kpy-primary, #2B5219);
    margin: 0 0 1.2rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.country-overview-map {
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.country-overview-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.country-overview-map iframe,
.country-overview-map>div,
.country-overview-map>iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100%;
    border: 0;
    border-radius: 12px;
    flex: 1;
}

.country-overview-content p {
    margin: 0 0 1.2rem;
    color: #3b4637;
    font-size: 1.05rem;
    line-height: 1.8;
}

.country-overview-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .country-overview-grid {
        grid-template-columns: 1fr;
    }

    .country-overview-sidebar {
        order: 2;
    }

    .country-overview-content {
        order: 1;
    }

    .country-overview-image,
    .country-overview-map {
        height: 240px;
    }
}

@media (max-width: 768px) {

    .packages-filter-wrapper,
    .explore-uganda-packages-grid-wrapper {
        padding: 0 16px;
    }

    .tour-search-filter .filter-inner {
        grid-template-columns: 1fr;
    }

    .explore-uganda-packages-grid-wrapper .packages-grid {
        grid-template-columns: 1fr;
    }

    .country-overview-section {
        margin-top: 42px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* =========================
   FOOTER
========================= */

.du-footer {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.7)), url('https://i.pinimg.com/736x/4b/ca/49/4bca49b90fbc056b15cba302ebe2d4c6.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    color: #fff;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0;
}

.du-footer-top-shape {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.du-footer-top-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.du-footer-main {
    padding: 100px 0 56px;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.du-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr;
    gap: 40px 32px;
}

.du-col-brand .du-brand-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 14px 0 24px;
}

.du-brand-logo .du-footer-logo-white {
    filter: brightness(0) invert(1);
    max-height: 65px;
    width: auto;
    display: block;
}

.du-logo-text .du-logo-name,
.du-logo-text .du-logo-sub {
    color: #fff;
}

.du-logo-text .du-logo-name {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.3px;
}

.du-logo-text .du-logo-sub {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
}

.du-col-heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    display: inline-block;
    padding-bottom: 6px;
}

.du-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.du-footer-links li {
    margin-bottom: 12px;
}

.du-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.du-footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

..du-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.du-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.du-contact-ico {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    margin-top: 2px;
}

.du-contact-ico svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: currentColor;
    stroke: none;
    display: block;
}

.du-social-row {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.du-social-icon {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: transparent;
    text-decoration: none;
    transition: all 0.25s ease;
}

.du-social-icon i {
    font-size: 20px;
}

.du-social-icon:hover {
    transform: scale(1.05);
    border-color: transparent;
}

.du-social-facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.du-social-instagram:hover {
    background: radial-gradient(circle at 30% 110%, #ffdb7e, #f46f30, #d62976, #962fbf, #4f5bd5);
    color: #fff;
    border-color: #d62976;
}

.du-social-x:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.du-social-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.du-social-youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.du-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    padding: 22px 0;
    margin-top: 20px;
}

.du-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.du-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.du-bottom-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
}

.du-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.du-bottom-links a:hover {
    color: #fff;
}

.du-bottom-links a:not(:last-child)::after {
    content: "•";
    margin-left: 22px;
    color: rgba(255, 255, 255, 0.4);
}

@media(max-width:1100px) {
    .du-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 36px;
    }
}

@media(max-width:880px) {
    .du-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .du-col-brand {
        grid-column: span 2;
    }
}

@media(max-width:640px) {
    .du-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .du-col-brand {
        grid-column: span 1;
    }

    .du-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}




/* =========================
   SERVICES TEMPLATE
========================= */
:root {
    --dusv2-primary: var(--kpy-primary, #2B5219);
    --dusv2-secondary: var(--kpy-secondary, #F5C518);
    --dusv2-accent: var(--kpy-accent, #E87820);
    --dusv2-dark: #0a0f1a;
    --dusv2-light: #f7f9f2;
    --dusv2-white: #ffffff;
    --dusv2-grey: #6b7280;
    --dusv2-font-heading: var(--kpy-font-heading, 'Georgia', serif);
    --dusv2-font-body: var(--kpy-font-body, 'Inter', sans-serif);
}

/* --- Container --- */
.dusv2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO OVERRIDES (page.php style) --- */
.dusv2-hero-card {
    padding: 2.5rem 3rem !important;
}

.dusv2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid var(--dusv2-secondary);
    border-radius: 50px;
}

.dusv2-hero-icon {
    font-size: 1.2rem;
}

.dusv2-hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dusv2-secondary);
}

.dusv2-hero-title {
    margin-bottom: 12px !important;
}

.dusv2-hero-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* --- STATS BAR --- */
.dusv2-stats {
    background: var(--dusv2-dark);
    padding: 40px 0;
    border-bottom: 1px solid rgba(245, 197, 24, 0.1);
}

.dusv2-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.dusv2-stat-item {
    color: var(--dusv2-white);
}

.dusv2-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dusv2-secondary);
    margin-bottom: 4px;
}

.dusv2-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* --- OVERVIEW SECTION --- */
.dusv2-overview {
    padding: 80px 0;
    background: transparent;
}

.dusv2-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dusv2-overview-media {
    position: relative;
}

.dusv2-overview-imgwrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.dusv2-overview-imgwrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dusv2-overview-imgwrap:hover img {
    transform: scale(1.05);
}

.dusv2-float-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dusv2-primary);
    color: var(--dusv2-white);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(43, 82, 25, 0.3);
}

.dusv2-float-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.dusv2-float-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dusv2-section-eyebrow {
    display: inline-block;
    font-family: var(--dusv2-font-heading);
    font-size: 1rem;
    color: var(--dusv2-accent);
    margin-bottom: 10px;
}

.dusv2-overview-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--dusv2-dark);
    margin-bottom: 16px;
    font-family: var(--dusv2-font-heading);
}

.dusv2-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--dusv2-secondary), var(--dusv2-accent));
    border-radius: 2px;
    margin: 20px 0;
}

.step-circle-outer {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border: 2px dashed rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.04);
}

.step-circle-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    backdrop-filter: blur(6px);
}

.step-num {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 800;
    line-height: 1;

    /* ========================================================
    Unified card styles moved from inc/all_news-shortcode.php
    ======================================================== */
    .unified-card {
        display: block;
        position: relative;
        height: 480px;
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background-size: cover;
        background-position: center;
        transition: transform 0.3s ease;
    }

    .unified-card:hover {
        transform: translateY(-5px);
    }

    .unified-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
    }

    .unified-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--kpy-primary);
        color: #fff;
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.85rem;
        z-index: 3;
    }

    .unified-box-wrapper {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 92%;
        background: #fff;
        border-top-left-radius: 20px;
        z-index: 3;
        padding: 24px;
        box-shadow: -5px -5px 25px rgba(0, 0, 0, 0.12);
    }

    .unified-box-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2px;
    }

    .unified-title {
        font-family: var(--kpy-font, "Ubuntu", sans-serif);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--kpy-primary);
        margin: 0;
        line-height: 1.2;
        padding-right: 10px;
    }

    .unified-meta {
        font-size: 0.8rem;
        color: #999;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        margin-top: 6px;
    }

    .unified-meta i,
    .unified-meta svg {
        color: var(--kpy-secondary);
        font-size: 0.9rem;
        margin-right: 4px;
    }

    .unified-hr {
        border: none;
        border-top: 1px dashed #e5e5e5;
        margin: 15px 0;
    }

    .unified-excerpt {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 20px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .unified-btn {
        display: block;
        width: 100%;
        background: var(--kpy-blue, #0dcaf0);
        color: #fff;
        text-align: center;
        padding: 12px 0;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        transition: background 0.3s, transform 0.2s;
        text-decoration: none;
    }

    .unified-btn:hover {
        background: var(--kpy-primary);
        color: #fff;
        transform: translateY(-2px);
        text-decoration: none;
    }

    @media (max-width: 480px) {
        .unified-box-wrapper {
            width: 100%;
            border-top-right-radius: 20px;
            padding: 20px;
        }
    }

    .explore-posts-grid,
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    /* ========================================================
    Frontpage explore styles moved from inc/all_news-shortcode.php
    ======================================================== */
    .frontpage-explore-section {
        background: #f8f9fa;
        padding: 80px 20px;
    }

    .frontpage-explore-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .frontpage-explore-header h2 {
        font-family: var(--kpy-font-heading, Georgia, serif);
        font-size: 2.5rem;
        color: var(--kpy-primary, #2B5219);
        margin-bottom: 10px;
    }

    .frontpage-explore-header h2 span {
        color: var(--kpy-accent, #E87820);
    }

    .frontpage-explore-header .subtitle {
        color: var(--kpy-grey, #666);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .frontpage-blog-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        min-height: 520px;
    }

    .frontpage-card-featured {
        position: relative;
        height: 100%;
        min-height: 520px;
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        background-size: cover;
        background-position: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        grid-row: 1 / 2;
    }

    .frontpage-card-featured:hover {
        transform: translateY(-5px);
    }

    .frontpage-card-featured::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
        z-index: 1;
    }

    .frontpage-grid-small {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
        height: 100%;
    }

    .frontpage-card-small {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
    }

    /* ========================================================
   Page parallax hero styles moved from page.php
   ======================================================== */
    #page-parallax-hero {
        position: relative;
        width: 100%;
        height: 350px;
        min-height: 350px;
        max-height: 350px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 110px;
        /* Drops below header */
        padding: 0 15px;
        background-color: #111;
    }

    #page-parallax-hero .parallax-bg {
        position: absolute;
        top: -20%;
        left: 0;
        width: 100%;
        height: 140%;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
        will-change: transform;
    }

    #page-parallax-hero .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 2;
    }

    #page-parallax-hero .hero-content-wrapper {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    #page-parallax-hero .hero-card {
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        padding: 2.2rem 2.8rem;
        text-align: center;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    #page-parallax-hero .hero-slogan-text {
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: var(--kpy-font-2, inherit);
        display: block;
        margin-bottom: 0.6rem;
    }

    #page-parallax-hero .hero-slogan-star {
        color: var(--kpy-secondary, #F5C518);
        margin: 0 8px;
        font-size: 0.8rem;
    }

    #page-parallax-hero .hero-title {
        color: #ffffff;
        font-size: clamp(2.2rem, 4vw, 3rem);
        margin-bottom: 0.6rem;
        font-family: var(--kpy-font-2, inherit);
        font-weight: 700;
    }

    #page-parallax-hero .hero-excerpt {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    #page-parallax-hero .hero-breadcrumb-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.95);
        padding: 0.6rem 1.4rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #111;
    }

    #page-parallax-hero .hero-breadcrumb-link {
        color: #111;
        text-decoration: none;
        transition: color 0.3s;
        text-transform: uppercase;
    }

    #page-parallax-hero .hero-breadcrumb-link:hover {
        color: var(--kpy-secondary, #F5C518);
    }

    #page-parallax-hero .hero-breadcrumb-sep {
        color: #888;
    }

    #page-parallax-hero .hero-breadcrumb-current {
        color: var(--kpy-primary, #2B5219);
    }

    @media (max-width: 768px) {
        #page-parallax-hero {
            margin-top: 80px;
        }

        #page-parallax-hero .hero-card {
            padding: 1.5rem;
        }

        #page-parallax-hero .hero-title {
            font-size: 2.2rem;
        }
    }

    color: #0b2b18;
    /* dark number for contrast on light glass */
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.step-title {
    margin: 6px 0 0 0;
    font-size: 0.62rem;
    font-weight: 700;
    color: #0b2b18;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.05;
    max-width: 86px;
}

.dusv2-overview-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dusv2-grey);
    margin-bottom: 30px;
}

/* --- BUTTONS --- */
.dusv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dusv2-btn-primary {
    background: var(--dusv2-primary);
    color: var(--dusv2-white);
    border: 2px solid var(--dusv2-primary);
}

.dusv2-btn-primary:hover {
    background: transparent;
    color: var(--dusv2-primary);
}

.dusv2-btn-outline {
    background: transparent;
    color: var(--dusv2-primary);
    border: 2px solid var(--dusv2-primary);
}

.dusv2-btn-outline:hover {
    background: var(--dusv2-primary);
    color: var(--dusv2-white);
}

/* --- FEATURES GRID --- */
.dusv2-features {
    padding: 80px 0;
    background: transparent;
}

.dusv2-section-head {
    text-align: center;
    margin-bottom: 60px;
}

.dusv2-section-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--dusv2-dark);
    font-family: var(--dusv2-font-heading);
    margin-top: 10px;
}

.dusv2-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dusv2-feature-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    backdrop-filter: blur(4px);
}

.dusv2-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--dusv2-secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.dusv2-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.dusv2-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dusv2-dark);
    margin-bottom: 12px;
}

.dusv2-feature-desc {
    font-size: 0.95rem;
    color: var(--dusv2-grey);
    line-height: 1.6;
}

/* --- PROCESS STEPS (legacy — now replaced by sv2-process-parallax in template) --- */
.dusv2-process {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.dusv2-process .dusv2-section-title {
    color: var(--dusv2-dark);
}

.dusv2-steps-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
}

.dusv2-steps-track::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dusv2-secondary), transparent);
    opacity: 0.3;
}

.dusv2-step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.dusv2-step-number {
    width: 80px;
    height: 80px;
    background: var(--dusv2-primary);
    color: var(--dusv2-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    border: 4px solid var(--dusv2-secondary);
}

.dusv2-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dusv2-white);
    margin-bottom: 10px;
}

.dusv2-step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* --- PACKAGES PRICING --- */
.dusv2-packages {
    padding: 80px 0;
    background: transparent;
}

.dusv2-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.dusv2-package-card {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(5px);
}

.dusv2-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.dusv2-package-featured {
    border-color: var(--dusv2-secondary);
    transform: scale(1.02);
}

.dusv2-package-featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.dusv2-package-header {
    padding: 35px 30px;
    background: var(--dusv2-dark);
    color: var(--dusv2-white);
    text-align: center;
}

.dusv2-package-featured .dusv2-package-header {
    background: linear-gradient(135deg, var(--dusv2-primary) 0%, var(--dusv2-accent) 100%);
}

.dusv2-package-name {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.dusv2-package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.dusv2-price-currency {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dusv2-price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.dusv2-price-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dusv2-package-body {
    padding: 35px 30px;
}

.dusv2-package-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.dusv2-package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--dusv2-grey);
    position: relative;
    padding-left: 28px;
}

.dusv2-package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dusv2-primary);
    font-weight: 700;
}

.dusv2-package-features li.excluded {
    opacity: 0.5;
    text-decoration: line-through;
}

.dusv2-package-features li.excluded::before {
    content: '—';
    color: var(--dusv2-grey);
}

/* --- FAQ SECTION --- */
.dusv2-faq {
    padding: 80px 0;
    background: transparent;
}

.dusv2-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.dusv2-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dusv2-faq-question {
    padding: 25px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dusv2-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.dusv2-faq-question:hover {
    color: var(--dusv2-accent);
}

.dusv2-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--dusv2-secondary);
    transition: transform 0.3s;
}

.dusv2-faq-item[open] .dusv2-faq-question::after {
    content: '—';
}

.dusv2-faq-answer {
    padding: 0 0 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dusv2-grey);
}

/* === Hotel Reservations Simple Process & FAQ === */
.process-parallax {
    position: relative;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.process-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 12, 0.26);
    backdrop-filter: blur(5px) saturate(120%);
    -webkit-backdrop-filter: blur(5px) saturate(120%);
    pointer-events: none;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 12, 0.16);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.process-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.steps-circle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.step-circle-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.step-circle-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.step-circle-outer {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border: 2px dashed rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.step-circle-inner {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    padding: 14px;
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
}

.step-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.step-desc {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.8;
}

.step-desc {
    margin-top: 12px;
    color: rgba(15, 36, 13, 0.85);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Ensure section headings are readable on light overlay */
.process-parallax .process-inner h2,
.process-parallax .process-inner h2 a {
    color: rgba(255, 255, 255, 0.95) !important;
}

.process-parallax span {
    color: var(--kpy-accent) !important;
}

/* Use a subtle dark overlay so the background image stays visible while text remains legible */
.process-parallax::before,
.process-overlay {
    background: rgba(7, 20, 12, 0.28) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

.process-parallax::before {
    background: rgba(7, 20, 12, 0.28) !important;
}

.process-overlay {
    background: rgba(7, 20, 12, 0.18) !important;
}

.step-circle-card {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

.step-circle-outer {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
}

.step-circle-inner {
    background: rgba(255, 255, 255, 0.22) !important;
}

.step-num,
.step-title,
.step-desc {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* =========================
       PACKAGE CARD (moved from inline PHP in shortcode)
       ========================= */
.package-card {
    display: block;
    position: relative;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--kpy-primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 3;
}

.deal-box-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 92%;
    background: #fff;
    border-top-left-radius: 20px;
    z-index: 3;
    padding: 24px;
    box-shadow: -5px -5px 25px rgba(0, 0, 0, 0.12);
}

.deal-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
}

.deal-title {
    font-family: var(--kpy-font, "Ubuntu", sans-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--kpy-primary);
    margin: 0;
    line-height: 1.2;
    padding-right: 10px;
}

.deal-price-wrapper {
    text-align: right;
    line-height: 1.1;
}

.deal-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--kpy-blue, #0dcaf0);
}

.deal-price-sub {
    font-size: 0.65rem;
    color: #888;
    display: block;
}

.deal-checkins {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    margin-top: 4px;
}

.deal-checkins svg {
    width: 12px;
    height: 12px;
    fill: #ccc;
}

.deal-hr {
    border: none;
    border-top: 1px dashed #e5e5e5;
    margin: 15px 0;
}

.deal-includes-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.deal-includes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.deal-includes-list li {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deal-includes-list li svg {
    color: #aaa;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.deal-btn {
    display: block;
    width: 100%;
    background: var(--kpy-blue, #0dcaf0);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.deal-btn:hover {
    background: var(--kpy-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .deal-box-wrapper {
        width: 100%;
        border-top-right-radius: 20px;
        padding: 20px;
    }
}

.step-title {
    font-size: 0.8rem !important;
    line-height: 1.1 !important;
    max-width: 90px !important;
}

.faq-section {
    padding: 80px 20px;
    background: #f5f7ef;
}

.faq-header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.faq-header h2 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin: 0;
    color: var(--kpy-primary);
}

.faq-header span {
    color: var(--kpy-secondary);
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(25, 55, 19, 0.06);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 24px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kpy-primary);
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--kpy-secondary);
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-answer {
    padding: 0 30px 26px;
    font-size: 1rem;
    line-height: 1.75;
    color: #4f4f4f;
}

@media (max-width: 992px) {
    .steps-circle-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 680px) {
    .steps-circle-grid {
        grid-template-columns: 1fr;
    }

    .process-inner {
        padding: 30px 16px;
    }

    .faq-header h2 {
        font-size: 2rem;
    }
}

/* --- CTA SECTION --- */
.dusv2-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dusv2-primary) 0%, #1a3d0f 100%);
}

.dusv2-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ======================================================
   Extracted from front-page.php (redesigned front-page styles)
   ====================================================== */
:root {
    --bg-dark-1: #060b14;
    --bg-dark-2: #0a1120;
    --neon-blue: var(--kpy-secondary);
    --deep-blue: var(--kpy-primary);
    --glass-bg: rgba(10, 17, 32, 0.6);
    --glass-border: rgba(245, 197, 24, 0.2);
}

.redesigned-section {
    position: relative;
    background-color: var(--bg-dark-1);
    color: #e2e8f0;
    overflow: hidden;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
}

.bg-graphic-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='a' patternUnits='userSpaceOnUse' width='40' height='40' patternTransform='scale(2)'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='none'/%3E%3Cpath d='M40 40V0H0v40z' fill='none' stroke='%23F5C518' stroke-width='1' stroke-opacity='0.4'/%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23F5C518'/%3E%3C/pattern%3E%3CradialGradient id='b' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0' stop-color='%23060b14' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23060b14' stop-opacity='1'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)'/%3E%3C/svg%3E");
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 82, 25, 0.4) 0%, rgba(43, 82, 25, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.glow-orb.top-right {
    top: -200px;
    right: -200px;
}

.glow-orb.bottom-left {
    bottom: -200px;
    left: -200px;
}

.section-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.redesigned-section .section-subtitle {
    display: inline-block;
    color: var(--neon-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(245, 197, 24, 0.4);
}

.redesigned-section .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.redesigned-section .section-title span {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-blue);
}

.tours-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tour-glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.tour-glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 197, 24, 0.2);
}

.tour-glass-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-glass-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-glass-card:hover .tour-glass-image img {
    transform: scale(1.05);
}

.tour-glass-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--neon-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--neon-blue);
    backdrop-filter: blur(8px);
}

.tour-glass-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-glass-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.tour-glass-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tour-glass-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.tour-glass-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.tour-glass-price span {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
}

.tour-glass-btn {
    background: transparent;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.tour-glass-card:hover .tour-glass-btn {
    gap: 12px;
}

.services-ticker-section {
    background: var(--bg-dark-2);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.ticker-container {
    display: flex;
    width: 200%;
    animation: ticker 40s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 40px;
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.ticker-item:hover {
    color: var(--neon-blue);
}

.ticker-item i {
    font-size: 1.5rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content .feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.split-content .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(245, 197, 24, 0.1);
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.split-content .feature-text h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.split-content .feature-text p {
    color: #94a3b8;
    line-height: 1.6;
}

.split-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    filter: sepia(0.2) hue-rotate(180deg) saturate(1.5) brightness(0.8);
}

.split-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(43, 82, 25, 0.5), transparent);
    border-radius: 30px;
}

.mosaic-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    background: #000;
}

.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: padding 0.5s ease;
}

.mosaic-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.mosaic-item:hover .mosaic-overlay {
    padding-bottom: 50px;
}

.mosaic-overlay h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.mosaic-overlay .explore {
    color: var(--neon-blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mosaic-item:hover .mosaic-overlay .explore {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-dark {
    position: relative;
    padding: 120px 20px;
    text-align: center;
}

.testi-large-text {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
}

.testi-large-text::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 6rem;
    color: rgba(245, 197, 24, 0.2);
    font-family: sans-serif;
}

.testi-author h5 {
    color: var(--neon-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testi-author span {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dot.active {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.cta-abstract {
    position: relative;
    padding: 150px 20px;
    text-align: center;
    overflow: hidden;
}

.cta-abstract-bg {
    position: absolute;
    inset: 0;
    background: url('https://dialustoursandtravel.com/assets/murchison38.jpg') center/cover fixed;
}

.cta-abstract-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 11, 20, 0.95), rgba(43, 82, 25, 0.85));
    backdrop-filter: blur(5px);
}

.cta-btn-neon {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--neon-blue);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--neon-blue);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.1) inset, 0 0 20px rgba(245, 197, 24, 0.1);
    margin-top: 40px;
}

.cta-btn-neon:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.5) inset, 0 0 40px rgba(245, 197, 24, 0.4);
}

@media (max-width: 991px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .mosaic-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .mosaic-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {}

.du-footer {
    margin-top: 0 !important;
}

.tailor-cta-section {
    background: #f5f5f5;
    padding: 80px 20px;
    position: relative;
    overflow: visible;
}

.tailor-cta-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #020617;
    position: relative;
    padding: 60px 40px;
}

.tailor-cta-image-wrapper {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 10;
}

.tailor-cta-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tailor-cta-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tailor-cta-image-container:hover .tailor-cta-image {
    transform: scale(1.05);
}

.rotating-text-container {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 90px;
    height: 90px;
    z-index: 20;
}

.rotating-text {
    width: 100%;
    height: 100%;
    animation: rotateCircle 15s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotating-text text {
    fill: #333;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tailor-cta-content {
    margin-left: 50%;
    padding-left: 80px;
    color: #fff;
}

.tailor-cta-heading {
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Georgia', serif;
}

.tailor-cta-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    line-height: 1.5;
}

.tailor-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    max-width: 200px;
}

.tailor-cta-btn {
    display: block;
    padding: 14px 25px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    width: 100%;
}

.tailor-cta-btn-primary {
    background: #fff;
    color: #020617;
    border-color: #fff;
}

.tailor-cta-btn-primary:hover {
    background: transparent;
    color: #fff;
}

.tailor-cta-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.tailor-cta-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.tailor-cta-availability {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tailor-cta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.tailor-cta-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tailor-cta-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .tailor-cta-section {
        padding: 40px 20px;
    }

    .tailor-cta-wrapper {
        padding: 40px 30px;
    }

    .tailor-cta-image-wrapper {
        position: relative;
        left: -30px;
        top: 0;
        transform: none;
        width: calc(100% + 60px);
        margin-bottom: 30px;
    }

    .tailor-cta-image {
        height: 250px;
    }

    .rotating-text-container {
        width: 70px;
        height: 70px;
        top: -20px;
        left: -20px;
    }

    .tailor-cta-content {
        margin-left: 0;
        padding-left: 0;
    }

    .tailor-cta-heading {
        font-size: 1.6rem;
    }

    .tailor-cta-buttons {
        max-width: 100%;
    }
}

/* ======================================================
   Extracted from template-booking.php
   ====================================================== */
.booking-page-wrapper {
    background: linear-gradient(135deg, #f7f9f2 0%, #e8f0e0 100%);
    min-height: 100vh;
    padding: 40px 20px;
    margin-top: 110px;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--kpy-primary, #2B5219);
    margin-bottom: 10px;
}

.booking-header p {
    color: #666;
    font-size: 1.1rem;
}

.booking-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form .form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.booking-form label .required {
    color: #e74c3c;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--kpy-primary, #2B5219);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(43, 82, 25, 0.1);
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 45px;
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-form .form-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.submit-booking {
    grid-column: 1 / -1;
    padding: 18px 40px;
    background: var(--kpy-primary, #2B5219);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-booking:hover {
    background: var(--kpy-accent, #E87820);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(43, 82, 25, 0.3);
}

.booking-success,
.booking-error {
    grid-column: 1 / -1;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.booking-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.booking-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.booking-success h3,
.booking-error h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.booking-contact-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(43, 82, 25, 0.05);
    border-radius: 15px;
    text-align: center;
}

.booking-contact-info h3 {
    color: var(--kpy-primary, #2B5219);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.booking-contact-info p {
    color: #666;
    line-height: 1.8;
}

.booking-contact-info a {
    color: var(--kpy-primary, #2B5219);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        padding: 25px;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   Extracted from template-hotel-reservations.php
   ====================================================== */
.hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.overview-section {
    padding: 80px 20px;
    background: #f7f9f2;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-text h2 {
    color: var(--kpy-primary, #2B5219);
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    background: var(--kpy-secondary, #F5C518);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-section {
    padding: 80px 20px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 30px;
    border-radius: 12px;
    background: #f7f9f2;
    text-align: center;
}

.feature-card i {
    font-size: 2rem;
    color: var(--kpy-primary, #2B5219);
    margin-bottom: 15px;
}

.hotel-tabs-section {
    padding: 80px 20px;
    background: #f7f9f2;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 15px 25px;
    background: white;
    border: 2px solid var(--kpy-primary, #2B5219);
    color: var(--kpy-primary, #2B5219);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--kpy-primary, #2B5219);
    color: white;
}

.tab-content {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.tab-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tab-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.tab-text h3 {
    color: var(--kpy-primary, #2B5219);
    margin-bottom: 20px;
}

.tab-text p {
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {

    .overview-grid,
    .tab-grid {
        grid-template-columns: 1fr;
    }

    .tab-images {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .steps-circle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .step-circle-outer::after {
        display: none;
    }

    .process-parallax {
        background-attachment: scroll;
    }

    .step-circle-outer {
        width: 140px;
        height: 140px;
    }

    .step-num {
        font-size: 1.8rem;
    }
}

.dusv2-cta-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--dusv2-white);
    font-family: var(--dusv2-font-heading);
    margin-bottom: 10px;
}

.dusv2-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.dusv2-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.dusv2-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dusv2-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.dusv2-cta-phone:hover {
    opacity: 0.8;
}

.dusv2-phone-icon {
    font-size: 1.3rem;
}

/* --- RELATED SERVICES --- */
.dusv2-related {
    padding: 80px 0;
    background: transparent;
}

.dusv2-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dusv2-related-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px 28px;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    backdrop-filter: blur(4px);
}

.dusv2-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--dusv2-secondary);
}

.dusv2-related-icon {
    font-size: 2rem;
}

.dusv2-related-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dusv2-dark);
    flex: 1;
}

.dusv2-related-arrow {
    font-size: 1.2rem;
    color: var(--dusv2-accent);
    transition: transform 0.3s;
}

.dusv2-related-card:hover .dusv2-related-arrow {
    transform: translateX(5px);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .dusv2-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dusv2-overview-imgwrap img {
        height: 350px;
    }

    .dusv2-float-badge {
        right: 10px;
        bottom: 10px;
    }

    .dusv2-steps-track::before {
        display: none;
    }

    .dusv2-packages-grid {
        grid-template-columns: 1fr;
    }

    .dusv2-package-featured {
        transform: none;
    }

    .dusv2-package-featured:hover {
        transform: translateY(-10px);
    }

    .dusv2-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .dusv2-cta-actions {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .dusv2-hero-card {
        padding: 1.5rem !important;
    }

    .dusv2-overview-title,
    .dusv2-section-title,
    .dusv2-cta-title {
        font-size: 1.6rem;
    }

    .dusv2-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dusv2-features-grid,
    .dusv2-related-grid {
        grid-template-columns: 1fr;
    }
}



.partners-title {
    color: var(--kpy-primary);
    font-family: var(--kpy-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.partner-item {
    position: relative;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.partner-link:hover {
    opacity: 0.9;
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-link:hover .partner-logo-img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo-placeholder {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(114, 170, 40, 0.1), rgba(255, 185, 0, 0.1));
    color: var(--kpy-accent);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    padding: 0.5rem;
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .partner-logo {
        height: 90px;
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-logo {
        height: 80px;
        padding: 0.6rem;
    }

    .partner-logo-img {
        max-height: 50px;
    }

    .partners-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .partner-logo {
        height: 70px;
        padding: 0.5rem;
    }

    .partner-logo-img {
        max-height: 40px;
    }

    .partner-logo-placeholder {
        font-size: 0.8rem;
    }
}



/* =========================
  MENU/HEADER
========================= */
:root {
    --kpy-font: "Ubuntu", sans-serif;
    --kpy-font-heading: 'Georgia', serif;
    --kpy-font-2: "Pacifico", cursive;
    --kpy-primary: #2B5219;
    --kpy-primary-rgb: 43, 82, 25;
    --kpy-secondary: #F5C518;
    --kpy-secondary-rgb: 245, 197, 24;
    --kpy-accent: #E87820;
    --kpy-accent-rgb: 232, 120, 32;
    --kpy-blue: #1A7DC8;
    --kpy-blue-rgb: 26, 125, 200;
    --kpy-white: #FFFFFF;
    --kpy-white-rgb: 255, 255, 255;
    --kpy-black: #1A1A1A;
    --kpy-black-rgb: 26, 26, 26;
    --kpy-grey: #808080;
    --kpy-gradient: linear-gradient(90deg, #F5C518 0%, #E87820 100%);
    --kpy-gradient-v: linear-gradient(180deg, #F5C518 0%, #E87820 100%);
}

.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(var(--kpy-blue-rgb), 0.85) 0%, rgba(var(--kpy-blue-rgb), 0.5) 40%, rgba(var(--kpy-blue-rgb), 0) 100%);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    padding: 8px 0;
}

.transparent-header.scrolled {
    position: fixed;
    background: linear-gradient(180deg, var(--kpy-blue) 0%, #1166a8 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.transparent-logo {
    flex: 0 0 auto;
    background: var(--kpy-white);
    border-radius: 40px 40px 12px 12px;
    padding: 8px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.transparent-logo img {
    height: 100px;
    width: auto;
    display: block;
    transition: all 0.35s ease;
}

.transparent-header.scrolled .transparent-logo {
    padding: 5px 16px;
    border-radius: 35px 35px 10px 10px;
}

.transparent-header.scrolled .transparent-logo img {
    height: 80px;
}

.transparent-menu .nav-link {
    color: var(--kpy-white) !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 10.5px;
    padding: 1.8rem 0.8rem !important;
    position: relative;
    transition: all 0.2s ease;
}

.transparent-header.scrolled .nav-link {
    color: var(--kpy-white) !important;
}

.transparent-menu .nav-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.transparent-menu .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0.75rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--kpy-white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.transparent-menu .nav-link:hover::after,
.transparent-menu .current-menu-item .nav-link::after {
    transform: scaleX(1);
}

.transparent-menu .menu-item-has-children {
    position: relative;
}

.transparent-menu .dropdown-menu,
.transparent-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    background: rgba(var(--kpy-blue-rgb), 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 16px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
    margin-top: 10px;
    border-top: 3px solid var(--kpy-secondary, #F5C518);
    pointer-events: none;
}

.transparent-menu .menu-item-has-children:hover>.dropdown-menu,
.transparent-menu .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.transparent-menu .dropdown-item,
.transparent-menu .sub-menu .menu-item a {
    color: var(--kpy-white) !important;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    position: relative;
    gap: 12px;
    text-decoration: none;
}

.transparent-menu .dropdown-item:not(:last-child),
.transparent-menu .sub-menu .menu-item:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transparent-menu .dropdown-item:hover,
.transparent-menu .sub-menu .menu-item a:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 32px;
}

.transparent-menu .dropdown-item::before,
.transparent-menu .sub-menu .menu-item a::before {
    content: "\f4b9";
    font-family: "bootstrap-icons";
    font-size: 1rem;
    line-height: 1;
    opacity: 0.8;
    transition: all 0.2s ease;
    margin-right: 8px;
}

.transparent-menu .dropdown-item:hover::before,
.transparent-menu .sub-menu .menu-item a:hover::before {
    transform: translateX(2px);
    opacity: 1;
}

.transparent-menu .dropdown-item.active,
.transparent-menu .current-menu-item .dropdown-item,
.transparent-menu .sub-menu .current-menu-item a {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.transparent-menu .menu-item-has-children>.nav-link {
    position: relative;
    padding-right: 1.2rem !important;
}

.transparent-menu .menu-item-has-children>.nav-link::before {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    opacity: 0.9;
    font-weight: bold;
    pointer-events: none;
}

.transparent-menu .menu-item-has-children:hover>.nav-link::before {
    transform: translateY(-50%) rotate(180deg);
}

.transparent-menu .dropdown-menu::before,
.transparent-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: rgba(var(--kpy-blue-rgb), 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    border-top-left-radius: 4px;
    z-index: 1;
}

.transparent-menu .dropdown-menu.dropdown-menu-end::before,
.transparent-menu .sub-menu.dropdown-menu-end::before {
    left: auto;
    right: 30px;
}

.transparent-menu .dropdown-menu.columns-2,
.transparent-menu .sub-menu.columns-2 {
    min-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
}

.transparent-menu .dropdown-menu.columns-3,
.transparent-menu .sub-menu.columns-3 {
    min-width: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px;
}

.transparent-menu .dropdown-header {
    color: var(--kpy-white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 24px;
    margin-bottom: 4px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.header-cta {
    align-self: center;
    display: flex;
    align-items: center;
}

.header-cta .book-now-btn {
    background: var(--kpy-white);
    color: var(--kpy-blue);
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
    white-space: nowrap;
}

.header-cta .book-now-btn:hover {
    background: transparent;
    color: var(--kpy-white);
    border-color: var(--kpy-white);
    transform: translateY(-2px);
}

.transparent-header.scrolled .header-cta .book-now-btn {
    background: var(--kpy-white);
    color: var(--kpy-blue);
}

.header-cta .book-now-btn::after {
    display: none !important;
}

@media (max-width: 991.98px) {
    .desktop-menu {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
        background: transparent;
        border: none;
        font-size: 28px;
        color: var(--kpy-white);
        cursor: pointer;
        padding: 8px;
        line-height: 1;
        transition: color 0.3s ease;
    }

    .transparent-header.scrolled .mobile-toggle {
        color: var(--kpy-white);
    }

    .transparent-header .container>.d-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .transparent-logo {
        order: 1;
    }

    .transparent-logo img {
        height: 80px;
    }

    .header-cta {
        display: none !important;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--kpy-white);
        z-index: 9999;
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        display: block !important;
    }

    .mobile-menu-panel.active {
        right: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 30px;
        color: var(--kpy-primary);
        cursor: pointer;
        padding: 5px;
        line-height: 1;
    }

    .mobile-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu .nav-item {
        margin-bottom: 5px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-menu .nav-link {
        display: block;
        padding: 15px 0 !important;
        color: var(--kpy-primary) !important;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        position: relative;
    }

    .mobile-menu .menu-item-has-children>.nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu .menu-item-has-children>.nav-link::after {
        content: "\f282";
        font-family: "bootstrap-icons";
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .mobile-menu .menu-item-has-children.active>.nav-link::after {
        transform: rotate(180deg);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.legit-about,
.core-value,
.history,
.hero-wave {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.legit-about.visible,
.core-value.visible,
.history.visible,
.hero-wave.visible {
    opacity: 1;
    transform: translateY(0);
}

.legit-about {
    transition-delay: 0.2s;
}

.core-value {
    transition-delay: 0.35s;
}

.history {
    transition-delay: 0.5s;
}

.hero-wave {
    transition-delay: 0.65s;
}

.legit-about .wp-block-image,
.core-value .wp-block-image,
.history .wp-block-image,
.hero-wave .wp-block-image,
.legit-about .wp-block-heading,
.core-value .wp-block-heading,
.history .wp-block-heading,
.hero-wave .wp-block-heading,
.legit-about p,
.core-value p,
.history p,
.hero-wave p,
.legit-about ul,
.core-value ul,
.history ul,
.hero-wave ul,
.legit-about .wp-block-quote,
.core-value .wp-block-quote,
.history .wp-block-quote,
.hero-wave .wp-block-quote,
.legit-about .wp-block-buttons,
.core-value .wp-block-buttons,
.history .wp-block-buttons,
.hero-wave .wp-block-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.legit-about.visible .wp-block-heading,
.core-value.visible .wp-block-heading,
.history.visible .wp-block-heading,
.hero-wave.visible .wp-block-heading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.legit-about.visible p,
.core-value.visible p,
.history.visible p,
.hero-wave.visible p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.legit-about.visible ul,
.core-value.visible ul,
.history.visible ul,
.hero-wave.visible ul {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

.legit-about.visible .wp-block-image,
.core-value.visible .wp-block-image,
.history.visible .wp-block-image,
.hero-wave.visible .wp-block-image {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.legit-about.visible .wp-block-quote,
.core-value.visible .wp-block-quote,
.history.visible .wp-block-quote {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.legit-about.visible .wp-block-buttons,
.core-value.visible .wp-block-buttons,
.history.visible .wp-block-buttons,
.hero-wave.visible .wp-block-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.legit-about.visible .wp-block-image:hover {
    transform: scale(1.02);
}

.core-value.visible .wp-block-column:last-child:hover {
    transform: translateX(-10px) translateY(15px);
}

.history.visible .wp-block-column:hover {
    transform: translateY(-5px);
}

.hero-wave .wp-block-cover {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-wave.visible .wp-block-cover {
    opacity: 1;
    transform: scale(1);
}

.hero-wave .waves {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-wave.visible .waves {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}



/** =========================================================
ABOUT SECTION
==========================================================**/
.legit-about {
    padding: 40px 0;
    font-family: var(--kpy-font);
}

.legit-about .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.legit-about .wp-block-image img:hover {
    transform: scale(1.02);
}

.legit-about h2.wp-block-heading {
    font-family: var(--kpy-font-heading);
    color: var(--kpy-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.legit-about h2.wp-block-heading::after {
    display: none;
}

.legit-about p {
    color: var(--kpy-accent);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legit-about p strong {
    color: var(--kpy-primary);
    font-weight: 600;
}

.legit-about .wp-block-columns {
    align-items: center;
    gap: 2rem;
}

.legit-about .wp-block-column:nth-child(2) {
    padding: 2rem;
}

@media (max-width: 992px) {
    .legit-about .wp-block-columns {
        flex-direction: column;
    }

    .legit-about .wp-block-column {
        flex-basis: 100% !important;
        width: 100%;
    }

    .legit-about .wp-block-column:nth-child(2) {
        order: -1;
        margin-bottom: 2rem;
    }

    .legit-about h2.wp-block-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .legit-about {
        padding: 2rem 0;
    }

    .legit-about h2.wp-block-heading {
        font-size: 1.8rem;
    }

    .legit-about p {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legit-about .wp-block-image {
    animation: fadeInUp 0.6s ease-out forwards;
}

.legit-about .wp-block-image:nth-child(2) {
    animation-delay: 0.2s;
}


.history {
    padding: 4rem 0;
    font-family: var(--kpy-font);
}

.history .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.history .wp-block-columns {
    gap: 3rem;
    align-items: flex-start;
}

.history .wp-block-column {
    background: var(--kpy-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history .wp-block-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history h2.wp-block-heading {
    color: var(--kpy-primary);
    font-family: var(--kpy-font-heading);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.history .wp-block-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.history .wp-block-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.history .wp-block-image:hover img {
    transform: scale(1.05);
}

.history ul.wp-block-list {
    list-style: none;
    padding-left: 0;
}

.history ul.wp-block-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--kpy-accent);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.history ul.wp-block-list li:before {
    content: "🗓";
    position: absolute;
    left: 0;
    color: var(--kpy-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.history ul.wp-block-list li:last-child {
    border-bottom: none;
}

.history ul.wp-block-list li strong {
    color: var(--kpy-primary);
}

.history ul.wp-block-list li em {
    color: var(--kpy-accent);
    font-style: italic;
}

.history ul.wp-block-list li a {
    color: var(--kpy-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.history ul.wp-block-list li a:hover {
    color: var(--kpy-primary);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .history .wp-block-columns {
        flex-direction: column;
    }

    .history .wp-block-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .history {
        padding: 2rem 0;
    }

    .history .wp-block-column {
        padding: 1.5rem;
    }

    .history h2.wp-block-heading {
        font-size: 1.8rem;
    }

    .history .wp-block-image img {
        height: 250px;
    }
}

.core-value {
    padding: 4rem 0;
    font-family: var(--kpy-font);
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.core-value .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.core-value .wp-block-columns {
    align-items: center;
    gap: 3rem;
    position: relative;
}

.core-value .wp-block-column:first-child {
    position: relative;
    z-index: 1;
}

.core-value .wp-block-column:last-child {
    background: var(--kpy-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    margin-left: -60px;
    transform: rotate(-1deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.core-value .wp-block-column:last-child:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.core-value .wp-block-image {
    overflow: hidden;
    border-radius: 8px;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.core-value .wp-block-image:hover {
    transform: rotate(1deg) scale(1.03);
}

.core-value .wp-block-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 8px;
}

.core-value h2.wp-block-heading {
    color: var(--kpy-primary);
    font-family: var(--kpy-font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.core-value h2.wp-block-heading::after {
    display: none;
}

.core-value p {
    color: var(--kpy-accent);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.core-value p strong {
    color: var(--kpy-primary);
}

.core-value p em {
    color: var(--kpy-secondary);
    font-style: italic;
    font-weight: 500;
}

.core-value ul.wp-block-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.core-value ul.wp-block-list li {
    padding: 0.85rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--kpy-accent);
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px dashed rgba(114, 170, 40, 0.2);
}

.core-value ul.wp-block-list li:before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.85rem;
    color: var(--kpy-secondary);
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.core-value ul.wp-block-list li:last-child {
    border-bottom: none;
}

.core-value ul.wp-block-list li:hover:before {
    animation: pulse 0.5s ease;
    color: var(--kpy-primary);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .core-value .wp-block-columns {
        flex-direction: column;
    }

    .core-value .wp-block-column:last-child {
        margin-left: 0;
        transform: none;
        margin-top: -40px;
        width: 90%;
        align-self: center;
    }

    .core-value .wp-block-image {
        transform: none;
    }

    .core-value .wp-block-column:last-child:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .core-value {
        padding: 2.5rem 0;
    }

    .core-value .wp-block-column:last-child {
        padding: 2rem;
        width: 100%;
    }

    .core-value h2.wp-block-heading {
        font-size: 2rem;
    }

    .core-value .wp-block-image img {
        height: 350px;
    }
}



.pearl {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(114, 170, 40, 0.03) 0%, rgba(255, 185, 0, 0.03) 100%);
    font-family: var(--kpy-font);
}

.pearl .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pearl h2.wp-block-heading {
    color: var(--kpy-primary);
    font-family: var(--kpy-font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.pearl h2.wp-block-heading::after {
    display: none;
}

.pearl .wp-block-columns {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

.pearl .wp-block-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pearl .wp-block-column.card {
    background: var(--kpy-white);
    padding: 2.5rem;
    border-radius: 50%;
    border-top: 5px solid var(--kpy-primary);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pearl .wp-block-column.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pearl .wp-block-column.card p {
    color: var(--kpy-accent);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.pearl .wp-block-column.card p strong {
    color: var(--kpy-primary);
}

.pearl .wp-block-image {
    overflow: hidden;
    border-radius: 12px;
    flex: 1;
    min-height: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.pearl .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.pearl .wp-block-image:hover {
    transform: scale(1.03);
}

.pearl .wp-block-image:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .pearl .wp-block-columns {
        flex-direction: column;
    }

    .pearl .wp-block-column.card,
    .pearl .wp-block-image {
        height: auto;
        min-height: 300px;
    }

    .pearl .wp-block-column.card {
        order: 2;
        margin-top: -30px;
        z-index: 2;
    }

    .pearl .wp-block-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .pearl {
        padding: 3rem 0;
    }

    .pearl h2.wp-block-heading {
        font-size: 2.2rem;
    }

    .pearl .wp-block-column.card {
        padding: 1.8rem;
        min-height: 250px;
    }

    .pearl .wp-block-image {
        min-height: 250px;
    }
}

.pearl.visible .wp-block-spacer {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.3s;
}

.pearl .wp-block-column.card {
    opacity: 0;
    transform: translateY(40px) rotate(-2deg);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pearl.visible .wp-block-column.card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition-delay: 0.4s;
}

.pearl.visible .wp-block-column.card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition-delay: 0.6s;
}

.pearl.visible .wp-block-column.card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition-delay: 0.8s;
}

.pearl.visible .wp-block-column.card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pearl .wp-block-image {
    opacity: 0;
    transform: perspective(1000px) rotateY(90deg) scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pearl.visible .wp-block-image:nth-child(2) {
    opacity: 1;
    transform: perspective(1000px) rotateY(0) scale(1);
    transition-delay: 0.5s;
}

.pearl.visible .wp-block-image:nth-child(1) {
    opacity: 1;
    transform: perspective(1000px) rotateY(0) scale(1);
    transition-delay: 0.7s;
}

.pearl.visible .wp-block-image:nth-child(3) {
    opacity: 1;
    transform: perspective(1000px) rotateY(0) scale(1);
    transition-delay: 0.9s;
}

.pearl.visible .wp-block-image:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
}

.pearl .wp-block-column.card h5 {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease, color 0.3s ease;
}

.pearl.visible .wp-block-column.card h5 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.pearl .wp-block-column.card p {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pearl.visible .wp-block-column.card p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.pearl.visible .wp-block-column.card:hover h5 {
    color: var(--kpy-secondary);
}

.pearl.visible .wp-block-column.card:hover p {
    color: var(--kpy-accent);
}

/* Pulsing animation for heading after reveal */
@keyframes pulseGlow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(114, 170, 40, 0.3);
    }

    50% {
        text-shadow: 0 0 15px rgba(114, 170, 40, 0.6), 0 0 20px rgba(255, 185, 0, 0.4);
    }
}

.pearl.visible h2.wp-block-heading:hover {
    animation: pulseGlow 1.5s ease-in-out infinite;
}

/* Bounce animation for images on hover */
@keyframes bounce {

    0%,
    100% {
        transform: perspective(1000px) rotateY(0) scale(1);
    }

    50% {
        transform: perspective(1000px) rotateY(5deg) scale(1.05);
    }
}

.pearl.visible .wp-block-image:hover {
    animation: bounce 0.8s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pearl .wp-block-column.card {
        transform: translateY(30px);
    }

    .pearl .wp-block-image {
        transform: perspective(1000px) rotateX(90deg) scale(0.8);
    }

    .pearl.visible .wp-block-image {
        transform: perspective(1000px) rotateX(0) scale(1);
    }
}

@media (max-width: 768px) {
    .pearl .wp-block-column.card {
        transition-delay: 0.3s !important;
    }

    .pearl .wp-block-image {
        transition-delay: 0.4s !important;
    }
}


.popular-destinations-section {
    padding: 60px 20px 40px;
    background: linear-gradient(to bottom, rgb(238 228 196 / 5%) 0%, rgb(255 185 0 / 30%) 70%);
}

.section-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 50px;
    gap: 30px;
}

.section-header {
    flex: 1;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--kpy-primary);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--kpy-font-heading);
    font-size: 3rem;
    color: var(--kpy-accent);
    margin: 0 0 15px;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--kpy-accent);
    opacity: 0.8;
    max-width: 600px;
    margin: 0;
}

.explore-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--kpy-primary) 0%, var(--kpy-secondary) 100%);
    color: var(--kpy-white);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(var(--kpy-primary-rgb), 0.2);
}

.explore-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(var(--kpy-primary-rgb), 0.3);
    gap: 12px;
}

.explore-all-btn svg {
    transition: transform 0.3s ease;
}

.explore-all-btn:hover svg {
    transform: translateX(5px);
}

.destination-slider {
    overflow: hidden;
    overflow-y: visible;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-track {
    display: flex;
    gap: 30px;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 20px;
}

.destination-track::-webkit-scrollbar {
    display: none;
}

.destination-card {
    min-width: 420px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(var(--kpy-accent-rgb), 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--kpy-accent-rgb), 0.05);
    position: relative;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(var(--kpy-accent-rgb), 0.1);
}

/* Corner Badge */
.corner-badge {
    position: absolute;
    top: 5px;
    right: -14px;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary));
    color: var(--kpy-white);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transform: rotate(5deg);
}

.corner-badge svg {
    width: 14px;
    height: 14px;
}

.card-link-wrapper {
    text-decoration: none;
    color: inherit;
}

.card-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.card-image {
    position: relative;
    width: 160px;
    height: 140px;
    transform: rotate(-5deg);
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.destination-card:hover .card-image {
    transform: rotate(0deg);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--kpy-primary-rgb), 0.2) 0%, transparent 70%);
}

.card-number {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--kpy-white);
    color: var(--kpy-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.package-info {
    margin-bottom: 10px;
}

.listings-count {
    font-size: 14px;
    color: var(--kpy-primary);
    font-weight: 600;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(var(--kpy-primary-rgb), 0.1);
    border-radius: 12px;
}

.destination-name {
    font-size: 26px;
    margin: 10px 0 15px;
    color: var(--kpy-accent);
    font-family: var(--kpy-font-heading);
}

.explore-text {
    text-decoration: none;
    font-weight: 600;
    color: var(--kpy-secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.destination-card:hover .explore-text {
    color: var(--kpy-primary);
    gap: 8px;
}

@media (max-width:1024px) {
    .section-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width:768px) {
    .popular-destinations-section {
        padding: 40px 15px 60px;
    }

    .destination-card {
        min-width: 350px;
    }

    .card-inner {
        gap: 25px;
    }

    .destination-name {
        font-size: 22px;
    }
}

@media (max-width:480px) {
    .destination-card {
        min-width: 300px;
        padding: 25px;
    }

    .card-image {
        width: 130px;
        height: 120px;
    }

    .corner-badge {
        right: -8px;
        top: -8px;
        padding: 6px 12px;
        font-size: 11px;
    }
}


/** =========================================================
HOME SLIDER
==========================================================**/
.explore-uganda-packages-slider-wrapper {
    font-family: var(--kpy-font, "Poppins", sans-serif);
    max-width: 1200px;
    margin: 30px auto;
}

.packages-slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.packages-slider-header h2 {
    font-family: var(--kpy-font-heading);
    color: var(--kpy-secondary, #710b0d);
    font-size: 56px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.packages-slider-header h2:after {
    display: none;
}

.packages-slider-header p {
    color: var(--kpy-accent, #594539);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.packages-slider-container {
    position: relative;
    padding: 0 40px;
    overflow: hidden;
}

.packages-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.package-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-slide:hover {
    transform: translateY(-10px);
}

.package-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    background: white;
}

.package-images {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px;
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--kpy-primary, #f7d508);
    color: var(--kpy-secondary, #710b0d);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.package-prices {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(var(--kpy-secondary-rgb, 113, 11, 13), 0.95);
    color: var(--kpy-white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    z-index: 2;
}

.package-conten {
    padding: 20px;
}

.package-conten h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: var(--kpy-primary);
    font-family: var(--kpy-font-2, "Playfair Display", serif);
    line-height: 1.3;
}

.package-meta,
.package-duration {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.meta-icon {
    margin-right: 8px;
}

.package-excerpt {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

.package-reviews {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: var(--kpy-accent, #594539);
    font-size: 0.85rem;
}

.stars {
    color: var(--kpy-secondary);
    margin-right: 5px;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--kpy-secondary, #710b0d);
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
}

.slider-nav:hover {
    background: var(--kpy-secondary, #710b0d);
    color: #fff;
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

@media (max-width:1024px) {
    .package-slide {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width:768px) {
    .package-slide {
        flex: 0 0 100%;
    }

    .packages-slider-container {
        padding: 0 20px;
    }

    .packages-slider-header h2 {
        font-size: 44px;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin: 30px auto;
}

.package-grid-item {
    transition: transform 0.3s;
}

.package-grid-item:hover {
    transform: translateY(-5px);
}

.tour-search-filter {
    background: var(--kpy-white);
    padding: 28px 32px;
    margin-bottom: 60px
}

.tour-search-filter .filter-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 28px;
    align-items: end
}

.tour-search-filter .filter-item label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--kpy-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.tour-search-filter .filter-item select,
.tour-search-filter .filter-item input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e5e5e5;
    padding: 10px 0;
    font-size: 16px;
    font-family: var(--kpy-font);
    background: transparent;
    outline: none
}

.tour-search-filter .filter-item select:focus,
.tour-search-filter .filter-item input:focus {
    border-color: var(--kpy-secondary)
}

.tour-search-filter .filter-item input::placeholder {
    color: var(--kpy-grey)
}

.tour-search-filter .hero-btn {
    background: var(--kpy-secondary);
    color: var(--kpy-white);
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap
}

.tour-search-filter .hero-btn:hover {
    background: var(--kpy-primary)
}

@media(max-width:992px) {
    .tour-search-filter .filter-inner {
        grid-template-columns: 1fr
    }
}

/* ===== FAN CARDS EFFECT ===== */
.view {
    padding: 80px 0;
    overflow: hidden;
}

.view .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow: visible;
    min-height: 400px;
    position: relative;
}

.view .wp-block-column {
    position: relative;
    flex: 0 0 220px;
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), margin 1.2s ease, z-index 1.2s ease, opacity 1.2s ease, filter 1.2s ease;
    will-change: transform, opacity, z-index;
}

.view .wp-block-column img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 18px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.view .wp-block-column:hover img {
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
}

.view.fan-init .wp-block-column:nth-child(1) {
    transform: translateX(140px) rotate(-18deg);
    z-index: 1;
    opacity: 0.7;
    filter: blur(0.5px);
}

.view.fan-init .wp-block-column:nth-child(2) {
    transform: translateX(70px) rotate(-10deg);
    z-index: 2;
    opacity: 0.8;
    filter: blur(0.3px);
}

.view.fan-init .wp-block-column:nth-child(3) {
    transform: translateX(0) rotate(0deg);
    z-index: 5;
    opacity: 1;
    filter: blur(0);
}

.view.fan-init .wp-block-column:nth-child(4) {
    transform: translateX(-70px) rotate(10deg);
    z-index: 2;
    opacity: 0.8;
    filter: blur(0.3px);
}

.view.fan-init .wp-block-column:nth-child(5) {
    transform: translateX(-140px) rotate(18deg);
    z-index: 1;
    opacity: 0.7;
    filter: blur(0.5px);
}

.view.fan-active .wp-block-column {
    transform: translateX(0) rotate(0deg) !important;
    margin: 0 15px;
    z-index: 1;
    opacity: 1;
    filter: blur(0) !important;
}

.view.fan-active .wp-block-column:hover {
    transform: translateY(-10px) !important;
    z-index: 10;
}

.view.fan-active .wp-block-column:hover img {
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

/* ===== MOBILE FAN VIEW STYLES ===== */
@media (max-width:1200px) {
    .view {
        padding: 60px 0;
    }

    .view .wp-block-columns {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        justify-content: flex-start;
        padding: 20px;
        min-height: 350px;
        display: flex;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .view .wp-block-column {
        flex: 0 0 220px;
        margin: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        z-index: auto !important;
        scroll-snap-align: center;
    }

    .view .wp-block-column img {
        height: 280px;
        border-radius: 16px 0;
    }

    .view.fan-init .wp-block-column,
    .view.fan-active .wp-block-column {
        transform: none !important;
        margin: 0 !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .view .wp-block-column:hover {
        transform: translateY(-5px) !important;
    }

    .view .wp-block-columns::-webkit-scrollbar {
        height: 4px;
    }

    .view .wp-block-columns::-webkit-scrollbar-track {
        background: rgba(var(--kpy-primary-rgb), 0.05);
        border-radius: 10px;
    }

    .view .wp-block-columns::-webkit-scrollbar-thumb {
        background: rgba(var(--kpy-primary-rgb), 0.3);
        border-radius: 10px;
    }

    .view .wp-block-columns::-webkit-scrollbar-thumb:hover {
        background: rgba(var(--kpy-primary-rgb), 0.5);
    }
}

@media (max-width:991px) {
    .view {
        padding: 50px 0;
    }

    .view .wp-block-columns {
        gap: 12px;
        padding: 15px;
        min-height: 300px;
    }

    .view .wp-block-column {
        flex: 0 0 200px;
    }

    .view .wp-block-column img {
        height: 260px;
    }
}

@media (max-width:768px) {
    .view {
        padding: 40px 0;
    }

    .view .wp-block-columns {
        margin-top: 40px;
        gap: 10px;
        padding: 10px;
        min-height: 280px;
    }

    .view .wp-block-column {
        flex: 0 0 180px;
    }

    .view .wp-block-column img {
        height: 240px;
        border-radius: 14px 0;
    }

    .view .wp-block-column:hover {
        transform: translateY(-3px) !important;
    }
}

@media (max-width:576px) {
    .view {
        padding: 30px 0;
    }

    .view .wp-block-columns {
        gap: 8px;
        padding: 5px;
        min-height: 250px;
    }

    .view .wp-block-column {
        flex: 0 0 160px;
    }

    .view .wp-block-column img {
        height: 200px;
        border-radius: 12px 0;
    }

    .view .wp-block-column:hover {
        transform: translateY(-2px) !important;
    }
}

@media (max-width:400px) {
    .view {
        padding: 25px 0;
    }

    .view .wp-block-columns {
        gap: 6px;
        min-height: 220px;
    }

    .view .wp-block-column {
        flex: 0 0 140px;
    }

    .view .wp-block-column img {
        height: 180px;
    }
}

@media (hover:none) and (pointer:coarse) {
    .view .wp-block-column:hover {
        transform: none !important;
    }

    .view .wp-block-column:hover img {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .view.fan-active .wp-block-column:hover {
        transform: none !important;
    }

    .view .wp-block-column:active {
        transform: scale(0.98) !important;
    }

    .view .wp-block-column:active img {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width:1200px) {

    .view.fan-init .wp-block-columns,
    .view.fan-active .wp-block-columns {
        display: flex;
    }

    .view .fan-view-toggle {
        display: block;
        margin-bottom: 20px;
        text-align: center;
    }

    .view .fan-view-toggle button {
        padding: 10px 25px;
        background: var(--kpy-primary);
        color: white;
        border: none;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .view .fan-view-toggle button:hover {
        background: var(--kpy-secondary);
        transform: translateY(-2px);
    }
}

@media (min-width:769px) and (max-width:991px) and (orientation:portrait) {
    .view .wp-block-columns {
        padding: 20px 10px;
    }

    .view .wp-block-column {
        flex: 0 0 220px;
    }

    .view .wp-block-column img {
        height: 260px;
    }
}

@media (max-width:991px) and (orientation:landscape) {
    .view .wp-block-columns {
        min-height: 280px;
    }

    .view .wp-block-column {
        flex: 0 0 180px;
    }

    .view .wp-block-column img {
        height: 200px;
    }
}

@media (max-width:768px) {
    .view .wp-block-column {
        animation: mobileFadeIn 0.8s ease forwards;
    }

    @keyframes mobileFadeIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width:768px) {
    .view .wp-block-columns {
        -ms-overflow-style: -ms-autohiding-scrollbar;
        scrollbar-width: thin;
    }
}

@media (prefers-color-scheme:dark) {
    .view .wp-block-column img {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .view .wp-block-column:hover img {
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.6);
    }
}

@media (prefers-reduced-motion:reduce) {

    .view .wp-block-column,
    .view .wp-block-column img,
    .view.fan-init .wp-block-column,
    .view.fan-active .wp-block-column {
        transition: none !important;
        animation: none !important;
    }
}

/* SLIDER CSS */
.text-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.slider-wrapper,
.slider-item {
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-video,
.slider-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-bg {
    animation: zoomIn 20s ease-in-out infinite alternate;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #00000094 0%, rgb(0 0 0 / 60%) 10%, rgba(255, 255, 255, 0) 100%100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 1rem;
}

.top-tagline {
    font-family: 'Pacifico', cursive;
    font-size: 1.4rem;
    color: var(--kpy-secondary);
    margin-bottom: 1rem;
}

.text-slider .hero-title {
    font-family: var(--kpy-font-heading);
    font-size: 50px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--kpy-secondary);
    margin: 0;
}

/* ✅ ROUNDED HERO BOX — small pill above the title */
.hero-box {
    display: inline-block;
    background: #fff;
    padding: .4rem 1.2rem;
    border-radius: 999px;
    margin: 0 0 .8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.hero-box span {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 2px;
    color: var(--kpy-primary);
}

.hero-btn {
    position: relative;
    display: inline-block;
    background: var(--kpy-secondary);
    color: var(--kpy-primary);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.1rem;
    overflow: hidden;
    transition: color .3s ease, transform .3s ease;
    z-index: 1;
    border: none;
}

.hero-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--kpy-primary);
    transform: translate(-100%, 100%);
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    z-index: -1;
}

.hero-btn::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--kpy-primary);
    border-top: 2px solid var(--kpy-primary);
    margin-left: 0.75rem;
    transform: rotate(45deg);
    transition: transform .3s ease, border-color .3s ease;
}

.hero-btn:hover {
    background-color: var(--kpy-secondary);
    color: var(--kpy-white);
    transform: translateY(-2px);
}

.hero-btn:hover::before {
    transform: translate(0, 0);
}

.hero-btn:hover::after {
    transform: rotate(45deg) translate(4px, -2px);
    border-color: #000;
}

.slider-nav {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.slider-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
}

.slider-dots button.active {
    background: #fff;
}

@media (max-width:768px) {
    .top-tagline {
        font-size: 1.1rem;
    }

    .hero-btn {
        width: 90%;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.5);
    }
}

/* ===== MOBILE SLIDER STYLES ===== */
@media (max-width: 991.98px) {
    .text-slider {
        height: 700px;
    }

    .slider-content {
        padding: 0 15px;
        width: 100%;
    }

    .top-tagline {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        margin-top: 0.5rem;
    }

    .text-slider .hero-title {
        font-size: 40px !important;
        letter-spacing: 2px;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-box {
        padding: .35rem 1rem;
        margin: 0 0 0.75rem;
    }

    .hero-box span {
        font-size: clamp(1rem, 4vw, 1.4rem);
        letter-spacing: 1px;
    }

    .hero-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: auto;
        min-width: 200px;
    }

    .slider-nav {
        padding: 0 10px;
    }

    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .slider-dots button {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .text-slider {
        height: 700px;
    }

    .text-slider .hero-title {
        font-size: 35px !important;
    }

    .top-tagline {
        font-size: 1rem;
    }

    .hero-box span {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    /* =========================
   Single Tour Light (moved from assets/css/single-tour-light.css)
   ========================= */
    .single-tour-wrapper {
        position: relative;
        padding: 0 0 100px;
        background-color: #f7f9f2;
        color: #334155;
        font-family: var(--kpy-font, "Ubuntu", sans-serif);
        overflow: hidden;
    }

    .single-tour-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.15;
        pointer-events: none;
        z-index: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' preserveAspectRatio='xMidYMid slice'%3E%3Cpath stroke='%23fcd34d' stroke-width='5' stroke-dasharray='15, 20' fill='none' stroke-linecap='round' d='M-100,700 C150,650 300,450 450,550 C600,650 650,800 850,700 C1000,600 1000,300 800,200 C600,100 450,250 550,450 C650,650 850,500 1050,150'/%3E%3Cg transform='translate(1050, 150) rotate(-45)'%3E%3Cpath fill='%23fcd34d' d='M0,0 L-30,15 L-10,0 L-30,-15 Z'/%3E%3Cpath fill='%23fbbf24' d='M0,0 L-30,-15 L-20,-5 Z'/%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .package-content {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        position: relative;
        z-index: 1;
    }

    .package-main {
        flex: 1;
        min-width: 0;
    }

    .package-sidebar {
        width: 380px;
        flex-shrink: 0;
    }

    .package-section {
        background: #ffffff;
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease;
    }

    .package-section:hover {
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .package-section h2 {
        font-family: var(--kpy-font-heading, 'Handscript', cursive);
        color: var(--kpy-primary, #2B5219);
        font-size: 2.2rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px dashed rgba(43, 82, 25, 0.15);
    }

    .package-section p,
    .package-section ul {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #334155;
    }

    .itinerary-day {
        padding-left: 25px;
        margin-bottom: 30px;
        position: relative;
        border-left: 2px dashed rgba(43, 82, 25, 0.3);
    }

    .itinerary-day::before {
        content: '';
        position: absolute;
        left: -7px;
        top: 5px;
        width: 12px;
        height: 12px;
        background: var(--kpy-primary, #2B5219);
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(43, 82, 25, 0.3);
    }

    .itinerary-day h3 {
        color: #1f2937;
        font-size: 1.3rem;
        margin-bottom: 10px;
        font-family: var(--kpy-font, "Ubuntu", sans-serif);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .itinerary-day p {
        margin-bottom: 8px;
        color: #475569;
    }

    .itinerary-day p strong {
        color: var(--kpy-primary, #2B5219);
    }

    .includes-excludes {
        display: flex;
        gap: 30px;
    }

    .includes,
    .excludes {
        flex: 1;
    }

    .includes h3,
    .excludes h3 {
        color: #1f2937;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .includes ul,
    .excludes ul {
        list-style: none;
        padding: 0;
    }

    .includes ul li {
        padding-left: 25px;
        position: relative;
        margin-bottom: 10px;
        color: #334155;
    }

    .includes ul li::before {
        content: '\2714\FE0F';
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 0.9rem;
    }

    .excludes ul li {
        padding-left: 25px;
        position: relative;
        margin-bottom: 10px;
        color: #64748b;
    }

    .excludes ul li::before {
        content: '\274C';
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 0.9rem;
    }

    .pax-pricing-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
    }

    .pax-pricing-table th,
    .pax-pricing-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
    }

    .pax-pricing-table th {
        background: #f1f5f9;
        color: var(--kpy-primary, #2B5219);
        font-weight: 700;
        border-radius: 8px 8px 0 0;
    }

    .pax-pricing-table td strong {
        color: #1f2937;
    }

    .price-categories {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .price-category {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        background: #f1f5f9;
        border-radius: 10px;
    }

    .category-name {
        color: #475569;
        font-weight: 500;
    }

    .category-price {
        color: var(--kpy-primary, #2B5219);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .price-on-request {
        color: var(--kpy-accent, #E87820);
        font-weight: 600;
        font-size: 1.1rem;
    }

    .booking-form-section {
        background: #ffffff !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    }

    .booking-form .form-group {
        margin-bottom: 20px;
    }

    .booking-form label {
        display: block;
        margin-bottom: 8px;
        color: #475569;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .booking-form input,
    .booking-form select {
        width: 100%;
        padding: 12px 15px;
        background: #f1f5f9;
        border: none;
        border-radius: 10px;
        color: #1f2937;
        font-size: 1rem;
        transition: all 0.3s;
    }

    .booking-form input:focus,
    .booking-form select:focus {
        outline: none;
        background: #e2e8f0;
        box-shadow: 0 0 0 3px rgba(43, 82, 25, 0.15);
    }

    #total_cost_display {
        background: rgba(43, 82, 25, 0.08) !important;
        color: var(--kpy-primary, #2B5219) !important;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .submit-booking {
        width: 100%;
        padding: 15px;
        background: var(--kpy-primary, #2B5219);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 10px;
    }

    .submit-booking:hover {
        background: var(--kpy-accent, #E87820);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .booking-success {
        background: #f0fdf4;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .booking-success h3 {
        color: #166534;
        margin-bottom: 8px;
    }

    .booking-success p {
        color: #15803d;
    }

    .booking-error {
        background: #fef2f2;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .booking-error h3 {
        color: #991b1b;
        margin-bottom: 8px;
    }

    .booking-error p {
        color: #b91c1c;
    }

    .contact-details .contact-info p {
        color: #475569;
        margin-bottom: 8px;
    }

    .contact-details .contact-info a {
        color: var(--kpy-primary, #2B5219);
        text-decoration: none;
        transition: color 0.3s;
    }

    .contact-details .contact-info a:hover {
        color: var(--kpy-accent, #E87820);
    }

    .overview-content {
        color: #334155;
    }

    .overview-content p {
        margin-bottom: 15px;
    }

    .overview-content h2,
    .overview-content h3,
    .overview-content h4 {
        color: #1f2937;
        margin-bottom: 15px;
    }

    .itinerary-accordion-header {
        cursor: pointer;
        user-select: none;
    }

    .accordion-toggle-icon {
        font-size: 1.4rem;
        color: var(--kpy-primary, #2B5219);
        font-weight: 700;
    }

    @media (max-width: 992px) {
        .package-content {
            flex-direction: column;
        }

        .package-sidebar {
            width: 100%;
        }

        .includes-excludes {
            flex-direction: column;
            gap: 15px;
        }
    }

    /* Explore Uganda packages slider styles (moved from inc/packages.php inline echo) */
    .explore-uganda-packages-slider-wrapper .package-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        text-decoration: none;
        color: inherit;
        border-radius: 12px;
        overflow: hidden;
        background: #fff
    }

    .explore-uganda-packages-slider-wrapper .package-images {
        height: 210px !important;
        position: relative !important;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat
    }

    .explore-uganda-packages-slider-wrapper .package-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--kpy-primary);
        color: var(--kpy-secondary);
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.85rem;
        z-index: 3
    }

    .explore-uganda-packages-slider-wrapper .package-prices {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(var(--kpy-secondary-rgb), 0.95);
        color: var(--kpy-white);
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 1.1rem;
        z-index: 3
    }

    .explore-uganda-packages-slider-wrapper .package-conten {
        padding: 18px 18px 16px;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column
    }

    .explore-uganda-packages-slider-wrapper .package-conten h3 {
        margin: 0 0 8px;
        font-size: 1.25rem;
        color: var(--kpy-primary)
    }

    .explore-uganda-packages-slider-wrapper .package-excerpt {
        margin: 0 0 12px;
        color: #555;
        line-height: 1.5;
        font-size: 0.95rem
    }

    .explore-uganda-packages-slider-wrapper .package-meta,
    .explore-uganda-packages-slider-wrapper .package-duration {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: #666;
        font-size: 0.9rem
    }

    .explore-uganda-packages-slider-wrapper .meta-icon {
        margin-right: 8px
    }

    .explore-uganda-packages-slider-wrapper .package-reviews {
        display: flex;
        align-items: center;
        margin-top: 15px;
        color: var(--kpy-accent);
        font-size: 0.85rem
    }

    .explore-uganda-packages-slider-wrapper .stars {
        color: var(--kpy-secondary);
        margin-right: 5px;
        font-size: 0.9rem
    }

    .explore-uganda-packages-slider-wrapper .review-count {
        color: inherit
    }

    .explore-uganda-packages-slider-wrapper .package-cta-wrap {
        margin-top: auto;
        padding-top: 8px;
    }

    .explore-uganda-packages-slider-wrapper .package-discover-btn {
        display: inline-block;
        color: var(--kpy-primary);
        font-weight: 700
    }

    /* Destination overview (moved from archive-tour.php) */
    .destination-overview-section {
        padding: 60px 20px;
        background: #f7f9f2;
        position: relative;
    }

    .destination-overview-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .destination-overview-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 30px;
        align-items: start;
    }

    .overview-column {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .overview-image img,
    .overview-map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .overview-image {
        height: 300px;
    }

    .overview-map {
        height: 300px;
    }

    .overview-content {
        padding: 30px;
    }

    .overview-tagline {
        font-size: 0.85rem;
        color: var(--kpy-accent, #E87820);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .overview-title {
        font-size: 2rem;
        color: var(--kpy-primary, #2B5219);
        margin-bottom: 20px;
        font-family: var(--kpy-font-heading, 'Handscript', cursive);
    }

    .overview-text {
        color: #334155;
        line-height: 1.8;
    }

    @media (max-width: 1024px) {
        .destination-overview-grid {
            grid-template-columns: 1fr;
        }

        .overview-image,
        .overview-map {
            height: 220px;
        }
    }

    /* Front page services & destinations (moved from front-page.php - block 1) */
    .front-page-services {
        --primary: var(--kpy-primary, #2B5219);
        --secondary: var(--kpy-secondary, #F5C518);
        --accent: var(--kpy-accent, #E87820);
    }

    .services-section {
        padding: 100px 20px 0px 20px;
        background: #060b14 !important;
        position: relative;
        overflow: visible;
        z-index: 10;
    }

    .services-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .services-header .section-label {
        color: var(--secondary);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        display: block;
    }

    .services-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #fff;
    }

    .services-header h2 strong {
        color: var(--secondary);
    }

    .services-header p {
        color: #aaa;
        max-width: 600px;
        margin: 0 auto;
    }

    .services-tabs-nav {
        display: flex;
    }

    .service-tab-panel {
        display: none;
        animation: fadeIn 0.5s ease;
        overflow: visible;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .service-tab-content {
        display: flex !important;
        flex-direction: row !important;
        gap: 60px;
        align-items: flex-start;
        position: relative;
        overflow: visible;
        padding-bottom: 250px;
    }

    .service-tab-image {
        flex: 1;
        max-width: 550px;
        position: relative !important;
        border-radius: 12px;
        overflow: visible !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        transform: translateY(150px) !important;
        z-index: 99999 !important;
        margin-bottom: -200px !important;
        background: #060b14;
    }

    .service-tab-image img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

    .service-tab-text {
        flex: 1;
        padding: 0;
        max-width: 500px;
    }

    .service-tab-text h3 {
        color: var(--secondary);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .service-tab-text h4 {
        color: #fff;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .service-tab-text p {
        color: #ccc;
        line-height: 1.7;
    }

    .service-tab-link {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: var(--secondary);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 16px 35px;
        border: 1px solid var(--secondary);
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .service-tab-link:hover {
        background: var(--secondary);
        color: #1a1a2e;
    }

    .destinations-fan-section {
        position: relative;
        margin-top: -120px;
        padding: 0 20px 70px;
        z-index: 20;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 18%, #fff 100%);
    }

    .destinations-fan-container {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 0 16px;
        max-width: 1280px;
        margin: 0 auto;
        gap: 0;
    }

    .destination-fan-card {
        position: relative;
        width: clamp(180px, 20vw, 280px);
        height: clamp(260px, 32vw, 420px);
        flex: 0 0 auto;
        transform: translateX(var(--offset)) rotate(var(--rotation));
        transform-origin: bottom center;
        transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
        margin: 0 -24px;
        cursor: pointer;
        z-index: 1;
        filter: saturate(0.95);
    }

    .destination-fan-card:hover {
        transform: translateX(var(--offset)) rotate(var(--rotation)) translateY(-18px) scale(1.04);
        z-index: 10 !important;
        filter: saturate(1.08);
    }

    .fan-image-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .fan-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .destination-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 128px;
        height: 128px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(10, 18, 29, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(2px);
    }

    .ring-dots {
        position: absolute;
        inset: 0;
        border: 2px dashed rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        animation: rotateRing 30s linear infinite;
    }

    .ring-dots::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border: 1px dotted rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        animation: rotateRingReverse 25s linear infinite;
    }

    @keyframes rotateRing {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @keyframes rotateRingReverse {
        from {
            transform: rotate(360deg);
        }

        to {
            transform: rotate(0deg);
        }
    }

    .destination-name {
        position: relative;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 700;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        margin: 0;
        z-index: 2;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
    }

    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 80px;
        margin-top: 80px;
        padding: 30px 20px;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #666;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .trust-item i {
        color: var(--primary);
        font-size: 1.1rem;
    }

    @media (max-width: 991px) {
        .destinations-fan-container {
            flex-wrap: wrap;
            gap: 20px;
        }

        .destination-fan-card {
            width: 220px;
            height: 300px;
            transform: none;
            margin: 0;
        }

        .destination-fan-card:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .trust-badges {
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .destinations-fan-section {
            margin-top: -60px;
        }

        .destination-fan-card {
            width: 160px;
            height: 220px;
        }

        .ring-dots {
            width: 100px;
            height: 100px;
        }

        .destination-name {
            font-size: 1rem;
        }

        .trust-badges {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
    }

    @media (max-width: 991px) {
        .service-tab-content {
            grid-template-columns: 1fr;
            gap: 40px;
            padding-bottom: 100px;
        }

        .service-tab-image {
            order: 1;
            transform: translateY(80px);
            margin-bottom: -80px;
        }

        .service-tab-image img {
            height: 300px;
        }
    }

    @media (max-width: 768px) {
        .services-section {
            padding: 60px 15px;
        }

        .services-tabs-nav {
            gap: 5px;
        }

        .service-tab-btn {
            padding: 15px 15px;
            font-size: 0.7rem;
            letter-spacing: 1px;
        }

        .service-tab-link {
            width: 100%;
            justify-content: center;
        }
    }

    /* Front-page redesigned sections (moved from front-page.php - block 2) */
    /* Base resets for redesigned sections */
    .redesigned-section {
        position: relative;
        background-color: var(--bg-dark-1);
        color: #e2e8f0;
        overflow: hidden;
        padding: 100px 20px;
        font-family: 'Inter', sans-serif;
    }

    .bg-graphic-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.15;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='a' patternUnits='userSpaceOnUse' width='40' height='40' patternTransform='scale(2)'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='none'/%3E%3Cpath d='M40 40V0H0v40z' fill='none' stroke='%23F5C518' stroke-width='1' stroke-opacity='0.4'/%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23F5C518'/%3E%3C/pattern%3E%3CradialGradient id='b' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0' stop-color='%23060b14' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23060b14' stop-opacity='1'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)'/%3E%3C/svg%3E");
    }

    .glow-orb {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(43, 82, 25, 0.4) 0%, rgba(43, 82, 25, 0) 70%);
        border-radius: 50%;
        filter: blur(60px);
        z-index: 0;
        pointer-events: none;
    }

    .glow-orb.top-right {
        top: -200px;
        right: -200px;
    }

    .glow-orb.bottom-left {
        bottom: -200px;
        left: -200px;
    }

    .section-content-wrapper {
        position: relative;
        z-index: 2;
        max-width: 1280px;
        margin: 0 auto;
    }

    .redesigned-section .section-subtitle {
        display: inline-block;
        color: var(--neon-blue);
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
        text-shadow: 0 0 10px rgba(245, 197, 24, 0.4);
    }

    .redesigned-section .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 3rem;
        line-height: 1.2;
    }

    .redesigned-section .section-title span {
        color: transparent;
        -webkit-text-stroke: 1px var(--neon-blue);
    }

    .tours-modern-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .tour-glass-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        overflow: hidden;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    .tour-glass-card:hover {
        transform: translateY(-10px);
        border-color: var(--neon-blue);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 197, 24, 0.2);
    }

    .tour-glass-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .tour-glass-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .tour-glass-card:hover .tour-glass-image img {
        transform: scale(1.05);
    }

    .tour-glass-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.7);
        color: var(--neon-blue);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        border: 1px solid var(--neon-blue);
        backdrop-filter: blur(8px);
    }

    .tour-glass-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .tour-glass-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
    }

    .tour-glass-content p {
        color: #94a3b8;
        line-height: 1.6;
        margin-bottom: 25px;
        flex-grow: 1;
    }

    .tour-glass-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }

    .tour-glass-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: #fff;
    }

    .tour-glass-price span {
        font-size: 0.875rem;
        color: #64748b;
        font-weight: 400;
    }

    .tour-glass-btn {
        background: transparent;
        color: var(--neon-blue);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
    }

    .tour-glass-card:hover .tour-glass-btn {
        gap: 12px;
    }

    .services-ticker-section {
        background: var(--bg-dark-2);
        padding: 60px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        overflow: hidden;
    }

    .ticker-container {
        display: flex;
        width: 200%;
        animation: ticker 40s linear infinite;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .ticker-item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 0 40px;
        color: #64748b;
        font-size: 1.1rem;
        font-weight: 500;
        white-space: nowrap;
        transition: color 0.3s ease;
    }

    .ticker-item:hover {
        color: var(--neon-blue);
    }

    .ticker-item i {
        font-size: 1.5rem;
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .split-content .feature-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .split-content .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        background: rgba(245, 197, 24, 0.1);
        color: var(--neon-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
        border: 1px solid rgba(245, 197, 24, 0.2);
    }

    .split-content .feature-text h4 {
        font-size: 1.25rem;
        color: #fff;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .split-content .feature-text p {
        color: #94a3b8;
        line-height: 1.6;
    }

    .split-visual {
        position: relative;
        border-radius: 30px;
        overflow: hidden;
    }

    .split-visual img {
        width: 100%;
        height: auto;
        border-radius: 30px;
        filter: sepia(0.2) hue-rotate(180deg) saturate(1.5) brightness(0.8);
    }

    .split-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, rgba(43, 82, 25, 0.5), transparent);
        border-radius: 30px;
    }

    .mosaic-modern {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
        gap: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .mosaic-item {
        position: relative;
        overflow: hidden;
        background: #000;
    }

    .mosaic-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .mosaic-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
        transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mosaic-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 40px;
        transition: padding 0.5s ease;
    }

    .mosaic-item:hover img {
        opacity: 1;
        transform: scale(1.05);
    }

    .mosaic-item:hover .mosaic-overlay {
        padding-bottom: 50px;
    }

    .mosaic-overlay h3 {
        color: #fff;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .mosaic-overlay .explore {
        color: var(--neon-blue);
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .mosaic-item:hover .mosaic-overlay .explore {
        opacity: 1;
        transform: translateY(0);
    }

    .testimonials-dark {
        position: relative;
        padding: 120px 20px;
        text-align: center;
    }

    .testi-large-text {
        font-size: clamp(2rem, 4vw, 3rem);
        color: #fff;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        line-height: 1.4;
        max-width: 900px;
        margin: 0 auto 40px;
        position: relative;
    }

    .testi-large-text::before {
        content: '"';
        position: absolute;
        top: -40px;
        left: -20px;
        font-size: 6rem;
        color: rgba(245, 197, 24, 0.2);
        font-family: sans-serif;
    }

    .testi-author h5 {
        color: var(--neon-blue);
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .testi-author span {
        color: #64748b;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .testi-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 50px;
    }

    .testi-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .testi-dot.active {
        background: var(--neon-blue);
        box-shadow: 0 0 10px var(--neon-blue);
    }

    .cta-abstract {
        position: relative;
        padding: 150px 20px;
        text-align: center;
        overflow: hidden;
    }

    .cta-abstract-bg {
        position: absolute;
        inset: 0;
        background: url('https://dialustoursandtravel.com/assets/murchison38.jpg') center/cover fixed;
    }

    .cta-abstract-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(6, 11, 20, 0.95), rgba(43, 82, 25, 0.85));
        backdrop-filter: blur(5px);
    }

    .cta-btn-neon {
        display: inline-block;
        padding: 18px 45px;
        background: transparent;
        color: var(--neon-blue);
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        border: 1px solid var(--neon-blue);
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(245, 197, 24, 0.1) inset, 0 0 20px rgba(245, 197, 24, 0.1);
        margin-top: 40px;
    }

    .cta-btn-neon:hover {
        background: var(--neon-blue);
        color: #000;
        box-shadow: 0 0 30px rgba(245, 197, 24, 0.5) inset, 0 0 40px rgba(245, 197, 24, 0.4);
    }

    @media (max-width: 991px) {
        .split-layout {
            grid-template-columns: 1fr;
        }

        .mosaic-modern {
            grid-template-columns: repeat(2, 1fr);
        }

        .mosaic-item.large {
            grid-column: span 1;
            grid-row: span 1;
        }
    }

    @media (max-width: 768px) {}

    .du-footer {
        margin-top: 0 !important;
    }

    .tailor-cta-section {
        background: #f5f5f5;
        padding: 80px 20px;
        position: relative;
        overflow: visible;
    }

    .tailor-cta-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        background: #020617;
        position: relative;
        padding: 60px 40px;
    }

    .tailor-cta-image-wrapper {
        position: absolute;
        left: -100px;
        top: 50%;
        transform: translateY(-50%);
        width: 55%;
        z-index: 10;
    }

    .tailor-cta-image-container {
        position: relative;
        overflow: hidden;
        border-radius: 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .tailor-cta-image {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .tailor-cta-image-container:hover .tailor-cta-image {
        transform: scale(1.05);
    }

    .rotating-text-container {
        position: absolute;
        top: -30px;
        left: -30px;
        width: 90px;
        height: 90px;
        z-index: 20;
    }

    .rotating-text {
        width: 100%;
        height: 100%;
        animation: rotateCircle 15s linear infinite;
    }

    @keyframes rotateCircle {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .rotating-text text {
        fill: #333;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .tailor-cta-content {
        margin-left: 50%;
        padding-left: 80px;
        color: #fff;
    }

    .tailor-cta-heading {
        font-size: 1.9rem;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 12px;
        color: #fff;
        font-family: 'Georgia', serif;
    }

    .tailor-cta-subtext {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .tailor-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
        max-width: 200px;
    }

    .tailor-cta-btn {
        display: block;
        padding: 14px 25px;
        text-align: center;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        width: 100%;
    }

    .tailor-cta-btn-primary {
        background: #fff;
        color: #020617;
        border-color: #fff;
    }

    .tailor-cta-btn-primary:hover {
        background: transparent;
        color: #fff;
    }

    .tailor-cta-btn-outline {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.4);
    }

    .tailor-cta-btn-outline:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    .tailor-cta-availability {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .tailor-cta-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
    }

    .tailor-cta-status {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.75rem;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .tailor-cta-status-dot {
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
    }

    @media (max-width: 991px) {
        .tailor-cta-section {
            padding: 40px 20px;
        }

        .tailor-cta-wrapper {
            padding: 40px 30px;
        }

        .tailor-cta-image-wrapper {
            position: relative;
            left: -30px;
            top: 0;
            transform: none;
            width: calc(100% + 60px);
            margin-bottom: 30px;
        }

        .tailor-cta-image {
            height: 250px;
        }

        .rotating-text-container {
            width: 70px;
            height: 70px;
            top: -20px;
            left: -20px;
        }

        .tailor-cta-content {
            margin-left: 0;
            padding-left: 0;
        }

        .tailor-cta-heading {
            font-size: 1.6rem;
        }

        .tailor-cta-buttons {
            max-width: 100%;
        }
    }

    /* Booking actions (moved from functions.php) */
    .booking-actions .action-section {
        padding: 15px;
        margin: -12px -12px 12px -12px;
    }

    .booking-actions .action-section:not(:last-child) {
        border-bottom: 1px solid #ccd0d4;
    }

    .booking-actions .action-section.completed {
        background: #f0f9ff;
    }

    .booking-actions .action-section.rated {
        background: #f0fff4;
    }

    .booking-actions h4 {
        margin: 0 0 8px 0;
    }

    /* Single tour hero styles (moved from single-tour-package.php) */
    #page-parallax-hero {
        position: relative;
        width: 100%;
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
        overflow: hidden !important;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 110px !important;
        padding: 0 15px;
        background-color: #111;
    }

    #page-parallax-hero .parallax-bg {
        position: absolute;
        top: -20%;
        left: 0;
        width: 100%;
        height: 140%;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
        will-change: transform;
    }

    #page-parallax-hero .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 2;
    }

    #page-parallax-hero .hero-content-wrapper {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    #page-parallax-hero .hero-card {
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        padding: 2.2rem 2.8rem;
        text-align: center;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    #page-parallax-hero .hero-slogan-text {
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: var(--kpy-font-2, inherit);
        display: block;
        margin-bottom: 0.6rem;
    }

    #page-parallax-hero .hero-slogan-star {
        color: var(--kpy-secondary, #F5C518);
        margin: 0 8px;
        font-size: 0.8rem;
    }

    #page-parallax-hero .hero-title {
        color: #ffffff;
        font-size: clamp(2.2rem, 4vw, 3rem);
        margin-bottom: 0.6rem;
        font-family: var(--kpy-font-2, inherit);
        font-weight: 700;
    }

    #page-parallax-hero .hero-excerpt {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    #page-parallax-hero .hero-breadcrumb-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.95);
        padding: 0.6rem 1.4rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #111;
    }

    #page-parallax-hero .hero-breadcrumb-link {
        color: #111;
        text-decoration: none;
        transition: color 0.3s;
        text-transform: uppercase;
    }

    #page-parallax-hero .hero-breadcrumb-link:hover {
        color: var(--kpy-secondary, #F5C518);
    }

    #page-parallax-hero .hero-breadcrumb-sep {
        color: #888;
    }

    #page-parallax-hero .hero-breadcrumb-current {
        color: var(--kpy-primary, #2B5219);
    }

    @media (max-width: 768px) {
        #page-parallax-hero {
            margin-top: 80px !important;
        }

        #page-parallax-hero .hero-card {
            padding: 1.5rem;
        }

        #page-parallax-hero .hero-title {
            font-size: 2.2rem;
        }
    }

    /* Front page styles moved from front-page.php */
    /* ===== FRONT PAGE SERVICES ===== */
    .front-page-services {
        --primary: var(--kpy-primary, #2B5219);
        --secondary: var(--kpy-secondary, #F5C518);
        --accent: var(--kpy-accent, #E87820);
    }

    .services-section {
        padding: 100px 20px 0px 20px;
        background: #060b14 !important;
        position: relative;
        overflow: visible;
        z-index: 10;
    }

    .services-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .services-header .section-label {
        color: var(--secondary);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        display: block;
    }

    .services-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #fff;
    }

    .services-header h2 strong {
        color: var(--secondary);
    }

    .services-header p {
        color: #aaa;
        max-width: 600px;
        margin: 0 auto;
    }

    .services-tabs-nav {
        display: flex;
    }

    .service-tab-panel {
        display: none;
        animation: fadeIn 0.5s ease;
        overflow: visible;
    }

    .service-tab-panel.active {
        display: block;
        overflow: visible;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .service-tab-content {
        display: flex !important;
        flex-direction: row !important;
        gap: 60px;
        align-items: flex-start;
        position: relative;
        overflow: visible;
        padding-bottom: 250px;
    }

    .service-tab-image {
        flex: 1;
        max-width: 550px;
        position: relative !important;
        border-radius: 12px;
        overflow: visible !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        transform: translateY(150px) !important;
        z-index: 99999 !important;
        margin-bottom: -200px !important;
        background: #060b14;
    }

    .service-tab-image img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

    .service-tab-text {
        flex: 1;
        padding: 0;
        max-width: 500px;
    }

    .service-tab-text h3 {
        color: var(--secondary);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .service-tab-text h4 {
        color: #fff;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .service-tab-text p {
        color: #ccc;
        line-height: 1.7;
    }

    .service-tab-link {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: var(--secondary);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 16px 35px;
        border: 1px solid var(--secondary);
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .service-tab-link:hover {
        background: var(--secondary);
        color: #1a1a2e;
    }

    /* Destinations Fan */
    .destinations-fan-section {
        position: relative;
        margin-top: -120px;
        padding: 0 20px 70px;
        z-index: 20;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 18%, #fff 100%);
    }

    .destinations-fan-container {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 0 16px;
        max-width: 1280px;
        margin: 0 auto;
        gap: 0;
    }

    .destination-fan-card {
        position: relative;
        width: clamp(180px, 20vw, 280px);
        height: clamp(260px, 32vw, 420px);
        flex: 0 0 auto;
        transform: translateX(var(--offset)) rotate(var(--rotation));
        transform-origin: bottom center;
        transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
        margin: 0 -24px;
        cursor: pointer;
        z-index: 1;
        filter: saturate(0.95);
    }

    .destination-fan-card:hover {
        transform: translateX(var(--offset)) rotate(var(--rotation)) translateY(-18px) scale(1.04);
        z-index: 10 !important;
        filter: saturate(1.08);
    }

    .fan-image-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .fan-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .destination-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 128px;
        height: 128px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(10, 18, 29, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(2px);
    }

    .ring-dots {
        position: absolute;
        inset: 0;
        border: 2px dashed rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        animation: rotateRing 30s linear infinite;
    }

    .ring-dots::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border: 1px dotted rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        animation: rotateRingReverse 25s linear infinite;
    }

    @keyframes rotateRing {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @keyframes rotateRingReverse {
        from {
            transform: rotate(360deg);
        }

        to {
            transform: rotate(0deg);
        }
    }

    .destination-name {
        position: relative;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 700;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        margin: 0;
        z-index: 2;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
    }

    /* Trust badges */
    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 80px;
        margin-top: 80px;
        padding: 30px 20px;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #666;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .trust-item i {
        color: var(--primary);
        font-size: 1.1rem;
    }

    @media (max-width: 991px) {
        .destinations-fan-container {
            flex-wrap: wrap;
            gap: 20px;
        }

        .destination-fan-card {
            width: 220px;
            height: 300px;
            transform: none;
            margin: 0;
        }

        .destination-fan-card:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .trust-badges {
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .destinations-fan-section {
            margin-top: -60px;
        }

        .destination-fan-card {
            width: 160px;
            height: 220px;
        }

        .ring-dots {
            width: 100px;
            height: 100px;
        }

        .destination-name {
            font-size: 1rem;
        }

        .trust-badges {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
    }

    /* Redesigned sections */
    .redesigned-section {
        position: relative;
        background-color: var(--bg-dark-1);
        color: #e2e8f0;
        overflow: hidden;
        padding: 100px 20px;
        font-family: 'Inter', sans-serif;
    }

    .bg-graphic-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.15;
        pointer-events: none;
    }

    .glow-orb {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(43, 82, 25, 0.4) 0%, rgba(43, 82, 25, 0) 70%);
        border-radius: 50%;
        filter: blur(60px);
        z-index: 0;
        pointer-events: none;
    }

    .glow-orb.top-right {
        top: -200px;
        right: -200px;
    }

    .glow-orb.bottom-left {
        bottom: -200px;
        left: -200px;
    }

    .section-content-wrapper {
        position: relative;
        z-index: 2;
        max-width: 1280px;
        margin: 0 auto;
    }

    .redesigned-section .section-subtitle {
        display: inline-block;
        color: var(--neon-blue);
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
        text-shadow: 0 0 10px rgba(245, 197, 24, 0.4);
    }

    .redesigned-section .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 3rem;
        line-height: 1.2;
    }

    .redesigned-section .section-title span {
        color: transparent;
        -webkit-text-stroke: 1px var(--neon-blue);
    }

    /* Tours modern grid */
    .tours-modern-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .tour-glass-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        overflow: hidden;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    .tour-glass-card:hover {
        transform: translateY(-10px);
        border-color: var(--neon-blue);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 197, 24, 0.2);
    }

    .tour-glass-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .tour-glass-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .tour-glass-card:hover .tour-glass-image img {
        transform: scale(1.05);
    }

    /* ...additional front-page styles moved... */


    /* Booking details and star rating (moved from functions.php inline echo) */
    .booking-details table {
        width: 100%;
        border-collapse: collapse;
    }

    .booking-details td {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

    .booking-details td:first-child {
        width: 200px;
        font-weight: bold;
    }

    .star-rating {
        display: inline-flex;
        cursor: pointer;
    }

    .star {
        font-size: 24px;
        color: #ccc;
        transition: color 0.2s;
        padding: 2px;
    }

    .star.filled {
        color: #ffcc00;
    }

    .star:hover {
        color: #ffeb80;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem;
        min-width: 180px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .text-slider {
        height: 700px;
    }

    .slider-content {
        top: 50%;
        transform: translateY(-50%);
    }

    .top-tagline {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        margin-top: 0.3rem;
    }

    .hero-box {
        padding: .3rem 0.8rem;
        margin: 0 0 0.5rem;
    }

    .hero-box span {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
        letter-spacing: 1px;
    }

    .hero-btn {
        padding: 0.7rem 1.2rem;
        min-width: 160px;
        font-size: 0.9rem;
        width: 90%;
        max-width: 280px;
    }

    .hero-btn::after {
        width: 8px;
        height: 8px;
        margin-left: 0.5rem;
    }

    .slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .slider-dots button {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }

    .top-tagline {
        margin-bottom: 0.25rem;
    }

    .hero-box {
        padding: .3rem 1rem;
    }
}

@media (max-width: 991.98px) {
    .overlay {
        background: linear-gradient(to bottom, #00000094 0%, rgb(0 0 0 / 70%) 20%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
    }
}

@media (max-width: 991.98px) {
    .slider-bg {
        animation: mobileZoomIn 25s ease-in-out infinite alternate;
    }

    @keyframes mobileZoomIn {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.3);
        }
    }
}

@media (min-width: 769px) and (max-width: 991.98px) {
    .text-slider {
        height: 550px;
    }

    .text-slider .hero-title {
        font-size: 100px !important;
    }

    .top-tagline {
        font-size: 1.3rem;
    }

    .hero-box span {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
}

@media (max-width: 360px) {
    .text-slider .hero-title {
        font-size: 70px !important;
    }

    .hero-btn {
        min-width: 130px;
        padding: 0.6rem 1rem;
    }
}

/* ✅ ROUNDED FILTER BAR — pill/stadium shape like screenshot */
.slider-filter {
    position: relative;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 22px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-filter:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2), 0 12px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.filter-inner {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-item {
    flex: 1;
    min-width: 180px;
    position: relative;
}

.filter-item label {
    font-size: 13px;
    color: var(--kpy-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
}

.filter-item label i {
    font-size: 14px;
    color: var(--kpy-secondary);
}

.filter-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--kpy-secondary) 0%, rgba(11, 44, 93, 0.2) 100%);
    border-radius: 2px;
    transform: scaleX(0.9);
    transition: transform 0.3s ease;
}

.filter-item:focus-within::after {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--kpy-secondary) 0%, var(--kpy-primary) 100%);
}

/* ✅ SELECT WRAPPER — positions Bootstrap chevron icon */
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.select-wrapper select {
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 12px 32px 8px 0;
    outline: none;
    background: transparent;
    color: var(--kpy-primary);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.select-wrapper .select-icon {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--kpy-primary);
    pointer-events: none;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.select-wrapper:focus-within .select-icon {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
    color: var(--kpy-secondary);
}

.filter-item input[type="date"] {
    cursor: pointer;
}

.filter-item input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.filter-item input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

.filter-item input[type="number"]::-webkit-outer-spin-button,
.filter-item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.filter-btn {
    background: linear-gradient(135deg, var(--kpy-primary) 0%, var(--kpy-secondary) 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(11, 44, 93, 0.3);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 44, 93, 0.4), 0 5px 15px rgba(11, 44, 93, 0.2);
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(11, 44, 93, 0.3);
}

@media (max-width:1024px) {
    .slider-filter {
        width: 90%;
        padding: 20px 28px;
        bottom: -50px;
        border-radius: 60px;
    }

    .filter-inner {
        gap: 15px;
    }

    .filter-item {
        min-width: 160px;
    }
}

@media (max-width:768px) {
    .slider-filter {
        width: 92%;
        padding: 20px;
        bottom: -40px;
        position: relative;
        margin: -30px auto 0;
        top: auto;
        left: auto;
        transform: none;
        border-radius: 30px;
    }

    .filter-inner {
        flex-direction: column;
        gap: 15px;
    }

    .filter-item {
        width: 100%;
        min-width: auto;
    }

    .filter-btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width:480px) {
    .slider-filter {
        padding: 18px;
        border-radius: 24px;
        bottom: -35px;
    }

    .filter-item label {
        font-size: 12px;
    }

    .select-wrapper select {
        font-size: 15px;
        padding: 10px 28px 6px 0;
    }

    .filter-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

.destination-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
}

.destination-card {
    text-align: center;
    width: 180px;
}

.destination-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.destination-card img:hover {
    transform: scale(1.05);
}

.des-title {
    font-family: var(--kpy-font-2, "Playfair Display", serif);
    color: var(--kpy-secondary);
    font-size: 64px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
    text-align: center;
}

.des-tle {
    font-family: var(--kpy-font-2, "Playfair Display", serif);
    color: var(--kpy-white);
    font-size: 64px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
    text-align: center;
}

.des-tle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--kpy-primary);
}

.des-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--kpy-primary);
}

.des-p {
    color: var(--kpy-accent);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width:768px) {
    .destination-card {
        width: calc(50% - 20px);
    }
}

@media (max-width:480px) {
    .destination-card {
        width: calc(50% - 20px);
    }
}


.locations {
    padding: 5rem 0;
    font-family: var(--kpy-font);
    background: linear-gradient(135deg, rgba(114, 170, 40, 0.03) 0%, rgba(89, 69, 57, 0.03) 100%);
}

.locations .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.locations .wp-block-columns {
    align-items: center;
    gap: 4rem;
}

.locations .wp-block-column:first-child {
    flex: 1;
}

.locations .wp-block-column:last-child {
    flex: 1;
}

.locations .wp-block-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.locations .wp-block-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.locations .wp-block-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.8s ease;
}

.locations .wp-block-image:hover img {
    transform: scale(1.05);
}

.locations h2.wp-block-heading {
    color: var(--kpy-primary);
    font-family: var(--kpy-font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.locations h2.wp-block-heading::after {
    display: none;
}

.locations p {
    color: var(--kpy-accent);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.locations p strong {
    color: var(--kpy-primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .locations .wp-block-columns {
        flex-direction: column;
        gap: 2.5rem;
    }

    .locations .wp-block-image {
        transform: none;
        width: 90%;
        margin: 0 auto;
    }

    .locations .wp-block-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .locations {
        padding: 3rem 0;
    }

    .locations h2.wp-block-heading {
        font-size: 2rem;
    }

    .locations p {
        font-size: 1.05rem;
    }

    .locations .wp-block-image img {
        height: 300px;
    }
}



.who-section {
    padding: 4rem 1rem;
    background-color: var(--kpy-white);
}

.who-section .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.who-section .is-layout-flex {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.who-section .is-layout-flex:last-child {
    margin-bottom: 0;
}

.who-section .card {
    background: var(--kpy-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(var(--kpy-black-rgb), 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--kpy-black-rgb), 0.15);
}

.who-section .who-pic {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.who-section .who-pic img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.who-section .who-pic:hover img {
    transform: scale(1.05);
}

.who-section h2.wp-block-heading {
    font-family: var(--kpy-font-2);
    color: var(--kpy-secondary);
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.who-section p {
    color: var(--kpy-accent);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.who-section .fas {
    font-size: 2rem;
    color: var(--kpy-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-section .is-layout-flow {
    display: flex;
    flex-direction: column;
}

@media (max-width:768px) {
    .who-section .is-layout-flex {
        flex-direction: column;
        gap: 1.5rem;
    }

    .who-section .card {
        padding: 1.5rem;
    }

    .who-section h2.wp-block-heading {
        font-size: 1.3rem;
    }
}

@media (max-width:480px) {
    .who-section {
        padding: 2rem 0;
    }

    .who-section .card {
        padding: 1rem;
    }

    .who-section h2.wp-block-heading {
        font-size: 1.1rem;
    }

    .who-section .fas {
        font-size: 1.5rem;
    }
}



/** ==========================================================
HOMEPAGE Styles
===========================================================**/

/* ===== ROOT & GLOBALS ===== */
:root {
    --kpy-primary: #2B5219;
    --kpy-primary-rgb: 43, 82, 25;
    --kpy-secondary: #F5C518;
    --kpy-secondary-rgb: 245, 197, 24;
    --kpy-accent: #E87820;
    --kpy-accent-rgb: 232, 120, 32;
    --kpy-blue: #1A7DC8;
    --kpy-blue-rgb: 26, 125, 200;
    --kpy-white: #FFFFFF;
    --kpy-white-rgb: 255, 255, 255;
    --kpy-black: #1A1A1A;
    --kpy-black-rgb: 26, 26, 26;
    --kpy-grey: #808080;
    --kpy-gradient: linear-gradient(90deg, #F5C518 0%, #E87820 100%);
    --kpy-gradient-v: linear-gradient(180deg, #F5C518 0%, #E87820 100%);
    --kpy-lightGrey: #F2F4F6;
    --kpy-dark: #1A1A1A;
}

.du-section {
    width: 100%;
    padding: 80px 40px;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

.du-eyebrow {
    font-family: 'Pacifico', cursive;
    font-size: 1rem;
    color: var(--kpy-accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.du-accent {
    color: var(--kpy-accent) !important;
}

.du-white {
    color: var(--kpy-white) !important;
}

.du-centered {
    text-align: center !important;
}

.du-section-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--kpy-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.du-gradient-line {
    border: none;
    height: 4px;
    background: var(--kpy-gradient);
    width: 80px;
    margin: 0 auto 48px;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.du-btn-primary,
.wp-block-button.du-btn-primary .wp-block-button__link {
    background: var(--kpy-accent) !important;
    color: var(--kpy-white) !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.03em !important;
    border: none !important;
    transition: background 0.25s, transform 0.2s !important;
}

.du-btn-primary:hover,
.wp-block-button.du-btn-primary .wp-block-button__link:hover {
    background: #c96820 !important;
    transform: translateY(-2px) !important;
}

.du-btn-ghost,
.wp-block-button.du-btn-ghost .wp-block-button__link {
    background: transparent !important;
    color: var(--kpy-primary) !important;
    border: 2px solid var(--kpy-primary) !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 700 !important;
    transition: all 0.25s !important;
}

.du-btn-ghost:hover,
.wp-block-button.du-btn-ghost .wp-block-button__link:hover {
    background: var(--kpy-primary) !important;
    color: white !important;
}

.du-btn-outline-white,
.wp-block-button.du-btn-outline-white .wp-block-button__link {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    transition: all 0.25s !important;
}

.du-btn-outline-white:hover,
.wp-block-button.du-btn-outline-white .wp-block-button__link:hover {
    background: white !important;
    color: var(--kpy-dark) !important;
}

.du-centered-btn {
    display: block;
    text-align: center;
    margin-top: 40px;
}

.du-text-link {
    color: var(--kpy-blue) !important;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.du-text-link:hover {
    text-decoration: underline;
}

/* ===== SECTION 1: BALLOON HERO ===== */
.du-balloons-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #0f2d1e 0%, #1B5E3B 50%, #2d7a4f 100%);
}

.du-balloons-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(46, 139, 87, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.du-balloons-content {
    position: relative;
    z-index: 10;
    max-width: 560px;
    padding: 60px 40px;
    color: white;
}

.du-balloons-eyebrow {
    font-family: 'Pacifico', cursive;
    color: var(--kpy-secondary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.du-balloons-headline {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.du-balloons-headline span {
    color: var(--kpy-secondary);
}

.du-balloons-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.du-balloons-field {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    padding-bottom: 20px;
}

.du-balloon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.du-balloon:hover {
    transform: translateY(-12px);
}

.du-balloon-img-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.du-balloon-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.du-balloon-label {
    margin-top: 10px;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.du-balloon-string {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    margin-top: 6px;
}

.du-b1 {
    animation: duFloat 3.2s ease-in-out infinite;
}

.du-b2 {
    animation: duFloat 2.8s ease-in-out infinite 0.4s;
}

.du-b3 {
    animation: duFloat 3.5s ease-in-out infinite 0.8s;
}

.du-b4 {
    animation: duFloat 3.0s ease-in-out infinite 1.2s;
}

.du-b5 {
    animation: duFloat 2.6s ease-in-out infinite 1.6s;
}

@keyframes duFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* ===== SECTION 3: SERVICES ===== */
.du-services-strip {
    background: var(--kpy-lightGrey);
}

.du-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 0;
}

.du-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: white;
    border-radius: 12px;
    transition: box-shadow 0.25s;
    cursor: default;
}

.du-service-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.du-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--kpy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.du-service-item:hover .du-service-icon {
    background: var(--kpy-accent);
    transform: rotate(8deg);
}

.du-service-icon svg {
    width: 26px;
    height: 26px;
    color: white;
    stroke: white;
}

.du-service-item span {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--kpy-dark);
    text-align: center;
    line-height: 1.3;
}

/* ===== SECTION 4: WHY CHOOSE US ===== */
.du-why-section {
    padding: 0 !important;
    overflow: hidden;
}

.du-why-cols {
    gap: 0 !important;
    min-height: 520px;
    align-items: stretch !important;
}

.du-why-image-col {
    padding: 0 !important;
    min-height: 480px;
}

.du-why-image-col .wp-block-image,
.du-why-image-col .wp-block-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
}

.du-why-content-col {
    padding: 64px 56px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.du-why-heading {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    color: var(--kpy-primary);
    line-height: 1.2;
    margin-bottom: 28px;
}

.du-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.du-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    color: #333;
}

.du-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--kpy-secondary);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ===== SECTION 5: DESTINATIONS MOSAIC ===== */
.du-destinations-section {
    background: var(--kpy-dark);
}

.du-destinations-section .du-section-title {
    color: white;
}

.du-destinations-section .du-eyebrow {
    color: var(--kpy-secondary);
}

.du-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.du-mosaic-large {
    grid-row: 1 / 3;
}

.du-mosaic-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.du-mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.du-mosaic-card:hover .du-mosaic-img {
    transform: scale(1.06);
}

.du-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: var(--kpy-gradient);
    opacity: 0;
    transition: opacity 0.35s;
}

.du-mosaic-card:hover .du-mosaic-overlay {
    opacity: 0.55;
}

.du-mosaic-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.du-mosaic-name {
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.du-mosaic-cta {
    color: var(--kpy-secondary);
    font-weight: 700;
    font-size: 0.88rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
}

.du-mosaic-card:hover .du-mosaic-cta {
    opacity: 1;
    transform: translateX(0);
}

/* ===== SECTION 6: TESTIMONIALS ===== */
.du-testimonials-section {
    background: var(--kpy-primary);
}

.du-carousel-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.du-carousel {
    display: flex;
    gap: 24px;
    overflow: hidden;
    position: relative;
}

.du-testi-card {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: white;
    border-radius: 16px;
    padding: 32px;
    flex: 0 0 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.du-testi-card.du-active {
    display: flex;
    animation: duFadeIn 0.4s ease;
}

@keyframes duFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.du-testi-stars {
    color: var(--kpy-secondary);
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.du-testi-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.du-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.du-testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.du-testi-author strong {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--kpy-dark);
}

.du-testi-author span {
    font-size: 0.8rem;
    color: #888;
}

.du-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.du-carousel-arrow {
    background: none;
    border: 2px solid var(--kpy-accent);
    color: var(--kpy-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.du-carousel-arrow:hover {
    background: var(--kpy-accent);
    color: white;
}

.du-carousel-dots {
    display: flex;
    gap: 8px;
}

.du-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s;
}

.du-dot-active {
    background: var(--kpy-secondary);
}

/* ===== SECTION 7: CTA BANNER ===== */
.du-cta-banner {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 40px;
}

.du-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 45, 30, 0.62);
    pointer-events: none;
    z-index: 0;
}

.du-cta-banner>* {
    position: relative;
    z-index: 1;
}

.du-cta-headline {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: white;
    margin-bottom: 16px;
}

.du-cta-sub {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.du-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTION 8: ABOUT ===== */
.du-about-section {
    background: white;
}

.du-about-cols {
    align-items: center !important;
    gap: 60px !important;
}

.du-about-lead {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--kpy-dark);
    line-height: 1.65;
    margin-bottom: 12px;
}

.du-about-body {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
}

.du-about-stats-col {
    background: var(--kpy-gradient);
    border-radius: 20px;
    padding: 40px;
}

.du-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.du-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.du-stat-num {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--kpy-secondary);
    line-height: 1;
}

.du-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ===== SECTION 9: BLOG ===== */
.du-blog-section {
    background: var(--kpy-lightGrey);
}

.du-blog-grid {
    gap: 28px !important;
}

.du-blog-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.du-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.du-blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.du-blog-card-body {
    padding: 20px;
}

.du-blog-cat {
    display: inline-block;
    background: var(--kpy-blue);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.du-blog-date {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 10px;
}

.du-blog-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--kpy-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.du-blog-excerpt {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.du-read-more {
    color: var(--kpy-accent) !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
}

.du-read-more:hover {
    text-decoration: underline !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .du-balloons-field {
        display: none;
    }

    .du-balloons-content {
        max-width: 100%;
        padding: 60px 24px;
    }
}

@media (max-width: 768px) {
    .du-section {
        padding: 60px 20px;
    }

    .du-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .du-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .du-mosaic-large {
        grid-row: auto;
        grid-column: 1 / 3;
    }

    .du-why-cols,
    .du-about-cols {
        flex-direction: column !important;
    }

    .du-why-image-col {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .du-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .du-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}




/** ==========================================================
TOUR PACKAGE Styles
===========================================================**/




.package-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

.package-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpy-white);
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    margin-top: 65px;
    font-family: var(--kpy-font-2);
}

.trip-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    flex-wrap: nowrap;
}

.trip-meta span {
    background: rgba(var(--kpy-primary-rgb), 0.9);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
}

.package-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.package-main {
    background: var(--kpy-white);
    border-radius: 10px;
    padding: 25px;
}

.package-sidebar {
    background: var(--kpy-white);
    border-radius: 10px;
    padding: 25px;
    height: fit-content;
}

.package-section {
    margin-bottom: 30px;
}

.package-section h2 {
    color: var(--kpy-primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.itinerary-day {
    border-left: 3px solid var(--kpy-primary);
    padding-left: 15px;
    margin-bottom: 25px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(var(--kpy-black-rgb), 0.15);
}

.itinerary-day h3 {
    color: var(--kpy-black);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-size: 1.2rem;
    font-family: var(--kpy-font-2);
}

.itinerary-day h3:after {
    content: '\25BC';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.itinerary-day p {
    font-size: 1rem;
    font-family: var(--kpy-font-3);
    font-weight: 200;
}

.itinerary-day h3.active:after {
    transform: translateY(-50%) rotate(180deg);
}

.itinerary-day .day-content {
    display: none;
    padding-top: 10px;
}

.itinerary-day .day-content.active {
    display: block;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.price-table th,
.price-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-weight: 300;
}

.price-table th {
    background-color: #f5f5f5;
    color: var(--kpy-secondary);
}

.includes-excludes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.includes {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.excludes {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.includes h3,
.excludes h3 {
    color: var(--kpy-base);
    margin-bottom: 15px;
}

.includes ul,
.excludes ul {
    list-style: none;
    padding-left: 0;
}

.includes li,
.excludes li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-weight: 300;
}

.includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
}

.excludes li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f44336;
}

.payment-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.payment-details h2 {
    color: var(--kpy-secondary);
    margin-bottom: 20px;
}

.bank-details,
.contact-info {
    background: var(--kpy-white);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: 300;
}

.bank-details h3,
.contact-details h3 {
    color: var(--kpy-secondary);
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.discount-banner {
    margin-top: 15px;
    padding: 10px;
    background: #fff3cd;
    border-radius: 5px;
    text-align: center;
}

.contact-button {
    margin-top: 20px;
}

.submit-booking {
    background: var(--kpy-secondary);
    color: var(--kpy-white);
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

.submit-booking:hover {
    background: #4e0709;
}

@media (max-width:968px) {
    .package-content {
        grid-template-columns: 1fr;
    }

    .includes-excludes {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width:768px) {
    .package-hero {
        height: 300px;
    }

    .trip-meta {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .package-hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .package-hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin-top: 30px;
    }
}


.booking-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-family: var(--kpy-font);
    margin-bottom: 20px;
}

.booking-error h3 {
    margin: 0 0 10px 0;
    font-family: var(--kpy-font-2);
    color: #721c24;
    font-size: 18px;
}

.explore-uganda-single-package {
    font-family: var(--kpy-font);
}

.package-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 80% 100%, 50% 92%, 20% 100%, 0 88%);
}

.package-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: var(--kpy-font-2);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trip-meta span {
    margin: 0 1rem;
    font-size: 1.1rem;
}

.package-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: var(--kpy-font);
}

.package-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.package-section h2 {
    font-family: var(--kpy-font-2);
    color: var(--kpy-primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.pricing-info {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(113, 11, 13, 0.08);
    border: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.price-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid var(--kpy-secondary);
}

.category-name {
    font-weight: 500;
    color: var(--kpy-secondary);
}

.category-price {
    font-weight: 600;
    color: var(--kpy-secondary);
    font-size: 16px;
}

.discount-banner {
    background: linear-gradient(135deg, #f7d508 0%, #f9a825 100%);
    color: var(--kpy-secondary);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0 0;
    font-weight: bold;
    font-family: var(--kpy-font);
    font-size: 16px;
}

.booking-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(113, 11, 13, 0.08);
    border: 1px solid #e0e0e0;
}

.booking-form .form-group {
    margin-bottom: 18px;
}

.booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--kpy-secondary);
    font-family: var(--kpy-font);
    font-size: 14px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--kpy-font);
    transition: all 0.2s ease;
    background: #fff;
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--kpy-secondary);
    box-shadow: 0 0 0 2px rgba(113, 11, 13, 0.1);
}

.booking-form input[readonly] {
    background-color: #f8f9fa;
    border-color: #ddd;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.price-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px solid #e0e0e0;
}

.price-summary h4 {
    margin: 0 0 15px 0;
    color: var(--kpy-secondary);
    font-family: var(--kpy-font-2);
    font-size: 18px;
    text-align: center;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
    font-family: var(--kpy-font);
    font-size: 14px;
}

.price-line:last-child {
    border-bottom: none;
}

.price-line.discount {
    color: #d32f2f;
    font-weight: 600;
}

.price-line.total {
    font-size: 16px;
    border-top: 2px solid var(--kpy-secondary);
    padding-top: 12px;
    margin-top: 12px;
    color: var(--kpy-primary);
    font-weight: 600;
}

.payment-instruction {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.submit-booking {
    width: 100%;
    background: var(--kpy-primary);
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--kpy-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-booking:hover {
    background: #8a0f12;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(113, 11, 13, 0.2);
}

.booking-success {
    background: #e8f5e8;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-family: var(--kpy-font);
    font-size: 12px;
}

.booking-success h3 {
    margin: 0 0 10px 0;
    font-family: var(--kpy-font-2);
    color: #155724;
    font-size: 18px;
}

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 25px;
}

.contact-info p {
    margin-bottom: 8px;
    font-family: var(--kpy-font);
    font-size: 14px;
}

.contact-info a {
    color: var(--kpy-secondary);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--kpy-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .package-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px 15px;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
    }

    .package-sidebar {
        position: static;
    }

    .booking-form-section {
        padding: 20px;
    }
}

.booking-form input:invalid,
.booking-form select:invalid {
    border-color: #000;
}

.booking-form input:valid,
.booking-form select:valid {
    border-color: #28a745;
}

*/

/** ==========================================================
page.php Styles
===========================================================**/
.parallax-hero {
    position: relative;
    min-height: 350px !important;
    height: 350px !important;
    max-height: 350px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: none !important;
    margin-top: 100px !important;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    z-index: 1;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.15) translateY(-30px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #00000094 0%, rgb(0 0 0 / 60%) 10%, rgba(255, 255, 255, 0) 100%100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--kpy-white);
    padding: 0;
    max-width: 950px;
    margin: 0 auto;
}

.hero-card {
    margin: 0 auto;
    width: 100%;
    max-width: 920px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 1.5rem 2rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ========================================================
   Single tour: photo gallery & hero styles (moved from single-tour-package.php)
   ======================================================== */
.package-gallery-section {
    margin: 40px 0;
}

.package-gallery-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 20px 0;
}

.package-gallery-slider::-webkit-scrollbar {
    height: 8px;
}

.package-gallery-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.package-gallery-slider::-webkit-scrollbar-thumb {
    background: var(--kpy-primary, #2B5219);
    border-radius: 4px;
}

.package-gallery-slide {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-gallery-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.package-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .package-gallery-slide {
        flex: 0 0 250px;
        height: 170px;
    }
}

@media (max-width: 480px) {
    .package-gallery-slide {
        flex: 0 0 200px;
        height: 140px;
    }
}

/* Hero (page-parallax-hero) — moved from single-tour-package.php */
#page-parallax-hero {
    position: relative;
    width: 100%;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px !important;
    padding: 0 15px;
    background-color: #111;
}

#page-parallax-hero .parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    will-change: transform;
}

#page-parallax-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

#page-parallax-hero .hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

#page-parallax-hero .hero-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2.2rem 2.8rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

#page-parallax-hero .hero-slogan-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--kpy-font-2, inherit);
    display: block;
    margin-bottom: 0.6rem;
}

#page-parallax-hero .hero-slogan-star {
    color: var(--kpy-secondary, #F5C518);
    margin: 0 8px;
    font-size: 0.8rem;
}

#page-parallax-hero .hero-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.6rem;
    font-family: var(--kpy-font-2, inherit);
    font-weight: 700;
}

#page-parallax-hero .hero-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

#page-parallax-hero .hero-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

#page-parallax-hero .hero-breadcrumb-link {
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
}

#page-parallax-hero .hero-breadcrumb-link:hover {
    color: var(--kpy-secondary, #F5C518);
}

#page-parallax-hero .hero-breadcrumb-sep {
    color: #888;
}

#page-parallax-hero .hero-breadcrumb-current {
    color: var(--kpy-primary, #2B5219);
}

@media (max-width: 768px) {
    #page-parallax-hero {
        margin-top: 80px !important;
    }

    #page-parallax-hero .hero-card {
        padding: 1.5rem;
    }

    #page-parallax-hero .hero-title {
        font-size: 2.2rem;
    }
}

.hero-slogan {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--kpy-font-2);
}

.hero-slogan-star {
    display: inline-block;
    font-size: 0.95em;
    line-height: 1;
    margin: 0 0.65rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--kpy-white);
    animation: fadeUp 1.2s ease-out forwards;
}

.parallax-hero .hero-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 0.25rem;
    line-height: 1.2;
    animation: fadeUp 1.5s ease-out forwards;
    font-weight: 700;
    font-family: var(--kpy-font-heading);
    color: rgba(255, 255, 255, 0.98);
}

.hero-breadcrumb {
    font-size: 0.95rem;
    color: var(--kpy-white);
    margin-top: 0.5rem;
    animation: fadeUp 2s ease-out forwards;
}

.hero-breadcrumb a {
    color: var(--kpy-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--kpy-primary);
}

.hero-breadcrumb-pill {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-breadcrumb-link {
    color: rgba(10, 10, 10, 0.95);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.hero-breadcrumb-link:hover {
    color: var(--kpy-secondary);
    transform: translateY(-1px);
}

.hero-breadcrumb-sep {
    opacity: 0.85;
    font-weight: 700;
}

.hero-breadcrumb-current {
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: rgba(10, 10, 10, 0.95);
}

@keyframes growLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 80px;
        opacity: 1;
    }
}

.hero-excerpt {
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 720px;
    opacity: 0.92;
    animation: fadeUp 1.8s ease-out forwards;
    color: rgba(255, 255, 255, 0.88);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .parallax-hero {
        min-height: 350px;
        height: 350px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 80% 95%, 20% 90%, 0 95%);
    }

    .parallax-hero .hero-title {
        font-size: 2.7rem;
    }

    .hero-card {
        padding: 2.3rem 1.7rem;
    }
}

@media (max-width: 576px) {
    .parallax-hero {
        min-height: 350px;
        height: 350px;
        clip-path: polygon(0 0, 100% 0, 100% 92%, 85% 96%, 15% 92%, 0 96%);
    }

    .parallax-hero .hero-title {
        font-size: 2.25rem;
    }

    .hero-card {
        padding: 2rem 1.3rem;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, #00000094 0%, rgb(0 0 0 / 60%) 10%, rgba(255, 255, 255, 0) 100%100%);
    }
}

.hero-wave-section {
    position: relative;
}

.hero-wave-section .wp-block-cover {
    position: relative;
    overflow: hidden;
}

.hero-wave-section .wp-block-cover__image-background {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: 0;
}

.hero-wave-section .wp-block-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgb(255 234 178) 0%, rgba(244, 235, 205, .6) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-wave-section .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
}

.hero-wave-section .wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 5;
}

.hero-wave-section .wave img {
    width: 100%;
    height: 100px;
    display: block;
    filter: brightness(0) invert(1);
}


.hero-wave {
    position: relative;
    overflow: hidden;
}

.hero-wave .wp-block-cover {
    position: relative;
    overflow: hidden;
}

.hero-wave .wp-block-cover__image-background {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: 0;
}

.hero-wave .wp-block-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .85) 15%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-wave .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
}

.hero-wave .waves {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-wave .waves img {
    width: 100%;
    height: 110px;
    display: block;
    filter: brightness(0);
}

.hero-wave .wp-block-heading {
    margin-top: 6rem;
    color: var(--kpy-white);
    font-family: var(--kpy-font-heading);
    font-weight: 700;
    font-size: 4.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: 320px;
}

.wave-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--kpy-primary) 0%, var(--kpy-secondary) 100%);
    color: var(--kpy-white);
    padding: 8px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 500px !important;
}

.wave-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(var(--kpy-primary-rgb), 0.3);
    gap: 12px;
}

.wave-btn svg {
    transition: transform 0.3s ease;
}

.wave-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .hero-wave .wp-block-heading {
        margin-left: 0;
        max-width: 100%;
        padding: 0 20px;
    }

    .wave-btn {
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .hero-wave .wp-block-heading {
        margin-top: 5rem;
        font-size: 3.2rem;
    }

    .hero-wave .waves img {
        height: 90px;
    }
}

@media (max-width: 576px) {
    .hero-wave .wp-block-heading {
        margin-top: 4rem;
        font-size: 2.5rem;
    }

    .hero-wave .waves img {
        height: 70px;
    }
}

@media (max-width: 400px) {
    .hero-wave .wp-block-heading {
        margin-top: 8rem;
        font-size: 3rem;
    }

    .hero-wave .waves img {
        height: 60px;
    }
}

@media (max-width: 991px) and (orientation: landscape) {
    .hero-wave .wp-block-heading {
        margin-top: 3rem;
        font-size: 2.8rem;
    }

    .hero-wave .waves img {
        height: 80px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero-wave .wp-block-heading {
        margin-top: 4.5rem;
        font-size: 2.2rem;
    }

    .hero-wave .waves img {
        height: 70px;
    }
}

/* Grid Layout Styles */
.tailor-made-safari-wrapper {
    padding: 40px;
}

.tailor-made-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.grid-item {
    background: var(--kpy-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--kpy-primary);
}

.grid-item h3 {
    color: var(--kpy-accent);
    font-family: var(--kpy-font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.grid-item .step-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--kpy-primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    margin-right: 10px;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-header h3 {
    margin: 0;
    padding: 0;
    border: none;
}

.btn-prev,
.btn-next,
.step-progress,
.step-navigation {
    display: none !important;
}

.grid-item .checkbox-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.grid-item .form-group {
    margin-bottom: 20px;
}

.form-summary-section {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--kpy-primary) 0%, var(--kpy-secondary) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-summary-section .btn-submit {
    background: white;
    color: var(--kpy-primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-summary-section .btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .tailor-made-grid {
        grid-template-columns: 1fr;
    }

    .form-summary-section {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .grid-item .checkbox-grid {
        max-height: 250px;
    }
}

.grid-item .checkbox-grid::-webkit-scrollbar {
    width: 8px;
}

.grid-item .checkbox-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.grid-item .checkbox-grid::-webkit-scrollbar-thumb {
    background: var(--kpy-primary);
    border-radius: 10px;
}

.grid-item .checkbox-grid::-webkit-scrollbar-thumb:hover {
    background: var(--kpy-secondary);
}

.admin-inquiry-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-inquiry-table th {
    background: var(--kpy-primary);
    color: white;
    padding: 12px;
    text-align: left;
}

.admin-inquiry-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.admin-inquiry-table tr:hover {
    background: rgba(114, 170, 40, 0.05);
}

.details-panel {
    background: #f9f9f9;
    border-left: 4px solid var(--kpy-primary);
    padding: 15px;
    margin: 10px 0;
}

.checkbox-grid.two-columns.compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
    margin-bottom: 5px;
}

.checkbox-card.reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: var(--kpy-white);
    transition: all 0.2s ease;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    min-height: auto;
    cursor: pointer;
}

.checkbox-card.reverse:hover {
    border-color: var(--kpy-primary);
    background: rgba(114, 170, 40, 0.02);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.checkbox-card.reverse:has(input:checked) {
    border-color: var(--kpy-primary);
    background: rgba(114, 170, 40, 0.05);
    border-width: 1.5px;
}

.checkbox-card.reverse input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--kpy-primary);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-card.reverse .checkbox-label {
    flex: 1;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--kpy-accent);
    margin-left: 0;
    margin-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkbox-card.reverse:focus-within {
    border-color: var(--kpy-primary);
    box-shadow: 0 0 0 2px rgba(114, 170, 40, 0.2);
    outline: none;
}

.grid-item .form-group:has(.checkbox-grid.compact) {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .checkbox-grid.two-columns.compact {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .checkbox-card.reverse {
        padding: 10px 12px;
    }
}

.checkbox-card.reverse input[type="checkbox"]:checked~.checkbox-label {
    color: var(--kpy-primary);
    font-weight: 500;
}

.checkbox-card.reverse input[type="checkbox"]:checked {
    background: var(--kpy-primary);
    border-color: var(--kpy-primary);
}

.checkbox-card.reverse input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

@media (hover: hover) {
    .checkbox-card.reverse input[type="checkbox"]:hover {
        border-color: var(--kpy-primary);
    }
}


/** ==========================================================
About Page
===========================================================**/

.quick-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(var(--kpy-white-rgb), 0.98) 0%, rgba(var(--kpy-primary-rgb), 0.05) 100%);
}

.quick-section .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.quick-column {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.quick-column>div {
    flex: 1;
}

.quick-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(var(--kpy-black-rgb), 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-img img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(var(--kpy-black-rgb), 0.2);
}

.quick-column h2 {
    font-family: var(--kpy-font-2);
    font-size: 64px;
    color: var(--kpy-secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.quick-column p {
    font-family: var(--kpy-font-3);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--kpy-accent);
    margin-bottom: 1.5rem;
}

.quick-column p em {
    color: var(--kpy-primary);
    font-style: italic;
    font-weight: 600;
}

.quick-column .about-btn {
    margin-top: 2rem;
}

.quick-add img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(var(--kpy-black-rgb), 0.1);
    transition: transform 0.3s ease;
}

.quick-add img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .quick-column {
        flex-direction: column;
        gap: 2rem;
    }

    .quick-column h2 {
        font-size: 2rem;
    }

    .quick-column p {
        font-size: 1rem;
    }

    .about-btn a {
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 480px) {
    .quick-section {
        padding: 2rem 0;
    }

    .quick-column h2 {
        font-size: 1.75rem;
    }

    .quick-img img,
    .quick-add img {
        border-radius: 12px;
    }
}

.our-section {
    padding: 20px 0 60px;
    background: linear-gradient(135deg, rgba(var(--kpy-white-rgb), 0.98) 0%, rgba(var(--kpy-primary-rgb), 0.05) 100%);
}

.our-section .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-section .wp-block-columns {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.our-section .card {
    flex: 1;
    background: var(--kpy-white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(var(--kpy-black-rgb), 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 5px solid var(--kpy-primary);
}

.our-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(var(--kpy-black-rgb), 0.12);
}

.our-section .card h2 {
    font-family: var(--kpy-font-2);
    font-size: 1.8rem;
    color: var(--kpy-secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.our-section .card h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--kpy-primary);
    border-radius: 2px;
}

.our-section .card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--kpy-accent);
    font-family: var(--kpy-font-3);
}

.our-section .wp-block-image {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-section .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(var(--kpy-black-rgb), 0.1);
    transition: all 0.3s ease;
}

.our-section .wp-block-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--kpy-black-rgb), 0.15);
}

@media (max-width: 968px) {
    .our-section .wp-block-columns {
        flex-direction: column;
    }

    .our-section .card {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .our-section .card {
        padding: 30px 20px;
    }

    .our-section .card h2 {
        font-size: 1.5rem;
    }
}

#quick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#quick-list li {
    padding: 12px 20px 12px 60px;
    margin-bottom: 15px;
    background: rgba(var(--kpy-primary-rgb), 0.1);
    border-left: 4px solid var(--kpy-primary);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

#quick-list li:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--kpy-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpy-white);
    font-weight: bold;
}

#quick-list li:nth-child(1):before {
    content: '1';
}

#quick-list li:nth-child(2):before {
    content: '2';
}

#quick-list li:nth-child(3):before {
    content: '3';
}

#quick-list li:nth-child(4):before {
    content: '4';
}

#quick-list li:nth-child(5):before {
    content: '5';
}

#quick-list li:hover {
    background: rgba(var(--kpy-primary-rgb), 0.2);
    transform: translateX(5px);
    border-left: 4px solid var(--kpy-secondary);
}

@media (max-width:768px) {
    #quick-list .container {
        padding: 30px 20px;
    }

    .list-title {
        font-size: 1.8rem;
    }

    #quick-list li {
        padding: 15px 15px 15px 50px;
        font-size: 1rem;
    }

    #quick-list li:before {
        left: 15px;
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}


/* Grid: 4 cards per row */
.explore-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .explore-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .explore-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .explore-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Styling */
.explore-post-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.explore-post-card:hover {
    transform: translateY(-6px);
}

/* Thumbnail */
.explore-post-thumb {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    height: 300px;
    border-radius: 12px;
}

.explore-post-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-post-card:hover .explore-post-img {
    transform: scale(1.05);
}

/* Body */
.explore-post-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.explore-post-meta {
    font-size: 0.85rem;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.explore-post-meta i {
    margin-right: 4px;
    color: var(--kpy-secondary);
}

.explore-post-title {
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: var(--kpy-primary);
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.explore-post-card:hover .explore-post-title {
    color: var(--kpy-secondary);
}

.explore-post-excerpt {
    flex-grow: 1;
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Read More */
.explore-read-more {
    align-self: flex-start;
    font-weight: 600;
    text-decoration: none;
    color: var(--kpy-secondary);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.explore-read-more i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.explore-read-more:hover {
    color: var(--kpy-secondary);
}

.explore-read-more:hover i {
    transform: translateX(4px);
}

/* ===== SINGLE POST PAGE NEW STYLING ===== */

/* Header Banner */
.spp-header-banner {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 80% 100%, 50% 92%, 20% 100%, 0 88%);
}

.spp-header-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #00000094 0%, rgb(0 0 0 / 60%) 10%, rgba(255, 255, 255, 0) 100%100%);
}

.spp-header-banner h1 {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 2;
    line-height: 1.2;
    color: var(--kpy-secondary);
    font-family: var(--kpy-font-2);
}

/* Main Content Area */
.spp-content-container {
    padding: 30px 15px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.spp-post-main {
    flex: 1 1 65%;
    border-radius: 12px;
    padding: 30px;
}

.spp-post-main img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Post Meta */
.spp-post-meta {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spp-post-meta i {
    color: #710b0d;
}

.spp-author-email a {
    color: inherit;
}

/* Post Headings */
.spp-post-main h2,
.spp-post-main h3,
.spp-post-main h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--kpy-secondary);
}

/* Sidebar */
.spp-sidebar {
    flex: 1 1 30%;
    padding: 20px;
}

.spp-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--kpy-primary);
}

.spp-sidebar ul {
    list-style: none;
    padding: 0;
}

.spp-sidebar ul li {
    margin-bottom: 12px;
}

.spp-sidebar ul li a {
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
}

.spp-sidebar ul li a:hover {
    color: var(--kpy-primary);
    text-decoration: underline;
}

/* Social Share */
.spp-social-share {
    border-top: 1px solid #eee;
    margin-top: 25px;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.spp-social-share small {
    font-size: 0.85rem;
}

.spp-social-btn {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 30px;
    padding: 6px 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    text-decoration: none;
}

.spp-social-btn-facebook:hover {
    background: #3b5998;
    color: #fff;
    border-color: #3b5998;
}

.spp-social-btn-twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.spp-social-btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* Responsive */
@media (max-width: 992px) {

    .spp-post-main,
    .spp-sidebar {
        flex: 1 1 100%;
    }

    .spp-header-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .spp-header-banner {
        min-height: 350px;
    }

    .spp-header-banner h1 {
        font-size: 1.6rem;
    }

    .spp-post-main {
        padding: 20px;
    }
}



.explore-news-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.explore-news-horizontal-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-news-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.explore-news-horizontal-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.explore-news-horizontal-thumb {
    flex: 0 0 35%;
    overflow: hidden;
    position: relative;
}

.explore-news-horizontal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-news-horizontal-card:hover .explore-news-horizontal-img {
    transform: scale(1.05);
}

.explore-news-horizontal-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.explore-news-horizontal-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
    transition: color 0.3s ease;
}

.explore-news-horizontal-card:hover .explore-news-horizontal-title {
    color: #7f1712;
}

.explore-news-horizontal-meta {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.explore-news-horizontal-meta i {
    color: #7f1712;
}

.explore-news-horizontal-excerpt {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .explore-news-horizontal-card {
        flex-direction: column;
    }
}





/* Responsive */
@media (max-width: 768px) {
    .destination-hero h1 {
        font-size: 2rem;
    }

    .trip-meta {
        gap: 0.5rem;
        align-items: center;
    }

    .destination-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 2rem;
    }

    .booking-widget {
        position: relative;
        top: auto;
    }

    .includes-excludes {
        grid-template-columns: 1fr;
    }
}





/** =====================================================================
*search
=======================================================================**/

.header-search input {
    visibility: hidden;
}

.header-search ul.search-dropdown {
    display: none;
}

.header-search label {
    position: relative;
    display: block;
    cursor: pointer;
    margin-top: -20px
}

.header-search input:checked~ul.search-dropdown {
    display: block;
    position: absolute;
    z-index: 119;
}

.search-dropdown .input-group {
    right: 100%;
    flex-wrap: unset;
    margin-top: 28px;
}

.search-dropdown ul li {
    list-style: none !important;
}

.search-dropdown .input-group input {
    visibility: visible;
    width: 600px !important;
    height: 60px;
}

.search-dropdown .input-group .btn-search {
    background: #0b5a5f;
    color: #fff;
}

#search-results {
    display: none;
    right: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.93);
    padding: 1em;
    font-size: small;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#search-results a {
    color: #125e63
}

.search-result-item {
    margin-bottom: 3px;
    padding: 5px;
}

.search-result-item h5 {
    margin: 0;
    font-size: 1.1em;
}

.search-result-item p {
    margin-top: 2px;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.search-result-item:hover {
    background: rgba(245, 227, 225, 0.92);
}

/**modal search**/
.modal-search {
    background: rgba(42, 42, 134, 0.6);
}

.modal-search .modal-body {
    align-items: center;
}

.modal-search input {
    height: 60px;
    width: 600px;
}

.modal-search .input-group .btn-search {
    background: #00AEEF;
    color: #fff;
}

.modal-search #search-results {
    display: none;
    right: 0;
    position: relative;
    background: transparent;
    padding: 1em;
    list-style: none;
    width: 100%;
    border: 0px solid #ccc;
    color: #fff;
}

.modal-search #search-results a {
    color: #00aeef;
}

.modal-search .search-result-item {
    margin-bottom: 3px;
    padding: 5px;
}

.modal-search .search-result-item h5 {
    margin: 0;
    font-size: 1.15em;
}

.modal-search .search-result-item p {
    margin-top: 2px;
    color: #eee;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.modal-search .search-result-item:hover {
    background: rgba(0, 175, 239, 0.139);
}





/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bs-animate {
    animation: fadeInUp 0.6s ease forwards;
}



/** =========================================================
Contact Form Styles
===============================================================**/
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 30px;
}

.contact-info-title {
    font-family: var(--kpy-font-2);
    font-size: 2.5rem;
    color: var(--kpy-secondary);
    margin-bottom: 30px;
    position: relative;
}

.contact-info-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--kpy-primary);
    border-radius: 2px;
}

.contact-info-description {
    font-size: 1.1rem;
    color: var(--kpy-accent);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--kpy-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-detail-content h4 {
    font-weight: 600;
    color: var(--kpy-secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-detail-content p {
    color: var(--kpy-accent);
    margin: 0;
    line-height: 1.5;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-weight: 600;
    color: var(--kpy-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--kpy-primary-rgb), 0.1);
    color: var(--kpy-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-icon:hover {
    background: var(--kpy-primary);
    transform: translateY(-3px);
    color: var(--kpy-white);
}

.contact-form-container {
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(var(--kpy-black-rgb), 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--kpy-primary);
}

.contact-form-title {
    font-family: var(--kpy-font-2);
    font-size: 2rem;
    color: var(--kpy-secondary);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--kpy-black);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(var(--kpy-accent-rgb), 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--kpy-font);
    background: var(--kpy-white);
    color: var(--kpy-accent);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--kpy-primary);
    box-shadow: 0 0 0 3px rgba(var(--kpy-primary-rgb), 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--kpy-primary);
    color: var(--kpy-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--kpy-primary-rgb), 0.3);
}

.submit-btn:hover {
    background: var(--kpy-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--kpy-primary-rgb), 0.4);
}

.safari-alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    border-left: 4px solid;
}

.safari-alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border-left-color: #4CAF50;
}

.safari-alert-danger {
    background: rgba(229, 57, 53, 0.1);
    color: #C62828;
    border-left-color: #E53935;
}

.map-section {
    padding: 40px 0;
    background: rgba(var(--kpy-primary-rgb), 0.05);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-title {
    font-family: var(--kpy-font-2);
    font-size: 2.5rem;
    color: var(--kpy-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(var(--kpy-black-rgb), 0.1);
    border: 1px solid rgba(var(--kpy-accent-rgb), 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-title {
        font-size: 2rem;
    }

    .map-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-info-title {
        font-size: 1.8rem;
    }

    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/** =========================================================
destinations page
===============================================================**/

.travel-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 60px 40px;
}

.travel-card {
    position: relative;
    border-radius: 40%;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.travel-card a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

.travel-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.travel-card:hover .travel-image {
    transform: scale(1.05);
}

.travel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.travel-overlay h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    color: var(--kpy-white);
    font-family: var(--kpy-font-2);
    font-size: 2.5rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .travel-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 40px 20px;
        gap: 25px;
    }

    .travel-card {
        height: 450px;
    }

    .travel-overlay h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .travel-cards-grid {
        grid-template-columns: 1fr;
        margin: 30px 15px;
        gap: 20px;
    }

    .travel-card {
        height: 400px;
    }

    .travel-overlay h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .des-title {
        font-size: 54px;
    }

    .des-title {
        font-size: 54px;
    }

    .travel-card {
        height: 350px;
    }

    .travel-overlay h3 {
        font-size: 1.5rem;
    }
}


/** =========================================================
Gallery page
===============================================================**/
.gallery-cards-container {
    margin: 0 auto;
    padding: 50px 20px;
}

.about-side {
    border-left: 2px var(--kpy-primary) solid;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-thumbnail {
    transform: scale(1.05);
}

.gallery-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}

.gallery-title {
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.gallery-card:hover .gallery-title {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.gallery-pagination .page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.gallery-pagination .page-numbers li a,
.gallery-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 6px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-pagination .page-numbers li a:hover {
    background: #228b22;
    color: #fff;
}

.gallery-pagination .page-numbers li span.current {
    background: #228b22;
    color: #fff;
}

.gallery-pagination .page-numbers li .pagination-arrow {
    margin: 0 5px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-title-overlay {
        padding: 15px;
    }

    .gallery-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-title-overlay {
        padding: 10px;
    }
}

.uniform-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.uniform-img:hover {
    transform: scale(1.03);
}








/** =========================================================
text slider Styles
===============================================================**/




/** ============================================================
Error 404 Page Not Found CSS
=============================================================**/
.Error_404 {
    overflow: hidden;
    padding: 80px 0 120px;
}

.Error_404 .error_pic {
    width: 35%;
    float: left;
    text-align: center;
}

.Error_404 .error_pic i {
    color: #E82A2A;
    font-size: 250px;
    line-height: 250px;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    margin-left: .2em;
}

.Error_404 .error_desk {
    width: 65%;
    float: left;
    padding-top: 40px;
}

.Error_404 .error_desk h2 {
    font-size: 55px;
    line-height: 60px;
    color: #E82A2A;
    font-weight: 500;
}

.Error_404 .error_desk h4 {
    font-size: 28px;
    line-height: 30px;
}

.Error_404 .error_desk p .check {
    line-height: 45px;
    font-size: 16px;
}

.Error_404 .error_desk p .button {
    padding: 13px 20px;
    margin: 0;
    border-radius: 5px;
    display: inline;
    margin-left: 10px;
    box-shadow: inset 0 0 0 0;
}

.Error_404 .error_desk p .button:hover {
    color: #f9f9f9;
    text-decoration: none;
    background: #E82A2A;
}

a.button,
a.tp-button {
    transition: .2s all;
    background: transparent;
    color: #E82A2A;
    border: solid 2px;
}

.wp-block-ub-tabbed-content-tab-title strong {
    font-weight: 500 !important;
}

.text-dark {
    color: #a88343;
}



.wp-block-columns.is-layout-flex {
    flex-wrap: nowrap !important;
}

/** ===== DIALUS PAX PRICING & BOOKING ENHANCEMENTS ===== **/

/** PAX Pricing Table Base */
.pax-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/** Table Header */
.pax-pricing-table th {
    background: linear-gradient(135deg, #72aa28, #5f8f22);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

/** Table Cells */
.pax-pricing-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #eee;
}

.pax-pricing-table tr:hover {
    background: #f8f9fa;
}

.pax-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pax-pricing-table td:first-child {
    font-weight: 600;
    color: #333;
}

.pax-pricing-table th {
    background: linear-gradient(135deg, #72aa28, #5f8f22);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.pax-pricing-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #eee;
}

.pax-pricing-table tr:hover {
    background: #f8f9fa;
}

.pax-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pax-pricing-table td:first-child {
    font-weight: 600;
    color: #333;
}

/** ===== RESPONSIVE PAX TABLE ===== **/
@media (max-width:768px) {
    .pax-pricing-table {
        font-size: 14px;
    }

    .pax-pricing-table th,
    .pax-pricing-table td {
        padding: 12px 8px;
    }
}

@media (max-width:480px) {
    .pax-pricing-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .pax-pricing-table thead,
    .pax-pricing-table tbody,
    .pax-pricing-table th,
    .pax-pricing-table td,
    .pax-pricing-table tr {
        display: block;
    }

    .pax-pricing-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .pax-pricing-table tr {
        border: 1px solid #ddd;
        margin-bottom: 10px;
        border-radius: 6px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .pax-pricing-table td {
        border: none;
        position: relative;
        padding-left: 50%;
        padding-right: 12px;
        white-space: normal;
        text-align: right;
    }

    .pax-pricing-table td:before {
        content: attr(data-label)": ";
        position: absolute;
        left: 12px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        color: #72aa28;
    }

    .pax-pricing-table td:first-child:before {
        content: "PAX";
    }
}

/** ===== BOOKING PAX FORM SECTION ===== **/
.booking-pax-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.booking-pax-section label {
    font-weight: 600;
    color: #495057;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-pax-section select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.booking-pax-section select:focus {
    outline: none;
    border-color: #72aa28;
    box-shadow: 0 0 0 3px rgba(114, 170, 40, 0.1);
}

.booking-pax-section option {
    padding: 10px;
}

.booking-pax-section label {
    font-weight: 600;
    color: #495057;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-pax-section select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.booking-pax-section select:focus {
    outline: none;
    border-color: #72aa28;
    box-shadow: 0 0 0 3px rgba(114, 170, 40, 0.1);
}

#total_cost_display {
    font-size: 20px !important;
    color: #28a745 !important;
    font-weight: 700;
    text-align: center;
    padding: 15px !important;
    border: 2px solid #28a745 !important;
    background: #f8fff9 !important;
}

.booking-pax-section option {
    padding: 10px;
}

/* Dialus Contact Section Enhancement */
.contact-details {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #72aa28;
}

.contact-details h2 {
    color: #72aa28 !important;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-info a {
    color: #72aa28;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile booking form adjustments */
@media (max-width: 768px) {
    .booking-pax-section {
        padding: 12px;
    }

    .booking-pax-section select {
        padding: 12px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* ===== TAILOR-MADE CTA SECTION - FOR SERVICE TEMPLATES ===== */
.tailor-cta-section {
    background: #f5f5f5;
    padding: 80px 20px;
    position: relative;
    overflow: visible;
}

.tailor-cta-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #020617;
    position: relative;
    padding: 60px 40px;
}

.tailor-cta-image-wrapper {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 10;
}

.tailor-cta-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tailor-cta-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tailor-cta-image-container:hover .tailor-cta-image {
    transform: scale(1.05);
}

.rotating-text-container {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 90px;
    height: 90px;
    z-index: 20;
}

.rotating-text {
    width: 100%;
    height: 100%;
    animation: rotateCircle 15s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotating-text text {
    fill: #333;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tailor-cta-content {
    margin-left: 50%;
    padding-left: 80px;
    color: #fff;
}

.tailor-cta-heading {
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Georgia', serif;
}

.tailor-cta-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    line-height: 1.5;
}

.tailor-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    max-width: 200px;
}

.tailor-cta-btn {
    display: block;
    padding: 14px 25px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    width: 100%;
}

.tailor-cta-btn-primary {
    background: #fff;
    color: #020617;
    border-color: #fff;
}

.tailor-cta-btn-primary:hover {
    background: transparent;
    color: #fff;
}

.tailor-cta-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.tailor-cta-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.tailor-cta-availability {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tailor-cta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.tailor-cta-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tailor-cta-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .tailor-cta-section {
        padding: 40px 20px;
    }

    .tailor-cta-wrapper {
        padding: 40px 30px;
    }

    .tailor-cta-image-wrapper {
        position: relative;
        left: -30px;
        top: 0;
        transform: none;
        width: calc(100% + 60px);
        margin-bottom: 30px;
    }

    .tailor-cta-image {
        height: 250px;
    }

    .rotating-text-container {
        width: 70px;
        height: 70px;
        top: -20px;
        left: -20px;
    }

    .tailor-cta-content {
        margin-left: 0;
        padding-left: 0;
    }

    .tailor-cta-heading {
        font-size: 1.6rem;
    }

    .tailor-cta-buttons {
        max-width: 100%;
    }
}

/* FAQ Section - Title, Quote Card, Two Column Layout */
.dusv2-faq {
    padding: 80px 0;
    background: transparent;
}

.dusv2-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.dusv2-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--kpy-primary, #2B5219);
    margin-bottom: 10px;
}

.dusv2-faq-title span {
    color: var(--kpy-accent, #E87820);
}

.dusv2-faq-quote-card {
    background: var(--kpy-accent, #E87820);
    border-radius: 16px;
    padding: 30px 40px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(232, 120, 32, 0.3);
}

.dusv2-faq-quote-card::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.dusv2-faq-quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.dusv2-faq-quote-author {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: right;
}

.dusv2-faq-columns {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.dusv2-faq-left {
    flex: 0 0 70%;
}

.dusv2-faq-right {
    flex: 0 0 30%;
}

.dusv2-faq-image-wrapper {
    display: block;
}

.dusv2-faq-image {
    width: 100%;
    height: auto;
    display: block;
}

.dusv2-faq-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dusv2-faq-item-v2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(43, 82, 25, 0.08);
    border: 1px solid rgba(43, 82, 25, 0.1);
}

.dusv2-faq-question-v2 {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--kpy-primary, #2B5219);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: background 0.3s;
}

.dusv2-faq-question-v2:hover {
    background: rgba(43, 82, 25, 0.05);
}

.dusv2-faq-question-v2::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--kpy-accent, #E87820);
    font-weight: 300;
    transition: transform 0.3s;
}

.dusv2-faq-item-v2[open] .dusv2-faq-question-v2::after {
    content: '−';
    transform: rotate(180deg);
}

.dusv2-faq-answer-v2 {
    padding: 0 25px 20px;
    color: var(--kpy-dark, #2C2C2C);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .dusv2-faq-columns {
        flex-direction: column;
    }

    .dusv2-faq-left,
    .dusv2-faq-right {
        flex: 1 0 100%;
    }

    .dusv2-faq-right {
        order: -1;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .dusv2-faq-title {
        font-size: 2rem;
    }
}

/* ===== END SERVICES TEMPLATE FAQ ===== */

/** ==========================================================
SERVICES TEMPLATE V2 - Steps & Packages Styles
===========================================================**/

/* Process Steps - now handled by sv2-process-parallax in service-template.php */
.dusv2-process {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.dusv2-process::before {
    display: none;
}

.dusv2-process .dusv2-section-head {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.dusv2-process .dusv2-section-eyebrow {
    color: #F5C518;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.dusv2-process .dusv2-section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}

.dusv2-steps-timeline {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.dusv2-steps-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(245, 197, 24, 0.5) 10%, rgba(245, 197, 24, 0.5) 90%, transparent 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.dusv2-step-card {
    flex: 1;
    position: relative;
    z-index: 1;
}

.dusv2-step-card-inner {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dusv2-step-card:hover .dusv2-step-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dusv2-step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.dusv2-step-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #F5C518;
    color: #1a3c27;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dusv2-step-content {
    padding: 25px;
}

.dusv2-step-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dusv2-step-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dusv2-step-dot {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #F5C518;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 2;
}

@media (max-width: 991px) {
    .dusv2-steps-timeline {
        flex-wrap: wrap;
    }

    .dusv2-step-card {
        flex: 0 0 calc(50% - 15px);
    }

    .dusv2-steps-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .dusv2-step-card {
        flex: 1 0 100%;
    }
}

/* Pricing Packages - Glass Cards over global background */
.dusv2-packages {
    padding: 80px 0;
    background: transparent;
}

.dusv2-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dusv2-package-card-v2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dusv2-package-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.dusv2-package-card-v2:hover .dusv2-package-bg {
    transform: scale(1.05);
}

.dusv2-package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.dusv2-package-white-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dusv2-package-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.dusv2-package-name-v2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.dusv2-package-price-v2 {
    text-align: right;
}

.dusv2-price-amount-v2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--kpy-primary, #2B5219);
}

.dusv2-price-period-v2 {
    font-size: 0.85rem;
    color: var(--kpy-dark, #2C2C2C);
    display: block;
}

.dusv2-package-checkins {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.dusv2-package-checkins i {
    color: var(--kpy-primary, #2B5219);
}

.dusv2-package-deal-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--kpy-dark, #2C2C2C);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dusv2-package-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.dusv2-package-features-v2 li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.dusv2-package-features-v2 li i {
    color: var(--kpy-primary, #2B5219);
    font-size: 0.85rem;
}

.dusv2-package-btn-v2 {
    display: block;
    width: 100%;
    padding: 14px 25px;
    background: var(--kpy-primary, #2B5219);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.dusv2-package-btn-v2:hover {
    background: var(--kpy-accent, #E87820);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 120, 32, 0.3);
}

@media (max-width: 991px) {
    .dusv2-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dusv2-packages-grid {
        grid-template-columns: 1fr;
    }

    .dusv2-package-card-v2 {
        min-height: 450px;
    }
}

/* =========================
   POLICY PAGES - LIST CARDS STYLING (Screenshot Style)
   Add 'policy-list-cards' class to the List block in WordPress
========================= */

:root {
    --policy-card-bg: #ffffff;
    --policy-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --policy-card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --policy-title-color: var(--kpy-primary, #2B5219);
    --policy-text-color: #666;
    --policy-icon-color: var(--kpy-primary, #2B5219);
    --policy-icon-size: 2.5rem;
    --policy-card-padding: 40px 30px;
    --policy-card-gap: 30px;
    --policy-max-width: 1280px;
    --policy-side-margin: 24px;
}

.policy-list-cards {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: var(--policy-max-width);
    padding-left: var(--policy-side-margin) !important;
    padding-right: var(--policy-side-margin) !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--policy-card-gap);
}

.policy-list-cards li {
    background: var(--policy-card-bg);
    border-radius: 16px;
    padding: var(--policy-card-padding);
    box-shadow: var(--policy-card-shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
}

.policy-list-cards li:hover {
    transform: translateY(-8px);
    box-shadow: var(--policy-card-shadow-hover);
}

/* Bootstrap Icon styling */
.policy-list-cards li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    display: block;
    font-size: var(--policy-icon-size);
    color: var(--policy-icon-color);
    margin-bottom: 20px;
    line-height: 1;
    font-weight: normal;
}

/* Different Bootstrap Icons for each card */
.policy-list-cards li:nth-child(1)::before {
    content: '\F26B';
}

/* shield */
.policy-list-cards li:nth-child(2)::before {
    content: '\F147';
}

/* bullseye */
.policy-list-cards li:nth-child(3)::before {
    content: '\F4CF';
}

/* people */
.policy-list-cards li:nth-child(4)::before {
    content: '\F2C3';
}

/* clipboard */
.policy-list-cards li:nth-child(5)::before {
    content: '\F198';
}

/* balance scale */
.policy-list-cards li:nth-child(6)::before {
    content: '\F47B';
}

/* lock */

/* H3 Title styling */
.policy-list-cards li h3 {
    color: var(--policy-title-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: var(--kpy-font-heading, Georgia, serif);
}

/* Also style strong as H3 backup */
.policy-list-cards li strong {
    display: block;
    color: var(--policy-title-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: var(--kpy-font-heading, Georgia, serif);
}

/* Description text styling */
.policy-list-cards li p,
.policy-list-cards li div {
    color: var(--policy-text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Nested sub-lists */
.policy-list-cards li ul,
.policy-list-cards li ol {
    text-align: left;
    margin-top: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.policy-list-cards li ul li,
.policy-list-cards li ol li {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 5px 0;
    margin: 0;
    text-align: left;
}

.policy-list-cards li ul li::before,
.policy-list-cards li ol li::before {
    display: none;
}

.policy-list-cards li ul li:hover,
.policy-list-cards li ol li:hover {
    transform: none;
}

/* 2-column layout option */
.policy-list-cards.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Responsive */
@media (max-width: 991px) {
    .policy-list-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    :root {
        --policy-card-padding: 30px 25px;
        --policy-card-gap: 20px;
        --policy-side-margin: 16px;
    }

    .policy-list-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== Extracted from: wp-content/themes/kipya/template-home.php ===== */
/* HOME PAGE - services, tours, destinations, cta and responsive rules */
.home-page {
    --primary: var(--kpy-primary, #2B5219);
    --secondary: var(--kpy-secondary, #F5C518);
    --accent: var(--kpy-accent, #E87820);
    --blue: var(--kpy-blue, #1A7DC8);
    --white: var(--kpy-white, #FFFFFF);
    --black: var(--kpy-black, #1A1A1A);
}

.services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-label {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.services-header h2 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 15px;
}

.services-header h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.services-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px 30px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.service-tab-btn:hover {
    color: #fff;
}

.service-tab-btn.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.services-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-tab-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-tab-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.service-tab-text {
    padding: 20px;
}

.service-tab-text h3 {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.service-tab-text h4 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}

.service-tab-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 35px;
}

.service-tab-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 35px;
    border: 1px solid var(--secondary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-tab-link:hover {
    background: var(--secondary);
    color: #1a1a2e;
}

.tours-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.tours-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tours-header {
    text-align: center;
    margin-bottom: 60px;
}

.tours-header .section-label {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.tours-header h2 {
    color: #1a1a1a;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 15px;
}

.tours-header h2 strong {
    font-weight: 700;
}

.tours-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.tour-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-duration {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: #1a1a1a;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

.tour-card-content {
    padding: 30px;
}

.tour-card-content h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tour-card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-price {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tour-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tour-link:hover {
    color: var(--accent);
}

.tour-link i {
    transition: transform 0.3s ease;
}

.tour-link:hover i {
    transform: translateX(5px);
}

.view-all-tours {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--secondary);
    color: #1a1a1a;
}

.destinations-section {
    padding: 100px 20px;
    background: #fff;
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-header {
    text-align: center;
    margin-bottom: 60px;
}

.destinations-header .section-label {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.destinations-header h2 {
    color: #1a1a1a;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 15px;
}

.destinations-header h2 strong {
    font-weight: 700;
}

.destinations-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.destination-card h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.destination-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.trust-section {
    padding: 60px 20px;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3310 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-section h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--secondary);
    color: #1a1a2e;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 197, 24, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

@media (max-width: 991px) {
    .service-tab-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-tab-image {
        order: -1;
    }

    .service-tab-image img {
        height: 350px;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .services-section,
    .tours-section,
    .destinations-section,
    .cta-section {
        padding: 60px 15px;
    }

    .services-tabs-nav {
        gap: 5px;
    }

    .service-tab-btn {
        padding: 15px 15px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .trust-container {
        flex-direction: column;
        gap: 25px;
    }

    .service-tab-link,
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Extracted from: wp-content/themes/kipya/template-destination.php ===== */
/* Destination template styles */
.destination-overview-section {
    padding: 60px 20px;
    background: #f7f9f2;
    position: relative;
}

.destination-overview-container {
    max-width: 1400px;
    margin: 0 auto;
}

.destination-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
}

.overview-column {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overview-image {
    height: 400px;
}

.overview-content {
    padding: 30px;
}

.overview-map {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.overview-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.overview-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.overview-tagline {
    font-size: 0.85rem;
    color: var(--kpy-accent, #E87820);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.overview-title {
    font-size: 2rem;
    color: var(--kpy-primary, #2B5219);
    margin-bottom: 20px;
    font-family: var(--kpy-font-heading, 'Handscript', cursive);
}

.overview-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .destination-overview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .overview-image {
        height: 300px;
    }

    .overview-map iframe {
        height: 300px;
    }
}

.destination-hero {
    position: relative;
    width: 100%;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px !important;
    padding: 0 15px;
    background-color: #111;
}

.destination-hero .parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    will-change: transform;
}

.destination-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.destination-hero .hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.destination-hero .hero-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2.2rem 2.8rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.destination-hero .hero-slogan-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--kpy-font-2, inherit);
    display: block;
    margin-bottom: 0.6rem;
}

.destination-hero .hero-slogan-star {
    color: var(--kpy-secondary, #F5C518);
    margin: 0 8px;
    font-size: 0.8rem;
}

.destination-hero .hero-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.6rem;
    font-family: var(--kpy-font-2, inherit);
    font-weight: 700;
}

.destination-hero .tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.destination-hero .hero-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

.destination-hero .hero-breadcrumb-link {
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
}

.destination-hero .hero-breadcrumb-link:hover {
    color: var(--kpy-secondary, #F5C518);
}

.destination-hero .hero-breadcrumb-sep {
    color: #888;
}

.destination-hero .hero-breadcrumb-current {
    color: var(--kpy-primary, #2B5219);
}

@media (max-width: 768px) {
    .destination-hero {
        margin-top: 80px !important;
    }

    .destination-hero .hero-card {
        padding: 1.5rem;
    }

    .destination-hero .hero-title {
        font-size: 2.2rem;
    }
}

/* Additional destination styles appended... (trimmed in this patch for brevity) */


/* ==========================================
   SOCIAL MEDIA BAR (Colored Icons)
   ========================================== */

.social-media-bar {
    background: linear-gradient(135deg, #f7f9f2 0%, #ffffff 100%);
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-media-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-media-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--kpy-primary, #2B5219);
    letter-spacing: 0.5px;
}

.social-media-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Facebook */
.social-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
}

.social-facebook:hover {
    background: linear-gradient(135deg, #0d65d9 0%, #0a4fb8 100%);
}

/* Instagram */
.social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-instagram:hover {
    background: linear-gradient(135deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8f0f6b 100%);
}

/* Twitter/X */
.social-twitter {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.social-twitter:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

/* WhatsApp */
.social-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
}

.social-whatsapp:hover {
    background: linear-gradient(135deg, #1ebe57 0%, #17a647 100%);
}

/* YouTube */
.social-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-youtube:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-media-bar {
        padding: 20px 0;
    }

    .social-media-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .social-media-label {
        font-size: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .social-media-icons {
        gap: 10px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}