/* =============================================
   Eaglewings Allied Health Staffing Agency
   Global Stylesheet — v4.0
   ============================================= */

:root {
  --orange: #E05A28;
  --orange-light: #F7941D;
  --purple: #8B5CC2;
  --purple-mid: #7B4FB5;
  --purple-dark: #6A42A0;
  --purple-deep: #4A2D75;
  --navy: #1A1A2E;
  --cream: #FFFAF6;
  --peach: #FFF5F0;
  --lavender: #F8F4FC;
  --tan: #F5F0EB;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-400: #A1A1AA;
  --gray-600: #52525B;
  --gray-800: #27272A;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,92,194,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--navy); }
.nav-logo img { height: 42px; width: 42px; border-radius: 10px; object-fit: contain; }
.nav-logo-text { font-weight: 700; font-size: 1rem; letter-spacing: -.02em; }
.nav-logo-text span { color: var(--purple); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray-600); font-size: .85rem; font-weight: 500; transition: color .3s; }
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: .55rem 1.2rem; border-radius: 8px;
  font-weight: 600; transition: all .3s !important;
  box-shadow: 0 2px 8px rgba(224,90,40,0.25);
}
.nav-cta:hover { background: #c94e20 !important; transform: translateY(-1px); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 10px;
  padding: .5rem 0; min-width: 220px;
  box-shadow: var(--shadow-lg); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: .5rem 1.2rem; font-size: .85rem; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--purple); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; padding: 2rem; overflow-y: auto; }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: .75rem 0; font-size: 1rem; color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--gray-200); }
.mobile-menu a:last-child { border: none; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--orange); color: #fff;
  padding: .9rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .3s; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(224,90,40,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(224,90,40,0.35); }
.btn-secondary {
  background: rgba(139,92,194,0.08); color: var(--purple);
  padding: .9rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .3s; border: 1px solid rgba(139,92,194,0.2);
}
.btn-secondary:hover { background: rgba(139,92,194,0.12); }

/* ---- SECTIONS ---- */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--orange); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-600);
  max-width: 640px; margin: 0 auto; line-height: 1.7; font-weight: 300;
}

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--peach) 40%, var(--lavender) 70%, var(--peach) 100%);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy); margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem; color: var(--gray-600);
  max-width: 640px; margin: 0 auto; line-height: 1.7; font-weight: 300;
}
.breadcrumb {
  font-size: .8rem; color: var(--gray-400); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- CARDS ---- */
.card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--gray-200);
  transition: all .3s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  margin-bottom: 1.25rem; display: flex;
  align-items: center; justify-content: center; font-size: 1.4rem;
}
.card-icon.purple { background: rgba(139,92,194,0.1); }
.card-icon.orange { background: rgba(224,90,40,0.1); }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--navy); }
.card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* ---- GRID LAYOUTS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }

/* ---- CREDENTIALS BAR ---- */
.credentials {
  background: var(--peach);
  padding: 2rem 0;
  border-top: 1px solid rgba(224,90,40,0.08);
  border-bottom: 1px solid rgba(224,90,40,0.08);
}
.credentials-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.credential-item {
  display: flex; align-items: center; gap: .6rem;
  color: var(--gray-600); font-size: .8rem; font-weight: 500;
  letter-spacing: .03em; text-transform: uppercase; white-space: nowrap;
}
.credential-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ---- HERO (homepage) ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(160deg, var(--cream) 0%, var(--peach) 40%, var(--lavender) 70%, var(--peach) 100%);
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -25%;
  width: 70%; height: 160%;
  background: radial-gradient(ellipse, rgba(224,90,40,0.06) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-5%,3%) scale(1.1); }
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(139,92,194,0.08);
  border: 1px solid rgba(139,92,194,0.15);
  padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem; color: var(--purple);
  font-size: .8rem; font-weight: 600;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--navy); line-height: 1.1;
  margin-bottom: 1.5rem; font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-sub {
  color: var(--gray-600); font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 2.5rem; max-width: 520px; font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.hero-stat {
  text-align: center; padding: 1.2rem .5rem;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--orange); }
.hero-stat-label {
  font-size: .75rem; color: var(--gray-600); margin-top: .25rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: .05em;
}
.hero-image {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 20px 60px rgba(139,92,194,0.15);
}
.hero-image img { width: 100%; height: auto; object-fit: cover; min-height: 400px; }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.5) 0%, transparent 40%);
  display: flex; align-items: flex-end; padding: 2rem;
}
.hero-image-overlay p {
  color: #fff; font-size: .9rem; font-weight: 500;
  background: rgba(224,90,40,0.85);
  padding: .5rem 1rem; border-radius: 8px;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--gray-200); transition: all .4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  transform: scaleX(0); transition: transform .4s; transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }

/* ---- FEATURE SPLITS ---- */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 4rem;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.feature-img img {
  width: 100%; height: 350px; object-fit: cover;
  transition: transform .6s;
}
.feature-img:hover img { transform: scale(1.03); }
.feature-text h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1rem; color: var(--navy); }
.feature-text p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; font-size: .95rem; }
.feature-tag {
  display: inline-block; background: rgba(139,92,194,0.08);
  color: var(--purple); padding: .3rem .8rem; border-radius: 6px;
  font-size: .8rem; font-weight: 600; margin-right: .5rem; margin-bottom: .5rem;
}

/* ---- CLIENT CARDS ---- */
.client-card {
  background: #fff; border-radius: var(--radius-md); padding: 1.4rem;
  border: 1px solid var(--gray-200); display: flex;
  align-items: center; gap: .75rem; transition: all .3s;
}
.client-card:hover { box-shadow: var(--shadow-md); }
.client-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; background: var(--orange); }
.client-info h4 { font-size: .9rem; font-weight: 600; color: var(--navy); }
.client-info p { font-size: .75rem; color: var(--gray-400); margin-top: .15rem; }

/* ---- HUB CARDS ---- */
.hub-card {
  background: var(--gray-50); border-radius: 14px; padding: 1.5rem;
  border: 1px solid var(--gray-200); text-align: center;
  transition: all .3s; display: block;
}
.hub-card:hover {
  background: var(--cream); border-color: rgba(139,92,194,0.2);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.hub-card-icon { font-size: 2rem; margin-bottom: .75rem; }
.hub-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.hub-card p { font-size: .78rem; color: var(--gray-400); line-height: 1.5; }

/* ---- WHY US ---- */
.why-card {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--gray-200); display: flex; gap: 1.25rem;
  transition: all .3s;
}
.why-card:hover { box-shadow: var(--shadow-lg); background: #fff; }
.why-num {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.why-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }

/* ---- ABOUT CERTS ---- */
.about-cert {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 1.5rem; text-align: center; transition: all .3s;
}
.about-cert:hover { box-shadow: var(--shadow-md); border-color: rgba(139,92,194,0.2); }
.about-cert-icon { font-size: 2rem; margin-bottom: .75rem; }
.about-cert h4 { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.about-cert p { font-size: .75rem; color: var(--gray-400); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--peach) 0%, #FFEEE4 40%, var(--lavender) 100%);
  padding: 5rem 2rem; text-align: center;
  border-top: 1px solid rgba(224,90,40,0.1);
  border-bottom: 1px solid rgba(224,90,40,0.1);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); margin-bottom: 1rem;
}
.cta-section p {
  color: var(--gray-600); font-size: 1.1rem; margin-bottom: 2rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--tan); padding: 4rem 2rem 2rem; color: var(--gray-600); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand h3 { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-nap { font-size: .8rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--navy); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: var(--gray-600); font-size: .85rem;
  margin-bottom: .6rem; transition: color .3s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08); padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; font-size: .8rem; color: var(--gray-400);
}

/* ---- CONTENT BLOCKS (subpages) ---- */
.content-section { padding: 4rem 2rem; }
.content-inner { max-width: 900px; margin: 0 auto; }
.content-inner h2 {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--navy); margin: 2.5rem 0 1rem; line-height: 1.2;
}
.content-inner h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .75rem; }
.content-inner p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }
.content-inner ul, .content-inner ol {
  color: var(--gray-600); margin: 1rem 0 1.5rem 1.5rem; line-height: 1.8;
}
.content-inner li { margin-bottom: .5rem; font-size: .95rem; }
.content-inner a { color: var(--orange); font-weight: 500; }
.content-inner a:hover { text-decoration: underline; }

/* ---- STEP CARDS ---- */
.step-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: all .3s; margin-bottom: 1.5rem;
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.step-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* ---- RESOURCE CARDS ---- */
.resource-card {
  background: #fff; border-radius: 14px; padding: 1.5rem;
  border: 1px solid var(--gray-200); display: flex;
  align-items: center; gap: 1rem; transition: all .3s;
}
.resource-card:hover { box-shadow: var(--shadow-md); border-color: rgba(139,92,194,0.2); }
.resource-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(139,92,194,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.resource-card h4 { font-size: .9rem; font-weight: 600; }
.resource-card p { font-size: .78rem; color: var(--gray-400); margin-top: .15rem; }

/* ---- LOCATION CARDS ---- */
.location-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all .3s;
}
.location-card:hover { box-shadow: var(--shadow-lg); }
.location-card-body { padding: 2rem; }
.location-badge {
  display: inline-block; background: var(--orange); color: #fff;
  padding: .25rem .75rem; border-radius: 6px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem;
}
.location-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.location-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }
.location-detail { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; font-size: .85rem; color: var(--gray-600); }

/* ---- FAQ ACCORDION ---- */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.5rem 0; text-align: left; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  font-family: var(--font-body); display: flex;
  justify-content: space-between; align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--orange); transition: transform .3s; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-answer-inner { padding: 0 0 1.5rem; color: var(--gray-600); line-height: 1.7; font-size: .95rem; }
.faq-item.active .faq-answer { max-height: 500px; }

/* ---- CONTACT FORM ---- */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .8rem 1rem;
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color .3s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--purple);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ---- RESPONSIVE ---- */
@media (max-width: 968px) {
  .hero-inner, .feature-split, .grid-2 { grid-template-columns: 1fr; }
  .hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .feature-split.reverse { direction: ltr; }
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; }
  .credentials-inner { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp .8s ease forwards;
}
.fade-in:nth-child(2) { animation-delay: .1s; }
.fade-in:nth-child(3) { animation-delay: .2s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
