/* ============================================================
   DESTINATIONS PAGE — T3M Tours
   ============================================================ */

/* ---- Page Header ----------------------------------------- */
.dest-page-header {
    position: relative;
    padding: 200px 60px 80px;
    text-align: center;
    overflow: hidden;
}
.dest-page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}
.dest-page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,12,8,.3) 0%, rgba(15,12,8,.1) 50%, rgba(15,12,8,.85) 100%);
}
.dest-page-header-inner {
    position: relative;
    z-index: 2;
}
.dest-page-header h1 {
    font-family: var(--ff-display);
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 600;
    color: var(--text-light);
    margin: 14px 0 20px;
    line-height: 1.05;
}
.dest-page-header h1 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}
.dest-page-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
}

/* Quick nav */
.dest-quick-nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px;
}
.dest-quick-nav a {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 20px;
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    transition: all .3s;
}
.dest-quick-nav a:hover {
    color: var(--text-light);
    border-color: var(--accent);
    background: rgba(192,27,27,.08);
}

/* ---- Feature Sections ------------------------------------ */
.dest-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    height: 680px;
}
.dest-feature--reverse {
    grid-template-columns: 1fr 1.1fr;
    height: 680px;
}
.dest-feature--reverse .dest-feature-img-wrap {
    order: 2;
}
.dest-feature--reverse .dest-feature-content {
    order: 1;
}

/* Image panel */
.dest-feature-img-wrap {
    position: relative;
    overflow: hidden;
}
.dest-feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 7s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-feature:hover .dest-feature-img-wrap img {
    transform: scale(1.06);
}
.dest-feature-badge {
    display: none;
}

/* Content panel */
.dest-feature-content {
    padding: 52px 64px;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.dest-feature--reverse .dest-feature-content {
    background: #0a0807;
}
.dest-feature-content h2 {
    font-family: var(--ff-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.1;
    margin: 10px 0 28px;
}
.dest-feature-content h2 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

/* Stats row */
.dest-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}
.dest-stat {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.dest-stat svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.dest-stat div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dest-stat-val {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
}
.dest-stat-lbl {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Intro paragraph */
.dest-intro {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

/* Highlights */
.dest-highlights-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 500;
}
.dest-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
    margin-bottom: 24px;
}
.dest-highlights li {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.dest-highlights li::before {
    content: '';
    width: 4px;
    height: 4px;
    min-width: 4px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 5px;
}

/* Vehicles row */
.dest-vehicles-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding: 12px 0;
    border-top: 1px solid var(--border-dark);
}
.dest-vehicles-row svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Enquire button */
.dest-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background .3s, transform .3s, box-shadow .3s;
    align-self: flex-start;
}
.dest-enquire-btn svg {
    width: 15px;
    height: 15px;
    transition: transform .3s var(--ease);
}
.dest-enquire-btn:hover {
    background: #a51515;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(192,27,27,.3);
}
.dest-enquire-btn:hover svg {
    transform: translateX(4px);
}

/* ---- Build Your Own ---------------------------------- */
.dest-custom {
    position: relative;
    padding: 160px 60px;
    text-align: center;
    overflow: hidden;
}
.dest-custom-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.35);
}
.dest-custom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,8,6,.55);
}
.dest-custom-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.dest-custom h2 {
    font-family: var(--ff-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: var(--text-light);
    margin: 14px 0 20px;
    line-height: 1.1;
}
.dest-custom h2 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}
.dest-custom p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 32px;
}
.dest-custom-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.dest-custom-tags span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 6px 16px;
    border: 1px solid var(--border-dark);
    border-radius: 20px;
}
.dest-custom-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background .3s, transform .3s, box-shadow .3s;
}
.dest-custom-btn:hover {
    background: #a51515;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(192,27,27,.35);
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
    .dest-feature,
    .dest-feature--reverse {
        grid-template-columns: 1fr;
        height: auto;
    }
    .dest-feature--reverse .dest-feature-img-wrap { order: 0; }
    .dest-feature--reverse .dest-feature-content  { order: 0; }
    .dest-feature-img-wrap { min-height: 360px; }
    .dest-feature-content { padding: 52px 40px; }
    .dest-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .dest-page-header { padding: 160px 20px 60px; }
    .dest-feature-content { padding: 56px 20px; }
    .dest-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .dest-highlights { grid-template-columns: 1fr; }
    .dest-custom { padding: 100px 20px; }
    .dest-custom-bg { background-attachment: scroll; }
    .dest-quick-nav { gap: 6px; }
    .dest-quick-nav a { font-size: 10px; padding: 6px 14px; }
}
