/* =====================
   ROOT VARIABLES
   ===================== */
:root {
  --green:       #2d6a27;
  --green-dark:  #1e4a1a;
  --green-light: #3d8a36;
  --green-pale:  #edf5ec;
  --gold:        #8b6914;
  --gold-light:  #c9a84c;
  --text:        #1a1a1a;
  --text-muted:  #555;
  --white:       #fff;
  --off-white:   #f8faf7;
  --border:      #d4e6d1;
}

/* =====================
   GLOBAL
   ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }
a { text-decoration: none; }
.text-green   { color: var(--green) !important; }
.text-gold    { color: var(--gold-light) !important; }
.text-white-70{ color: rgba(255,255,255,.7) !important; }
.bg-off-white { background: var(--off-white) !important; }
.lh-lg        { line-height: 1.85; }
.border-white-10 { border-color: rgba(255,255,255,.1) !important; }
.section-pad  { padding: 80px 0; }

/* =====================
   SECTION LABELS
   ===================== */
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-tag-light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 8px;
}
.section-title em { color: var(--green); font-style: normal; }
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold-light));
  border-radius: 2px;
  margin: 12px 0 20px;
}
.section-divider-gold {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px;
}

/* =====================
   NAVBAR
   ===================== */
.ae-navbar {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 0;
  height: 100px;
}
.ae-navbar .navbar-brand { gap: 10px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}
.brand-tag {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.ae-navbar .nav-link {
  color: var(--text-muted) !important;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all .2s;
}
.ae-navbar .nav-link:hover {
  color: var(--green) !important;
  background: var(--green-pale);
}
.btn-ae-outline {
  border: 2px solid var(--green);
  color: var(--green);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
}
.btn-ae-outline:hover {
  background: var(--green);
  color: #fff;
}
.navbar-toggler { border: none; box-shadow: none !important; }

/* =====================
   HERO
   ===================== */
.hero-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #4a9242 100%);
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
}
.hero-title em { color: var(--gold-light); font-style: normal; }
.hero-desc { color: rgba(255,255,255,.85); font-size: 15.5px; line-height: 1.8; }
.btn-hero-primary {
  background: #fff;
  color: var(--green);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
}
.btn-hero-primary:hover { background: var(--green-pale); color: var(--green-dark); }
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all .2s;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.hero-stat-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 16px 8px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 2px;
}
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.hero-card-title { color: #fff; font-family: 'Playfair Display', serif; font-size: 18px; }
.hero-client-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
}
.hero-client-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}
.hero-client-pill .client-name { color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500; }
.hero-client-pill .client-type { color: rgba(255,255,255,.5); font-size: 11px; }

/* =====================
   COMPANY OVERVIEW
   ===================== */
.overview-stat-card {
  background: var(--green-pale);
  border-radius: 12px;
  padding: 1.25rem;
}
.overview-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}
.overview-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 2px;
}
.overview-feature-card {
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.overview-feature-card h5 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.overview-feature-card p  { font-size: 13.5px; line-height: 1.65; margin: 0; }
.overview-icon            { font-size: 2rem; flex-shrink: 0; }
.overview-dark { background: var(--green-dark); color: #fff; }
.overview-dark h5, .overview-dark p { color: rgba(255,255,255,.85); }
.overview-dark h5 { color: #fff; }
.overview-gold { background: linear-gradient(135deg,#fdf8ec,#f5e7c0); }
.overview-gold h5 { color: var(--text); }
.overview-gold p  { color: var(--text-muted); }
.overview-green { background: var(--green-pale); }
.overview-green h5 { color: var(--text); }
.overview-green p  { color: var(--text-muted); }

/* =====================
   VALUES
   ===================== */
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.value-card[data-num="1"]::before { background: var(--green); }
.value-card[data-num="2"]::before { background: var(--gold); }
.value-card[data-num="3"]::before { background: var(--green-light); }
.value-card[data-num="4"]::before { background: var(--gold-light); }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(45,106,39,.12); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px;
  color: var(--green);
}
.value-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.value-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =====================
   SERVICES
   ===================== */
.service-card {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all .3s;
}
.service-card:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(45,106,39,.1); }
.service-icon {
  width: 50px; height: 50px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: var(--green);
}
.service-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.service-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* =====================
   CLIENTS SECTION
   ===================== */
.clients-section { background: var(--green-dark); padding: 80px 0; }
.client-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .2s;
}
.client-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.client-card i { font-size: 20px; color: var(--gold-light); }
.client-card strong { display: block; color: #fff; font-size: 14px; }
.client-card span  { color: rgba(255,255,255,.55); font-size: 12px; }

/* =====================
   VISION & MISSION
   ===================== */
.vm-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.vm-green { background: linear-gradient(135deg, var(--green-pale), #d4edcc); }
.vm-gold  { background: linear-gradient(135deg, #fdf8ec, #f5e7c0); }
.vm-icon  { font-size: 3rem; margin-bottom: 1rem; }
.vm-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text); margin-bottom: .75rem; }
.vm-card p  { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* =====================
   STRENGTH
   ===================== */
.strength-list { list-style: none; padding: 0; }
.strength-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  align-items: flex-start;
  line-height: 1.55;
}
.strength-list li:last-child { border: none; }
.strength-list li i { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.strength-visual {
  background: linear-gradient(135deg, var(--green-pale), #c8e6c4);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
}
.strength-visual-icon { font-size: 5rem; margin-bottom: 1rem; }
.strength-visual h5 { color: var(--green); font-size: 16px; font-weight: 600; margin-bottom: .5rem; }
.strength-visual p  { color: var(--text-muted); font-size: 13.5px; line-height: 1.65; margin: 0; }

/* =====================
   PRE-LEGAL PROCESS TABLE
   ===================== */
.process-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.process-table-head {
  display: grid;
  grid-template-columns: 56px 180px 1fr 160px;
  background: var(--green-dark);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.process-table-row {
  display: grid;
  grid-template-columns: 56px 180px 1fr 160px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background .2s;
}
.process-table-row:last-child { border-bottom: none; }
.process-table-row:hover { background: var(--green-pale); }
.row-danger:hover { background: #fef2f2 !important; }

.col-step   { padding: 16px; text-align: center; background: var(--green-pale); align-self: stretch; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border); }
.col-stage  { padding: 16px; display: flex; align-items: center; gap: 10px; border-right: 1px solid var(--border); }
.col-action { padding: 16px; font-size: 13px; color: var(--text-muted); line-height: 1.6; border-right: 1px solid var(--border); }
.col-method { padding: 16px; }

/* header cols */
.process-table-head .col-step,
.process-table-head .col-stage,
.process-table-head .col-action,
.process-table-head .col-method {
  padding: 14px 16px;
  background: transparent;
  border-right: 1px solid rgba(255,255,255,.12);
}
.process-table-head .col-step { border-right: 1px solid rgba(255,255,255,.12); }

.step-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.badge-green { background: var(--green); }
.badge-red   { background: #dc2626; }

.step-icon   { font-size: 20px; flex-shrink: 0; }
.icon-green  { color: var(--green); }
.icon-red    { color: #dc2626; }

.col-stage strong { font-size: 13.5px; font-weight: 600; }
.row-danger .col-step { background: #fef2f2; }

.method-badge {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}
.badge-green    { background: var(--green-pale); color: var(--green); }
.badge-gold,
.badge-Attorney\ Counsel,
.badge-On-Ground\ Visit,
.badge-Written\ ·\ Telephonic { background: #fdf8ec; color: var(--gold); }
.badge-Legal\ Action { background: #fef2f2; color: #b91c1c; }

/* Override — use inline style on method badges instead */
.method-green { background: var(--green-pale); color: var(--green); }
.method-gold  { background: #fdf8ec; color: var(--gold); }
.method-red   { background: #fef2f2; color: #b91c1c; }

.process-note {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.process-note i { color: var(--green); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.process-note p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
  .process-table-head { display: none; }
  .process-table-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }
  .col-step   { grid-row: 1 / 3; }
  .col-stage  { padding: 12px 12px 4px; border-right: none; }
  .col-action { padding: 0 12px 8px; border-right: none; grid-column: 2; }
  .col-method { padding: 0 12px 12px; grid-column: 2; }
}

/* =====================
   WHY CHOOSE US
   ===================== */
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all .2s;
  height: 100%;
}
.why-card:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(45,106,39,.08); }
.why-card i { font-size: 22px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.why-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =====================
   CONTACT
   ===================== */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.ae-input {
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-family: 'Inter', sans-serif !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.ae-input:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(45,106,39,.08) !important;
  outline: none !important;
}
.btn-ae-submit {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
  cursor: pointer;
}
.btn-ae-submit:hover { background: var(--green-dark); color: #fff; }
.contact-info-card {
  background: var(--green-dark);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
}
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; }
.contact-info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-row i    { font-size: 18px; color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.contact-info-row p,
.contact-info-row a    { color: rgba(255,255,255,.75); font-size: 13.5px; line-height: 1.65; margin: 0; }
.contact-info-row a:hover { color: #fff; }
.btn-wa {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-wa:hover { background: rgba(255,255,255,.18); color: #fff; }

/* =====================
   FOOTER
   ===================== */
.ae-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 24px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
}
.footer-desc {
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 280px;
  color: rgba(255,255,255,.6);
}
.footer-heading {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-row i { color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-row p,
.footer-contact-row a { color: rgba(255,255,255,.65); font-size: 13.5px; line-height: 1.65; margin: 0; }
.footer-contact-row a:hover { color: #fff; }
.footer-hr   { border-color: rgba(255,255,255,.1); margin: 2rem 0 1.5rem; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer-copy a { color: rgba(255,255,255,.55); }
.footer-copy a:hover { color: #fff; }

/* =====================
   FLOATING BUTTONS
   ===================== */
.float-btn {
  position: fixed;
  right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s;
  z-index: 998;
}
.float-wa   { bottom: 90px; background: #25d366; }
.float-call { bottom: 28px; background: var(--green); }
.float-btn:hover { transform: scale(1.1); }
.float-btn i { font-size: 22px; color: #fff; }

/* =====================
   SUCCESS / ERROR MODALS
   ===================== */
.success-icon i { font-size: 4rem; color: var(--green); }
.error-icon i   { font-size: 4rem; color: #dc2626; }
.modal-content  { border-radius: 16px !important; }