/* ==========================================================================
   Apex Resilient Flooring — Master Stylesheet
   Brand: Blue & Slate Gray | Clean & Professional
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --blue:        #1d4e89;   /* primary brand blue */
  --blue-dark:   #143a68;
  --blue-light:  #2f6bb3;
  --slate:       #3a4553;   /* slate gray */
  --slate-dark:  #22292f;
  --slate-light: #64748b;
  --steel:       #eef2f7;   /* light background */
  --steel-2:     #dbe4ee;
  --accent:      #f4a825;   /* warm accent for CTAs / highlights */
  --accent-dark: #d98e12;
  --white:       #ffffff;
  --ink:         #1b2733;   /* body text */
  --muted:       #5a6a7a;
  --line:        #d9e1ea;
  --ok:          #2e7d5b;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(20,40,70,.08), 0 1px 2px rgba(20,40,70,.06);
  --shadow:      0 8px 24px rgba(20,40,70,.10);
  --shadow-lg:   0 20px 50px rgba(20,40,70,.16);
  --maxw:        1180px;
  --font:        "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-head:   "Plus Jakarta Sans", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset ------------------------------------------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-light); }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--slate-dark); font-weight: 700; font-family: var(--font-head); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }
section { position: relative; }

/* Layout helpers --------------------------------------------------------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.bg-steel { background: var(--steel); }
.bg-slate { background: var(--slate-dark); color: #e8edf3; }
.bg-blue  { background: var(--blue); color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.bg-slate .eyebrow, .bg-blue .eyebrow { color: var(--accent); }
.section-head { max-width: 720px; margin: 0 auto 52px; }
.section-head.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); }
.bg-slate .lead, .bg-blue .lead { color: #cbd6e2; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: all .2s ease;
  text-align: center;
}
.btn--primary { background: var(--accent); color: #1b2733; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #1b2733; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--ghost:hover { background: var(--blue); color: #fff; }
.btn--white { background: #fff; color: var(--blue); border-color:#fff; }
.btn--white:hover { background: transparent; color:#fff; }
.btn--lg { padding: 16px 32px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* Header ----------------------------------------------------------------- */
.topbar {
  background: var(--slate-dark); color: #cfd8e3;
  font-size: .88rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 18px; align-items: center; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; box-shadow: var(--shadow-sm);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 9px; flex-shrink: 0;
  background: url("../assets/logo-mark.svg") center / contain no-repeat;
  display: grid; place-items: center; color: transparent; font-weight: 800;
  font-size: 1.2rem; letter-spacing: -1px; box-shadow: var(--shadow-sm);
  text-indent: -9999px; overflow: hidden;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong { font-family: var(--font-head); font-size: 1.18rem; color: var(--slate-dark); font-weight: 800; letter-spacing: -.3px; }
.brand-name span { font-size: .72rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li { position: relative; }
.menu > li > a {
  display: block; padding: 10px 14px; color: var(--slate);
  font-weight: 600; font-size: .96rem; border-radius: 8px;
}
.menu > li > a:hover, .menu > li.active > a { color: var(--blue); background: var(--steel); }
.has-drop > a::after { content: "▾"; font-size: .7rem; margin-left: 5px; color: var(--slate-light); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; min-width: 250px; border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--slate); font-size: .93rem; font-weight: 500; }
.dropdown a:hover { background: var(--steel); color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 800; color: var(--slate-dark); white-space: nowrap; font-size: 1.02rem; }
.nav-phone:hover { color: var(--blue); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--slate-dark); border-radius: 3px; transition: .25s; }
.hamburger.open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative; color: #fff;
  background:
    linear-gradient(115deg, rgba(20,40,70,.90) 0%, rgba(29,78,137,.80) 55%, rgba(47,107,179,.62) 100%),
    url("../assets/hero.jpg");
  background-size: cover; background-position: center;
  padding: 96px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero p.lead { color: #dbe6f2; margin-bottom: 26px; max-width: 560px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px; border-radius: 30px; backdrop-filter: blur(4px);
}
.hero-badge .dot { color: var(--accent); font-size: 1rem; }

.hero-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--slate-dark); margin-bottom: 6px; }
.hero-card p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }

/* Forms ------------------------------------------------------------------ */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; color: var(--slate); }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 9px; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,137,.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none; background: #e9f7ef; border: 1px solid #b7e2c8; color: #1c6b45;
  padding: 16px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 600;
}

/* Cards / grids ---------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--steel-2); }
.card .icon {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: var(--steel); color: var(--blue); font-size: 1.5rem; margin-bottom: 18px;
}
/* inline SVG icons (replace emoji) */
.i { width: 1.05em; height: 1.05em; vertical-align: -0.15em; display: inline-block; flex-shrink: 0; align-self: center; }
.card .icon .i { width: 27px; height: 27px; vertical-align: 0; }
.info-item .ico .i { width: 24px; height: 24px; vertical-align: 0; }
.fab-call .i { width: 17px; height: 17px; vertical-align: -0.2em; }
.hero-badge .dot .i { width: 0.95em; height: 0.95em; vertical-align: -0.12em; }
.quote-card .stars .i { width: 1em; height: 1em; vertical-align: -0.12em; }
.footer-contact .i { width: 18px; height: 18px; margin-top: 1px; }
.card h3 { margin-bottom: 8px; font-size: 1.22rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 12px; }
.card .card-link { font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link::after { content: "→"; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* Service card with image band */
.svc-card { overflow: hidden; padding: 0; }
.svc-card .svc-top {
  height: 170px; background: linear-gradient(135deg, var(--slate), var(--blue));
  background-size: cover; background-position: center;
  display: grid; place-items: center; color: #fff; font-size: 2.4rem;
}
.svc-card .svc-body { padding: 24px; }

/* Feature list ----------------------------------------------------------- */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
  content: "✓"; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--ok); color: #fff; display: grid; place-items: center;
  font-size: .8rem; font-weight: 800; margin-top: 2px;
}
.bg-slate .checklist li::before, .bg-blue .checklist li::before { background: var(--accent); color: #1b2733; }

/* Stats ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat .num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--accent); line-height: 1; }
.stat .lbl { font-size: .92rem; color: #cbd6e2; margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }

/* Split media ------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .media {
  border-radius: var(--radius-lg); min-height: 340px; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--slate-dark), var(--blue));
  background-size: cover; background-position: center;
  display: grid; place-items: end stretch; color: #fff; text-align: left;
  padding: 24px; overflow: hidden;
}
.media-label { font-size: 1rem; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.media-label .big { display:block; font-size: 3rem; margin-bottom: 8px; }
/* When a photo is set on .media (inline background-image), add a dark gradient
   so the caption text stays readable at the bottom. */
.split .media.has-photo {
  background-image:
    linear-gradient(to top, rgba(15,25,40,.72) 0%, rgba(15,25,40,.10) 45%, rgba(15,25,40,0) 70%),
    var(--media-photo);
}

/* Steps ------------------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step { display: flex; gap: 20px; }
.step .n {
  counter-increment: step; flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.2rem;
}
.step .n::before { content: counter(step); }
.step h4 { font-size: 1.12rem; margin-bottom: 4px; }
.step p { color: var(--muted); margin: 0; }

/* Pills / tags ----------------------------------------------------------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: var(--steel); color: var(--slate); border: 1px solid var(--steel-2);
  padding: 8px 16px; border-radius: 30px; font-weight: 600; font-size: .9rem;
}
.bg-slate .pill { background: rgba(255,255,255,.08); color:#dfe7f0; border-color: rgba(255,255,255,.14); }

/* Breadcrumbs ------------------------------------------------------------ */
.crumbs { background: var(--steel); padding: 14px 0; font-size: .88rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.crumbs a { color: var(--slate); font-weight: 600; }
.crumbs span { color: var(--slate-light); }

/* Page hero (interior) --------------------------------------------------- */
.page-hero {
  background: linear-gradient(115deg, var(--slate-dark), var(--blue));
  color: #fff; padding: 66px 0;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #cdd9e6; max-width: 640px; font-size: 1.12rem; margin-top: 10px; }

/* Gallery ---------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-item {
  aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--slate), var(--blue-light));
  display: grid; place-items: center; color: rgba(255,255,255,.85); text-align:center; padding: 16px;
  box-shadow: var(--shadow-sm);
}
.gallery-item .g-emoji { font-size: 2.6rem; margin-bottom: 8px; }
.gallery-item .g-cap { font-size: .9rem; font-weight: 600; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .g-cap-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: linear-gradient(to top, rgba(15,25,40,.78), rgba(15,25,40,0));
  color: #fff; text-align: left; font-size: .88rem; font-weight: 600;
  padding: 26px 16px 12px;
}

/* CTA band --------------------------------------------------------------- */
.cta-band { background: linear-gradient(115deg, var(--blue-dark), var(--blue-light)); color: #fff; text-align: center; padding: 70px 0; }
.cta-band h2 { color:#fff; margin-bottom: 12px; }
.cta-band p { color: #dbe6f2; max-width: 620px; margin: 0 auto 26px; font-size: 1.12rem; }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 40px 20px 0; font-size: 1.08rem; font-weight: 700; color: var(--slate-dark);
  position: relative;
}
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--blue); font-weight: 400; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 20px; margin: 0; }

/* Testimonials ----------------------------------------------------------- */
.quote-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.quote-card .stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 10px; }
.quote-card blockquote { font-size: 1.02rem; color: var(--slate); font-style: italic; margin-bottom: 14px; }
.quote-card .who { font-weight: 700; color: var(--slate-dark); font-size: .95rem; }
.quote-card .who span { display:block; font-weight: 500; color: var(--muted); font-size: .86rem; }

/* Area list -------------------------------------------------------------- */
.area-cols { columns: 3; column-gap: 30px; }
.area-cols li { break-inside: avoid; padding: 7px 0; border-bottom: 1px dashed var(--line); font-weight: 600; color: var(--slate); }
.area-cols li::before { content: "📍 "; }

/* Contact info block ----------------------------------------------------- */
.info-list { display: grid; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ico { width: 46px; height: 46px; border-radius: 10px; background: var(--steel); color: var(--blue); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.info-item h4 { margin-bottom: 2px; font-size: 1.05rem; }
.info-item a, .info-item p { color: var(--muted); margin: 0; }
.info-item a:hover { color: var(--blue); }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--slate-dark); color: #aeb9c6; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.site-footer a { color: #aeb9c6; }
.site-footer a:hover { color: var(--accent); }
.footer-links li { padding: 6px 0; }
.footer-brand .brand-name strong { color: #fff; }
.footer-brand .brand-name span { color: #8ea0b4; }
.footer-brand p { margin-top: 16px; font-size: .95rem; max-width: 320px; }
.footer-contact li { padding: 7px 0; display:flex; gap:10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10); margin-top: 48px; padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .86rem; color: #8394a6;
}

/* Floating call button (mobile) ----------------------------------------- */
.fab-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 900; display: none;
  background: var(--accent); color: #1b2733; font-weight: 800;
  padding: 14px 20px; border-radius: 40px; box-shadow: var(--shadow-lg);
  align-items: center; gap: 8px;
}

/* Utilities -------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.text-muted { color: var(--muted); }
.narrow { max-width: 760px; margin-left:auto; margin-right:auto; }
.prose p { color: var(--slate); font-size: 1.04rem; }
.prose h2 { margin: 34px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose ul.checklist { margin: 16px 0; }

/* Scroll reveal ---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* Sticky header elevates once the page is scrolled */
.site-header.scrolled { box-shadow: 0 4px 18px rgba(20,40,70,.12); }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 26px; }
  .area-cols { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .menu, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .menu.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: #fff;
    padding: 12px; box-shadow: var(--shadow-lg); gap: 2px; max-height: 80vh; overflow-y: auto;
  }
  .menu.open > li > a { padding: 12px 14px; }
  .menu.open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 4px 0 4px 14px; min-width: auto;
  }
  .fab-call { display: inline-flex; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .area-cols { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .btn { width: 100%; justify-content: center; }
  .btn-row .btn { width: auto; }
}
