/* ══════════════════════════════════════════════════════
   HTR Frontend — Minimalist Design
   ══════════════════════════════════════════════════════ */

.htr-rental-guide {
    padding: 56px 0;
}

.htr-guide-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ── Header Section ── */
.htr-guide-intro {
    text-align: center;
    margin-bottom: 42px;
}

.htr-guide-title {
    color: inherit;
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
}

.htr-guide-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--theme-accent, #19A881);
    margin: 12px auto 0;
}

.htr-guide-subtitle {
    max-width: 560px;
    margin: 18px auto 0;
    line-height: 1.7;
    color: #5a6570;
    font-size: 0.95rem;
}

/* ── Steps Container ── */
.htr-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ── Individual Step ── */
.htr-process-card {
    position: relative;
    background: #fff;
    border: 1px solid #e2e5e9;
    border-radius: 8px;
    padding: 24px 18px 20px;
    text-align: center;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.htr-process-card:hover {
    border-color: var(--theme-accent, #19A881);
    box-shadow: 0 4px 16px rgba(var(--theme-accent-rgb, 25, 168, 129), 0.08);
}

/* ── Heading Row (Badge + Title) ── */
.htr-heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 7px;
}

/* ── Step Number Badge ── */
.htr-process-badge {
    width: 28px;
    height: 28px;
    background: var(--theme-accent, #19A881);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(var(--theme-accent-rgb, 25, 168, 129), 0.25);
}

/* ── Icon Element ── */
.htr-process-symbol {
    font-size: 24px !important;
    color: var(--theme-accent, #19A881);
    margin-bottom: 14px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(var(--theme-accent-rgb, 25, 168, 129), 0.06);
    transition: background 0.2s ease;
}

.htr-process-card:hover .htr-process-symbol {
    background: rgba(var(--theme-accent-rgb, 25, 168, 129), 0.12);
}

/* ── Step Heading ── */
.htr-process-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
}

/* ── Step Description ── */
.htr-process-description {
    font-size: 0.88rem;
    color: #5a6570;
    line-height: 1.65;
    margin: 8px 0 0;
}

.htr-process-description p {
    margin: 0 0 6px;
}

.htr-process-description p:last-child {
    margin-bottom: 0;
}

/* ── Responsive Adjustments ── */
@media (max-width: 1024px) {
    .htr-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .htr-rental-guide {
        padding: 42px 0;
    }
    
    .htr-guide-intro {
        margin-bottom: 32px;
    }
    
    .htr-process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .htr-process-card {
        padding: 22px 16px 18px;
    }
}
