/* ===== HOMEPAGE CUSTOM STYLES ===== */
:root {
  --lgc-gold: #C9A84C;
  --lgc-gold-light: #D4B85E;
  --lgc-navy: #1B2A4A;
  --lgc-navy-dark: #0F1D35;
  --lgc-navy-light: #2A3D62;
  --lgc-white: #FFFFFF;
  --lgc-gray-light: #F5F6F8;
  --lgc-gray: #6B7280;
  --lgc-gray-dark: #374151;
  --lgc-text: #1F2937;
  --lgc-border: #E5E7EB;
  --lgc-font-primary: 'Inter', sans-serif;
  --lgc-font-heading: 'Playfair Display', serif;
  --lgc-radius: 12px;
  --lgc-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --lgc-shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --lgc-transition: all 0.3s ease;
}

.homepage-lgc * { box-sizing: border-box; }
.homepage-lgc .site-header, .homepage-lgc .entry-content { font-family: var(--lgc-font-primary); }

/* ===== HERO SECTION ===== */
.lgc-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15,29,53,0.92) 0%, rgba(27,42,74,0.85) 100%), url('') center/cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
  overflow: hidden;
}
.lgc-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(201,168,76,0.1), transparent);
  pointer-events: none;
}
.lgc-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.lgc-hero-badge {
  display: inline-block;
  color: var(--lgc-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  background: rgba(201,168,76,0.08);
}
.lgc-hero h1 {
  font-family: var(--lgc-font-heading);
  color: var(--lgc-white);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 650px;
}
.lgc-hero p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 30px;
}
.lgc-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.lgc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--lgc-transition);
  cursor: pointer;
  border: none;
  font-family: var(--lgc-font-primary);
}
.lgc-btn-gold {
  background: var(--lgc-gold);
  color: var(--lgc-navy-dark);
}
.lgc-btn-gold:hover { background: var(--lgc-gold-light); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }
.lgc-btn-outline {
  background: transparent;
  color: var(--lgc-white);
  border: 2px solid var(--lgc-white);
}
.lgc-btn-outline:hover { background: var(--lgc-white); color: var(--lgc-navy-dark); }
.lgc-hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.lgc-hero-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}
.lgc-hero-features .feature i { color: var(--lgc-gold); font-size: 16px; }

/* ===== STATS SECTION ===== */
.lgc-stats {
  background: var(--lgc-white);
  padding: 60px 5%;
  border-bottom: 1px solid var(--lgc-border);
}
.lgc-stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.lgc-stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--lgc-radius);
  transition: var(--lgc-transition);
}
.lgc-stat-card:hover { box-shadow: var(--lgc-shadow); transform: translateY(-4px); }
.lgc-stat-card .icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.lgc-stat-card .icon i { color: var(--lgc-gold); font-size: 22px; }
.lgc-stat-card .number {
  font-family: var(--lgc-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--lgc-navy);
  margin-bottom: 4px;
}
.lgc-stat-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--lgc-navy);
  margin-bottom: 8px;
}
.lgc-stat-card p {
  font-size: 14px;
  color: var(--lgc-gray);
  line-height: 1.6;
}

/* ===== SECTION COMMON ===== */
.lgc-section {
  padding: 70px 5%;
}
.lgc-section-title {
  text-align: center;
  margin-bottom: 50px;
}
.lgc-section-title h2 {
  font-family: var(--lgc-font-heading);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--lgc-navy);
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.lgc-section-title h2::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--lgc-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}
.lgc-container { max-width: 1200px; margin: 0 auto; }

/* ===== PRACTICE AREAS ===== */
.lgc-practice {
  background: var(--lgc-gray-light);
}
.lgc-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lgc-practice-card {
  background: var(--lgc-white);
  padding: 30px;
  border-radius: var(--lgc-radius);
  border: 1px solid var(--lgc-border);
  transition: var(--lgc-transition);
  position: relative;
  overflow: hidden;
}
.lgc-practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--lgc-gold);
  transition: height 0.3s ease;
}
.lgc-practice-card:hover::before { height: 100%; }
.lgc-practice-card:hover { box-shadow: var(--lgc-shadow-lg); transform: translateY(-4px); }
.lgc-practice-card .card-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lgc-practice-card .card-icon i { color: var(--lgc-gold); font-size: 20px; }
.lgc-practice-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--lgc-navy);
  margin-bottom: 10px;
}
.lgc-practice-card p {
  font-size: 14px;
  color: var(--lgc-gray);
  line-height: 1.7;
}

/* ===== ABOUT ADVOCATE ===== */
.lgc-about {
  background: var(--lgc-navy);
  position: relative;
  overflow: hidden;
}
.lgc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lgc-about-image {
  position: relative;
}
.lgc-about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--lgc-radius);
  box-shadow: var(--lgc-shadow-lg);
}
.lgc-about-image::after {
  content: '';
  position: absolute;
  bottom: -15px; right: -15px;
  width: 120px; height: 120px;
  border: 3px solid var(--lgc-gold);
  border-radius: var(--lgc-radius);
  z-index: -1;
}
.lgc-about-content .badge {
  display: inline-block;
  color: var(--lgc-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lgc-about-content h2 {
  font-family: var(--lgc-font-heading);
  color: var(--lgc-white);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.lgc-about-content p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.lgc-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.lgc-about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  padding: 8px 0;
}
.lgc-about-list li i { color: var(--lgc-gold); font-size: 14px; }
.lgc-btn-gold-outline {
  background: transparent;
  color: var(--lgc-gold);
  border: 2px solid var(--lgc-gold);
}
.lgc-btn-gold-outline:hover { background: var(--lgc-gold); color: var(--lgc-navy-dark); }

/* ===== CONSULTATION PROCESS ===== */
.lgc-process {
  background: var(--lgc-white);
}
.lgc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.lgc-process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 12%;
  width: 76%; height: 2px;
  background: linear-gradient(90deg, var(--lgc-gold), var(--lgc-gold-light), var(--lgc-gold));
  z-index: 0;
}
.lgc-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lgc-process-step .step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--lgc-gold);
  margin-bottom: 10px;
}
.lgc-process-step .step-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--lgc-white);
  border: 3px solid var(--lgc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--lgc-transition);
}
.lgc-process-step .step-icon i { color: var(--lgc-gold); font-size: 24px; }
.lgc-process-step:hover .step-icon { background: var(--lgc-gold); }
.lgc-process-step:hover .step-icon i { color: var(--lgc-white); }
.lgc-process-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--lgc-navy);
  margin-bottom: 8px;
}
.lgc-process-step p {
  font-size: 13px;
  color: var(--lgc-gray);
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.lgc-why {
  background: var(--lgc-navy);
  color: var(--lgc-white);
}
.lgc-why .lgc-section-title h2 { color: var(--lgc-white); }
.lgc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.lgc-why-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--lgc-radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--lgc-transition);
}
.lgc-why-card:hover { border-color: var(--lgc-gold); background: rgba(201,168,76,0.05); }
.lgc-why-card .card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.lgc-why-card .card-icon i { color: var(--lgc-gold); font-size: 22px; }
.lgc-why-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--lgc-white);
}
.lgc-why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.lgc-faq {
  background: var(--lgc-gray-light);
}
.lgc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lgc-faq-item {
  background: var(--lgc-white);
  border-radius: 10px;
  border: 1px solid var(--lgc-border);
  overflow: hidden;
  transition: var(--lgc-transition);
}
.lgc-faq-item:hover { border-color: var(--lgc-gold); }
.lgc-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: var(--lgc-navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--lgc-font-primary);
}
.lgc-faq-question i { color: var(--lgc-gold); font-size: 14px; transition: var(--lgc-transition); }
.lgc-faq-item.active .lgc-faq-question i { transform: rotate(45deg); }
.lgc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.lgc-faq-item.active .lgc-faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}
.lgc-faq-answer p {
  font-size: 14px;
  color: var(--lgc-gray);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.lgc-cta {
  background: linear-gradient(135deg, var(--lgc-gold) 0%, var(--lgc-gold-light) 100%);
  padding: 50px 5%;
  text-align: center;
}
.lgc-cta h2 {
  font-family: var(--lgc-font-heading);
  color: var(--lgc-navy-dark);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}
.lgc-cta p {
  color: var(--lgc-navy);
  font-size: 16px;
  margin-bottom: 24px;
}
.lgc-btn-navy {
  background: var(--lgc-navy);
  color: var(--lgc-white);
}
.lgc-btn-navy:hover { background: var(--lgc-navy-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(27,42,74,0.4); }

/* ===== FOOTER ===== */
.lgc-footer {
  background: var(--lgc-navy-dark);
  padding: 60px 5% 0;
}
.lgc-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lgc-footer h3 {
  color: var(--lgc-gold);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.lgc-footer p, .lgc-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  transition: var(--lgc-transition);
}
.lgc-footer a:hover { color: var(--lgc-gold); }
.lgc-footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.lgc-footer-links li { padding: 4px 0; }
.lgc-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.lgc-footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lgc-white);
  font-size: 16px;
}
.lgc-footer-social a:hover { background: var(--lgc-gold); color: var(--lgc-navy-dark); }
.lgc-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.lgc-footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.lgc-footer-bottom a { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
  .lgc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lgc-practice-grid { grid-template-columns: repeat(2, 1fr); }
  .lgc-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .lgc-about-image img { height: 350px; }
  .lgc-process-grid { grid-template-columns: repeat(2, 1fr); }
  .lgc-process-grid::before { display: none; }
  .lgc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .lgc-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
  .lgc-hero { min-height: 500px; padding: 60px 5% 40px; }
  .lgc-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lgc-stat-card { padding: 20px 12px; }
  .lgc-stat-card .number { font-size: 26px; }
  .lgc-practice-grid { grid-template-columns: 1fr; }
  .lgc-about-image::after { display: none; }
  .lgc-process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .lgc-why-grid { grid-template-columns: 1fr; }
  .lgc-faq-grid { grid-template-columns: 1fr; }
  .lgc-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .lgc-section { padding: 50px 5%; }
}

@media (max-width: 480px) {
  .lgc-hero { min-height: auto; padding: 50px 5% 35px; }
  .lgc-hero-btns { flex-direction: column; }
  .lgc-hero-btns .lgc-btn { width: 100%; justify-content: center; }
  .lgc-hero-features { flex-direction: column; gap: 14px; }
  .lgc-stats-grid { grid-template-columns: 1fr; }
  .lgc-process-grid { grid-template-columns: 1fr; }
  .lgc-footer-bottom { flex-direction: column; text-align: center; }
  .lgc-section { padding: 40px 4%; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.lgc-animate { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.lgc-delay-1 { animation-delay: 0.1s; }
.lgc-delay-2 { animation-delay: 0.2s; }
.lgc-delay-3 { animation-delay: 0.3s; }
.lgc-delay-4 { animation-delay: 0.4s; }
