/* ═══════════════════════════════════════════════════════
   PROPi.IN — Homepage Styles
   ═══════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────── */
.hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: var(--propi-dark);
        padding: 120px 0 80px;
}

.hero__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
}

.hero__orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.35;
        animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
        width: 500px;
        height: 500px;
        background: var(--propi-primary);
        top: -10%;
        right: -5%;
}

.hero__orb--2 {
        width: 400px;
        height: 400px;
        background: #7c3aed;
        bottom: -10%;
        left: -5%;
        animation-delay: -3s;
}

.hero__orb--3 {
        width: 300px;
        height: 300px;
        background: var(--propi-accent);
        top: 40%;
        left: 40%;
        opacity: 0.15;
        animation-delay: -5s;
}

.hero__grid-pattern {
        position: absolute;
        inset: 0;
        background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
}

.hero__content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
}

.hero__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        background: rgba(79, 70, 229, 0.15);
        border: 1px solid rgba(79, 70, 229, 0.3);
        border-radius: var(--radius-full);
        color: var(--propi-primary-light);
        font-size: 0.8125rem;
        font-weight: 600;
        margin-bottom: 24px;
}

.hero__title {
        color: var(--propi-white);
        font-size: clamp(2.2rem, 5vw, 3.75rem);
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -1px;
}

.hero__subtitle {
        color: var(--propi-gray-400);
        font-size: clamp(1rem, 2vw, 1.2rem);
        max-width: 580px;
        margin: 0 auto 40px;
        line-height: 1.7;
}

.hero__cta {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 56px;
}

.hero__stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
}

.hero__stat-number {
        font-family: var(--font-display);
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--propi-white);
        line-height: 1;
}

.hero__stat-label {
        font-size: 0.8125rem;
        color: var(--propi-gray-500);
        margin-top: 4px;
}

.hero__stat-divider {
        width: 1px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
        .hero {
                padding: 100px 0 60px;
                min-height: auto;
        }

        .hero__stats {
                gap: 24px;
        }

        .hero__stat-divider {
                display: none;
        }
}

/* ── Step Cards ─────────────────────────────────────── */
.step-card {
        background: var(--propi-white);
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        text-align: center;
        position: relative;
        border: 1px solid var(--propi-gray-200);
        transition: all var(--transition-base);
}

.step-card:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-6px);
        border-color: var(--propi-primary-light);
}

.step-card__number {
        position: absolute;
        top: -14px;
        left: 24px;
        width: 28px;
        height: 28px;
        background: var(--gradient-primary);
        color: white;
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 800;
}

.step-card__icon {
        width: 64px;
        height: 64px;
        background: var(--propi-primary-50);
        color: var(--propi-primary);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin: 0 auto 20px;
        transition: all var(--transition-base);
}

.step-card:hover .step-card__icon {
        background: var(--gradient-primary);
        color: white;
        transform: scale(1.1);
}

.step-card__icon--accent {
        background: #fef2f2;
        color: var(--propi-accent);
}

.step-card:hover .step-card__icon--accent {
        background: var(--gradient-accent);
        color: white;
}

.step-card__icon--success {
        background: #ecfdf5;
        color: var(--propi-success);
}

.step-card:hover .step-card__icon--success {
        background: var(--gradient-success);
        color: white;
}

.step-card h4 {
        margin-bottom: 8px;
}

/* ── Features Section ───────────────────────────────── */
.features-section {
        background: var(--propi-gray-200);
}

.feature-card {
        background: var(--propi-white);
        border-radius: var(--radius-lg);
        padding: 28px 24px;
        border: 1px solid var(--propi-gray-200);
        transition: all var(--transition-base);
}

.feature-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
        border-color: var(--propi-primary-light);
}

.feature-card__icon {
        width: 48px;
        height: 48px;
        background: var(--propi-primary-50);
        color: var(--propi-primary);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-bottom: 16px;
}

.feature-card h5 {
        margin-bottom: 8px;
}

/* ── Location Cards ─────────────────────────────────── */
.location-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: all var(--transition-base);
}

.location-card:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-4px);
}

.location-card__header {
        padding: 24px;
        color: white;
}

.location-card__header h4 {
        color: white;
        margin-bottom: 4px;
}

.location-card__count {
        font-size: 0.8125rem;
        opacity: 0.85;
        font-weight: 500;
}

.location-card__body {
        background: var(--propi-white);
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
}

.location-tag {
        padding: 6px 14px;
        background: var(--propi-gray-100);
        border-radius: var(--radius-full);
        font-size: 0.8125rem;
        color: var(--propi-gray-700);
        font-weight: 500;
        transition: all var(--transition-fast);
}

.location-tag:hover {
        background: var(--propi-primary-50);
        color: var(--propi-primary);
}

/* ── CTA Section ────────────────────────────────────── */
.cta-section {
        background: var(--gradient-hero);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
}

.cta-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(124, 58, 237, 0.3);
        border-radius: 50%;
        filter: blur(100px);
        top: -100px;
        right: -100px;
}