/* =========================================================
   ATTORNEY PAGE HERO SECTION
   Edward Robinson Lawfirm
   ========================================================= */

/* ----- HERO CONTAINER ----- */
.attorney-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80")
    center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* ----- DARK OVERLAY FOR READABILITY ----- */
.attorney-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.55);
  z-index: 1;
}

/* ----- TEXT CONTENT ----- */
.attorney-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.attorney-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.attorney-hero-content p {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #d4af37; /* gold accent */
  letter-spacing: 2px;
  font-weight: 500;
}

/* =========================================================
   RESPONSIVENESS
   ========================================================= */
@media (max-width: 992px) {
  .attorney-hero {
    height: 50vh;
  }

  .attorney-hero-content h1 {
    font-size: 2.4rem;
  }

  .attorney-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .attorney-hero {
    height: 45vh;
  }

  .attorney-hero-content h1 {
    font-size: 1.9rem;
  }

  .attorney-hero-content p {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}


/* ********************************************************************************************************************** */


/* =========================================================
   ATTORNEYS SECTION
   ========================================================= */
.attorneys-section {
  padding: 90px 0;
  background: #f7f7f7;
}

.attorneys-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----- SECTION HEADER ----- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
}

.section-header .divider {
  width: 50px;
  height: 2px;
  background: #d4af37;
  margin: 15px auto 0;
}

/* ----- ATTORNEYS GRID ----- */
.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.attorney-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attorney-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ----- IMAGE SECTION ----- */
.attorney-image {
  overflow: hidden;
}

.attorney-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* 🔹 Zoom effect on hover */
.attorney-card:hover img {
  transform: scale(1.1);
}

/* ----- INFO SECTION ----- */
.attorney-info {
  text-align: center;
  padding: 20px 10px;
}

.attorney-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.attorney-info p {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 992px) {
  .attorneys-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .attorney-image img {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .attorneys-grid {
    grid-template-columns: 1fr;
  }
  .attorney-image img {
    height: 300px;
  }
}



/* ********************************************************************************************************************** */



/* =========================================================
   WHY CLIENTS CHOOSE US SECTION
   ========================================================= */
.why-clients {
  position: relative;
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.why-clients .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  z-index: 0;
}

.why-clients .container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  text-transform: uppercase;
  color: #d4af37;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.85rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
}

.section-header .divider {
  width: 40px;
  height: 2px;
  background: #d4af37;
  margin: 15px auto 0;
}

/* ----- Text Columns ----- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.choose-box p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.8;
}

/* ----- Counters ----- */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.counter-box p {
  color: #d4af37;
  font-size: 0.95rem;
  text-transform: capitalize;
}

/* Responsive */
@media (max-width: 992px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }
  .counter-box h3 {
    font-size: 2rem;
  }
}


/* ********************************************************************************************************************** */


/* =========================================================
   FAQ SPLIT SECTION
   ========================================================= */
.faq-split-section {
  background: #fff;
  padding: 100px 0;
}

.faq-split-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ----- Left Image ----- */
.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ----- Right Content ----- */
.faq-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Plus/Minus Icons */
.faq-question .icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: #d4af37;
  transition: transform 0.3s ease;
}

.faq-question .icon::before {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}

.faq-question .icon::after {
  width: 2px;
  height: 14px;
  top: 0;
  left: 6px;
}

/* When Active → turn into minus */
.faq-item.active .faq-question .icon::after {
  transform: scaleY(0);
}

/* Expand/Collapse */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  padding-right: 10px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  margin-top: 10px;
}

.faq-item.active .faq-question {
  color: #d4af37;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-image {
    order: -1;
    margin-bottom: 40px;
  }
  .faq-content h2 {
    text-align: center;
  }
}



/* ********************************************************************************************************************** */


/* =========================================================
   CALL TO ACTION SECTION
   ========================================================= */
.cta-section {
  background-color: #f7f7f7;
  text-align: center;
  padding: 100px 0;
}

.cta-section .container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cta-section p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background-color: #bfa76f; /* gold tone */
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background-color: #d4af37;
  transform: translateY(-3px);
}

.cta-btn i {
  margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-section h3 {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }
}



/* ********************************************************************************************************************** */
