/* ── How to Rent — Frontend Section ── */

.qatarrent-front {
    padding: 80px 0;
}

.qatarrent-front__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 0;
    box-sizing: border-box;
}

/* ── Section heading ── */
.qatarrent-front__header {
    text-align: center;
    margin-bottom: 56px;
}

.qatarrent-front__heading {
    color: inherit;
    margin-bottom: 0;
    line-height: 1.25;
    position: relative;
    display: inline-block;
}

/* Three diamond dots instead of underline bar */
.qatarrent-front__heading::after {
    content: '◆  ◆  ◆';
    display: block;
    font-size: 0.45rem;
    letter-spacing: 0.5em;
    color: var(--theme-accent);
    margin-top: 18px;
    opacity: 0.75;
}

.qatarrent-front__desc {
    max-width: 680px;
    margin: 24px auto 0;
    line-height: 1.75;
    color: #475569;
}

/* ── Steps grid ── */
.qatarrent-front-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ── Step card ── */
.qatarrent-front-step {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px 24px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #e4eaf3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Soft radial glow in top-right corner */
.qatarrent-front-step::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(var(--theme-accent-rgb, 25, 168, 129), 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.qatarrent-front-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(var(--theme-accent-rgb, 25, 168, 129), 0.14);
}

/* ── Step number — solid badge ── */
.qatarrent-front-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--theme-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 auto 18px;
    box-shadow: 0 4px 12px rgba(var(--theme-accent-rgb, 25, 168, 129), 0.35);
    position: relative;
    z-index: 1;
}

/* ── Icon + Title row ── */
.qatarrent-front-step__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

/* ── Icon ── */
.qatarrent-front-step__icon {
    font-size: 22px !important;
    color: var(--theme-accent);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(var(--theme-accent-rgb, 25, 168, 129), 0.08);
    transition: background 0.25s ease, transform 0.25s ease;
}

.qatarrent-front-step:hover .qatarrent-front-step__icon {
    background: rgba(var(--theme-accent-rgb, 25, 168, 129), 0.16);
    transform: scale(1.1);
}

/* ── Title ── */
.qatarrent-front-step__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

/* ── Description ── */
.qatarrent-front-step__text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.qatarrent-front-step__text p {
    margin: 0 0 6px;
}

.qatarrent-front-step__text p:last-child {
    margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .qatarrent-front-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qatarrent-front {
        padding: 56px 0;
    }
    .qatarrent-front__header {
        margin-bottom: 40px;
    }
    .qatarrent-front-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
