/* ═══════════════════════════════════════════
   AGENTS PAGE — Styles
   ═══════════════════════════════════════════ */

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1400&q=80') center/cover;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.80) 50%, rgba(220,20,49,0.2) 100%);
}
.page-hero-content {
    position: relative; z-index: 2; text-align: center; padding: 0 1.5rem;
}
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}
.page-hero-title em { font-style: italic; color: #DC1431; }
.page-hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Agents Grid */
.agents-page { background: #F3F4F6; }
.agents-page-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Agent Full Card */
.agent-full-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.agent-full-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    border-color: transparent;
}

/* Agent Image */
.agent-full-img {
    position: relative;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
}
.agent-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.agent-full-card:hover .agent-full-img img { transform: scale(1.05); }
.agent-full-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.agent-full-card:hover .agent-full-overlay {
    opacity: 1;
    transform: translateY(0);
}
.agent-action {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.agent-action:hover {
    background: #DC1431;
    border-color: #DC1431;
    transform: translateY(-3px);
}

/* Agent Info */
.agent-full-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.agent-full-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.3rem;
}
.agent-full-title {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #DC1431;
    margin-bottom: 1rem;
}
.agent-full-bio {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.agent-full-bio strong { color: #111827; font-weight: 600; }

/* Agent Details */
.agent-full-details {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}
.agent-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: #4B5563;
}
.agent-detail i {
    color: #DC1431;
    width: 16px;
    text-align: center;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Tags */
.agent-full-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(220,20,49,0.06);
    color: #DC1431;
    border: 1px solid rgba(220,20,49,0.12);
    transition: all 0.3s;
}
.tag:hover {
    background: #DC1431;
    color: #fff;
    border-color: #DC1431;
}

/* CTA Banner */
.agents-cta {
    margin-top: 4rem;
}
.agents-cta-inner {
    background: linear-gradient(135deg, #0A1628 0%, #1A1A2E 50%, #DC1431 150%);
    border-radius: 20px;
    padding: 3.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.agents-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220,20,49,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.agents-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
    position: relative;
}
.agents-cta-inner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.agents-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .agent-full-card {
        grid-template-columns: 1fr;
    }
    .agent-full-img {
        min-height: 280px;
        max-height: 320px;
    }
}
@media (max-width: 640px) {
    .agent-full-info {
        padding: 1.5rem;
    }
    .agents-cta-inner {
        padding: 2rem 1.5rem;
    }
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
}
