/* =============================================
   Gary Matthews Solicitors - Injury Law
   Main Stylesheet
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  background: #fff;
}
a { color: #00afc3; text-decoration: none; transition: color .2s; }
a:hover { color: #007a8a; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  color: #1a1a2e;
}

/* ---- Variables ---- */
:root {
  --primary: #00afc3;
  --primary-dark: #007a8a;
  --secondary: #e63946;
  --accent: #f4a100;
  --green: #2e7d32;
  --dark: #1a1a2e;
  --light-bg: #f4f8fb;
  --border: #dde4ea;
  --text: #444;
  --white: #ffffff;
}

/* ---- Top Bar ---- */
.top-bar {
  background: #1a1a2e;
  color: #e0e0e0;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.top-bar a { color: #00d4e8; font-weight: 600; }
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-right { font-weight: 600; color: #fff; }
.top-bar-right a { color: #ffd600; font-size: 15px; }

/* ---- Header ---- */
.site-header {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.logo img { max-height: 55px; width: auto; }
.logo-text {
  border: 2px solid #888;
  padding: 6px 14px;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #444;
  letter-spacing: 1px;
  display: inline-block;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #333;
  border-radius: 3px;
  transition: background .2s, color .2s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { background: var(--primary); color: #fff; }
.main-nav > li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 11px;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid #dde4ea;
  border-top: 3px solid var(--primary);
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-radius: 0 0 6px 6px;
  z-index: 1000;
}
.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #eee;
  transition: background .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light-bg); color: var(--primary); }
.main-nav > li:hover .dropdown { display: block; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 7px 13px;
  cursor: pointer;
  border-radius: 4px;
}

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

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #00b8cc 0%, #0097a7 60%, #007a8a 100%);
  padding: 50px 0 0;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px;
}
.hero-text h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 6px;
}
.hero-text .sub-title {
  font-size: 20px;
  color: #ffd600;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  margin-bottom: 12px;
}
.hero-text p { color: rgba(255,255,255,.92); font-size: 15px; margin-bottom: 22px; }
.hero-img { text-align: center; align-self: end; }
.hero-img img {
  max-height: 380px;
  object-fit: cover;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.2));
}
.hero-form-col { padding-bottom: 40px; }
.hero-form {
  background: rgba(255,255,255,.97);
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.hero-form h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 4px;
}
.hero-form .phone-line {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}
.hero-form .phone-line a { color: var(--secondary); font-weight: 700; font-size: 16px; }
.form-group { margin-bottom: 13px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cdd5dc;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  background: #f9fafc;
  transition: border .2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  background: #fff;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 9px 12px;
  margin-bottom: 14px;
  font-size: 12px;
  color: #555;
}
.google-badge .stars { color: #fbbc04; font-size: 16px; letter-spacing: 2px; }
.google-badge strong { font-size: 13px; color: #222; }
.btn-cta {
  display: block;
  width: 100%;
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-cta:hover { background: #c0392b; color: #fff; transform: translateY(-2px); }

/* ---- Review Banner ---- */
.review-banner {
  background: #2e7d32;
  color: #fff;
  padding: 18px 0;
}
.review-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.review-banner h3 { font-size: 20px; color: #fff; font-family: 'Playfair Display', serif; }
.review-banner p { font-size: 14px; color: rgba(255,255,255,.85); margin-top: 2px; }
.btn-review {
  background: #ffd600;
  color: #222;
  padding: 11px 24px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s;
}
.btn-review:hover { background: #f4a100; color: #222; }

/* ---- Two-column promo blocks ---- */
.promo-blocks { display: grid; grid-template-columns: 1fr 1fr; }
.promo-block {
  padding: 38px 40px;
  color: #fff;
}
.promo-block.teal { background: var(--primary); }
.promo-block.amber { background: #f4a100; }
.promo-block h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.promo-block p { font-size: 14px; color: rgba(255,255,255,.9); margin-bottom: 14px; }
.btn-learn {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  border: 2px solid rgba(255,255,255,.5);
  transition: background .2s;
}
.btn-learn:hover { background: rgba(255,255,255,.35); color: #fff; }

/* ---- Section headings ---- */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 30px;
  font-variant: small-caps;
  letter-spacing: 1px;
  color: #1a1a2e;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-title p { font-size: 15px; color: #666; max-width: 680px; margin: 12px auto 0; }

/* ---- Content sections ---- */
.content-section { padding: 60px 0; }
.content-section.bg-light { background: #f4f8fb; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.two-col-left h2, .two-col-right h2 {
  font-size: 24px;
  font-variant: small-caps;
  color: #1a1a2e;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.two-col-left p, .two-col-right p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
}
.injury-list { margin-top: 8px; }
.injury-list li {
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .4px;
  cursor: pointer;
  transition: background .2s;
}
.injury-list li:hover { background: var(--primary-dark); }
.injury-list li a { color: #fff; display: block; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--secondary);
  padding: 38px 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}
.cta-banner p { color: rgba(255,255,255,.9); font-size: 15px; margin-bottom: 20px; }
.cta-banner a.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--secondary);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 5px;
  font-size: 16px;
  margin: 0 8px;
  transition: transform .15s;
}
.cta-banner a.btn-white:hover { transform: translateY(-2px); }
.cta-banner a.btn-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 15px;
  margin: 0 8px;
  transition: background .2s;
}
.cta-banner a.btn-outline:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  padding: 26px 22px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}
.service-card .icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}
.service-card h3 { font-size: 17px; color: #1a1a2e; margin-bottom: 10px; }
.service-card p { font-size: 13px; color: #666; margin-bottom: 14px; }
.service-card a.btn-sm {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}
.service-card a.btn-sm:hover { background: var(--primary-dark); }

/* ---- Why Choose Us ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-item {
  text-align: center;
  padding: 28px 20px;
}
.feature-item .icon { font-size: 44px; margin-bottom: 14px; display: block; }
.feature-item h4 { font-size: 18px; color: #1a1a2e; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: #666; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  border: 1px solid #e0e9ef;
  border-radius: 10px;
  padding: 26px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.testimonial-card::before {
  content: '"';
  font-size: 64px;
  color: var(--primary);
  opacity: .2;
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p { font-size: 14px; color: #555; margin-bottom: 16px; padding-top: 20px; }
.testimonial-author { font-weight: 700; color: #222; font-size: 14px; }
.testimonial-stars { color: #fbbc04; font-size: 15px; margin-bottom: 6px; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #00b8cc 0%, #0097a7 60%, #006d7a 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.9); max-width: 680px; margin: 0 auto 18px; }
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
}
.breadcrumb a { color: #ffd600; }
.breadcrumb span { margin: 0 6px; }

/* ---- Inner page content ---- */
.page-content { padding: 55px 0; }
.page-content h2 { font-size: 26px; color: #1a1a2e; margin-bottom: 14px; margin-top: 30px; }
.page-content h3 { font-size: 20px; color: var(--primary-dark); margin-bottom: 12px; margin-top: 24px; }
.page-content p { font-size: 15px; color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.page-content ul.check-list { margin: 14px 0 20px 10px; }
.page-content ul.check-list li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0 6px 28px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.page-content ul.check-list li::before {
  content: '✔';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 14px;
}
.page-content .highlight-box {
  background: var(--light-bg);
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.page-content .highlight-box h4 { color: var(--primary-dark); margin-bottom: 8px; font-size: 17px; }
.page-content .highlight-box p { margin: 0; font-size: 14px; }

/* Sidebar */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-widget-header {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
}
.sidebar-widget-body { padding: 18px; }
.sidebar-widget-body p { font-size: 14px; color: #555; margin-bottom: 14px; }
.sidebar-widget-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.sidebar-widget-body ul li:last-child { border-bottom: none; }
.sidebar-widget-body ul li a { color: var(--primary); font-weight: 600; }
.sidebar-widget-body ul li a:hover { color: var(--primary-dark); }
.sidebar-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}
.sidebar-contact-info .icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* FAQ */
.faq-item { border-bottom: 1px solid #e0e9ef; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
}
.faq-question::after { content: '+'; font-size: 22px; color: var(--primary); flex-shrink: 0; }
.faq-question.open::after { content: '−'; }
.faq-answer { display: none; padding: 0 0 16px; font-size: 15px; color: var(--text); line-height: 1.8; }
.faq-answer.open { display: block; }

/* Table */
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.data-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
}
.data-table td { padding: 11px 16px; border-bottom: 1px solid #e0e9ef; }
.data-table tr:nth-child(even) td { background: #f4f8fb; }

/* Step process */
.steps { counter-reset: step-counter; margin: 20px 0; }
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.step-item:last-child { border-bottom: none; }
.step-number {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h4 { font-size: 16px; color: #1a1a2e; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: #666; }

/* ---- About ---- */
.about-hero-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.stat-boxes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.stat-box {
  background: var(--primary);
  color: #fff;
  padding: 24px 18px;
  border-radius: 8px;
  text-align: center;
}
.stat-box .number { font-size: 36px; font-weight: 900; display: block; color: #ffd600; }
.stat-box .label { font-size: 13px; color: rgba(255,255,255,.85); }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 16px; color: #1a1a2e; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: #666; }
.contact-info-item a { color: var(--primary); }
.contact-form { background: #f4f8fb; padding: 32px 30px; border-radius: 10px; }
.contact-form h3 { font-size: 22px; margin-bottom: 22px; color: #1a1a2e; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 13px; font-weight: 700; color: #444; margin-bottom: 6px; }
.map-wrapper { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.map-wrapper iframe { display: block; width: 100%; }

/* ---- Footer ---- */
.site-footer {
  background: #1a1a2e;
  color: #aab4be;
  padding: 55px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-logo { max-height: 50px; margin-bottom: 16px; filter: brightness(2); }
.footer-about p { font-size: 14px; color: #9ba8b4; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #aab4be;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-widget h4 {
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.footer-widget ul li { margin-bottom: 9px; }
.footer-widget ul li a { font-size: 14px; color: #9ba8b4; transition: color .2s; }
.footer-widget ul li a:hover { color: var(--primary); }
.footer-widget p { font-size: 14px; color: #9ba8b4; margin-bottom: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #677480;
}
.footer-bottom a { color: #9ba8b4; }
.footer-bottom a:hover { color: var(--primary); }

/* ---- Misc ---- */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.alert-box {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  color: #856404;
  margin: 18px 0;
}
.alert-box strong { color: #5d4400; }
.green-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.anchor-link {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  transition: background .2s;
}
.anchor-link:hover { background: var(--primary-dark); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-boxes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero-text h1 { font-size: 26px; }
  .promo-blocks { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .review-banner .container { flex-direction: column; text-align: center; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 10px 0; box-shadow: 0 8px 20px rgba(0,0,0,.1); z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav > li > a { padding: 12px 20px; border-bottom: 1px solid #eee; }
  .dropdown { position: static; box-shadow: none; border: none; padding-left: 20px; }
  .nav-toggle { display: block; }
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .site-header .container { position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-boxes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 22px; }
  .section-title h2 { font-size: 24px; }
  .page-hero h1 { font-size: 26px; }
  .stat-boxes { grid-template-columns: 1fr; }
}
