/* ═══════════════════════════════════════════════════════════════════════════
   HKT Current Trips — Stylesheet
   Dark luxury theme: navy #111a24, gold #d4a373, white text
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --hkt-t-bg: #111a24;
    --hkt-t-bg-light: #162231;
    --hkt-t-bg-card: rgba(255, 255, 255, 0.03);
    --hkt-t-gold: #d4a373;
    --hkt-t-gold-dim: #b58150;
    --hkt-t-gold-glow: rgba(212, 163, 115, 0.15);
    --hkt-t-text: #e2e8f0;
    --hkt-t-text-dim: #94a3b8;
    --hkt-t-white: #ffffff;
    --hkt-t-border: rgba(255, 255, 255, 0.06);
    --hkt-t-heading: 'Cinzel', serif;
    --hkt-t-body: 'Inter', sans-serif;
    --hkt-t-radius: 12px;
    --hkt-t-pink: #ea2a5b;
}

/* ── Page Wrapper ── */
.hkt-trips-wrapper {
    background-color: var(--hkt-t-bg);
    color: var(--hkt-t-text);
    font-family: var(--hkt-t-body);
    line-height: 1.7;
    padding-top: 100px;
    width: 100%;
    overflow-x: hidden;
}

/* ── Hero Header ── */
.hkt-trips-hero {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.hkt-trips-kicker {
    display: inline-block;
    color: var(--hkt-t-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hkt-trips-page-title {
    font-family: var(--hkt-t-heading);
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.hkt-trips-accent {
    width: 60px;
    height: 3px;
    background: var(--hkt-t-gold);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.hkt-trips-page-subtitle {
    font-size: 1.2rem;
    color: var(--hkt-t-text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Trip Cards Container ── */
.hkt-trips-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px 80px;
}

/* ── Trip Card ── */
.hkt-trip-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--hkt-t-bg-card);
    border: 1px solid var(--hkt-t-border);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 50px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hkt-trip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--hkt-t-gold-glow) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.hkt-trip-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 163, 115, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--hkt-t-gold-glow);
}

.hkt-trip-card:hover::before {
    opacity: 1;
}

/* ── Trip Info (Left) ── */
.hkt-trip-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hkt-trip-name {
    font-family: var(--hkt-t-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.hkt-trip-tagline {
    font-size: 1.05rem;
    color: var(--hkt-t-gold);
    font-style: italic;
    margin: 0 0 30px 0;
    font-weight: 400;
}

/* ── Detail Rows ── */
.hkt-trip-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.hkt-trip-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hkt-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 163, 115, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hkt-t-gold);
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.hkt-trip-card:hover .hkt-detail-icon {
    background: rgba(212, 163, 115, 0.18);
}

.hkt-detail-content {
    display: flex;
    flex-direction: column;
}

.hkt-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hkt-t-text-dim);
    font-weight: 600;
    margin-bottom: 2px;
}

.hkt-detail-value {
    font-size: 1.05rem;
    color: var(--hkt-t-white);
    font-weight: 500;
}

/* ── CTA Button ── */
.hkt-trip-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--hkt-t-pink);
    color: var(--hkt-t-white);
    border: none;
    border-radius: 50px;
    font-family: var(--hkt-t-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
    position: relative;
    z-index: 5;
}

.hkt-trip-cta:hover {
    background: #d11e4d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 42, 91, 0.3);
}

.hkt-trip-cta i {
    transition: transform 0.3s ease;
}

.hkt-trip-cta:hover i {
    transform: translateX(4px);
}

/* ── Photo Gallery (Right) ── */
.hkt-trip-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 2;
    min-height: 360px;
}

.hkt-gallery-item {
    border-radius: var(--hkt-t-radius);
    overflow: hidden;
    position: relative;
    background: var(--hkt-t-bg-light);
}

.hkt-gallery-item-1 {
    grid-row: 1 / 3;
}

.hkt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hkt-trip-card:hover .hkt-gallery-item img {
    transform: scale(1.05);
}

.hkt-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 26, 36, 0.4) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Placeholder style when image not available */
.hkt-gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hkt-t-bg-light) 0%, #1a2d3f 100%);
    border: 1px dashed rgba(212, 163, 115, 0.25);
}

.hkt-gallery-placeholder::after {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 2.5rem;
    color: rgba(212, 163, 115, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.hkt-trip-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hkt-trip-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    padding: 40px 20px;
}

.hkt-trip-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 16, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hkt-trip-modal-content {
    position: relative;
    background: var(--hkt-t-bg);
    border: 1px solid var(--hkt-t-gold-dim);
    max-width: 880px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px var(--hkt-t-gold-glow);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.hkt-trip-modal.active .hkt-trip-modal-content {
    transform: translateY(0) scale(1);
}

.hkt-trip-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--hkt-t-gold);
    font-size: 36px;
    font-weight: 300;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.hkt-trip-modal-close:hover {
    color: var(--hkt-t-white);
    transform: scale(1.15) rotate(90deg);
}

/* ── Modal Header ── */
.hkt-trip-modal-header {
    text-align: center;
    padding: 50px 50px 30px;
    border-bottom: 1px solid var(--hkt-t-border);
}

.hkt-modal-kicker {
    display: inline-block;
    color: var(--hkt-t-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hkt-modal-trip-title {
    font-family: var(--hkt-t-heading);
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.hkt-modal-tagline {
    color: var(--hkt-t-text-dim);
    font-size: 1.05rem;
    font-style: italic;
    margin: 0;
}

/* ── Modal Body ── */
.hkt-trip-modal-body {
    padding: 40px 50px 50px;
}

.hkt-modal-section {
    margin-bottom: 45px;
}

.hkt-modal-section:last-of-type {
    margin-bottom: 30px;
}

.hkt-modal-section-title {
    font-family: var(--hkt-t-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff !important;
    margin: 0 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hkt-t-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hkt-modal-section-title i {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* ── Day Blocks ── */
.hkt-modal-day {
    background: var(--hkt-t-bg-light);
    border-radius: var(--hkt-t-radius);
    padding: 30px 35px;
    margin-bottom: 18px;
    border-left: 3px solid var(--hkt-t-gold);
    transition: background 0.3s ease;
}

.hkt-modal-day:hover {
    background: rgba(22, 34, 49, 0.9);
}

.hkt-modal-day-title {
    font-family: var(--hkt-t-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff !important;
    margin: 0 0 15px 0;
}

.hkt-modal-day-activities {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.hkt-modal-day-activities li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--hkt-t-text);
    line-height: 1.6;
}

.hkt-modal-day-activities li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--hkt-t-gold);
    font-size: 0.5rem;
}

.hkt-modal-overnight {
    font-size: 0.9rem;
    color: var(--hkt-t-text-dim);
    padding-top: 10px;
    border-top: 1px solid var(--hkt-t-border);
    margin-top: 5px;
}

.hkt-modal-overnight i {
    color: var(--hkt-t-gold);
    margin-right: 6px;
}

.hkt-modal-overnight strong {
    color: var(--hkt-t-white);
}

/* ── Lists (Inclusions / Exclusions / Highlights) ── */
.hkt-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
}

.hkt-modal-list li {
    font-size: 0.95rem;
    color: var(--hkt-t-text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.hkt-modal-list li i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.85rem;
}

.hkt-modal-inclusions li i {
    color: #34d399;
}

.hkt-modal-exclusions li i {
    color: #f87171;
}

.hkt-modal-highlights li i {
    color: var(--hkt-t-gold);
    font-size: 0.7rem;
}

/* ── Closing ── */
.hkt-modal-closing {
    text-align: center;
    padding: 30px 40px;
    background: var(--hkt-t-bg-light);
    border-radius: var(--hkt-t-radius);
    border: 1px solid var(--hkt-t-border);
    margin-top: 20px;
}

.hkt-modal-closing p {
    font-size: 1.05rem;
    color: var(--hkt-t-text-dim);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.hkt-trips-footer {
    background: #0a1018;
    border-top: 1px solid var(--hkt-t-border);
    padding: 0;
    font-family: var(--hkt-t-body);
}

.hkt-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 40px 50px;
}

.hkt-footer-logo {
    font-family: var(--hkt-t-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 6px 0;
}

.hkt-footer-tagline {
    font-size: 0.85rem;
    color: var(--hkt-t-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.hkt-footer-desc {
    font-size: 0.92rem;
    color: var(--hkt-t-text-dim);
    line-height: 1.7;
    margin: 0 0 20px 0;
    max-width: 380px;
}

.hkt-footer-license {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--hkt-t-text-dim);
    padding: 12px 16px;
    background: rgba(212, 163, 115, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(212, 163, 115, 0.12);
}

.hkt-footer-license i {
    color: var(--hkt-t-gold);
    font-size: 1.1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.hkt-footer-heading {
    font-family: var(--hkt-t-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 22px 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.hkt-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--hkt-t-gold);
    border-radius: 1px;
}

.hkt-footer-links ul,
.hkt-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hkt-footer-links ul li {
    margin-bottom: 12px;
}

.hkt-footer-links ul li a {
    color: var(--hkt-t-text-dim);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.hkt-footer-links ul li a:hover {
    color: var(--hkt-t-gold);
    padding-left: 6px;
}

.hkt-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--hkt-t-text-dim);
}

.hkt-contact-list li i {
    color: var(--hkt-t-gold);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Social Icons ── */
.hkt-social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.hkt-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--hkt-t-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hkt-t-text-dim);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.hkt-social-icons a:hover {
    background: var(--hkt-t-gold);
    border-color: var(--hkt-t-gold);
    color: var(--hkt-t-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.3);
}

.hkt-footer-social-note {
    font-size: 0.82rem;
    color: var(--hkt-t-text-dim);
    line-height: 1.5;
    margin: 0;
}

/* ── Footer Bottom ── */
.hkt-footer-bottom {
    text-align: center;
    padding: 20px 40px;
    border-top: 1px solid var(--hkt-t-border);
    background: rgba(0, 0, 0, 0.15);
}

.hkt-footer-bottom p {
    font-size: 0.82rem;
    color: var(--hkt-t-text-dim);
    margin: 0;
    letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hkt-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hkt-trip-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }

    .hkt-trip-gallery {
        min-height: 280px;
    }

    .hkt-trips-page-title {
        font-size: 2.8rem;
    }

    .hkt-modal-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hkt-trips-wrapper {
        padding-top: 70px;
    }

    .hkt-trips-hero {
        padding: 50px 20px 40px;
    }

    .hkt-trips-page-title {
        font-size: 2.2rem;
    }

    .hkt-trips-container {
        padding: 10px 20px 50px;
    }

    .hkt-trip-card {
        padding: 25px;
    }

    .hkt-trip-name {
        font-size: 1.7rem;
    }

    .hkt-trip-modal-header {
        padding: 35px 25px 20px;
    }

    .hkt-modal-trip-title {
        font-size: 1.8rem;
    }

    .hkt-trip-modal-body {
        padding: 25px;
    }

    .hkt-modal-day {
        padding: 20px;
    }

    .hkt-footer-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 25px 35px;
    }

    .hkt-footer-desc {
        max-width: 100%;
    }

    .hkt-trip-gallery {
        min-height: 220px;
    }

    .hkt-gallery-item-1 {
        grid-row: auto;
    }

    .hkt-trip-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

@media (max-width: 480px) {
    .hkt-trips-page-title {
        font-size: 1.8rem;
    }

    .hkt-trip-name {
        font-size: 1.4rem;
    }

    .hkt-trip-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ── Book Now WhatsApp Button ── */
.hkt-book-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25D366;
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    font-family: var(--hkt-t-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 5;
    margin-left: 12px;
}

.hkt-book-now:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: #ffffff !important;
    text-decoration: none;
}

.hkt-book-now i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hkt-book-now:hover i {
    transform: scale(1.15);
}

.hkt-trip-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hkt-modal-book-now {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--hkt-t-border);
}

.hkt-modal-book-now .hkt-book-now {
    padding: 16px 40px;
    font-size: 1.05rem;
    margin-left: 0;
}

@media (max-width: 480px) {
    .hkt-trip-card-buttons {
        flex-direction: column;
    }

    .hkt-book-now {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}