/* Property Management Page Styles */

/* Hero Section */
#pm-hero {
    width: 100%;
    min-height: 400px;
    padding: 100px 20px;
    background-color: rgb(232, 231, 219);
    color: #00504A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-hero-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.pm-hero-container h1 {
    font-size: 51px;
    line-height: 56px;
    letter-spacing: -1.024px;
    font-weight: 400;
    margin-bottom: 30px;
}

.pm-hero-text {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pm-hero-container .a-btt-o {
    padding: 16px 32px;
    border-radius: 15px;
    display: inline-block;
}

/* Why Choose Section */
#pm-why-choose {
    width: 100%;
    padding: 100px 20px 50px;
    color: #00504A;
}

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

.pm-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pm-section-header h2 {
    font-size: 51px;
    line-height: 56px;
    letter-spacing: -1.024px;
    font-weight: 400;
    margin-bottom: 20px;
}

.pm-section-subtitle {
    font-size: 19px;
    line-height: 27px;
    color: #00504A;
    margin-top: 20px;
}

.pm-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pm-intro-text {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 20px;
    font-weight: 500;
}

.pm-body-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

.pm-frustrations {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 15px;
}

.pm-frustrations-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00504A;
}

.pm-frustrations-list {
    list-style: none;
    padding: 0;
}

.pm-frustrations-list li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.pm-frustrations-list li:before {
    content: "•";
    color: #E86138;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.pm-inline-link {
    text-align: center;
    margin-top: 30px;
}

.pm-inline-link .a-link {
    font-size: 18px;
}

/* Services Section */
#pm-services {
    width: 100%;
    padding: 80px 20px;
    background-color: #f8f8f8;
    color: #00504A;
}

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

.pm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pm-service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pm-service-item h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 400;
}

.pm-service-item p {
    font-size: 16px;
    line-height: 24px;
    color: #00504A;
}

/* Packages Section */
#pm-packages {
    width: 100%;
    padding: 100px 20px;
    color: #00504A;
}

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

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

.pm-package-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pm-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #E86138;
}

.pm-package-featured {
    border-color: #E86138;
    border-width: 3px;
}

.pm-package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.pm-package-header h3 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 400;
}

.pm-package-price {
    font-size: 28px;
    font-weight: 600;
    color: #E86138;
    margin-bottom: 15px;
}

.pm-package-desc {
    font-size: 16px;
    line-height: 24px;
    color: #666;
}

.pm-package-features {
    margin-top: 20px;
}

.pm-package-includes {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00504A;
}

.pm-feature-item {
    margin-bottom: 20px;
}

.pm-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pm-feature-name {
    font-size: 16px;
    line-height: 24px;
    flex: 1;
}

.pm-tooltip-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #E86138;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: help;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.pm-tooltip-icon:hover {
    background-color: #c54d2a;
}

/* Tooltip */
.pm-tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    max-width: 300px;
    min-width: 200px;
    z-index: 1000;
    display: none;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.pm-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}

/* How We Work Section */
#pm-how-we-work {
    width: 100%;
    padding: 100px 20px;
    background-color: #f8f8f8;
    color: #00504A;
}

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

.pm-process-steps {
    margin-top: 50px;
}

.pm-process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.pm-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E86138;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

.pm-step-content {
    flex: 1;
}

.pm-step-content h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 400;
}

.pm-step-content p {
    font-size: 16px;
    line-height: 24px;
}

.pm-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.pm-cta-wrapper .a-btt-o {
    padding: 16px 32px;
    border-radius: 15px;
}

/* Why Us Section */
#pm-why-us {
    width: 100%;
    padding: 100px 20px;
    color: #00504A;
}

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

.pm-benefits-list {
    margin: 40px 0;
}

.pm-benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.pm-benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.pm-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pm-benefit-text h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}

/* Peace of Mind Section */
#pm-peace-of-mind {
    width: 100%;
    padding: 100px 20px;
    background-color: #f8f8f8;
    color: #00504A;
}

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

.pm-compliance-list {
    margin: 40px 0;
}

.pm-compliance-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.pm-compliance-item .material-symbols-outlined {
    font-size: 28px;
    flex-shrink: 0;
}

.pm-compliance-item p {
    font-size: 18px;
    line-height: 26px;
    margin: 0;
}

/* Rent Guarantee & Legal Cover Section */
#pm-rent-guarantee {
    width: 100%;
    padding: 100px 20px;
    color: #00504A;
}

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

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

.pm-protection-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-protection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pm-protection-icon {
    margin-bottom: 20px;
}

.pm-protection-icon .material-symbols-outlined {
    font-size: 48px;
}

.pm-protection-item h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 400;
}

.pm-protection-item p {
    font-size: 16px;
    line-height: 24px;
}

/* Maintenance Section */
#pm-maintenance {
    width: 100%;
    padding: 100px 20px;
    background-color: #f8f8f8;
    color: #00504A;
}

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

.pm-maintenance-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pm-maintenance-benefit {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pm-maintenance-benefit h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.pm-maintenance-benefit p {
    font-size: 16px;
    line-height: 24px;
}

/* FAQ Section */
#pm-faq {
    width: 100%;
    padding: 100px 20px;
    color: #00504A;
}

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

.pm-faq-list {
    margin-top: 50px;
}

.pm-faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.pm-faq-item:hover {
    border-color: #E86138;
}

.pm-faq-item.active {
    border-color: #E86138;
}

.pm-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.pm-faq-question:hover {
    background-color: #f8f8f8;
}

.pm-faq-question h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

.pm-faq-icon {
    font-size: 28px;
    font-weight: bold;
    color: #E86138;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f8f8;
}

.pm-faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/* Final CTA Section */
#pm-final-cta {
    width: 100%;
    padding: 100px 20px;
    background-color: rgb(232, 231, 219);
    color: #00504A;
    text-align: center;
}

.pm-final-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.pm-final-cta-container h2 {
    font-size: 51px;
    line-height: 56px;
    letter-spacing: -1.024px;
    font-weight: 400;
    margin-bottom: 30px;
}

.pm-final-cta-container .pm-body-text {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 40px;
}

.pm-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.pm-cta-buttons .a-btt-o {
    padding: 16px 32px;
    border-radius: 15px;
}

.pm-cta-buttons .a-link {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pm-hero-container h1 {
        font-size: 42px;
        line-height: 48px;
    }

    .pm-section-header h2 {
        font-size: 42px;
        line-height: 48px;
    }

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

    .pm-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    #pm-hero {
        padding: 60px 20px;
    }

    .pm-hero-container h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .pm-hero-text {
        font-size: 16px;
        line-height: 24px;
    }

    #pm-why-choose,
    #pm-services,
    #pm-packages,
    #pm-how-we-work,
    #pm-why-us,
    #pm-peace-of-mind,
    #pm-final-cta {
        padding: 60px 20px;
    }

    .pm-section-header h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .pm-process-step {
        flex-direction: column;
        gap: 20px;
    }

    .pm-step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .pm-package-card {
        padding: 30px 20px;
    }

    .pm-package-header h3 {
        font-size: 28px;
        line-height: 34px;
    }

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

    .pm-final-cta-container h2 {
        font-size: 32px;
        line-height: 38px;
    }
}

@media (max-width: 480px) {
    .pm-hero-container h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .pm-section-header h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .pm-tooltip {
        max-width: 250px;
        font-size: 12px;
        padding: 10px 12px;
    }

    .pm-protection-grid,
    .pm-maintenance-benefits {
        grid-template-columns: 1fr;
    }

    .pm-faq-question {
        padding: 20px;
    }

    .pm-faq-question h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .pm-faq-answer p {
        padding: 0 20px 20px 20px;
    }
}

