/* ==========================================
   ROOT VARIABLES
========================================== */
:root {
  --black: #111111;
  --yellow: #f4b400;
  --yellow-dark: #d99a00;
  --white: #ffffff;
  --gray: #f6f6f6;
  --text: #202020;
  --muted: #666666;
}


/* ==========================================
   GLOBAL RESET
========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}


/* ==========================================
   HEADER / NAVIGATION
========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  background: transparent;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, .92);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  padding: 12px 7%;
}

.brand {
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
  z-index: 1002;
}

.brand img {
  height: 110px;
  width: auto;
  display: block;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 0;
  background: var(--yellow);
  transition: .25s;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 28px;
  height: 4px;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(244,180,0,.35);
  transition: .3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 13px;
}

.nav-toggle span:nth-child(2) {
  top: 22px;
}

.nav-toggle span:nth-child(3) {
  top: 31px;
}

.nav-toggle.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-contact {
  display: none;
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
  min-height: 100vh;
  position: relative;

  display: flex;
  align-items: center;

  padding: 140px 7% 80px;
  color: var(--white);

  background: linear-gradient(135deg, #090909 0%, #1d1d1d 55%, #3b2d00 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/Sealaway-HERO.webp') center/cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.18rem;
  color: #eeeeee;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 34px;
}

/* ==========================================
   TYPOGRAPHY
========================================== */
.eyebrow {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.eyebrow.dark {
  color: var(--yellow-dark);
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.08;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  margin-bottom: 28px;
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 22px;
  letter-spacing: -.03em;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  font-weight: 700;
}


/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .25s;
  font-weight: 700;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}


/* ==========================================
   FEATURE BAR
========================================== */
.feature-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.feature-bar span {
  padding: 18px 12px;
  border-right: 1px solid rgba(0,0,0,.15);
}


/* ==========================================
   GENERAL SECTIONS
========================================== */
.section {
  padding: 95px 7%;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.services,
.reviews,
.faq {
  background: var(--gray);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}

.split p {
  margin-bottom: 16px;
  color: var(--muted);
}


/* ==========================================
   SERVICES SECTION
========================================== */
.service-grid,
.review-grid,
.process-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 34px;
  border-radius: 22px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  text-align: center;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,180,0,.35);
  box-shadow: 0 24px 50px rgba(0,0,0,.14);
}

.service-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  margin: 0 auto 22px;
  transition: transform .3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

/* ==========================================
   DARK SECTION / PROCESS
========================================== */
.dark-section {
  padding: 95px 7%;
  color: var(--white);

  background:
    url("../assets/images/ashphalt-background.webp")
    center center / cover no-repeat;
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section p {
  color: rgba(255,255,255,.80);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  padding: 34px 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;

  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);

  text-align: center;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    background .3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  background: rgba(0,0,0,.60);
  border-color: rgba(244,180,0,.45);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.process-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  margin: 0 auto 22px;
  transition: transform .3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.08);
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(255,255,255,.75);
}

/* ==========================================
   BEFORE / AFTER SECTION
========================================== */
.before-after-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.before-img,
.after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.after-img {
  width: 100%;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 5px;
  background: #ffffff;
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(255,255,255,.45);
  z-index: 5;
}

.slider-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid #fff;
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 0 8px rgba(255,255,255,.18);
}

.slider-line::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.slider-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  touch-action: pan-y;
}

/* ==========================================
   GALLERY SECTION
========================================== */
.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.gallery-img{
height:230px;
width:100%;
object-fit:cover;
border-radius:18px;
cursor:pointer;
background:#ddd;
box-shadow:0 16px 35px rgba(0,0,0,.12);
transition:.3s;
}

.gallery-img:hover{
transform:scale(1.04);
}

/* Show More Gallery */
.hidden-gallery{
display:none;
}

.hidden-gallery.show-gallery{
display:block;
animation:fadeUp .5s ease;
}

.gallery-button-wrap{
margin-top:40px;
display:flex;
justify-content:center;
}

.gallery-toggle{
border:none;
cursor:pointer;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}


/* ==========================================
   REVIEWS SECTION
========================================== */

.reviews {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../assets/images/reviews-backgroud.webp") center center / cover no-repeat;
}

.reviews .section-heading {
  margin-bottom: 44px;
}

.reviews .eyebrow {
  color: var(--yellow);
}

.reviews h2 {
  color: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

blockquote {
  background: rgba(255,255,255,.96);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  backdrop-filter: blur(4px);

  color: var(--yellow-dark);
  font-weight: 900;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

blockquote:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,.28);
}

blockquote p {
  color: var(--text);
  font-weight: 400;
  margin: 14px 0;
}

blockquote a {
  color: var(--yellow-dark);
  font-weight: 800;
}

blockquote a:hover {
  color: var(--black);
}

cite {
  color: var(--muted);
  font-style: normal;
}

/* ==========================================
   FAQ SECTION
========================================== */
.faq {
  background: var(--gray);
}

.faq-list {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
}

.faq-question {
  width: 100%;
  padding: 22px;
  background: var(--white);
  border: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-question span {
  color: var(--yellow-dark);
  font-size: 1.4rem;
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;

  background: var(--white);
  color: var(--muted);
}

.faq-answer.open {
  display: block;
}


/* ==========================================
   CTA SECTION
========================================== */
.cta {
  position: relative;
  overflow: hidden;

  padding: 90px 7%;
  text-align: center;
  color: var(--white);

  background:
    url("../assets/images/ashphalt-background.webp")
      center center / cover no-repeat;
}

.cta div {
  position: relative;
  z-index: 2;

  max-width: 850px;
  margin: auto;
}

.cta h2 {
  color: var(--white);
}

.cta .eyebrow {
  color: var(--yellow);
}

.cta .btn-primary {
  margin-top: 28px;
}

/* ==========================================
   CONTACT SECTION
========================================== */
.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform .3s ease;
}

.contact-info p:hover .contact-icon {
  transform: scale(1.08);
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--yellow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form textarea,
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font: inherit;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==========================================
   FOOTER
========================================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 30px 6%;
  font-size: .9rem;
}

.footer p {
  margin: 0;
  line-height: 1.7;
}

.footer span {
  margin: 0 10px;
  opacity: .4;
}

.footer a {
  color: var(--yellow);
  text-decoration: none;
  transition: .25s;
}

.footer a:hover {
  color: #fff;
}

/* ==========================================
   POLICY MODAL
========================================== */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.82);
}

.policy-modal.open {
  display: grid;
}

.policy-box {
  position: relative;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--white);
  color: var(--text);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.policy-box h2 {
  color: var(--black);
}

.policy-box p {
  margin-bottom: 16px;
  color: var(--muted);
}

.policy-box a {
  color: var(--yellow-dark);
  font-weight: 800;
}

.policy-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
}

/* ==========================================
   SUCCESS MODAL
========================================== */
.success-modal{
position:fixed;
inset:0;
display:none;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.82);
backdrop-filter:blur(8px);
z-index:3000;
padding:20px;
}

.success-modal.open{
display:flex;
}

.success-box{
background:#fff;
max-width:520px;
width:100%;
padding:50px 40px;
border-radius:22px;
text-align:center;
box-shadow:0 30px 80px rgba(0,0,0,.35);
animation:popup .35s ease;
}

.success-check{
width:90px;
height:90px;
margin:0 auto 24px;
border-radius:50%;
background:var(--yellow);
color:#111;
font-size:3rem;
font-weight:800;
display:flex;
justify-content:center;
align-items:center;
}

.success-box h2{
margin-bottom:16px;
}

.success-box p{
margin-bottom:30px;
line-height:1.7;
}

@keyframes popup{
from{
opacity:0;
transform:scale(.9);
}
to{
opacity:1;
transform:scale(1);
}
}

/* ==========================================
   LIGHTBOX
========================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 40px;
  background: rgba(0,0,0,.92);
  animation: fadeIn .25s ease;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  animation: zoomIn .25s ease;
}

/* ================= CLOSE ================= */

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;

  width: 56px;
  height: 56px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 2rem;
  line-height: 1;

  cursor: pointer;
  transition: .25s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,.22);
  transform: scale(1.08);
}

/* ================= ARROWS ================= */

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);

  width: 64px;
  height: 64px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);

  color: white;
  font-size: 2.6rem;
  cursor: pointer;

  transition: .25s;
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 35px;
}

.lightbox-next {
  right: 35px;
}

/* ================= COUNTER ================= */

.lightbox-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;

  transform: translateX(-50%);

  color: white;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 1px;

  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);

  padding: 10px 18px;
  border-radius: 999px;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* ==========================================
   SCROLL REVEAL ANIMATION
========================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 900px) {

  /* Mobile Navigation */
  .nav-toggle {
    display: block;
    z-index: 3500;
  }

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100dvh;
  padding: 85px 24px 28px;
  background: rgba(17,17,17,.98);
  backdrop-filter: blur(12px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  box-shadow: -18px 0 45px rgba(0,0,0,.35);
  transition: right .35s ease;
  z-index: 3000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

  .nav.open {
    right: 0;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .5px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 26px;
    padding: 15px;
    text-align: center;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);
    border: none !important;
  }

  /* Mobile Menu Contact Info */
  .mobile-contact {
    display: block;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .mobile-contact a,
  .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--white);
    text-decoration: none;
    font-size: .80rem;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .mobile-contact img {
    width: clamp(36px, 8vw, 42px);
    height: clamp(36px, 8vw, 42px);
    object-fit: contain;
    flex-shrink: 0;
  }

  .mobile-contact a:hover {
    color: var(--yellow);
  }

   /* Mobile Hero Buttons */

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  /* Mobile Layout */
  .feature-bar,
  .split,
  .service-grid,
  .review-grid,
  .process-grid,
  .gallery-grid,
  .contact,
  .comparison-card,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 75px 6%;
  }

  /* Mobile Contact Section */
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info p {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .contact-icon {
    width: 72px;
    height: 72px;
    transition: transform .3s ease;
  }

  .contact-info p:hover .contact-icon {
    transform: scale(1.08);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }


  /* Before / After Slider */
  .before-after-slider {
    height: 380px;
  }

  /* ================= LIGHTBOX ================= */

  .lightbox {
    padding: 20px;
  }

  .lightbox img {
    max-width: 95vw;
    max-height: 75vh;
  }

  .lightbox-close {
    width: 48px;
    height: 48px;
    top: 18px;
    right: 18px;
    font-size: 1.8rem;
  }

  .lightbox-arrow {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    bottom: 20px;
    font-size: .85rem;
    padding: 8px 14px;
  }

  .lightbox {
    padding: 30px;
  }

  .lightbox img {
    width: auto;
    height: auto;
    max-width: 82vw;
    max-height: 60vh;
    object-fit: contain;
  }
}


