/* ============================================================
   Eagle Immigration Law — Main Stylesheet
   Colors: Navy #1A2D6B | Gold #C9A84C | White #FFFFFF
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1A2D6B;
  --navy-dark:   #111F4D;
  --navy-light:  #243A85;
  --gold:        #C9A84C;
  --gold-dark:   #A8882D;
  --gold-light:  #E2C46A;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --light-gray:  #EAECF0;
  --mid-gray:    #6B7280;
  --text-dark:   #1A1A2E;
  --text-body:   #374151;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.25s ease;
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--light { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.85); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 12px auto 0;
}

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-block { display: block; width: 100%; margin-top: 12px; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 45, 107, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-eagle { font-size: 1.5rem; }
.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-text:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,.07);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1E3575 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-credentials {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
}
.hero-credentials span { white-space: nowrap; }

/* ---- HIGHLIGHTS ---- */
.highlights {
  padding: 80px 0;
  background: var(--white);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.highlight-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.highlight-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.highlight-card--featured h3 { color: var(--white); }
.highlight-card--featured p { color: rgba(255,255,255,.8); }
.highlight-card--featured .highlight-icon {
  background: rgba(201,168,76,.2);
  color: var(--gold-light);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(26,45,107,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.highlight-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.highlight-card p {
  color: var(--mid-gray);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- SERVICES GRID (HOME) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  display: block;
  padding: 32px 24px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card--featured {
  border-color: var(--navy);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,.8); }
.service-card--featured .service-link { color: var(--gold-light); }
.service-card--featured:hover { border-color: var(--gold); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p {
  color: var(--mid-gray);
  font-size: .9rem;
  margin-bottom: 16px;
  line-height: 1.55;
}
.service-link { font-size: .88rem; font-weight: 700; color: var(--navy); }

/* ---- ABOUT SNIPPET ---- */
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.about-snippet-text h2 { color: var(--white); margin-bottom: 16px; }
.about-snippet-text .section-label { color: var(--gold-light); }
.about-snippet-text p { color: rgba(255,255,255,.82); margin-bottom: 28px; font-size: 1.05rem; }

.about-snippet-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}
.badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}
.badge-year {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.badge-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.badge-sub { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ---- PROCESS ---- */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}
.process-step {
  flex: 1;
  padding: 32px 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
}
.process-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 40px;
}
.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  margin-bottom: 12px;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-content p {
  color: var(--mid-gray);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}
.process-cta { text-align: center; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 130px 24px 70px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- SERVICES NAV ---- */
.services-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,.2);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.services-nav ul {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.services-nav ul::-webkit-scrollbar { display: none; }
.services-nav a {
  display: block;
  padding: 16px 20px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.services-nav a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* ---- SERVICE DETAIL ---- */
.service-section { border-bottom: 1px solid var(--light-gray); }

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--light-gray);
}
.service-detail-icon {
  width: 64px;
  height: 64px;
  background: rgba(26,45,107,.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.section--light .service-detail-icon { background: rgba(26,45,107,.06); }
.service-detail-header h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 6px; }
.service-detail-tagline {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: .95rem;
  margin: 0;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.service-detail-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 28px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.service-detail-content h3:first-child { margin-top: 0; }
.service-detail-content p { color: var(--text-body); font-size: .97rem; line-height: 1.7; }
.service-detail-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: .97rem;
  line-height: 1.7;
}
.service-detail-content ul li { margin-bottom: 6px; }
.service-detail-content em { color: var(--navy); font-style: italic; }

.service-detail-sidebar { position: sticky; top: 130px; }

.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.section--light .sidebar-card { background: var(--white); }
.sidebar-card h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 12px;
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: .9rem;
  color: var(--text-body);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
.sidebar-card ul li strong { color: var(--navy); }

/* ---- ATTORNEY PROFILE ---- */
.profile-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.profile-sidebar { position: sticky; top: 90px; }

.profile-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 20px;
}
.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 auto 16px;
  letter-spacing: -.02em;
}
.profile-name { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.profile-title { font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: 4px; }
.profile-firm { font-size: .82rem; color: var(--gold-light); }

.profile-meta-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.profile-meta-card h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 8px;
}
.profile-meta-card ul { list-style: none; }
.profile-meta-card ul li {
  font-size: .88rem;
  color: var(--text-body);
  padding: 3px 0;
}

.profile-section { margin-bottom: 48px; }
.profile-section h2 {
  color: var(--navy);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}
.profile-section p { font-size: 1rem; line-height: 1.75; color: var(--text-body); }

.profile-section--featured {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.profile-section--featured h2 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.15);
}
.profile-section--featured p { color: rgba(255,255,255,.85); }
.defender-icon { font-size: 2.5rem; margin-bottom: 16px; }

.specializations-grid { display: grid; gap: 20px; }
.specialization-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
}
.spec-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.specialization-item h4 { color: var(--navy); margin-bottom: 6px; }
.specialization-item p { font-size: .9rem; color: var(--mid-gray); margin: 0; }

.profile-section--award {
  background: linear-gradient(135deg, #FBF7EC 0%, #F5EDDB 100%);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.award-badge-large {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.award-year-large {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  flex-shrink: 0;
}
.award-details h3 { color: var(--navy); margin-bottom: 4px; }
.award-details p { color: var(--text-body); font-size: .95rem; margin-bottom: 8px; }
.award-note { color: var(--mid-gray) !important; font-size: .88rem !important; font-style: italic; }

.why-grid { display: grid; gap: 20px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.why-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .6;
  flex-shrink: 0;
  line-height: 1.2;
}
.why-item h4 { color: var(--navy); margin-bottom: 6px; }
.why-item p { font-size: .9rem; color: var(--mid-gray); margin: 0; }

.leadership-list { list-style: none; }
.leadership-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: .97rem;
  color: var(--text-body);
}
.leadership-list li:last-child { border-bottom: none; }
.leadership-list li strong { color: var(--navy); }

.profile-cta-block {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.profile-cta-block p { margin-bottom: 8px; font-size: 1rem; }
.profile-cta-block .btn { margin-top: 16px; }

/* Contact, FAQ, Footer, and Responsive styles are in style2.css */
/* ---- CONTACT PAGE PLACEHOLDER ---- */
/* .contact-grid — see style2.css */