/* Property Managers New Page Styles */

/* General Styles */
.pm-new-page {
    --primary-color: #16a085;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --text-color: #444;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

.pm-new-page section {
    padding: 80px 0;
}

.pm-new-page h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pm-new-page p {
    color: var(--text-color);
    line-height: 1.7;
}

.pm-new-page .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.pm-hero {
    background: linear-gradient(135deg, #16a085 0%, #2c3e50 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pm-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.pm-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.pm-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pm-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pm-hero .hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.pm-hero .hero-stats {
    display: flex;
    gap: 30px;
}

.pm-hero .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pm-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.pm-hero .stat-text {
    font-size: 1rem;
    opacity: 0.8;
}

.pm-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.pm-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Value Proposition */
.pm-value {
    background-color: var(--white);
}

.pm-value .value-header {
    text-align: center;
    margin-bottom: 60px;
}

.pm-value .value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pm-value .value-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.pm-value .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pm-value .card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pm-value .card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.pm-value .value-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Process Timeline */
.pm-process {
    background-color: var(--light-gray);
}

.pm-process .process-header {
    text-align: center;
    margin-bottom: 60px;
}

.pm-process .process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.pm-process .timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.pm-process .timeline-item.reverse {
    flex-direction: row-reverse;
}

.pm-process .timeline-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pm-process .timeline-content {
    flex: 1;
}

.pm-process .timeline-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pm-process .timeline-features {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.pm-process .timeline-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pm-process .timeline-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pm-process .timeline-image {
    flex: 1;
    max-width: 400px;
}

.pm-process .timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.pm-process .timeline-connector {
    width: 4px;
    height: 50px;
    background-color: var(--primary-color);
    margin: 0 auto 40px;
}

.pm-process .partnership-cta {
    text-align: center;
    margin-top: 60px;
}

/* Services Grid */
.pm-services-grid {
    background-color: var(--white);
}

.pm-services-grid .services-header {
    text-align: center;
    margin-bottom: 60px;
}

.pm-services-grid .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.pm-services-grid .service-item {
    display: flex;
    gap: 30px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pm-services-grid .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pm-services-grid .service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-services-grid .service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.pm-services-grid .service-content {
    flex: 1;
}

.pm-services-grid .service-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pm-services-grid .service-features {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pm-services-grid .service-features li {
    position: relative;
    padding-left: 20px;
}

.pm-services-grid .service-features li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Testimonials */
.pm-testimonials-new {
    background-color: var(--light-gray);
    position: relative;
}

.pm-testimonials-new .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.pm-testimonials-new .testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.pm-testimonials-new .testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.pm-testimonials-new .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    position: relative;
}

.pm-testimonials-new .testimonial-quote {
    position: absolute;
    top: -15px;
    left: 20px;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.2;
}

.pm-testimonials-new .testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.pm-testimonials-new .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pm-testimonials-new .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.pm-testimonials-new .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-testimonials-new .author-info h4 {
    margin: 0 0 5px;
    color: var(--secondary-color);
}

.pm-testimonials-new .author-info p {
    margin: 0 0 5px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.pm-testimonials-new .author-rating {
    color: #ffc107;
}

.pm-testimonials-new .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.pm-testimonials-new .testimonial-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.pm-testimonials-new .testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* FAQ Section */
.pm-faq {
    background-color: var(--white);
}

.pm-faq .faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.pm-faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.pm-faq .faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pm-faq .faq-question {
    background-color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.pm-faq .faq-question:hover {
    background-color: var(--light-gray);
}

.pm-faq .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.pm-faq .faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition);
}

.pm-faq .faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: var(--white);
}

.pm-faq .faq-answer {
    background-color: var(--white);
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pm-faq .faq-answer p {
    padding: 20px 0;
    margin: 0;
}

/* CTA Section */
.pm-cta {
    background: linear-gradient(135deg, #16a085 0%, #2c3e50 100%);
    color: var(--white);
}

.pm-cta .container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.pm-cta .cta-content {
    flex: 1;
}

.pm-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.pm-cta p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.pm-cta .cta-benefits {
    padding-left: 0;
    list-style: none;
}

.pm-cta .cta-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pm-cta .cta-benefits i {
    margin-right: 15px;
    color: var(--white);
}

.pm-cta .cta-form {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.pm-cta .cta-form h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.pm-cta form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pm-cta .form-row {
    display: flex;
    gap: 20px;
}

.pm-cta .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pm-cta .form-group.full-width {
    width: 100%;
}

.pm-cta label {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.pm-cta input,
.pm-cta select,
.pm-cta textarea {
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
}

.pm-cta textarea {
    resize: vertical;
    min-height: 100px;
}

.pm-cta .form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.pm-cta .form-privacy input {
    margin-top: 5px;
}

.pm-cta .form-privacy label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pm-cta .form-privacy a {
    color: var(--primary-color);
}

.pm-cta button {
    margin-top: 20px;
    align-self: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pm-hero h1 {
        font-size: 2.8rem;
    }
    
    .pm-hero .container,
    .pm-cta .container {
        flex-direction: column;
    }
    
    .pm-hero .hero-image {
        max-width: 100%;
    }
    
    .pm-services-grid .services-container {
        grid-template-columns: 1fr;
    }
    
    .pm-process .timeline-item,
    .pm-process .timeline-item.reverse {
        flex-direction: column;
    }
    
    .pm-process .timeline-image {
        max-width: 100%;
        order: -1;
    }
}

@media (max-width: 768px) {
    .pm-hero {
        padding: 60px 0;
    }
    
    .pm-hero h1 {
        font-size: 2.2rem;
    }
    
    .pm-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .pm-hero .hero-cta {
        flex-direction: column;
    }
    
    .pm-cta .form-row {
        flex-direction: column;
    }
    
    .pm-testimonials-new .testimonial-card {
        flex: 0 0 calc(100% - 40px);
    }
}

@media (max-width: 576px) {
    .pm-new-page section {
        padding: 50px 0;
    }
    
    .pm-new-page h2 {
        font-size: 2rem;
    }
    
    .pm-hero .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pm-services-grid .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .pm-services-grid .service-features {
        grid-template-columns: 1fr;
    }
}