/* ── SDA IMMIGRATION LAWYERS — SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #1f5c38;
  --green-dark: #163f28;
  --green-light:#2a7349;
  --grey:       #6b6b6b;
  --grey-light: #a0a0a0;
  --border:     #e0e0e0;
  --bg:         #ffffff;
  --bg-soft:    #f8f8f6;
  --text:       #1a1a1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo img { height: 60px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown > a svg { transition: transform 0.2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  min-width: 220px;
  z-index: 200;
  border-radius: 3px;
  overflow: hidden;
}
.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block !important;
  padding: 11px 20px !important;
  border-bottom: 1px solid var(--border);
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 14px !important;
  color: var(--text) !important;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--green) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-size: 14px;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 40px 80px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 100%;
  background: rgba(255,255,255,0.02);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb a { text-decoration: none; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: rgba(255,255,255,0.6); }

.page-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.3);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ── COMMON SECTION ── */
section { padding: 88px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 14px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 18px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
}

.section-desc {
  color: var(--grey);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ── CONTENT GRID ── */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 72px;
  align-items: start;
}

.prose p {
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.85;
}
.prose p:last-child { margin-bottom: 0; }

.prose h3 {
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
}

.prose ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.prose ul li {
  position: relative;
  padding-left: 20px;
  color: var(--grey);
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px; height: 1.5px;
  background: var(--green);
}

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 3px;
}
.sidebar-card.accent {
  background: var(--green);
  border-color: var(--green);
}
.sidebar-card.accent h4,
.sidebar-card.accent p,
.sidebar-card.accent li { color: rgba(255,255,255,0.85); }
.sidebar-card.accent h4 { color: #fff; margin-bottom: 10px; }
.sidebar-card.accent .btn-white {
  display: inline-block;
  margin-top: 16px;
  background: #fff;
  color: var(--green-dark);
  text-decoration: none;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.sidebar-card.accent .btn-white:hover { background: var(--bg-soft); }

.sidebar-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 14px;
}

.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-card ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 14px;
  color: var(--grey);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.sidebar-card ul li:last-child a { border-bottom: none; }
.sidebar-card ul li a:hover { color: var(--green); }
.sidebar-card ul li a.active { color: var(--green); font-weight: 500; }
.sidebar-card ul li a svg { opacity: 0.4; }
.sidebar-card ul li a:hover svg { opacity: 0.8; }

.sidebar-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 12px;
}
.sidebar-card p:last-of-type { margin-bottom: 0; }

/* ── STEPS / PROCESS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.step-box {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-box:last-child { border-right: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}

.step-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step-box p { font-size: 13px; color: var(--grey); line-height: 1.7; }

/* ── FAQ ── */
.faq-list { margin-top: 0; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  gap: 20px;
}
.faq-q:hover { color: var(--green); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--grey-light); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--green); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; color: var(--grey); line-height: 1.8; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: 8px; font-size: clamp(26px, 3vw, 36px); }
.cta-band p { color: var(--grey); max-width: 500px; }
.cta-band .btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-band .btn-primary:hover { background: var(--green-dark); }

/* ── FOOTER ── */
footer { background: #0f3320; padding: 56px 40px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .sda {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: 0.04em;
}
.footer-brand .firm {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block; margin-top: 2px; margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 260px; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { text-decoration: none; font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-box:nth-child(2) { border-right: none; }
  .step-box:nth-child(3) { border-top: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 64px 24px; }
  nav .nav-inner { padding: 0 24px; }
  .page-hero { padding: 110px 24px 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-box { border-right: none; border-bottom: 1px solid var(--border); }
  .step-box:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 48px 24px 24px; }
  .mobile-menu { padding: 20px 24px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
