/* ---------------------------------------------
   GOLD + BLACK REAL ESTATE LUXURY THEME
   Inspired by DAMAC / EMAAR UI
----------------------------------------------*/

/* GLOBAL RESETS */
.fovty-agent-hero, 
.fovty-agent-details-container,
.fovty-archive-wrapper,
.fovty-agent-grid {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
}

/* ---------------------------
   HERO SECTION (Single Agent)
----------------------------*/
.fovty-agent-hero {
    background: #000000;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.fovty-agent-photo img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C5A45A; /* Gold Border */
    box-shadow: 0px 0px 25px rgba(197,164,90,0.5); /* Gold Glow */
}

.fovty-agent-name-title {
    font-size: 36px;
    margin-top: 25px;
    font-weight: 600;
    color: #FFFFFF;
}

.fovty-agent-designation {
    font-size: 18px;
    color: #C5A45A;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.fovty-agent-status {
    margin-top: 12px;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
}

.fovty-agent-status.active {
    background: #1b5e20;
    color: #fff;
}

.fovty-agent-status.inactive {
    background: #8e0000;
    color: #fff;
}

/* Gold Divider */
.fovty-divider {
    width: 80px;
    height: 3px;
    background: #C5A45A;
    margin: 20px auto 0 auto;
}


/* ---------------------------
   Single Agent Details Section
----------------------------*/
.fovty-agent-details-container {
    background: #111111;
    padding: 50px 20px;
}

.fovty-agent-contact-card,
.fovty-agent-description-card {
    background: #000000;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #1E1E1E;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.fovty-agent-section-title {
    font-size: 24px;
    color: #C5A45A;
    margin-bottom: 15px;
}

.fovty-agent-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #BBBBBB;
}

/* Contact Buttons */
.fovty-contact-buttons a {
    display: inline-block;
    margin: 8px 6px 0 0;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.fovty-btn-call {
    background: #C5A45A;
    color: #000000;
}

.fovty-btn-call:hover {
    background: #b89651;
}

.fovty-btn-whatsapp {
    background: #25D366;
    color: #000000;
}

.fovty-btn-whatsapp:hover {
    background: #1eac52;
}

.fovty-btn-email {
    background: #333333;
    color: #FFFFFF;
    border: 1px solid #C5A45A;
}

.fovty-btn-email:hover {
    background: #C5A45A;
    color: #000000;
}


/* ---------------------------
   ARCHIVE GRID
----------------------------*/
.fovty-archive-wrapper {
    background: #000000;
    padding: 60px 20px;
    text-align: center;
}

.fovty-archive-title {
    font-size: 38px;
    font-weight: 600;
    color: #FFFFFF;
}

.fovty-agent-grid {
    margin-top: 40px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Grid Cards */
.fovty-agent-grid-card {
    background: #111111;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #FFFFFF;
    transition: 0.3s ease;
    border: 1px solid #1E1E1E;
}

.fovty-agent-grid-card:hover {
    transform: translateY(-6px);
    border-color: #C5A45A;
    box-shadow: 0px 0px 18px rgba(197,164,90,0.4);
}

.fovty-grid-photo img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.fovty-grid-content h3 {
    margin-top: 15px;
    font-size: 20px;
}

.fovty-grid-phone {
    font-size: 14px;
    color: #C5A45A;
}


/* ---------------------------
   RESPONSIVE DESIGN
----------------------------*/
@media (max-width: 768px) {

    .fovty-agent-hero {
        padding: 40px 15px;
    }

    .fovty-agent-name-title {
        font-size: 28px;
    }

    .fovty-agent-grid {
        grid-template-columns: 1fr;
    }
}
