.agent-intro {
    background: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-top: -50px; 
    position: relative;
    z-index: 1;
}

.agent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    padding: 0;
}

.agent-photo {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info {
    text-align: left;
}

.agent-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #1a3a52;
}

.agent-info .title {
    font-size: 1rem;
    color: #d4a574;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.agent-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.agent-info .phone {
    font-size: 1.4rem;
    color: #1a3a52;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* STATS SECTION */
.stats {
    background: linear-gradient(135deg, #16302b 0%, #1a3a36 100%);
    color: white;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    margin-top: 4rem;
    border-radius: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #d4a574;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .agent-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .agent-photo {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .agent-info {
        text-align: center;
    }
    
    .agent-info h2 {
        font-size: 2rem;
    }
    
    .agent-info .phone {
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
}