/* ==============================
   AGENT DETAILS – PROFESSIONAL
   ============================== */

   .agent-details {
    padding: 100px 0;
    background: #f8fafc;
  }
  
  /* MAIN WRAPPER */
  .agent-profile {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }
  
  /* ==============================
     HEADER SECTION
     ============================== */
  
  .agent-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
  }
  
  /* IMAGE */
  .agent-photo {
    position: relative;
  }
  
  .agent-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
  }
  
  /* BADGE */
  .top-rated {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-orange);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
  }
  
  /* BASIC INFO */
  .agent-info h1 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
  }
  
  .agent-rank {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
  }
  
  /* ==============================
     STATS
     ============================== */
  
  .agent-stats {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .stat-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
  }
  
  .stat-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
  }
  
  .stat-box span {
    margin-top: 4px;
    display: block;
    font-size: 13px;
    color: #64748b;
  }
  
  /* ==============================
     DIVIDER
     ============================== */
  
  .agent-divider {
    margin: 50px 0;
    height: 1px;
    background: #e5e7eb;
  }
  
  /* ==============================
     BODY CONTENT
     ============================== */
  
  .agent-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
  }
  
  /* ABOUT */
  .agent-about h2,
  .agent-specialities h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 14px;
  }
  
  .agent-about p {
    font-size: 15px;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 14px;
  }
  
  /* SPECIALITIES */
  .agent-specialities ul {
    list-style: none;
    padding: 0;
  }
  
  .agent-specialities li {
    font-size: 14px;
    padding: 8px 0;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .agent-specialities li::before {
    content: "•";
    color: var(--accent-orange);
    font-size: 18px;
  }
  
  /* ==============================
     CTA
     ============================== */
  
  .agent-cta {
    margin-top: 50px;
    display: flex;
    gap: 16px;
  }
  
  .agent-cta a {
    flex: 1;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }
  
  .agent-cta .primary {
    background: var(--accent-orange);
    color: #fff;
  }
  
  .agent-cta .secondary {
    background: #ffffff;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
  }
  
  /* ==============================
     RESPONSIVE
     ============================== */
  
  @media (max-width: 900px) {
    .agent-header {
      grid-template-columns: 1fr;
    }
  
    .agent-body {
      grid-template-columns: 1fr;
    }
  
    .agent-profile {
      padding: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .agent-stats {
      grid-template-columns: 1fr;
    }
  
    .agent-info h1 {
      font-size: 26px;
    }
  }
  