/* ==============================================
   Property Management Page
   ============================================== */

.pm-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(55, 65, 81, 0.7)), url('https://images.unsplash.com/photo-1512914890250-353c97c9e87b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.pm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13, 28, 44, 0.85), rgba(221, 116, 71, 0.35));
    mix-blend-mode: multiply;
}

.pm-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.pm-hero-text h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.pm-hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.85);
}

.pm-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(221, 196, 132, 0.9);
    margin-bottom: 12px;
}

.pm-hero-cta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pm-primary-btn,
.pm-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pm-primary-btn {
    background: #dd7447;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(221, 116, 71, 0.35);
}

.pm-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(221, 116, 71, 0.45);
}

.pm-secondary-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.pm-secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.pm-hero-card {
    backdrop-filter: blur(14px);
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
}

.pm-hero-card-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pm-hero-card-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}

.pm-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.pm-hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.pm-hero-list i {
    color: #f4b860;
}

.pm-stats {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pm-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.pm-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.pm-stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 6px;
}

.pm-stat-value span {
    font-size: 1.2rem;
    margin-left: 4px;
}

.pm-stat-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.pm-stat-caption {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pm-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.pm-section-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.pm-section-header p {
    color: #475569;
    line-height: 1.7;
}

.pm-services {
    padding: 90px 0;
    background: #ffffff;
}

.pm-service-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pm-service-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pm-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

.pm-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(221, 116, 71, 0.1);
    color: #dd7447;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.pm-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.pm-service-card p {
    color: #4b5563;
    line-height: 1.6;
}

.pm-process {
    padding: 90px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1f2937 100%);
    color: #e2e8f0;
}

.pm-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.pm-timeline-step {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 32px;
    min-height: 220px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
}

.pm-step-number {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #dd7447;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 12px 25px rgba(221, 116, 71, 0.35);
}

.pm-timeline-step h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: #f8fafc;
}

.pm-timeline-step p {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.6;
}

.pm-testimonial {
    padding: 90px 0;
    background: #f8fafc;
}

.pm-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.pm-testimonial-content h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 18px;
}

.pm-testimonial-content p {
    color: #475569;
    line-height: 1.7;
}

.pm-testimonial-author {
    margin-top: 16px;
    font-weight: 600;
    color: #0f172a;
}

.pm-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.7);
    padding: 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.pm-testimonial-card h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.pm-testimonial-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.pm-testimonial-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

.pm-testimonial-card i {
    color: #dd7447;
}

.pm-faq {
    padding: 90px 0;
    background: #ffffff;
}

.pm-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.pm-faq-item {
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 28px;
    background: #f9fafb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pm-faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.pm-faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.pm-faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

.pm-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #dd7447, #f3a261);
    color: #ffffff;
}

.pm-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.pm-cta-text h2 {
    font-size: clamp(2rem, 3vw, 2.4rem);
    margin-bottom: 12px;
}

.pm-cta-text p {
    color: rgba(255, 255, 255, 0.9);
}

.pm-cta-btn {
    background: #ffffff;
    color: #dd7447;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pm-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

@media (max-width: 992px) {
    .pm-hero {
        padding-top: 140px;
    }

    .pm-hero-content {
        gap: 28px;
    }

    .pm-hero-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .pm-stat-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .pm-timeline-step {
        min-height: auto;
    }
}

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

    .pm-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .pm-hero-content {
        grid-template-columns: 1fr;
    }

    .pm-hero-text h1 {
        font-size: clamp(2.1rem, 8vw, 2.6rem);
    }

    .pm-hero-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .pm-hero-card {
        width: 100%;
        padding: 24px;
    }

    .pm-stat-grid {
        grid-template-columns: 1fr;
    }

    .pm-section-header {
        padding: 0 12px;
    }

    .pm-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .pm-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

