/* Agent Showcase Section */
.agent-showcase {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.agent-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230, 213, 149, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.agent-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.agent-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agent-photo {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 50%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 10px rgba(255, 255, 255, 0.5),
        0 0 0 20px rgba(230, 213, 149, 0.3);
    transition: transform 0.3s ease;
}

.agent-photo:hover {
    transform: scale(1.02);
}

.agent-info h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.agent-info .tagline {
    font-size: 1.3rem;
    color: #b08d4b;
    font-style: italic;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.services-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-badge i {
    color: #b08d4b;
    font-size: 1.2rem;
}

.service-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.agent-info .description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .agent-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .agent-image-wrapper {
        justify-content: center;
    }

    .agent-photo {
        max-width: 300px;
    }

    .agent-info h1 {
        font-size: 2rem;
    }

    .services-highlight {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 25px;
    }

    .cta-button {
        display: inline-flex;
    }
}

@media (max-width: 576px) {
    .agent-showcase {
        padding: 40px 0 30px;
    }

    .agent-photo {
        max-width: 250px;
    }

    .agent-info h1 {
        font-size: 1.7rem;
    }

    .agent-info .tagline {
        font-size: 1.1rem;
    }

    .service-badge {
        padding: 10px 12px;
    }

    .service-badge span {
        font-size: 0.85rem;
    }
}