/* === JAMARK Realtors - Extended Styles (Stats, CTA, Footer, Testimonials) === */

.testimonials-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.testimonials-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimonials-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.testimonials-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2c5f2d;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.section-header {
    text-align: center;
    padding: 40px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
    color: #144d29;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #144d29;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #b7f2ce;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #4a4a4a;
    margin-top: 15px;
    line-height: 1.6;
    padding: 0 10px;
}


.testimonial-card::before {
    content: '"';
    font-size: 4em;
    color: #2c5f2d;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    color: #2c5f2d;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5f2d, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
}

.author-info h4 {
    margin: 0;
    color: #2c5f2d;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
    font-weight: normal;
}

.stats-section {
    background: #2c5f2d;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 3em;
    margin: 0;
    color: #97bc62;
}

.stat-item p {
    margin: 10px 0 0 0;
    font-size: 1.1em;
}

.cta-section {
    background: linear-gradient(135deg, #97bc62 0%, #2c5f2d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-secondary {
    background: white;
    color: #2c5f2d;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stronger-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #97bc62;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section p, .footer-section li {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #97bc62;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #97bc62;
}
