:root {
    --primary-green: #1a6840;
    --primary-dark: #124d2f;
    --primary-light: #e8f5ec;
    --primary-hover: #155735;
    --badge-bg: #e2f2e7;
    --badge-text: #17653e;
    --bg-page: #fbfcfa;
    --card-bg: #ffffff;
    --text-heading: #1a2b22;
    --text-body: #47544d;
    --text-muted: #6f7d75;
    --border-color: #e5ece7;
    --excluded-bg: #fcf3f1;
    --excluded-text: #d84545;
    --star-gold: #f59e0b;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Caveat', cursive;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.55;
    overflow-x: hidden;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
}

.font-serif {
    font-family: var(--font-serif);
}

.font-script {
    font-family: var(--font-script);
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding-top: 10px;
    padding-bottom: 10px;
}

.brand-logo {
    display: inline-block;
}

.brand-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a2b22;
    letter-spacing: -0.2px;
}

.brand-sub {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.2px;
}

.navbar-nav .nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: #334139;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
}

.nav-phone-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.nav-phone-number {
    font-size: 13px;
    font-weight: 600;
    color: #1f2d26;
}

.btn-navbar-book {
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
}

.btn-navbar-book:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.hero-section {
    position: relative;
    background-image: url('../images/hero_bg.jpg');
    background-size: cover;
    background-position: center right;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 60px 0 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14, 28, 20, 0.88) 0%, rgba(14, 28, 20, 0.72) 42%, rgba(14, 28, 20, 0.2) 75%, rgba(14, 28, 20, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(220, 245, 226, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 245, 226, 0.4);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: #f1f8f3;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-rating-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12.5px;
    color: #ffffff;
    margin-bottom: 24px;
}

.stars-list {
    color: var(--star-gold);
    margin-right: 4px;
    font-size: 11.5px;
}

.rating-text {
    font-weight: 600;
}

.guests-count {
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero-primary {
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-hero-primary:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.hero-script-tag {
    position: absolute;
    right: 45px;
    bottom: 35px;
    font-family: var(--font-script);
    font-size: 28px;
    line-height: 1.1;
    color: #ffffff;
    transform: rotate(-7deg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    z-index: 2;
    pointer-events: none;
}

.features-strip-wrapper {
    margin-top: -30px;
    position: relative;
    z-index: 5;
    margin-bottom: 40px;
}

.features-strip-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
}

.feature-strip-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: var(--primary-light);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.feature-strip-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1px;
    line-height: 1.2;
}

.feature-strip-sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
}

.section-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-text {
    font-size: 13.5px;
    color: #4b5851;
    line-height: 1.65;
    margin-bottom: 16px;
}

.btn-emerald {
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
}

.btn-emerald:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.about-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-image-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    padding-left: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.play-button-overlay:hover {
    background: rgba(26, 104, 64, 0.85);
    transform: translate(-50%, -50%) scale(1.08);
}

.about-image-badge {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 10.5px;
    font-weight: 600;
    color: #1e2c24;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about-mini-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
}

.about-mini-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-mini-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.about-mini-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.35;
    margin-bottom: 0;
}

.package-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.package-card-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.package-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.package-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.package-sub {
    font-size: 10.5px;
    color: var(--text-muted);
    display: block;
}

.package-price-wrap {
    text-align: right;
}

.package-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.package-unit {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.package-includes-list,
.package-excluded-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
    font-size: 11.5px;
}

.package-includes-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    color: #3b4942;
}

.package-includes-list li i {
    color: var(--primary-green);
    font-size: 11px;
}

.package-excluded-box {
    background-color: var(--excluded-bg);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
    margin-top: auto;
}

.excluded-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--excluded-text);
    margin-bottom: 6px;
}

.package-excluded-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    color: #6d5b5b;
}

.package-excluded-list li:last-child {
    margin-bottom: 0;
}

.package-excluded-list li i {
    color: var(--excluded-text);
    font-size: 10px;
}

.btn-select-package {
    background: transparent;
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-select-package:hover {
    background-color: var(--primary-green);
    color: #ffffff;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.sidebar-form-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
}

.sidebar-input-wrap {
    position: relative;
}

.sidebar-input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 12px;
}

.sidebar-input-wrap .form-control,
.sidebar-input-wrap .form-select {
    padding-left: 32px;
    font-size: 12px;
    border-color: #dce4df;
    border-radius: 6px;
}

.sidebar-input-wrap .form-control:focus,
.sidebar-input-wrap .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(26, 104, 64, 0.15);
}

.btn-calculate-price {
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px;
    border-radius: 6px;
    border: none;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-calculate-price:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.price-estimate-box {
    background-color: #f1f8f3;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 14px;
}

.est-total-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.est-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    margin-top: 4px;
}

.est-notes {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.price-breakdown-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.price-breakdown-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.morn-eve-col h6 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.morn-eve-list {
    list-style: none;
    padding-left: 0;
    font-size: 11px;
    color: #4b5851;
    margin-bottom: 0;
}

.morn-eve-list li {
    margin-bottom: 3px;
    position: relative;
    padding-left: 10px;
}

.morn-eve-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.safari-recommendation-box {
    background-color: #eaf5ee;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 12px;
    font-size: 11px;
    color: #1a4d33;
    line-height: 1.4;
}

.sidebar-list-cross {
    list-style: none;
    padding-left: 0;
    font-size: 11.5px;
    margin-bottom: 0;
}

.sidebar-list-cross li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: #554444;
}

.sidebar-list-cross li i {
    color: var(--excluded-text);
    font-size: 10px;
}

.sidebar-list-check {
    list-style: none;
    padding-left: 0;
    font-size: 11.5px;
    margin-bottom: 0;
}

.sidebar-list-check li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: #3f4e46;
}

.sidebar-list-check li i {
    color: var(--primary-green);
    font-size: 11px;
}

.guideline-widget {
    background: #ffffff;
    border: 1px solid #dceede;
}

.guideline-text {
    font-size: 11.5px;
    color: #475a4e;
    line-height: 1.45;
    margin-bottom: 0;
}

.itinerary-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 20px;
    height: 100%;
}

.itinerary-header-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.itinerary-header-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.itinerary-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0;
}

.itinerary-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 4px;
}

.itinerary-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2ede5;
    z-index: 1;
}

.itinerary-node-icon {
    font-size: 13px;
    color: var(--primary-green);
    margin-bottom: 3px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itinerary-number-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    position: relative;
    z-index: 2;
}

.itinerary-step-title {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 2px;
}

.itinerary-step-desc {
    font-size: 9px;
    color: var(--text-muted);
    line-height: 1.15;
}

.reviews-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-header-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.reviews-header-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.reviews-rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-huge {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
}

.reviews-quote-text {
    font-size: 11.5px;
    font-style: italic;
    color: #405047;
    line-height: 1.45;
    margin-bottom: 12px;
    flex-grow: 1;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviewer-avatar-img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name-info {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-heading);
}

.reviews-nav-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.btn-nav-arrow {
    background: transparent;
    border: none;
    color: #8fa096;
    font-size: 13px;
    padding: 0 4px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-nav-arrow:hover {
    color: var(--primary-green);
}

.carousel-dots {
    display: flex;
    gap: 4px;
}

.dot-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6e2db;
    cursor: pointer;
}

.dot-indicator.active {
    background: var(--primary-green);
}

.questions-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    background-image: url('../images/questions_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.questions-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(14, 28, 20, 0.4) 0%, rgba(14, 28, 20, 0.88) 100%);
    z-index: 1;
}

.questions-card-content {
    position: relative;
    z-index: 2;
}

.questions-chat-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2;
}

.questions-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.questions-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.35;
    margin-bottom: 12px;
}

.btn-ask-question-pill {
    background: #ffffff;
    color: var(--primary-green);
    border: none;
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-ask-question-pill:hover {
    background: #f1f8f3;
    color: var(--primary-dark);
}

.site-footer {
    position: relative;
    background-image: url('../images/footer_bg.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid #23372b;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 23, 17, 0.85);
}

.footer-slogan {
    font-family: var(--font-script);
    font-size: 32px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-brand-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.footer-brand-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-logo-svg {
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

@media (max-width: 991.98px) {
    .features-strip-item {
        border-bottom: 1px solid var(--border-color);
        padding: 10px 0;
    }
    .itinerary-timeline {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .itinerary-step {
        min-width: 90px;
    }
    .hero-script-tag {
        display: none;
    }
    .hero-title {
        font-size: 34px;
    }
}

.page-header-banner {
    position: relative;
    background-image: url('../images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 55px 0;
    color: #ffffff;
    margin-bottom: 45px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14, 28, 20, 0.92) 0%, rgba(14, 28, 20, 0.82) 60%, rgba(14, 28, 20, 0.6) 100%);
    z-index: 1;
}

.page-breadcrumb {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: #ffffff;
}

.page-header-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.page-header-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    line-height: 1.5;
    margin-bottom: 0;
}

.filter-pill-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-body);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

.gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gallery-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.gallery-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-card-img-wrap img {
    transform: scale(1.05);
}

.gallery-card-caption {
    padding: 12px 16px;
}

.gallery-card-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 3px;
}

.gallery-card-tag {
    font-size: 11px;
    color: var(--primary-green);
    font-weight: 600;
}

.park-highlight-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.park-highlight-img {
    width: 100%;
    height: 175px;
    object-fit: cover;
}

.park-highlight-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.park-feature-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-green);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    width: fit-content;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    height: 100%;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--primary-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.booking-step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* ==========================================================================
   ELEMENT-BASED ANIMATIONS SYSTEM
   ========================================================================== */

/* 1. Base Scroll Reveal States */
.anim-fade-up,
.anim-fade-down,
.anim-fade-left,
.anim-fade-right,
.anim-zoom-in,
.anim-pop {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.85s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.anim-fade-up {
    transform: translateY(35px);
}

.anim-fade-down {
    transform: translateY(-35px);
}

.anim-fade-left {
    transform: translateX(40px);
}

.anim-fade-right {
    transform: translateX(-40px);
}

.anim-zoom-in {
    transform: scale(0.92);
}

.anim-pop {
    transform: scale(0.85);
    transition-duration: 0.65s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Revealed State triggered by JS IntersectionObserver */
.anim-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Stagger Delays */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }
.delay-700 { transition-delay: 700ms !important; }

/* 2. Micro-Animations: Floating & Breathing */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.anim-float {
    animation: floatBadge 3.6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 107, 68, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(27, 107, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(27, 107, 68, 0);
    }
}

.anim-pulse-glow {
    animation: pulseGlow 2.4s infinite;
}

/* 3. Button Shimmer Sweep Effect */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(25deg);
    transition: none;
}

.btn-shimmer:hover::after {
    left: 140%;
    transition: left 0.85s ease-in-out;
}

/* 4. Interactive Card Tilt / Lift */
.hover-lift {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px -10px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(27, 107, 68, 0.25);
}

/* 5. Stepper Node Hover Glow */
@keyframes stepNodePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.18);
    }
}

.itinerary-step:hover .itinerary-number-circle {
    animation: stepNodePulse 0.8s ease-in-out;
    background-color: var(--primary-green) !important;
    color: #fff !important;
}

.itinerary-step:hover .itinerary-node-icon {
    transform: translateY(-4px);
    color: var(--primary-green) !important;
    transition: transform 0.25s ease;
}

/* 6. Feature Strip Item Micro-Interaction */
.feature-strip-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-strip-item:hover {
    background-color: rgba(27, 107, 68, 0.04);
}

.feature-strip-item:hover .feature-strip-icon {
    transform: translateY(-5px) scale(1.15);
    background-color: var(--primary-green);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(27, 107, 68, 0.25);
}

/* 7. Image Ken Burns / Zoom Effect on Hover */
.package-card-img-wrap,
.gallery-card-img-wrap,
.about-image-card {
    overflow: hidden;
}

.package-card:hover .package-card-img,
.gallery-card:hover img,
.about-image-card:hover img {
    transform: scale(1.06);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 8. Badge Shimmer */
@keyframes badgeGlint {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.badge-shimmer {
    background: linear-gradient(90deg, #1b6b44 0%, #299e65 50%, #1b6b44 100%);
    background-size: 200% 100%;
    animation: badgeGlint 4s infinite linear;
}

/* 9. Click Ripple Effect */
.ripple-target {
    position: relative;
    overflow: hidden;
}

.ripple-span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   10. LUXURY PRELOADER WITH OFFICIAL LOGO
   ========================================================================== */
.safari-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background: radial-gradient(circle at center, #153c29 0%, #0c2016 65%, #050d09 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
}

.safari-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
}

.preloader-logo-ring {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.preloader-glow {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.45) 0%, rgba(46, 204, 113, 0) 70%);
    animation: preloaderPulse 2s ease-in-out infinite alternate;
}

.preloader-spinner-track {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
}

.preloader-spinner-orbit {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2ecc71;
    border-right-color: #d4a373;
    animation: preloaderSpin 1.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.preloader-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55), 0 0 25px rgba(46, 204, 113, 0.25);
    animation: preloaderBreathing 2.2s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.preloader-brand {
    margin-bottom: 20px;
}

.preloader-subtitle {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #2ecc71;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.preloader-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.preloader-progress-bar {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
}

.preloader-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, #2ecc71 50%, #d4a373 75%, transparent 100%);
    background-size: 200% 100%;
    animation: progressSweep 1.6s ease-in-out infinite;
}

.preloader-status {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    letter-spacing: 0.5px;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0% { transform: scale(0.9); opacity: 0.35; }
    100% { transform: scale(1.18); opacity: 0.75; }
}

@keyframes preloaderBreathing {
    0% { transform: scale(0.97); }
    100% { transform: scale(1.03); }
}

@keyframes progressSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
