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

:root {
  --green-dark: #0d4a1f;
  --green-mid: #1a6e30;
  --green-light: #2a9244;
  --red: #c0181a;
  --gold: #e8b800;
  --gold-light: #f5d44a;
  --cream: #faf7f0;
  --text: #1a1a1a;
  --text-mid: #444;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, .13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.topbar {
  background: var(--green-dark);
  color: var(--gold-light);
  font-size: .82rem;
  padding: 7px 0;
  overflow: hidden;
}

.topbar-marquee {
  width: 100%;
  overflow: hidden;
}

.topbar-track {
  display: flex;
  align-items: center;
  gap: 42px;
  min-width: max-content;
  padding-left: 100%;
  animation: topbar-marquee 38s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.topbar:hover .topbar-track {
  animation-play-state: paused;
}

.topbar a {
  color: var(--gold-light);
  text-decoration: none;
}

.topbar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

@keyframes topbar-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.15;
}

.logo-text strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  letter-spacing: .5px;
}

.logo-text small {
  font-size: .72rem;
  color: var(--text-mid);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: .93rem;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--green-mid);
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}

.nav-cta:hover {
  background: #a01214;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #1c5c2a 100%);
  padding: 72px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 184, 0, .15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(192, 24, 26, .4);
}

.btn-primary:hover {
  background: #a01214;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, .5);
  color: var(--white);
  font-weight: 600;
  padding: 13px 24px;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

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

.hero-stat strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--gold);
}

.hero-stat span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
}

.hero-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero-card h3 {
  font-family: "Oswald", sans-serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: .5px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cat-item {
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--white);
  font-weight: 500;
}

.cat-item .icon {
  font-size: 1.2rem;
}

.hero-phone {
  margin-top: 20px;
  padding: 14px;
  background: var(--gold);
  border-radius: 10px;
  text-align: center;
}

.hero-phone small {
  display: block;
  font-size: .75rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-phone a {
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
}

section {
  padding: 72px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title em {
  color: var(--red);
  font-style: normal;
}

.divider {
  width: 52px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  border-top: 4px solid var(--green-mid);
  transition: box-shadow .2s, transform .2s;
}

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

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.why-card h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.real-photos-bg {
  background: var(--white);
}

.real-photos-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--green-mid) #e6eadf;
  scrollbar-width: thin;
}

.real-photos-scroll::-webkit-scrollbar {
  height: 10px;
}

.real-photos-scroll::-webkit-scrollbar-track {
  background: #e6eadf;
  border-radius: 999px;
}

.real-photos-scroll::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 999px;
}

.real-photo-card {
  flex: 0 0 min(360px, 82vw);
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  scroll-snap-align: start;
}

.real-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream);
}

.real-photo-card figcaption {
  padding: 12px 14px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: .92rem;
}

.cats-bg {
  background: var(--cream);
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.cat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  border: 2px solid transparent;
}

.cat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--green-mid);
}

.cat-card .cat-emoji {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.cat-card h4 {
  font-weight: 700;
  color: var(--green-dark);
  font-size: .95rem;
  margin-bottom: 6px;
}

.cat-card p {
  font-size: .78rem;
  color: var(--text-mid);
}

.table-scroll {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: .93rem;
}

.price-table thead tr {
  background: var(--green-dark);
  color: var(--white);
}

.price-table th {
  padding: 13px 16px;
  text-align: left;
  font-family: "Oswald", sans-serif;
  letter-spacing: .5px;
  font-weight: 600;
}

.price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.price-table td:first-child strong {
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
}

.price-table tbody tr:hover {
  background: #f0f8f1;
}

.price-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.price-badge {
  display: inline-block;
  background: #e8f5e9;
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .85rem;
}

.price-note {
  margin-top: 16px;
  background: #fff8e1;
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: .87rem;
  color: #555;
}

.price-note a {
  color: var(--red);
  text-decoration: none;
}

.price-note a:hover {
  text-decoration: underline;
}

.process-bg {
  background: var(--green-dark);
}

.process-bg .section-title {
  color: var(--white);
}

.process-bg .section-eyebrow {
  color: var(--gold-light);
}

.section-heading-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading-center .divider {
  margin: 16px auto 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(232, 184, 0, .3);
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: "Oswald", sans-serif;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h3,
.contact-form h3 {
  font-family: "Oswald", sans-serif;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.contact-info h3 {
  font-size: 1.5rem;
}

.contact-form h3 {
  font-size: 1.3rem;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
}

.contact-item p,
.contact-item a {
  font-size: .9rem;
  color: var(--text-mid);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--green-mid);
}

.contact-item .map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: var(--green-dark);
  color: var(--white);
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.contact-item .map-link:hover {
  background: var(--green-mid);
  color: var(--white);
}

.hotline-text {
  font-size: 1.25rem;
  color: var(--green-dark);
}

.faq-bg {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border-left: 4px solid var(--green-mid);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.faq-item h3 {
  color: var(--green-dark);
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.65;
}

.zalo-box {
  margin-top: 24px;
  background: #e8f5e9;
  border-radius: 12px;
  padding: 20px;
}

.zalo-box p {
  font-size: .9rem;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 8px;
}

.zalo-button {
  display: inline-block;
  background: #0068ff;
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.contact-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
}

.form-group {
  margin-bottom: 16px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}

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

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.btn-submit:hover {
  background: #a01214;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1.5px solid var(--green-light);
  color: var(--green-dark);
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}

.form-success.is-visible {
  display: block;
}

.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 22px 10px 10px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  letter-spacing: .5px;
  isolation: isolate;
  animation: contact-pulse 2s infinite;
}

.float-contact::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .65), transparent);
  transform: skewX(-20deg);
  animation: contact-shine 2.8s infinite;
  pointer-events: none;
  z-index: 0;
}

.float-contact > * {
  position: relative;
  z-index: 1;
}

.float-zalo {
  background: #0588ff;
  box-shadow: 0 6px 24px rgba(5, 136, 255, .34);
}

.float-phone {
  background: var(--green-dark);
  box-shadow: 0 6px 24px rgba(13, 74, 31, .4);
}

.float-contact:hover {
  transform: translateY(-2px);
}

.float-zalo:hover {
  background: #0072d9;
}

.float-phone:hover {
  background: #0a3d1a;
}

@keyframes contact-pulse {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }

  50% {
    filter: brightness(1.12);
    transform: scale(1.04);
  }
}

@keyframes contact-shine {
  0% {
    left: -80%;
  }

  45%, 100% {
    left: 130%;
  }
}

.float-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2px;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .75), 0 3px 10px rgba(0, 0, 0, .2);
}

.float-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.float-phone .float-icon {
  background: var(--white);
}

footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, .75);
  padding: 48px 20px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: "Oswald", sans-serif;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: .87rem;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-meta {
  margin-top: 16px;
  font-size: .82rem;
  line-height: 1.7;
}

.footer-meta a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: .82rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 8px;
  padding: 3px;
}

.footer-logo span {
  font-family: "Oswald", sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: .3px;
}

.footer-phone {
  font-size: .9rem;
}

.footer-phone a {
  text-decoration: none;
}

.footer-phone strong {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .hero-inner,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

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

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-stats {
    gap: 18px;
  }

  .float-contact span {
    display: none;
  }

  .floating-contact {
    right: 18px;
    bottom: 22px;
  }

  .float-contact {
    width: 62px;
    height: 62px;
    min-height: 62px;
    justify-content: center;
    padding: 9px;
    border-radius: 50%;
  }

  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 99;
  }
}
