/* --- Property Management Page Styles --- */

.pm-hero {
    position: relative;
    padding: 150px 5% 80px;
    background: linear-gradient(135deg, #1c1008 0%, #3a2312 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.pm-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.pm-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.pm-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold, #D4AF37);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.pm-title {
    font-family: var(--font-heading, serif);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.pm-title span {
    color: var(--accent-gold, #D4AF37);
}

.pm-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.pm-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.pm-btn-primary {
    background: var(--accent-red, #8B0000);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pm-btn-primary:hover {
    background: #6a0000;
    transform: translateY(-2px);
}

.pm-btn-secondary {
    background: #fff;
    color: #3A2312;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pm-btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Common Section Styles */
.pm-section {
    padding: 80px 5%;
    background-color: #fff; /* Default to white */
}
.pm-section.bg-light {
    background-color: #FAF9F6;
}
.pm-section.bg-dark {
    background-color: #363636;
}
.pm-section.bg-dark .pm-section-title {
    color: #8c5a2c; /* Matches the brown/gold tone in screenshot */
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pm-section.bg-dark .pm-section-subtitle {
    color: #999;
}

.pm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pm-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.pm-section-title {
    font-family: var(--font-heading, serif);
    font-size: 2.5rem;
    color: #3A2312;
    margin-bottom: 15px;
}
.pm-section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Two Col Intro */
.pm-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.pm-intro-text h3 {
    font-family: var(--font-heading, serif);
    font-size: 2rem;
    color: var(--accent-red, #8B0000);
    margin-bottom: 20px;
}
.pm-intro-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}
.pm-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pm-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cards Grid */
.pm-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pm-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.pm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-gold, #D4AF37);
}
.pm-card-icon {
    width: 50px;
    height: 50px;
    background: #fcf5f5;
    color: var(--accent-red, #8B0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 20px auto;
}
.pm-card h4 {
    font-family: var(--font-heading, serif);
    font-size: 1.1rem;
    color: #3A2312;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}
.pm-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.pm-card ul {
    list-style: none;
    padding: 0;
}
.pm-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.pm-card ul li i {
    color: var(--accent-gold, #D4AF37);
    font-size: 0.8rem;
    margin-top: 3px;
}

/* Process Timeline */
.pm-process {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.pm-process-step {
    display: flex;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    align-items: flex-start;
}
.pm-step-num {
    background: var(--accent-red, #8B0000);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading, serif);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.pm-step-content h4 {
    font-family: var(--font-heading, serif);
    font-size: 1.2rem;
    color: #3A2312;
    margin-bottom: 10px;
}
.pm-step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Benefits & Lists */
.pm-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.pm-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.pm-list-item i {
    color: var(--accent-gold, #D4AF37);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pm-list-item span {
    color: #444;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Tags Grid */
.pm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.pm-tag {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #3A2312;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    cursor: default;
}
.pm-tag:hover {
    background: var(--accent-red, #8B0000);
    color: #fff;
    border-color: var(--accent-red, #8B0000);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139,0,0,0.15);
}

/* CTA Section */
.pm-cta {
    background: linear-gradient(135deg, var(--accent-red, #8B0000) 0%, #5a0000 100%);
    color: #fff;
    text-align: center;
    padding: 80px 5%;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(139,0,0,0.15);
}
.pm-cta h2 {
    font-family: var(--font-heading, serif);
    font-size: 2.8rem;
    margin-bottom: 25px;
}
.pm-cta p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.pm-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.pm-cta .pm-btn-primary, .pm-cta .pm-btn-secondary {
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pm-cta .pm-btn-primary {
    background: #fff;
    color: var(--accent-red, #8B0000);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.pm-cta .pm-btn-primary:hover {
    background: #fdfdfd;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
.pm-cta .pm-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.pm-cta .pm-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .pm-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pm-title { font-size: 2.5rem; }
    .pm-intro-grid { grid-template-columns: 1fr; }
    .pm-hero-buttons { flex-direction: column; }
    .pm-cta-buttons { flex-direction: column; }
    .pm-list-grid { grid-template-columns: 1fr; }
}
