/* ── GoodMark Trip Manager Frontend Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

/* GRID WRAPPER */
.gmtm-trips-wrap {
    display: grid;
    gap: 22px;
    margin: 24px 0;
    font-family: 'Hind Siliguri', sans-serif;
}
.gmtm-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gmtm-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gmtm-cols-1 { grid-template-columns: 1fr; }
.gmtm-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* CARD */
.gmtm-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(11,30,61,.07);
    border: 1px solid #eef0f5;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}
.gmtm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(11,30,61,.14);
}

/* CARD IMAGE */
.gmtm-card-img {
    position: relative;
    height: 190px;
    background: #0B1E3D;
    overflow: hidden;
}
.gmtm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.gmtm-card:hover .gmtm-card-img img { transform: scale(1.04); }
.gmtm-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 60px;
    opacity: .4;
    color: #fff;
}

/* BADGE */
.gmtm-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #C9922A;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .4px;
    z-index: 2;
}

/* TYPE TAG */
.gmtm-type {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(11,30,61,.75);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* CARD BODY */
.gmtm-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gmtm-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.gmtm-meta span {
    font-size: 12.5px;
    color: #6b7a99;
}
.gmtm-country { font-weight: 500; }

/* TITLE */
.gmtm-title {
    font-family: 'Hind Siliguri', sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #0B1E3D !important;
    margin: 0 0 10px !important;
    line-height: 1.4 !important;
}

/* DESC */
.gmtm-desc {
    font-size: 13.5px;
    color: #6b7a99;
    line-height: 1.65;
    margin: 0 0 12px;
}

/* HIGHLIGHTS */
.gmtm-highlights {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 14px !important;
}
.gmtm-highlights li {
    font-size: 13px;
    color: #445;
    padding: 3px 0 3px 20px;
    position: relative;
    line-height: 1.5;
}
.gmtm-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9922A;
    font-weight: 700;
}

/* FOOTER */
.gmtm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f2f8;
    gap: 10px;
    flex-wrap: wrap;
}
.gmtm-price {
    font-size: 13px;
    color: #888;
}
.gmtm-price del {
    color: #bbb;
    margin-right: 4px;
}
.gmtm-price strong {
    font-size: 19px;
    color: #0B1E3D;
    font-weight: 700;
}
.gmtm-price small {
    font-size: 12px;
    color: #aaa;
}

/* BUTTON */
.gmtm-btn {
    background: #C9922A;
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .2s;
    white-space: nowrap;
    display: inline-block;
}
.gmtm-btn:hover { background: #b07d1e; color: #fff !important; }
.gmtm-btn-lg { padding: 13px 28px; font-size: 15px; margin-top: 20px; }

.gmtm-no-trips { text-align: center; padding: 40px; color: #888; font-family:'Hind Siliguri',sans-serif; }

/* ── SINGLE TRIP ───────────────────────────────────────────── */
.gmtm-single { font-family: 'Hind Siliguri', sans-serif; }
.gmtm-single-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 14px; margin-bottom: 24px; }
.gmtm-single-body h2 { font-size: 28px; font-weight: 700; color: #0B1E3D; margin: 12px 0; }
.gmtm-single-meta { display: flex; flex-wrap: wrap; gap: 14px; }
.gmtm-single-meta span { font-size: 14px; color: #6b7a99; }
.gmtm-single-price { margin: 16px 0; }
.gmtm-single-price del { color: #bbb; font-size: 16px; margin-right: 8px; }
.gmtm-single-price strong { font-size: 28px; color: #0B1E3D; font-weight: 700; }
.gmtm-single-price small { font-size: 14px; color: #aaa; }
.gmtm-single-desc { font-size: 15px; color: #445; line-height: 1.8; margin: 18px 0; }
.gmtm-single h4 { font-size: 16px; font-weight: 600; color: #0B1E3D; margin: 20px 0 10px; }
.gmtm-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 16px 0; }
.gmtm-inc-exc ul { list-style: none; padding: 0; margin: 0; }
.gmtm-inc-exc li { font-size: 14px; color: #445; padding: 4px 0; border-bottom: 1px solid #f5f5f5; }

/* RESPONSIVE */
@media(max-width: 900px) {
    .gmtm-cols-3 { grid-template-columns: repeat(2, 1fr); }
    .gmtm-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .gmtm-inc-exc { grid-template-columns: 1fr; }
}
@media(max-width: 580px) {
    .gmtm-cols-3,
    .gmtm-cols-2,
    .gmtm-cols-4 { grid-template-columns: 1fr; }
    .gmtm-card-img { height: 160px; }
}
