/* ── Reneta Brand Variables ───────────────────────────────── */
:root {
  /* Colors */
  --rc-green: #2ecc71;
  --rc-green-dark: #178d71;
  --rc-navy: #1f4e79;
  --rc-dark: #070707;
  --rc-gray: #070707;
  --rc-gray-light: #5c5e5e;
  --rc-border: #e5e7eb;

  /* Fonts */
  --f-viet: "Be Vietnam Pro", Helvetica, sans-serif;
  --f-lato: "Lato", Helvetica, sans-serif;

  /* ── Heading font-size scale ──────────────────────────────
     Change ONE value here → updates every heading on the site */
  --fz-h1: clamp(3rem, 6vw, 6.5rem);
  --fz-h2: clamp(2rem, 4vw, 3.5rem);
  --fz-h3: clamp(1.8rem, 3.5vw, 2.8rem);
  --fz-h4: clamp(1.4rem, 2.5vw, 1.6rem);
  --fz-h5: 1.2rem;
  --fz-h6: 1rem;

  /* ── Primary button ───────────────────────────────────────
     Change here → updates btnbanner, btnprimary, submit btn,
     card btn, hero btn — everything at once */
  --btn-bg: linear-gradient(90deg, #2ecc71 0%, #27b562 100%);
  --btn-bg-solid: var(--rc-green-dark);
  --btn-hover: var(--rc-dark);
  --btn-color: #ffffff;
  --btn-radius: 16px;
  --btn-fz: 1rem;
  --btn-fw: 700;
  --btn-py: 15px;
  --btn-px: 28px;
  --btn-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: var(--f-viet);
  color: #667085;
  background-color: #fff;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

img {
  max-width: 100%;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none !important;
  border: 0;
}

input,
textarea,
select {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #f7f9fb;
  width: 100%;
  height: 54px;
  border: 2px solid #e5e7eb;
  padding: 0 16px 0 40px;
  font-family: var(--f-viet);
  font-size: 0.95rem;
  color: rgba(107, 114, 128, 0.4);
  outline: none;
  transition: border-color 0.15s;
}

.input-d {
  padding: 0 16px !important;
}
input:focus {
  outline: none;
  background: #e8e8e8;
}

input::-moz-focus-inner {
  border: 0;
  display: none;
  background: #e8e8e8;
}

input::-webkit-focus-inner {
  border: 0;
  display: none;
  background: #e8e8e8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: #e8e8e8 inset !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: #e8e8e8;
}

::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.4);
  opacity: 1;
  /* Firefox */
}

::-moz-placeholder {
  color: rgba(30, 30, 30, 0.4);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

table {
  border-collapse: collapse;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

ul,
li {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0px;
}

form {
  position: relative;
}

.form-control:focus {
  outline: none !important;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  background: transparent !important;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

hr {
  margin: 0;
  padding: 0;
  border-color: #000;
}

ul {
  list-style-type: none;
}

li {
  list-style: none;
  position: relative;
}

a,
button {
  position: relative;
}

a:hover,
a:focus,
button:hover,
button:focus {
  outline: 0;
  text-decoration: none;
}

input,
textarea,
button {
  border: 0px;
  width: 100%;
}

.container {
  width: 100%;
}

.container_testimonial {
  width: 100%;
}

@media (min-width: 1300px) {
  .container_testimonial {
    max-width: 1749px;
  }
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* ------------------------------------------------------------------
    Template All Variables Defined - Value Change with Your's Need
 -------------------------------------------------------------------- */
.color-para {
  color: #5c5e5e !important;
}

.color-text {
  color: #5c5e5e !important;
}

.color-primary {
  color: #2ecc71 !important;
}

.color-secondary {
  color: #178d71 !important;
}

.color-highlight {
  color: #2ecc71 !important;
}

.color-white {
  color: #fff !important;
}

.color-lwhite {
  color: #fff;
}

.color-navy {
  color: #1f4e79 !important;
}

.color-dark-navy {
  color: #212e3b !important;
}
.color-cream {
  color: #f7f8f9 !important;
}

.color-hwhite {
  color: #f5f5f5 !important;
}

.color-black {
  color: #000 !important;
}

.color-lblack {
  color: #212e3b !important;
}

.color-grey {
  color: #5c5e5e !important;
}

.color-green {
  color: #0ac085 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-cream {
  background-color: #f7f8f9 !important;
}

.bg-hwhite {
  background-color: #f5f5f5 !important;
}

.bg-lblack {
  background-color: #1e1e1c !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-primary {
  background-color: #2ecc71 !important;
}

.bg-secondary {
  background-color: #178d71 !important;
}

.bg-highlight {
  background-color: #2ecc71 !important;
}
.bg-navy {
  background-color: #1f4e79 !important;
}

.bg-dark-navy {
  background-color: #212e3b !important;
}

.bg-grey {
  background-color: #5c5e5e !important;
}

.bg-green {
  background-color: #0ac085 !important;
}

.font-italic {
  font-style: italic !important;
}

.w-fit {
  width: fit-content !important;
}

.bg-all {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  color: #000;
}

/* Regular Headings — sizes from :root variables */
h1 {
  font-family: var(--f-viet);
  font-size: var(--fz-h1);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h2 {
  font-family: var(--f-viet);
  font-size: var(--fz-h2);
  font-weight: 700;
  line-height: 1.15;
}
h3 {
  font-family: var(--f-viet);
  font-size: var(--fz-h3);
  font-weight: 700;
  line-height: 1.2;
}
h4 {
  font-family: var(--f-viet);
  font-size: var(--fz-h4);
  font-weight: 700;
  line-height: 1.3;
}
h5 {
  font-family: var(--f-viet);
  font-size: var(--fz-h5);
  font-weight: 600;
  line-height: 1.4;
}
h6 {
  font-family: var(--f-viet);
  font-size: var(--fz-h6);
  font-weight: 600;
  line-height: 1.5;
}

/* Class Headings — same vars, usable on any tag */
.f-h1 {
  font-family: var(--f-viet) !important;
  font-size: var(--fz-h1) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
}

.f-h2 {
  font-family: var(--f-viet) !important;
  font-size: var(--fz-h2) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}
.f-h3 {
  font-family: var(--f-viet) !important;
  font-size: var(--fz-h3) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}
.f-h4 {
  font-family: var(--f-viet) !important;
  font-size: var(--fz-h4) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}
.f-h5 {
  font-family: var(--f-viet) !important;
  font-size: var(--fz-h5) !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}
.f-h6 {
  font-family: var(--f-viet) !important;
  font-size: var(--fz-h6) !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
}

a {
  cursor: pointer;
  line-height: 28px;
  color: unset;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  outline: none !important;
}

a:hover {
  color: unset;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
}

.font-inter {
  font-family: "Inter", sans-serif !important;
}

.font-roboto {
  font-family: "Roboto", sans-serif !important;
}

.fp-14 {
  font-size: 14px;
  line-height: 22px;
  color: #141718;
}

.fp-19 {
  margin: 0px;
  font-size: 19px;
  line-height: 28px;
}

.fp-18 {
  margin: 0px;
  font-size: 18px;
  line-height: 28px;
}

.fp-17 {
  margin: 0px;
  font-size: 17px;
  line-height: 28px;
}

.fp-16 {
  margin: 0px;
  font-size: 16px;
  line-height: 28px;
}

.fp-15 {
  margin: 0px;
  font-size: 15px;
  line-height: 28px;
}

.fp-14 {
  margin: 0px;
  font-size: 14px;
  line-height: 28px;
}

.fpw3 {
  font-weight: 300 !important;
}

.fpw4 {
  font-weight: 400 !important;
}

.fpw5 {
  font-weight: 500 !important;
}

.fpw6 {
  font-weight: 600 !important;
}

.fpw7 {
  font-weight: 700 !important;
}

.fpw8 {
  font-weight: 800 !important;
}

.fpw9 {
  font-weight: 900 !important;
}

.coverbg {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}

.ls {
  letter-spacing: 0.4px !important;
}

.ffm-ks {
  font-family: "Roboto", sans-serif;
}

.lh {
  line-height: 25px !important;
}

.lnh60 {
  line-height: 60px !important;
}

.text-right {
  text-align: right !important;
}

.mx-auto {
  margin: 0 auto;
}

.align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-center:before,
.align-center:after {
  content: none;
}

.align-center-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-center-h:before,
.align-center-h:after {
  content: none;
}

.align-center-v {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-center-v:before,
.align-center-v:after {
  content: none;
}

.align-center-v-b {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align-center-v-b:before,
.align-center-v-b:after {
  content: none;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-content-center:before,
.justify-content-center:after {
  content: none;
}

.eq-height {
  display: -webkit-box;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -o-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.eq-height:before,
.eq-height:after {
  content: none;
}

#special-line {
  display: none;
}

.fa-phone {
  rotate: 90deg;
}

.list-show li {
  list-style: disc;
  margin-left: 15px;
  padding: 5px 0;
}

.b-none {
  border: none !important;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none !important;
  border: 0;
}

input:focus {
  outline: none;
  background: #e8e8e8;
}

input::-moz-focus-inner {
  border: 0;
  display: none;
  background: #e8e8e8;
}

input::-webkit-focus-inner {
  border: 0;
  display: none;
  background: #e8e8e8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: #e8e8e8 inset !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: #e8e8e8;
}

::-webkit-input-placeholder {
  color: #f0f8ff;
  opacity: 1;
  /* Firefox */
}

::-moz-placeholder {
  color: #f0f8ff;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  color: #f0f8ff;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  color: #f0f8ff;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  color: #f0f8ff;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #f0f8ff;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #f0f8ff;
}

.form-control:focus {
  outline: none !important;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  background: transparent !important;
}

hr {
  border: 1px solid #d9d9d9;
}

/* ------------------------------------------------------------------
 Template Default Button Styles
 — Edit --btn-* variables in :root to change ALL buttons at once
-------------------------------------------------------------------- */

/* Shared base for all primary buttons */
.btnbanner button,
.btnprimary a,
.btncontact button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--btn-radius);
  background: var(--btn-bg);
  box-shadow: var(--btn-shadow);
  font-family: var(--f-viet);
  font-size: var(--btn-fz);
  font-weight: var(--btn-fw);
  color: var(--btn-color);
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.15s;
  text-decoration: none;
  width: 100%;
}

.btnbanner a:hover,
.btnprimary a:hover,
.btncontact button:hover {
  background: var(--btn-hover);
  box-shadow: none;
  transform: translateY(-1px);
  color: var(--btn-color);
}

.btnsecondary a {
  padding: 16px 32px;
  border-radius: 12px;
  background: #fff;
  color: #2ecc71;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}

.btnsecondary a:hover {
  background: #000;
  color: #fff;
}

.btnthird a {
  padding: 16px 32px;
  border-radius: 12px;
  background: #fff;
  color: #2ecc71;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}

.btnthird a:hover {
  color: #fff;
  background-color: #2ecc71;
}

.btnshop a {
  display: block;
  padding: 6px;
  font-size: 16px;
  border: 0.5px solid rgba(53, 50, 51, 0.72);
  border-radius: 8px;
  text-transform: capitalize;
  text-decoration: none;
  background: transparent;
  color: #525252;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.btnshop a:hover {
  background: #000;
  color: #fff;
}

.btncart a {
  padding: 8px 12px;
  border-radius: 2px;
  background: #667085;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}

.btncart a:hover {
  background: #000;
  color: #fff;
}

.btncontact button {
  padding: 12px 40px;
  border-radius: 8.005px;
  background: #2ecc71;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  line-height: 28.017px;
  /* 175% */
  letter-spacing: -0.4px;
}

.btncontact button:hover {
  background: #2ecc71;
}

/* ================================================================
   RENETA CLEANING — Global Utility Classes
   Brand colors, fonts, inputs, buttons matching the design system.
   ================================================================ */

/* ── Brand Text Colors ──────────────────────────────────────── */
.rc-green {
  color: var(--rc-green) !important;
}

.rc-green-dark {
  color: var(--rc-green-dark) !important;
}

.rc-navy {
  color: var(--rc-navy) !important;
}

.rc-dark {
  color: var(--rc-dark) !important;
}

.rc-gray {
  color: var(--rc-gray) !important;
}

.rc-white {
  color: #ffffff !important;
}

/* ── Brand Background Colors ────────────────────────────────── */
.bg-rc-green {
  background-color: var(--rc-green) !important;
}

.bg-rc-green-dark {
  background-color: var(--rc-green-dark) !important;
}

.bg-rc-navy {
  background-color: var(--rc-navy) !important;
}

.bg-rc-dark {
  background-color: var(--rc-dark) !important;
}

.bg-rc-gray {
  background-color: var(--rc-gray) !important;
}

.bg-rc-light {
  background-color: #f8f9fa !important;
}

.bg-rc-offwhite {
  background-color: #f7f9fb !important;
}

/* ── Font Families ──────────────────────────────────────────── */
.font-viet {
  font-family: var(--f-viet) !important;
}

.font-lato {
  font-family: var(--f-lato) !important;
}

/* ── Section Label (e.g. "FREQUENTLY ASKED", "HOW IT WORKS") ── */
.rc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-viet);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rc-green-dark);
}

.rc-label--gray {
  color: var(--rc-gray-light) !important;
}

/* ── Brand Input ────────────────────────────────────────────── */
.rc-input {
  width: 100%;
  height: 54px;
  border: 2px solid var(--rc-border);
  border-radius: 14px;
  padding: 0 16px;
  font-family: var(--f-viet);
  font-size: 0.95rem;
  color: #1e1e1e;
  outline: none;
  background: #fff;
  transition: border-color 0.15s;
}

.rc-input:focus {
  border-color: var(--rc-green);
}

.rc-input::placeholder {
  color: rgba(30, 30, 30, 0.4);
}

/* ── Brand Textarea ─────────────────────────────────────────── */
.rc-textarea {
  width: 100%;
  min-height: 90px;
  border: 2px solid var(--rc-border);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--f-viet);
  font-size: 0.95rem;
  color: #1e1e1e;
  outline: none;
  resize: vertical;
  transition: border-color 0.15s;
}

.rc-textarea:focus {
  border-color: var(--rc-green);
}

.rc-textarea::placeholder {
  color: rgba(30, 30, 30, 0.4);
}

/* ── Brand Buttons ──────────────────────────────────────────── */
/* Primary pill button */
.rc-btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--rc-green);
  border-radius: 100px;
  border: none;
  font-family: var(--f-viet);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition:
    opacity 0.15s,
    transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.rc-btn-green:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Dark green variant */
.rc-btn-green-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--rc-green-dark);
  border-radius: 100px;
  border: none;
  font-family: var(--f-viet);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.rc-btn-green-dark:hover {
  background: #0f6e58;
  transform: translateY(-1px);
}

/* Rounded square button (cards) */
.rc-btn-sq {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 62px;
  background: var(--rc-green-dark);
  border-radius: 16px;
  border: none;
  font-family: var(--f-viet);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
}

.rc-btn-sq:hover {
  background: #0f6e58;
  transform: translateY(-2px);
}

/* ── Font Paragraph Sizes ───────────────────────────────────── */
/* (same pattern as .fp-14/.fp-16 above) */
.rc-fp-sm {
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
}

/* labels */
.rc-fp-body {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

/* body copy */
.rc-fp-md {
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

/* base */
.rc-fp-lg {
  font-size: 1.15rem !important;
  line-height: 1.5 !important;
}

/* sub-heads */
