/* ============================================================
   Clean With Thay — styles.css
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --teal:        #0B8A8F;
  --teal-dark:   #086e72;
  --teal-light:  #dff4f4;
  --teal-xlight: #f0fafa;
  --green:       #7FB239;
  --green-dark:  #659130;
  --dark:        #0c2628;
  --mid:         #406366;
  --muted:       #7a9c9e;
  --border:      #d8ecec;
  --white:       #ffffff;
  --bg:          #f8fdfd;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 10px rgba(11,138,143,.10);
  --shadow-md:   0 6px 28px rgba(11,138,143,.15);
  --shadow-lg:   0 16px 56px rgba(11,138,143,.18);
  --ease:        cubic-bezier(.4,0,.2,1);
  --t:           .25s var(--ease);
  --ff-display:  'Fraunces', Georgia, serif;
  --ff-body:     'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w:       1100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.18; letter-spacing: -.02em; }
h1  { font-size: clamp(2.2rem, 5vw,  3.8rem); font-weight: 700; }
h2  { font-size: clamp(1.7rem, 3vw,  2.5rem); font-weight: 600; }
h3  { font-size: 1.1rem;  font-weight: 600; }
h4  { font-size: .85rem;  font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mid); }
em  { font-style: italic; color: var(--green); }
p   { color: var(--mid); }

/* ===== LAYOUT UTILS ===== */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 96px; }
.mt-lg  { margin-top: 32px; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 60px;
}
.section-header h2 { color: var(--dark); margin-block: 10px 12px; }
.section-header p  { font-size: 1.05rem; }

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tag-light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.18);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .93rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), opacity var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(11,138,143,.35);
}
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 8px 26px rgba(11,138,143,.42); }

.btn-white {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { background: var(--teal-xlight); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.85); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ===== NAVIGATION ===== */
#site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
#site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 18px 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 3px;
  box-shadow: var(--shadow-sm);
}
.nav-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--t);
}
#site-header.scrolled .nav-name { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--t);
}
#site-header.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.14); }
#site-header.scrolled .nav-links a:hover { color: var(--teal); background: var(--teal-light); }

.nav-cta {
  background: rgba(255,255,255,.18) !important;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.35) !important;
  border-radius: 8px;
}
#site-header.scrolled .nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-color: var(--teal) !important;
}
.nav-cta:hover { background: rgba(255,255,255,.28) !important; }
#site-header.scrolled .nav-cta:hover { background: var(--teal-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
#site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #092021 0%, #0B6E72 50%, #4e8f2a 100%);
  display: flex;
  align-items: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 72% 38%, rgba(127,178,57,.22) 0%, transparent 68%),
    radial-gradient(ellipse 45% 55% at 18% 80%, rgba(11,138,143,.28) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 140px 24px 120px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero text */
.hero-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-headline em { color: #a7d462; }
.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.hero-img-frame:hover .hero-img { transform: scale(1.04); }
.hero-float-card {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card svg { flex-shrink: 0; background: var(--teal-light); border-radius: 8px; padding: 6px; width: 36px; height: 36px; }
.hero-float-card strong { display: block; font-size: .88rem; color: var(--dark); }
.hero-float-card span  { display: block; font-size: .76rem; color: var(--muted); margin-top: 2px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.service-card:hover::before { opacity: 1; }
.service-card * { position: relative; z-index: 1; }

.service-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--teal) 0%, #0a7579 100%);
  border-color: var(--teal);
  color: var(--white);
}
.service-featured::before { background: linear-gradient(135deg, rgba(127,178,57,.2) 0%, transparent 60%); }
.service-featured h3 { color: var(--white); font-size: 1.25rem; }
.service-featured p  { color: rgba(255,255,255,.8); margin-top: 8px; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-featured .service-icon {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { margin-bottom: 8px; }
.service-card p  { font-size: .92rem; color: var(--mid); }
.service-featured p { color: rgba(255,255,255,.78); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .875rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  transition: gap var(--t), color var(--t);
}
.service-link:hover { gap: 10px; color: var(--white); }

/* ===== WHY SECTION ===== */
.why-section { position: relative; padding-block: 100px; overflow: hidden; }
.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #092224 0%, #0B8A8F 60%, #3d6e1e 100%);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.why-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-img-main {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.why-img-secondary {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 66%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-left: auto;
  margin-top: -40px;
  border: 4px solid rgba(255,255,255,.15);
}
.why-content { color: var(--white); }
.why-content h2 { color: var(--white); margin-block: 10px 28px; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .97rem;
  color: rgba(255,255,255,.88);
}
.why-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal-light);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,138,143,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}
.gallery-tall  { grid-row: span 2; aspect-ratio: unset; }
.gallery-wide  { grid-column: span 2; aspect-ratio: 16/7; }

/* ===== FORM SECTION ===== */
.form-section { position: relative; overflow: hidden; }
.form-section-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.form-wrapper {
  max-width: 700px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 52px;
  position: relative;
  z-index: 2;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .02em;
}
.req { color: var(--teal); }
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,138,143,.14);
  background: var(--white);
}
.form-field input.invalid,
.form-field textarea.invalid {
  border-color: #e5534b;
  box-shadow: 0 0 0 3px rgba(229,83,75,.1);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.field-error {
  font-size: .78rem;
  color: #e5534b;
  min-height: 1em;
  display: block;
}
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note {
  font-size: .8rem;
  color: var(--muted);
}
.form-note strong { color: var(--dark); }

/* Submit button states */
#submitBtn { position: relative; }
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 24px;
}
.success-icon { margin: 0 auto 20px; width: 60px; }
.success-icon svg { width: 60px; height: 60px; }
.form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.form-success p { margin-bottom: 28px; font-size: 1rem; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: pointer;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.contact-card-static { cursor: default; }
.contact-icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h4 { color: var(--dark); margin-bottom: 5px; }
.contact-card span,
.contact-card a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--teal);
}
.contact-card-static span { color: var(--mid); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding-block: 48px 36px; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  padding: 4px;
}
.footer-brand-text { display: flex; flex-direction: column; text-align: left; }
.footer-brand-text strong { font-family: var(--ff-display); font-size: 1rem; color: var(--white); }
.footer-brand-text span  { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.footer-links a {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 80px; }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }
  .hero-sub { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-column: span 2; }

  .why-inner { grid-template-columns: 1fr; }
  .why-images { grid-template-columns: 1fr 1fr; }
  .why-img-secondary { margin: 0; width: 100%; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-wide { grid-column: span 2; }

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

  .form-wrapper { padding: 36px 28px; }
}

@media (max-width: 640px) {
  .section { padding-block: 72px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9,32,33,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  #site-header.scrolled .nav-links { background: rgba(255,255,255,.97); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; width: 100%; }
  .nav-cta { text-align: center; justify-content: center; margin-top: 6px; }

  .hero-inner { padding: 120px 20px 80px; }
  .hero-stats { gap: 16px; padding: 16px 18px; flex-wrap: wrap; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-featured { grid-column: span 1; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide, .gallery-tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 16/9; }

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

  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; border-radius: var(--radius-lg); }

  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { justify-content: center; }
}
