/* ===============================
   JANELTRIP REVIEWS + SIMILAR
=============================== */

.jt-review-section,
.jt-similar-section {
    margin-top: 34px;
}

.jt-section-head {
    margin-bottom: 18px;
}

.jt-section-head h2 {
    font-size: 28px;
    color: #045d43;
    margin: 0 0 6px;
    font-weight: 800;
}

.jt-section-head p {
    color: #5f7469;
    margin: 0;
}

/* Reviews */
.jt-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.jt-review-card {
    background: #fff;
    border: 1px solid #e3f4e9;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 14px 35px rgba(0,90,65,.08);
}

.jt-review-top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.jt-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f1fbf4;
    color: #045d43;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.jt-review-top strong {
    display: block;
    color: #045d43;
}

.jt-review-top span {
    color: #5f7469;
    font-size: 13px;
}

.jt-stars {
    color: #ff385c;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.jt-review-card p {
    color: #4f6459;
    line-height: 1.6;
    margin: 0;
}

/* Similar stays */
.jt-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.jt-similar-card {
    background: #fff;
    border: 1px solid #e8f3ec;
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    box-shadow: 0 14px 40px rgba(0,90,65,.10);
    transition: .3s ease;
    display: flex;
    flex-direction: column;
}

.jt-similar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0,90,65,.16);
}

.jt-similar-image {
    height: 190px;
    background: #eef7f1;
    overflow: hidden;
    position: relative;
}

.jt-similar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.jt-similar-card:hover .jt-similar-image img {
    transform: scale(1.06);
}

.jt-similar-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.jt-similar-body h3 {
    color: #045d43;
    font-size: 20px;
    margin: 0;
}

.jt-similar-body p {
    color: #5f7469;
    line-height: 1.5;
    margin: 0;
}

.jt-similar-price {
    margin-top: auto;
}

.jt-similar-price strong {
    display: block;
    font-size: 18px;
    color: #111;
}

.jt-similar-price span {
    color: #777;
    font-size: 13px;
}

@media (max-width: 900px) {
    .jt-review-grid,
    .jt-similar-grid {
        grid-template-columns: 1fr;
    }

    .jt-section-head h2 {
        font-size: 24px;
    }
}

.jt-review-success {
    background: #e9fff1;
    color: #047857;
    border: 1px solid #bfe8cb;
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 700;
}

.jt-review-form-box {
    background: #fff;
    border: 1px solid #e3f4e9;
    border-radius: 22px;
    padding: 22px;
    margin-top: 22px;
    box-shadow: 0 14px 35px rgba(0,90,65,.08);
}

.jt-review-form-box h3 {
    color: #045d43;
    margin: 0 0 16px;
    font-size: 22px;
}

.jt-review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.jt-review-form-box input,
.jt-review-form-box select,
.jt-review-form-box textarea {
    width: 100%;
    border: 1px solid #dceee4;
    border-radius: 14px;
    padding: 13px 14px;
    margin-bottom: 12px;
    outline: none;
}

.jt-review-form-box button {
    border: 0;
    background: #ff385c;
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 700px) {
    .jt-review-form-grid {
        grid-template-columns: 1fr;
    }
}