/**
 * Safari Directory – Destination Shortcode  –  Shared Base
 *
 * Covers:
 *  • CSS custom properties
 *  • Hero
 *  • Best Time to Visit calendar
 *  • National Park cards
 *  • Accommodation cards
 *  • Highlights list
 *  • FAQ accordion
 *  • Gallery grid
 *  • Safari experience cards
 *  • Section heading treatment
 */


/* ============================================================
   Queens Air font (shared fallback)
   ============================================================ */

@font-face {
    font-family: "Queens Air";
    src: url("../fonts/queens-air-_a6gDC1u.woff2?v=2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


/* ============================================================
   Custom Properties
   ============================================================ */

.sd-destination {
    --sdd-primary: #1a5c2a;
    /* deep forest green  */
    --sdd-primary-light: #2e8b46;
    --sdd-accent: #c9920f;
    /* warm gold           */
    --sdd-accent-light: #f0b429;
    --sdd-dark: #111827;
    --sdd-dark-mid: #1f2937;
    --sdd-text: #2d3748;
    --sdd-text-muted: #6b7280;
    --sdd-border: #e5e7eb;
    --sdd-bg: transparent;
    --sdd-radius: 12px;
    --sdd-radius-sm: 8px;
    --sdd-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --sdd-shadow-md: 0 8px 40px rgba(0, 0, 0, 0.13);
    --sdd-transition: 0.25s ease;
    /* rating colours */
    --sdd-poor: #ef4444;
    --sdd-ok: #f59e0b;
    --sdd-good: #3b82f6;
    --sdd-best: #10b981;
    font-family: var(--sd-body-font, "Open Sans", sans-serif);
    color: var(--sdd-text);
    line-height: 1.7;
    /* Page builder compatibility */
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.sd-destination *,
.sd-destination *::before,
.sd-destination *::after {
    box-sizing: border-box;
}

.sd-destination img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ============================================================
   Hero
   ============================================================ */

.sd-dest-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background: var(--sdd-dark) center/cover no-repeat;
    overflow: hidden;
}

.sd-dest-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.78) 100%);
}

.sd-dest-hero__content {
    position: relative;
    z-index: 2;
    padding: clamp(32px, 6vw, 80px) clamp(20px, 5vw, 80px);
    max-width: 820px;
}

.sd-dest-hero__title {
    font-family: var(--sd-heading-font, "Playfair Display", serif);
    font-size: var(--sd-size-h1, clamp(2.2rem, 6vw, 4.5rem));
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.sd-dest-hero__tagline {
    font-size: var(--sd-size-p, clamp(1rem, 2vw, 1.3rem));
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
}


/* ============================================================
   Shared section wrapper
   ============================================================ */

.sd-dest-section {
    padding: clamp(40px, 6vw, 80px) 0;
}

.sd-dest-section-title {
    font-family: var(--sd-heading-font, "Playfair Display", serif);
    font-size: var(--sd-size-h3, clamp(1.5rem, 3vw, 2.2rem));
    font-weight: 700;
    color: var(--sdd-primary);
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sd-dest-section-title i {
    color: var(--sdd-accent);
    font-size: 1.1em;
}

.sd-dest-section-title::after {
    content: "";
    display: block;
    height: 3px;
    width: 48px;
    background: linear-gradient( 90deg, var(--sdd-accent), var(--sdd-primary-light));
    border-radius: 2px;
    margin-left: 6px;
    flex-shrink: 0;
}


/* Centered variant */

.sd-dest-section-title--center {
    justify-content: center;
    text-align: center;
}

.sd-dest-section-title--center::after {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   Best Time to Visit
   ============================================================ */

.sd-dest-besttime__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sd-dest-besttime__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .sd-dest-besttime__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sd-dest-besttime__month {
    border-radius: var(--sdd-radius-sm);
    padding: 14px 10px;
    text-align: center;
    border: 2px solid var(--sdd-border);
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform var(--sdd-transition), box-shadow var(--sdd-transition);
}

.sd-dest-besttime__month:hover {
    transform: translateY(-2px);
    box-shadow: var(--sdd-shadow);
}

.sd-dest-besttime__month-name {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sdd-text-muted);
    font-weight: 600;
}

.sd-dest-besttime__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sd-dest-besttime__note {
    display: block;
    font-size: 0.7rem;
    color: var(--sdd-text-muted);
    line-height: 1.3;
}


/* Icon span – hidden in default template, shown by wilderness override */

.sd-dest-besttime__month-icon {
    display: none;
}


/* Rating colour variants */

.sd-dest-besttime__month--none {
    opacity: 0.5;
}

.sd-dest-besttime__month--poor {
    border-color: var(--sdd-poor);
    background: #fff5f5;
}

.sd-dest-besttime__month--poor .sd-dest-besttime__badge {
    background: var(--sdd-poor);
    color: #fff;
}

.sd-dest-besttime__month--ok {
    border-color: var(--sdd-ok);
    background: #fffbeb;
}

.sd-dest-besttime__month--ok .sd-dest-besttime__badge {
    background: var(--sdd-ok);
    color: #fff;
}

.sd-dest-besttime__month--good {
    border-color: var(--sdd-good);
    background: #eff6ff;
}

.sd-dest-besttime__month--good .sd-dest-besttime__badge {
    background: var(--sdd-good);
    color: #fff;
}

.sd-dest-besttime__month--best {
    border-color: var(--sdd-best);
    background: #fdf9ed;
}

.sd-dest-besttime__month--best .sd-dest-besttime__badge {
    background: var(--sdd-best);
    color: #fff;
}

.sd-dest-besttime__legend {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.sd-dest-besttime__legend-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sd-dest-besttime__legend-item.sd-dest-besttime__month--poor {
    background: var(--sdd-poor);
    color: #fff;
}

.sd-dest-besttime__legend-item.sd-dest-besttime__month--ok {
    background: var(--sdd-ok);
    color: #fff;
}

.sd-dest-besttime__legend-item.sd-dest-besttime__month--good {
    background: var(--sdd-good);
    color: #fff;
}

.sd-dest-besttime__legend-item.sd-dest-besttime__month--best {
    background: var(--sdd-best);
    color: #fff;
}


/* ============================================================
   National Parks – Swiper Coverflow Carousel
   ============================================================ */


/* Full-width section with beige background */

.sd-dest-parks {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: transparent;
    padding: 40px 0 56px;
}

.sd-dest-section.sd-dest-accomm,
#sd-wld-accomm.sd-dest-section {
    padding-top: clamp(28px, 4vw, 48px);
}

.sd-dest-parks__header {
    max-width: 760px;
    margin: 0 auto 44px;
    padding: 0 24px;
    text-align: center;
}

.sd-dest-parks__header .sd-dest-section-title {
    margin-bottom: 14px;
}

.sd-dest-parks__intro {
    font-size: 1rem;
    color: var(--sdd-text-muted);
    line-height: 1.75;
    margin: 0;
}

.sd-dest-parks__intro p:first-child {
    margin-top: 0;
}

.sd-dest-parks__intro p:last-child {
    margin-bottom: 0;
}


/* Swiper container */

.sd-dest-parks__swiper {
    width: 100%;
    padding: 16px 0 56px !important;
    overflow: visible;
}

.sd-dest-parks__swiper .swiper-wrapper {
    align-items: stretch;
}


/* Fixed-width slides so coverflow peeks partial cards */

.sd-dest-parks__swiper .swiper-slide {
    width: 380px;
    max-width: 82vw;
    height: auto;
}


/* Card layout */

.sd-dest-park-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.sd-dest-park-card:hover {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.14);
    transform: translateY(-6px);
}


/* ── Cover link (full-card anchor) ── */

.sd-dest-park-card__cover {
    display: block;
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    text-decoration: none;
    border-radius: 20px;
}

.sd-dest-park-card__img {
    position: absolute;
    inset: 0;
    background: var(--sdd-dark) center/cover no-repeat;
    transition: transform 0.6s ease;
    will-change: transform;
}

.sd-dest-park-card__cover:hover .sd-dest-park-card__img {
    transform: scale(1.07);
}

.sd-dest-park-card__img--placeholder {
    background: #d1c4a8;
}


/* Dark gradient overlay */

.sd-dest-park-card__cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.82) 100%);
    z-index: 2;
}


/* Numbered badge */

.sd-dest-park-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    font-family: var(--sd-heading-font, "Playfair Display", serif);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 4px 12px;
    border-radius: 30px;
    z-index: 5;
}


/* Animal tags – top-right inside image */

.sd-dest-park-card__animals {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
    max-width: 60%;
}

.sd-dest-park-card__animal {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}


/* Caption at bottom of cover */

.sd-dest-park-card__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transform: translateY(4px);
    transition: transform 0.35s ease;
}

.sd-dest-park-card__cover:hover .sd-dest-park-card__caption {
    transform: translateY(0);
}

.sd-dest-park-card__title {
    font-family: var(--sd-heading-font, "Playfair Display", serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sd-dest-park-card__location {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

.sd-dest-park-card__location i {
    color: rgba(255, 255, 255, 0.7);
}


/* Swiper controls */

.sd-dest-parks__pagination {
    bottom: 14px !important;
}

.sd-dest-parks__pagination .swiper-pagination-bullet {
    background: var(--sdd-accent);
    opacity: 0.4;
    width: 8px;
    height: 8px;
    transition: opacity 0.2s, width 0.3s;
}

.sd-dest-parks__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

.sd-dest-parks__prev,
.sd-dest-parks__next {
    color: var(--sdd-primary) !important;
    background: #fff;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    top: 36% !important;
}

.sd-dest-parks__prev::after,
.sd-dest-parks__next::after {
    font-size: 14px !important;
    font-weight: 700;
}


/* ============================================================
   Accommodation cards
   ============================================================ */

.sd-dest-accomm__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 780px;
}

@media (min-width: 640px) {
    .sd-dest-accomm__grid {
        grid-template-columns: 1fr;
    }
}

.sd-dest-accomm-card {
    text-decoration: none;
    color: inherit;
    background: transparent;
    border-radius: var(--sdd-radius);
    overflow: hidden;
    box-shadow: var(--sdd-shadow);
    transition: transform var(--sdd-transition), box-shadow var(--sdd-transition);
    display: flex;
    flex-direction: row;
}

.sd-dest-accomm-card:hover {
    transform: translateX(4px);
    box-shadow: var(--sdd-shadow-md);
    color: inherit;
}


/* Image wrapper – fixed width side panel */

.sd-dest-accomm-card__img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    min-height: 180px;
    overflow: hidden;
}

.sd-dest-accomm-card__img {
    position: absolute;
    inset: 0;
    background: var(--sdd-dark) center/cover no-repeat;
    transition: transform 0.5s ease;
}

.sd-dest-accomm-card__img--placeholder {
    background: linear-gradient(135deg, #c8b89a, #a89070);
}

.sd-dest-accomm-card:hover .sd-dest-accomm-card__img {
    transform: scale(1.05);
}

.sd-dest-accomm-card__type {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 30px;
    z-index: 2;
}

.sd-dest-accomm-card__body {
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.sd-dest-accomm-card__body-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.sd-dest-accomm-card__title {
    font-family: var(--sd-heading-font, "Playfair Display", serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--sdd-dark);
    line-height: 1.3;
    transition: color 0.2s;
}

.sd-dest-accomm-card:hover .sd-dest-accomm-card__title {
    color: var(--sdd-primary);
}

.sd-dest-accomm-card__loc {
    font-size: 0.775rem;
    color: var(--sdd-text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sd-dest-accomm-card__loc i {
    color: var(--sdd-accent);
}

.sd-dest-accomm-card__stars {
    display: flex;
    gap: 2px;
    color: #f4a922;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sd-dest-accomm-card__stars .la-star-o {
    color: var(--sdd-border);
}

.sd-dest-accomm-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sdd-primary);
    margin-top: 6px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.sd-dest-accomm-card:hover .sd-dest-accomm-card__cta {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================================
   Highlights list
   ============================================================ */

.sd-dest-highlights__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.sd-dest-highlights__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--sdd-border);
    border-left: 4px solid var(--sdd-accent);
    border-radius: var(--sdd-radius-sm);
    padding: 14px 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow var(--sdd-transition);
}

.sd-dest-highlights__item:hover {
    box-shadow: var(--sdd-shadow);
}

.sd-dest-highlights__item i {
    color: var(--sdd-best);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}


/* ============================================================
   FAQ – luxury accordion (border-bottom dividers, large text)
   ============================================================ */

.sd-dest-faqs__list {
    width: 100%;
}

.sd-dest-faq-item {
    border-bottom: 1px solid var(--sdd-border);
}

.sd-dest-faq-item:first-child {
    border-top: 1px solid var(--sdd-border);
}

.sd-dest-faq-item__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 4px;
    font-family: var(--sd-body-font, var(--sd-font-body, "Open Sans", sans-serif));
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    font-weight: 600;
    color: var(--sdd-dark);
    text-align: left;
    gap: 20px;
    transition: color var(--sdd-transition), background-color var(--sdd-transition);
}

.sd-dest-faq-item__question:hover {
    color: var(--sdd-dark);
    background-color: rgba(201, 146, 15, 0.08);
}

.sd-dest-faq-item--open .sd-dest-faq-item__question {
    color: var(--sdd-dark);
    background-color: rgba(201, 146, 15, 0.1);
}

.sd-dest-faq-item__q-text {
    flex: 1;
}

.sd-dest-faq-item__icon {
    font-size: 1.55rem;
    font-weight: 300;
    line-height: 1;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
    color: var(--sdd-accent);
}

.sd-dest-faq-item--open .sd-dest-faq-item__icon {
    transform: rotate(45deg);
}

.sd-dest-faq-item__answer {
    padding: 0 4px 26px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--sdd-text-muted);
    animation: sd-faq-open 0.28s ease;
}

@keyframes sd-faq-open {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sd-dest-faq-item__answer-inner p:first-child {
    margin-top: 0;
}

.sd-dest-faq-item__answer-inner p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   Photo Gallery
   ============================================================ */

.sd-dest-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

@media (min-width: 768px) {
    .sd-dest-gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sd-dest-gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--sdd-radius-sm);
    aspect-ratio: 1;
    background: var(--sdd-dark);
}

.sd-dest-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.sd-dest-gallery__item:hover img {
    transform: scale(1.06);
}

.sd-dest-gallery__hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--sdd-transition);
}

.sd-dest-gallery__item:hover .sd-dest-gallery__hover {
    opacity: 1;
}

.sd-dest-gallery__hover i {
    color: #fff;
    font-size: 1.8rem;
}


/* ============================================================
   Safari Experience cards – cinematic design
   ============================================================ */

.sd-dest-safaris__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sd-dest-safari-card {
    text-decoration: none;
    color: inherit;
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.sd-dest-safari-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
    color: inherit;
}


/* image wrapper */

.sd-dest-safari-card__img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.sd-dest-safari-card__img {
    height: 100%;
    width: 100%;
    background: var(--sdd-dark) center/cover no-repeat;
    transition: transform 0.55s ease;
}

.sd-dest-safari-card__img--placeholder {
    background-image: linear-gradient(135deg, #1a3a20 0%, #2d6a40 100%);
}

.sd-dest-safari-card:hover .sd-dest-safari-card__img {
    transform: scale(1.07);
}

.sd-dest-safari-card__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
    pointer-events: none;
}


/* floating duration badge */

.sd-dest-safari-card__duration-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 4;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* floating price badge */

.sd-dest-safari-card__price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    background: var(--sdd-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 13px;
    border-radius: 30px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
    letter-spacing: 0.02em;
}


/* card body */

.sd-dest-safari-card__body {
    padding: 20px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 3px solid var(--sdd-primary);
}

.sd-dest-safari-card__title {
    font-family: var(--sd-heading-font, "Playfair Display", serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sdd-dark);
    margin: 0;
    line-height: 1.35;
    transition: color 0.2s;
}

.sd-dest-safari-card:hover .sd-dest-safari-card__title {
    color: var(--sdd-primary);
}


/* "View Safari →" CTA */

.sd-dest-safari-card__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--sdd-primary);
    margin-top: auto;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.sd-dest-safari-card:hover .sd-dest-safari-card__cta {
    opacity: 1;
    transform: translateX(0);
}


/* compat: hide legacy meta/price if still present */

.sd-dest-safari-card__meta,
.sd-dest-safari-card__price {
    display: none;
}


/* ============================================================
   Travel Tips & Practical Info
   ============================================================ */

.sd-dest-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.sd-dest-tips__item {
    background: transparent;
    border: 1px solid var(--sdd-border);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--sdd-shadow);
    transition: transform var(--sdd-transition), box-shadow var(--sdd-transition);
}

.sd-dest-tips__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--sdd-shadow-md);
}

.sd-dest-tips__item-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sd-dest-tips__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--sdd-primary), var(--sdd-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sd-dest-tips__icon-wrap .las {
    font-size: 1.35rem;
    color: #fff;
}

.sd-dest-tips__label {
    font-family: var(--sd-heading-font, "Playfair Display", serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sdd-dark);
    margin: 0;
    line-height: 1.3;
}

.sd-dest-tips__content {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--sdd-text-muted);
}

.sd-dest-tips__content p {
    margin: 0 0 0.6em;
}

.sd-dest-tips__content p:last-child {
    margin-bottom: 0;
}

.sd-dest-tips__content a {
    color: var(--sdd-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ============================================================
   Section intro text (Best Time & National Parks)
   ============================================================ */

.sd-dest-besttime__intro,
.sd-dest-parks__intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--sdd-text);
    margin-bottom: 24px;
    max-width: 72ch;
}

.sd-dest-besttime__intro p:first-child,
.sd-dest-parks__intro p:first-child {
    margin-top: 0;
}

.sd-dest-besttime__intro p:last-child,
.sd-dest-parks__intro p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   Scroll-reveal animation (driven by sd-destination-effects.js)
   ============================================================ */

.sd-anim-ready {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.sd-anim-in {
    opacity: 1;
    transform: none !important;
}


/* Slide-up variant (section titles) */

.sd-anim-ready.sd-anim-slide-up {
    transform: translateY(20px);
}


/* Slide-from-left (accomm cards) */

.sd-anim-ready.sd-anim-slide-left {
    transform: translateX(-32px);
}


/* Zoom-in (gallery items) */

.sd-anim-ready.sd-anim-zoom {
    transform: scale(0.88);
}


/* Respect user motion preferences */

@media (prefers-reduced-motion: reduce) {
    .sd-anim-ready {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ============================================================
   Truncatable Read More (shared)
   ============================================================ */

.sd-dest-truncatable__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sdd-accent, #a06428);
    padding: 8px 0 0;
    transition: color 0.2s;
}

.sd-dest-truncatable__btn:hover {
    color: var(--sdd-primary, #1a5c2a);
}

.sd-dest-truncatable__btn i {
    font-size: 0.85rem;
    transition: transform 0.25s;
}

.sd-dest-truncatable__btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}


/* ============================================================
   Responsive – Mobile & Tablet heading overrides
   ============================================================ */


/* Tablet (≤ 768px) */

@media (max-width: 768px) {
    .sd-dest-hero__title {
        font-size: clamp(26px, 6vw, 40px);
    }
    .sd-dest-section-title {
        font-size: clamp(20px, 4vw, 28px);
    }
    .sd-dest-safari-card__title {
        font-size: 16px;
    }
    .sd-dest-safaris__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile (≤ 480px) */

@media (max-width: 480px) {
    .sd-dest-hero__title {
        font-size: clamp(22px, 7vw, 30px);
    }
    .sd-dest-section-title {
        font-size: clamp(18px, 5vw, 24px);
    }
    .sd-dest-safaris__grid {
        grid-template-columns: 1fr;
    }
    .sd-dest-hero__tagline {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
}