:root {
  --red: #da251d;
  --red-dark: #b81e17;
  --gold: #ffd700;
  --green: #1a6b3c;
  --bg: #ffffff;
  --bg-gray: #f5f6f8;
  --bg-dark: #1a1f2e;
  --text: #1c2331;
  --text-muted: #5a6474;
  --text-light: #8b939e;
  --text-on-dark: #e8eaed;
  --border: #dde2ea;
  --max: 1140px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.3; font-weight: 700; color: var(--text); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.eyebrow--light { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem;
  padding: 11px 24px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--bg-gray); }
.btn--lg { padding: 14px 30px; font-size: 0.95rem; }
.btn--block { width: 100%; }

/* Topbar — Vietnamese red accent */
.topbar { background: var(--red); color: rgba(255,255,255,0.9); font-size: 0.82rem; border-bottom: 3px solid var(--gold); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar__contact { display: flex; gap: 22px; }
.topbar__contact a { color: rgba(255,255,255,0.95); }
.topbar__contact a:hover { color: var(--gold); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.nav__inner { display: flex; align-items: center; height: 68px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; color: var(--text); }
.brand__mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--red); color: #fff; font-weight: 700; border-radius: var(--radius);
}
.brand__suffix { font-weight: 500; color: var(--text-muted); font-size: 0.88rem; }
.nav__links { display: flex; gap: 26px; flex: 1; }
.nav__links a { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.nav__links a:hover { color: var(--red); }
.nav__right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.nav__phone { display: none; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--text); }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: var(--bg-gray);
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 700; color: var(--green); cursor: pointer; min-width: 78px;
}
.lang-switch__btn:hover { border-color: var(--green); }
.lang-switch__flag { font-size: 1.05rem; }
.lang-switch__label { letter-spacing: 0.04em; }
.lang-switch__arrow { color: var(--text-muted); }
.lang-switch__menu {
  display: none; position: absolute; top: calc(100% + 4px); right: 0;
  min-width: 160px; background: var(--bg); border: 2px solid var(--border);
  border-radius: var(--radius); list-style: none; box-shadow: 0 4px 12px rgba(0,0,0,0.08); z-index: 200;
}
.lang-switch__menu.open { display: block; }
.lang-switch__menu li { padding: 11px 15px; font-size: 0.88rem; font-weight: 600; cursor: pointer; border-bottom: 1px solid var(--border); }
.lang-switch__menu li:last-child { border-bottom: none; }
.lang-switch__menu li:hover, .lang-switch__menu li.active { background: var(--bg-gray); color: var(--red); }

/* Hero */
.hero { padding: 64px 0 72px; background: var(--bg-gray); }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero__copy h1 { font-size: clamp(1.75rem, 3.2vw, 2.35rem); margin-bottom: 18px; }
.hero__sub { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 28px; max-width: 500px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__badges span {
  font-size: 0.78rem; font-weight: 600; color: var(--green);
  padding: 6px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
}
.hero__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-gray); }

/* Sections */
.section { padding: 72px 0; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark h2 { color: #fff; }
.section--dark .contact__info > p { color: rgba(255,255,255,0.65); }
.section--dark .contact__list a { color: #fff; }
.section--dark .contact__label { color: rgba(255,255,255,0.45); }
.section__head { margin-bottom: 44px; }
.section__head--center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 44px; }
.section__head h2 { font-size: clamp(1.45rem, 2.5vw, 1.9rem); margin-bottom: 12px; }
.section__head p { color: var(--text-muted); }

/* Gallery */
.gallery { display: grid; gap: 20px; margin-bottom: 36px; }
.gallery--2 { grid-template-columns: 1fr 1fr; }
.gallery__item { margin: 0; }
.gallery__item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-gray); }
.gallery__item--single { max-width: 800px; margin: 0 auto; }
.gallery__item--single img { aspect-ratio: 21/9; }
.gallery__item figcaption { font-size: 0.8rem; color: var(--text-light); margin-top: 8px; text-align: center; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 28px 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; border-top: 3px solid var(--red); }
.card__icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--green); }
.card p { font-size: 0.88rem; color: var(--text-muted); }

/* Service grid */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { padding: 28px 22px; background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: var(--radius); }
.service-card__icon { font-size: 1.6rem; display: block; margin-bottom: 14px; }
.service-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.service-card p { font-size: 0.86rem; color: var(--text-muted); }

/* About */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about__copy h2 { font-size: 1.7rem; margin-bottom: 16px; }
.about__copy p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.about__list { list-style: none; display: grid; gap: 10px; }
.about__list li { position: relative; padding-left: 18px; font-size: 0.92rem; color: var(--text-muted); }
.about__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 2px; background: var(--red); }
.about__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-gray); }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.why-item { padding: 24px 0; border-top: 2px solid var(--red); }
.why-item__num { font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 8px; text-shadow: 0 0 1px var(--red); }
.why-item h3 { font-size: 1rem; margin-bottom: 8px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); }

/* Contact */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__info h2 { font-size: 1.7rem; margin-bottom: 12px; }
.contact__info > p { margin-bottom: 28px; }
.contact__list { list-style: none; display: grid; gap: 18px; }
.contact__label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact__list a:hover { color: var(--gold); }
.contact__form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 30px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 5px; color: rgba(255,255,255,0.85); }
.field input, .field textarea, .field select {
  width: 100%; padding: 10px 13px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); background: rgba(255,255,255,0.08); color: #fff;
  font-size: 0.92rem; font-family: inherit; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); }
.field select option { color: var(--text); background: var(--bg); }
.contact__note { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 10px; text-align: center; }

/* Footer */
.footer { background: var(--green); color: rgba(255,255,255,0.8); padding: 44px 0; border-top: 3px solid var(--red); }
.footer .brand { color: #fff; }
.footer .brand__mark { background: var(--red); }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; }
.footer__brand p { font-size: 0.86rem; margin-top: 10px; }
.footer__legal { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 6px; }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 4px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; align-items: flex-start; }
.footer__links a { font-size: 0.86rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.footer__links a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .why-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg); padding: 18px 28px; gap: 14px; border-bottom: 1px solid var(--border); box-shadow: 0 4px 8px rgba(0,0,0,0.06); }
  .nav__toggle { display: flex; }
  .nav__phone { display: inline-flex; }
  .hero__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .hero__image { order: -1; }
  .gallery--2 { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
}
@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; }
  .topbar__inner { flex-direction: column; height: auto; padding: 6px 0; gap: 2px; }
  .nav__right .btn--primary { display: none; }
}
