/* Charlotte's Cleaning Co. - Professional Website Styles */

:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --primary-light: #14b8a6;
  --accent: #4d7c0f;
  --accent-light: #65a30d;
  --text: #1e293b;
  --text-muted: #475569;
  --text-light: #64748b;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 16px rgba(15, 118, 110, 0.08);
  --shadow-hover: 0 8px 28px rgba(15, 118, 110, 0.14);
  --radius: 12px;
  --font: "Outfit", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.brand-text {
  font-family: var(--font-script);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
  background: rgba(15, 118, 110, 0.08);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.15rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 1.35rem;
  color: var(--primary-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-facebook {
  background: #1877f2;
  color: var(--white);
  border-color: #1877f2;
}

.btn-facebook:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, #f0fdfa 0%, #ecfdf5 40%, #f0f9ff 100%);
  padding: 4rem 1.5rem 4.5rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--primary-dark);
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 340px;
  border-radius: 50%;
  background: var(--white);
  padding: 0.85rem;
  box-shadow: var(--shadow-hover);
}

/* ========== SECTIONS ========== */
.section {
  padding: 4.25rem 1.5rem;
}

.section-alt {
  background: var(--white);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-size: 1.95rem;
  font-weight: 750;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-head .bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0.85rem auto 0;
  border-radius: 2px;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.service-card ul {
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-card li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.35rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
}

/* ========== ABOUT TEASER ========== */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.about-teaser img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-teaser h2 {
  font-size: 1.85rem;
  font-weight: 750;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.about-teaser p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.highlight-box {
  background: rgba(15, 118, 110, 0.07);
  border-left: 4px solid var(--primary);
  padding: 1.15rem 1.25rem;
  border-radius: 0 10px 10px 0;
  margin: 1.35rem 0;
  font-size: 0.98rem;
  color: var(--text);
}

/* ========== PRICE CARDS ========== */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-hover);
}

.price-top {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 1.35rem;
  text-align: center;
}

.price-card.featured .price-top {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.price-top h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.price-amount {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-amount span {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

.price-body {
  padding: 1.4rem 1.35rem;
  flex: 1;
}

.price-body ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 0.93rem;
  color: var(--text);
}

.price-body ul li:last-child {
  border-bottom: none;
}

.price-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.price-note {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0.85rem 0 1rem;
}

.price-footer {
  padding: 0 1.35rem 1.4rem;
}

.price-footer .btn {
  width: 100%;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.15rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(17, 94, 89, 0.88));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-q .toggle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q .toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

.faq-a-inner {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ========== CTA / CONTACT ========== */
.cta-block {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-block h2 {
  font-size: 1.85rem;
  font-weight: 750;
  margin-bottom: 0.65rem;
}

.cta-block p {
  opacity: 0.92;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.45rem;
}

.contact-card a,
.contact-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ========== ABOUT PAGE CONTENT ========== */
.page-hero {
  background: linear-gradient(160deg, #f0fdfa 0%, #ecfdf5 100%);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.content-block h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.85rem;
}

.content-block p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul {
  margin-top: 0.5rem;
}

.content-block li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.content-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--primary-dark);
  color: #99f6e4;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.9;
  max-width: 260px;
  line-height: 1.55;
  text-align: center;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  color: #99f6e4;
  font-size: 0.93rem;
  padding: 0.28rem 0;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  opacity: 0.85;
  text-align: center;
}

.footer-bottom .credit {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 0.25rem;
}

/* Floating Messenger button */
.float-messenger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0084ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 132, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-messenger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 132, 255, 0.55);
  color: #fff;
}

.float-messenger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 2.75rem; }
.mb-1 { margin-bottom: 1rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner,
  .about-teaser,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.15rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .menu-btn {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 1rem 1rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .main-nav a {
    padding: 0.7rem 1rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .hero {
    padding: 2.75rem 1.25rem 3.25rem;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .section {
    padding: 3.25rem 1.25rem;
  }

  .section-head h2 {
    font-size: 1.7rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }
}

/* ========== FLOATING LOGO ========== */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

.hero-visual img {
  animation: float-gentle 4.5s ease-in-out infinite;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }




/* Consistent gap between adjacent action buttons */
.btn + .btn {
  margin-left: 1rem;
}

.cta-actions .btn + .btn,
.hero-actions .btn + .btn {
  margin-left: 0; /* gap on parent handles spacing */
}

.cta-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .btn + .btn {
    margin-left: 0;
    margin-top: 0.75rem;
  }
  .cta-actions,
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn,
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    margin-left: 0 !important;
    margin-top: 0;
  }
}


/* ========== BEFORE / AFTER ========== */
.ba-section {
  margin: 2.5rem 0 1.5rem;
}

.ba-section > h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
  text-align: center;
}

.ba-section > p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ba-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.ba-label {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.ba-label.before {
  background: #fef2f2;
  color: #b91c1c;
}

.ba-label.after {
  background: #ecfdf5;
  color: #047857;
}

@media (max-width: 600px) {
  .ba-pair {
    grid-template-columns: 1fr;
  }
}

/* ========== QUOTE FORM ========== */
.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}

.quote-form h2,
.quote-form h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
  text-align: center;
}

.quote-form .form-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.quote-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}
