body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #fafafa;
  color: #222;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(12px) saturate(1.18);
  backdrop-filter: blur(12px) saturate(1.18);
  box-shadow: 0 8px 28px rgba(24, 24, 24, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 64px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #222;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex: 0 0 auto;
}

nav ul.main-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

nav ul.main-menu li {
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  font-weight: 500;
  color: #222;
  transition: color 0.2s;
  text-align: center;
}

nav ul.main-menu li.active,
nav ul.main-menu li:hover {
  color: #e67e22;
}

.search-icon {
  margin-left: 24px;
  cursor: pointer;
  color: #888;
  display: flex;
  align-items: center;
}

.search-icon:focus-visible,
nav ul.main-menu li:focus-visible,
.mobile-menu-list li:focus-visible,
.project-card:focus-visible {
  outline: 3px solid rgba(230, 126, 34, 0.58);
  outline-offset: 4px;
  border-radius: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
  padding: 4px;
  border: 1px solid rgba(234, 217, 189, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  backdrop-filter: blur(8px) saturate(1.2);
}

.language-switcher button,
.mobile-lang-switcher button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #333;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 9px;
}

.language-switcher button.active,
.mobile-lang-switcher button.active {
  background: #e67e22;
  color: #fff;
}

.mobile-lang-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
}

.mobile-lang-switcher button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

footer {
  background: #222;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 24px;
}

.footer-col:last-child {
  text-align: right;
  justify-self: end;
}

#subscribe-form {
  justify-content: flex-end;
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  background: transparent;
  border-radius: 50%;
  transition: filter 0.2s, background 0.2s, transform 0.2s;
}

.social-icons a:hover img {
  filter: none;
  background: #fff;
  transform: scale(1.13);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #e67e22;
}

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

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

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #e67e22;
}

#subscribe-form input[type="email"] {
  flex: 1;
  padding: 6px 10px;
  border: none;
  border-radius: 3px;
}

#subscribe-form button {
  background: #e67e22;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 500;
}

.copyright {
  text-align: center;
  padding: 16px 0;
  background: #181818;
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 0;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-col:last-child {
    text-align: left;
    justify-self: start;
  }

  #subscribe-form,
  .social-icons {
    justify-content: flex-start;
  }

  .mobile-menu-list {
    gap: 38px;
  }

  .header-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
  }

  .hamburger {
    order: 1;
    position: static;
    margin-left: 0;
  }

  .logo {
    order: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    text-align: center;
    width: 120px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search-icon {
    display: none !important;
  }

  .mobile-search-trigger {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    transition: color 0.2s;
  }

  .mobile-search-trigger:hover {
    color: #e67e22;
  }

  .mobile-search-box {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    margin-top: 18px;
    width: 90vw;
    max-width: 340px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
    padding: 8px 12px;
    z-index: 2100;
    position: relative;
  }

  .mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.08rem;
    padding: 6px 8px;
    border-radius: 16px;
    background: #f5f5f5;
  }

  .close-mobile-search {
    background: none;
    border: none;
    color: #e67e22;
    font-size: 1.7rem;
    cursor: pointer;
    margin-left: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .close-mobile-search:hover {
    background: #ffe5c7;
  }
}

@media (max-width: 600px) {
  .header-flex {
    flex-direction: row;
    height: 56px;
    gap: 0;
    align-items: center;
  }

  nav ul.main-menu {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* --- Banner Slideshow --- */
.banner-section {
  width: 100vw;
  max-width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.banner-slideshow {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.slide img,
.slide video {
  width: 100vw;
  max-width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.banner-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 3;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.045)),
    rgba(20, 30, 34, 0.08);
  -webkit-backdrop-filter: blur(11px) saturate(1.28);
  backdrop-filter: blur(11px) saturate(1.28);
  padding: 34px 30px 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -18px 42px rgba(255, 255, 255, 0.04),
    0 18px 55px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.banner-content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.24), transparent 28%),
    radial-gradient(circle at 84% 88%, rgba(255, 255, 255, 0.10), transparent 34%);
  opacity: 0.78;
}

.banner-content h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.btn-contact {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: #e67e22;
}

.banner-contact {
  margin-top: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.slideshow-controls {
  display: none;
}

.slideshow-controls button {
  display: none;
}

.slideshow-controls button:hover {
  display: none;
}

@media (max-width: 900px) {

  .banner-slideshow,
  .slide img,
  .slide video {
    height: 38vw;
    min-height: 160px;
    max-height: 260px;
  }

  .slide img,
  .slide video {
    width: 100vw;
    height: 38vw;
    min-height: 160px;
    max-height: 260px;
    object-fit: cover;
  }

  .banner-content {
    padding: 8px 2vw 8px 2vw;
    min-width: 100px;
    max-width: 96vw;
    border-radius: 10px;
  }

  .banner-content h1 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .btn-contact {
    padding: 7px 18px;
    font-size: 0.98rem;
    margin-bottom: 8px;
    border-radius: 18px;
  }

  .banner-contact {
    font-size: 0.95rem;
  }

  .slideshow-dots {
    bottom: 10px;
    gap: 8px;
  }

  .dot {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 600px) {

  .banner-slideshow,
  .slide img,
  .slide video {
    height: 44vw;
    min-height: 120px;
    max-height: 180px;
  }

  .slide img,
  .slide video {
    height: 44vw;
    min-height: 120px;
    max-height: 180px;
  }

  .banner-content {
    padding: 6px 1vw 6px 1vw;
    min-width: 80px;
    max-width: 98vw;
    border-radius: 8px;
  }

  .banner-content h1 {
    font-size: 0.98rem;
    margin-bottom: 7px;
  }

  .btn-contact {
    padding: 6px 12px;
    font-size: 0.92rem;
    margin-bottom: 6px;
    border-radius: 14px;
  }

  .slideshow-dots {
    bottom: 4px;
    gap: 6px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }
}

/* --- Slideshow Dot Navigation --- */
.slideshow-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.dot.active {
  background: #e67e22;
  border: 2px solid #e67e22;
  transform: scale(1.18);
}

.dot:hover {
  background: #fff;
  border: 2px solid #e67e22;
}

/* --- Why Us Section --- */
.whyus-section {
  background: #fff;
  padding: 36px 0 24px 0;
  text-align: center;
}

.whyus-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 18px;
  color: #222;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 18px;
}

.whyus-item {
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 22px 16px 16px 16px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.22s, border 0.22s, background 0.22s;
  border: 2px solid transparent;
}

.whyus-item:hover {
  box-shadow: 0 8px 32px rgba(230, 126, 34, 0.18);
  transform: translateY(-7px) scale(1.045);
  border: 2px solid #e67e22;
  background: #fff7ef;
  z-index: 2;
}

.whyus-icon img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

.whyus-title {
  font-weight: bold;
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #e67e22;
}

.whyus-desc {
  font-size: 0.98rem;
  color: #444;
}

@media (max-width: 900px) {
  .whyus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }
}

@media (max-width: 600px) {
  .whyus-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* --- CTA Section --- */
.cta-section {
  background: #fbe7d1;
  padding: 32px 0 24px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.btn-hotline {
  background: #e67e22;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.08);
  text-decoration: none;
}

.btn-hotline:hover {
  background: #ff9900;
}

.btn-quote {
  background: #fff;
  color: #e67e22;
  border: 2px solid #e67e22;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-quote:hover {
  background: #e67e22;
  color: #fff;
}

.cta-hotline {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #222;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 120;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #c97b1e;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.mobile-menu-list li {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-menu-list li.active,
.mobile-menu-list li:hover {
  color: #e67e22;
}

.close-mobile-menu {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  header {
    min-height: 56px;
  }

  nav ul.main-menu {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .logo img {
    width: 48px !important;
    height: 48px !important;
    display: block;
  }

  .mobile-menu-overlay {
    display: none;
  }

  .header-flex {
    height: 56px;
    gap: 0;
  }

  .search-icon {
    margin-left: 0;
  }

  .language-switcher {
    display: none;
  }

  .banner-slideshow,
  .slide img,
  .slide video {
    height: 200px;
    min-height: 160px;
  }

  .banner-content {
    padding: 10px 4px 8px 4px;
    min-width: 120px;
    max-width: 98vw;
  }

  .banner-content h1 {
    font-size: 1.1rem;
  }

  .banner-contact {
    display: none;
  }

  .slideshow-controls {
    display: none !important;
  }

  .slideshow-dots {
    bottom: 4px;
  }

  .whyus-section {
    padding: 18px 0 10px 0;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .whyus-item {
    padding: 12px 6px 10px 6px;
  }

  .cta-section {
    padding: 16px 0 10px 0;
  }

  .cta-content {
    max-width: 98vw;
  }

  .btn-hotline,
  .btn-quote {
    padding: 8px 10px;
    font-size: 1rem;
    margin-right: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 10px;
  }

  .footer-col {
    margin-bottom: 8px;
    text-align: left !important;
    justify-self: start !important;
  }

  .footer-col:last-child {
    text-align: left !important;
    justify-self: start !important;
  }

  #subscribe-form,
  .social-icons {
    justify-content: flex-start;
  }

  .social-icons {
    margin-top: 6px;
  }
}

.desktop-search-box {
  display: none;
  position: fixed;
  width: min(386px, calc(100vw - 32px));
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  backdrop-filter: blur(14px) saturate(1.18);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
  padding: 16px 18px 10px 18px;
  z-index: 3000;
  animation: fadeInSearch 0.22s;
}

.desktop-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 12px;
  font-size: 1.08rem;
  border: 1.5px solid #e67e22;
  border-radius: 10px;
  outline: none;
  margin-bottom: 10px;
  background: #fafafa;
  transition: border 0.2s;
}

.desktop-search-input:focus {
  border: 1.5px solid #c97b1e;
}

.desktop-search-dropdown {
  display: none;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-top: 2px;
  max-height: 320px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
}

.search-result-item:hover {
  background: #fff7ef;
}

.search-result-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  font-weight: 600;
  color: #e67e22;
  font-size: 1.05rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-desc {
  font-size: 0.97rem;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-no-result {
  color: #888;
  text-align: center;
  padding: 16px 0 10px 0;
  font-size: 1.05rem;
}

.mobile-search-li {
  animation: fadeInSearch 0.25s;
}

.search-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.85em;
  font-weight: 600;
  color: #fff;
  background: #e67e22;
  vertical-align: middle;
  letter-spacing: 1px;
}

@keyframes fadeInSearch {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-search-dropdown {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
  margin-top: 8px;
  max-height: 260px;
  overflow-y: auto;
  min-width: 0;
  width: 98vw;
  padding: 2px 0;
  position: relative;
  z-index: 2200;
}

.mobile-search-dropdown .search-result-item {
  gap: 10px;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 1.08rem;
}

.mobile-search-dropdown .search-result-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.mobile-search-dropdown .search-result-name {
  font-size: 1.08rem;
}

.mobile-search-dropdown .search-result-desc {
  font-size: 0.98rem;
}

.mobile-search-dropdown .search-no-result {
  color: #888;
  text-align: center;
  padding: 16px 0 10px 0;
  font-size: 1.05rem;
}

.about-section {
  background: #fff;
  padding: 48px 0 32px 0;
}

.about-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  background: #f8f5f1;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(230, 126, 34, 0.07);
  overflow: hidden;
  min-height: 340px;
}

.about-left {
  flex: 1.2;
  padding: 38px 36px 32px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hello {
  font-size: 1.1rem;
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-title {
  font-size: 2rem;
  font-weight: bold;
  color: #c97b1e;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.about-body p {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.7;
}

.about-body b {
  color: #e67e22;
}

.about-thanks {
  font-size: 1.08rem;
  color: #c97b1e;
  font-weight: 600;
  margin-top: 18px;
}

.about-thanks span {
  display: block;
  font-size: 1.05rem;
  color: #e67e22;
  margin-top: 4px;
}

.about-right {
  flex: 1;
  background: linear-gradient(135deg, #ffe5c7 60%, #fff7ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 220px;
}

.about-right img {
  max-width: 98%;
  max-height: 420px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  margin: 24px 0 24px 0;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    padding: 0 4vw;
    min-height: 0;
  }

  .about-left {
    padding: 24px 10px 18px 10px;
  }

  .about-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .about-right {
    min-width: 0;
    min-height: 120px;
    padding: 12px 0;
  }

  .about-right img {
    max-width: 99%;
    max-height: 240px;
    margin: 10px 0 10px 0;
  }
}

.construction-section {
  background: #fff;
  padding: 40px 0 32px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: #fff7ef;
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(230, 126, 34, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  animation: fadeInUp 0.55s cubic-bezier(.4, 0, .2, 1) forwards;
}

.project-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-card:hover {
  box-shadow: 0 12px 36px rgba(230, 126, 34, 0.22);
  transform: translateY(-10px) scale(1.04);
  border-color: #e67e22;
}

.project-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-info {
  padding: 18px 18px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-name {
  font-size: 1.13rem;
  font-weight: 600;
  color: #c97b1e;
  margin-bottom: 16px;
  text-align: left;
}

.project-progress-bar {
  background: #e0e0e0;
  border-radius: 12px;
  height: 18px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.project-progress-inner {
  background: linear-gradient(90deg, #e67e22 0%, #c97b1e 100%);
  height: 100%;
  border-radius: 12px 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: width 0.5s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.project-progress-text {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  padding: 0 12px 0 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.13);
}

/* Chi tiết dự án */
.project-detail-section {
  background: #fff;
  padding: 40px 0 32px 0;
}

.btn-back-projects {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 7px 18px 7px 14px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.08);
  min-width: 0;
  max-width: 180px;
  height: 38px;
  margin-left: 32px;
}

.btn-back-projects:hover {
  background: #c97b1e;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.18);
}

.btn-back-projects::before {
  content: '';
  margin-right: 0;
}

.project-detail-wrap {
  display: flex;
  gap: 36px;
  max-width: 980px;
  margin: 0 auto;
  align-items: flex-start;
}

.project-detail-img {
  flex: 0 0 clamp(300px, 32vw, 430px);
  width: clamp(300px, 32vw, 430px);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: min(62vh, 540px);
}

.project-detail-img img {
  width: 100%;
  height: auto;
  max-height: min(62vh, 540px);
  object-fit: contain;
  display: block;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  background: #f5f1ea;
}

.project-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.project-detail-info h2 {
  font-size: 1.5rem;
  color: #c97b1e;
  margin-bottom: 18px;
}

.project-detail-progress-bar {
  background: #e0e0e0;
  border-radius: 12px;
  height: 18px;
  width: 100%;
  margin-bottom: 18px;
  overflow: hidden;
}

.project-detail-desc {
  font-size: 1.08rem;
  color: #222;
  margin-top: 8px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .projects-grid {
    gap: 16px;
  }

  .project-detail-wrap {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .project-detail-img {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
  }

  .project-detail-img img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
  }
}

.projects-filter {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-btn {
  background: #fff7ef;
  color: #c97b1e;
  border: 2px solid #e67e22;
  border-radius: 18px;
  padding: 8px 22px;
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(90deg, #e67e22 0%, #c97b1e 100%);
  color: #fff;
  border: 2px solid #c97b1e;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pricing-section {
  background: #fff;
  padding: 48px 0 32px 0;
}

.pricing-form {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff7ef;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(230, 126, 34, 0.09);
  padding: 38px 36px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeInSearch 0.5s;
}

.form-row {
  display: flex;
  gap: 32px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.form-group-col2 {
  flex: 2;
}

.form-group-full {
  flex: 1 1 100%;
}

label {
  font-weight: 600;
  color: #c97b1e;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}

.form-icon {
  font-size: 1.18em;
  margin-right: 2px;
}

.required {
  color: #e67e22;
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 1.08rem;
  background: #fff;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 0;
}

input:focus,
textarea:focus {
  border: 1.5px solid #e67e22;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.10);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 2px;
}

.checkbox-group label {
  font-weight: 400;
  color: #222;
  font-size: 1.04rem;
  gap: 5px;
  margin-bottom: 0;
}

input[type="checkbox"] {
  accent-color: #e67e22;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  margin-right: 4px;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.btn-pricing-submit {
  background: linear-gradient(90deg, #e67e22 0%, #c97b1e 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 12px 38px;
  font-size: 1.13rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 18px;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.10);
  letter-spacing: 1px;
}

.btn-pricing-submit:hover {
  background: #c97b1e;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.18);
}

.btn-pricing-reset {
  background: #fff;
  color: #e67e22;
  border: 2px solid #e67e22;
  border-radius: 18px;
  padding: 12px 38px;
  font-size: 1.13rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  letter-spacing: 1px;
}

.btn-pricing-reset:hover {
  background: #fff7ef;
  color: #c97b1e;
  border: 2px solid #c97b1e;
}

@media (max-width: 900px) {
  .pricing-form {
    padding: 18px 4vw 18px 4vw;
    border-radius: 14px;
    gap: 18px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group {
    min-width: 0;
    gap: 6px;
  }

  .btn-pricing-submit,
  .btn-pricing-reset {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .form-row.form-row-btns {
    flex-direction: column;
    gap: 0;
  }
}

/* --- Policy Section Multi-block --- */
.policy-section-multi {
  width: 100vw;
  background: #fff;
  padding: 0;
  margin: 0;
}

.policy-block {
  display: flex;
  align-items: stretch;
  min-height: 380px;
  width: 100vw;
  position: relative;
  margin-bottom: 0;
}

.policy-block-content {
  flex: 1.1;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(230, 126, 34, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.07);
  padding: 48px 48px 38px 56px;
  margin: 48px 0 48px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  min-width: 320px;
  max-width: 700px;
}

.policy-block-content h2 {
  font-size: 2rem;
  color: #c97b1e;
  margin-bottom: 16px;
  font-weight: bold;
}

.policy-block-content h3 {
  font-size: 1.08rem;
  color: #e67e22;
  margin-top: 14px;
  margin-bottom: 4px;
  font-weight: 600;
}

.policy-block-content p,
.policy-block-content a {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
}

.policy-block-content a {
  color: #e67e22;
  text-decoration: underline;
}

.policy-block-img-wrap {
  flex: 1;
  position: relative;
  min-width: 180px;
  max-width: 38vw;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
}

.policy-block-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: brightness(0.93) saturate(1.1);
  z-index: 1;
}

.policy-block-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(230, 126, 34, 0.13) 100%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .policy-block-content {
    padding: 32px 18px 18px 18px;
    margin: 28px 0 28px 2vw;
    max-width: 98vw;
    min-width: 0;
  }

  .policy-block-img {
    min-height: 120px;
  }
}

@media (max-width: 800px) {
  .policy-block {
    flex-direction: column;
    min-height: 0;
  }

  .policy-block-content {
    margin: 18px 2vw 0 2vw;
    padding: 18px 4vw 10px 4vw;
    border-radius: 12px;
    max-width: 100vw;
  }

  .policy-block-img-wrap {
    min-width: 0;
    max-width: 100vw;
    height: 180px;
    max-height: 220px;
  }

  .policy-block-img {
    min-height: 100px;
    height: 180px;
    border-radius: 0 0 12px 12px;
  }
}

.about-container.policy-container {
  align-items: flex-start;
}

.policy-film-col {
  flex: 1;
  max-width: 38vw;
  min-width: 180px;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.film-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100%;
  height: 100%;
  will-change: transform;
  /* animation: filmScroll 18s linear infinite; */
}

/* Xóa animation cuộn phim */
/* @keyframes filmScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
} */
.film-strip img {
  width: 98%;
  max-width: 320px;
  height: calc(100vh / 5.2);
  min-height: 120px;
  object-fit: cover;
  border-radius: 18px;
  margin: 12px 0;
  box-shadow: 0 2px 12px rgba(230, 126, 34, 0.10);
  background: #f5f5f5;
  transition: box-shadow 0.2s, transform 0.2s;
}

.film-strip img:hover {
  box-shadow: 0 6px 24px rgba(230, 126, 34, 0.18);
  transform: scale(1.03);
}

@media (max-width: 1100px) {
  .policy-film-col {
    max-width: 100vw;
    min-width: 0;
  }

  .film-strip img {
    max-width: 98vw;
    height: calc(100vw / 5.2);
    min-height: 80px;
  }
}

@media (max-width: 800px) {
  .about-container.policy-container {
    flex-direction: column;
    align-items: stretch;
  }

  .policy-film-col {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    height: 220px;
    margin-top: 12px;
    justify-content: center;
    align-items: stretch;
  }

  .film-strip img {
    height: 90px;
    margin: 6px 0;
    border-radius: 10px;
  }
}

.policy-left,
.about-left.policy-left {
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}

/* --- Contact Section --- */
.contact-section {
  background: #fff;
  padding: 40px 0 32px 0;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  background: #f8f5f1;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(230, 126, 34, 0.07);
  overflow: hidden;
  padding: 38px 36px 32px 38px;
  flex-wrap: wrap;
}

.contact-info-col {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.08rem;
  color: #222;
}

.contact-info-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-top: 2px;
}

.contact-form-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(230, 126, 34, 0.06);
  padding: 28px 24px 22px 24px;
  min-width: 280px;
}

.contact-form-col input,
.contact-form-col textarea {
  font-size: 1.05rem;
  padding: 10px 12px;
  border: 1.5px solid #e0c7a0;
  border-radius: 7px;
  margin-bottom: 0;
  background: #faf8f4;
  color: #222;
  outline: none;
  transition: border 0.2s;
}

.contact-form-col input:focus,
.contact-form-col textarea:focus {
  border: 1.5px solid #e67e22;
  background: #fff7ef;
}

.contact-form-col textarea {
  resize: vertical;
  min-height: 60px;
  max-height: 180px;
}

.contact-form-btns {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.btn-contact-submit {
  background: #e67e22;
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-contact-submit:hover {
  background: #ff9900;
}

.btn-contact-reset {
  background: #fff;
  color: #e67e22;
  border: 2px solid #e67e22;
  padding: 10px 32px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-contact-reset:hover {
  background: #ffe5c7;
  color: #c97b1e;
}

.contact-map-wrap {
  margin: 32px auto 0 auto;
  max-width: 900px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(230, 126, 34, 0.10);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 18px;
    padding: 18px 6vw 12px 6vw;
  }

  .contact-form-col {
    padding: 18px 8px 12px 8px;
  }

  .contact-map-wrap {
    max-width: 99vw;
    border-radius: 10px;
  }
}

@media (max-width: 600px) {
  .contact-container {
    padding: 8px 2vw 6px 2vw;
  }

  .contact-form-col {
    padding: 10px 2px 8px 2px;
    min-width: 0;
  }

  .contact-info-item img {
    width: 28px;
    height: 28px;
  }
}

/* ===== Logo & Footer Utility Classes ===== */
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  line-height: 0;
}

.logo-link:focus:not(:focus-visible) {
  outline: none;
}

.logo-link:focus-visible {
  outline: 3px solid rgba(230, 126, 34, 0.58);
  outline-offset: 2px;
  border-radius: 4px;
}

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.footer-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #e67e22;
  text-decoration: underline;
}

.footer-h4-spacing {
  margin-top: 18px;
}

.contact-link {
  color: #e67e22;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e67e22, #c97b1e);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ff9900, #e67e22);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 24px rgba(230, 126, 34, 0.35);
}

/* ===== Toast Notifications ===== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  pointer-events: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.35s, transform 0.35s;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.hide {
  opacity: 0;
  transform: translateX(60px);
}

.toast-success {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.toast-error {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.toast-info {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.toast-icon {
  font-size: 1.2em;
}

@media (max-width: 600px) {
  .toast-container {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .toast {
    font-size: 0.92rem;
    padding: 10px 14px;
  }
}

/* ===== Loading Spinner ===== */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  color: #888;
  font-size: 1.1rem;
  gap: 12px;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 4px solid #f0e0c8;
  border-top: 4px solid #e67e22;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===== Error Message ===== */
.error-message {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 1.1rem;
}

/* ===== Scroll Animations ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Recruitment Page ===== */
.recruitment-section {
  background: #fff;
  padding: 48px 0 40px 0;
}

.recruitment-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.recruitment-header {
  text-align: center;
  margin-bottom: 40px;
}

.recruitment-title {
  font-size: 2rem;
  font-weight: 700;
  color: #c97b1e;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.recruitment-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.recruitment-card {
  background: #fff7ef;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(230, 126, 34, 0.08);
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.22s, box-shadow 0.22s, border 0.22s;
}

.recruitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(230, 126, 34, 0.18);
  border: 2px solid #e67e22;
}

.recruitment-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.recruitment-card h3 {
  font-size: 1.15rem;
  color: #c97b1e;
  margin-bottom: 14px;
  font-weight: 600;
}

.recruitment-card ul {
  padding-left: 20px;
  margin: 0;
  color: #444;
  line-height: 1.8;
}

.recruitment-card ul li {
  margin-bottom: 4px;
}

.recruitment-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(90deg, #27ae60, #2ecc71);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.recruitment-cta {
  background: #f8f5f1;
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(230, 126, 34, 0.06);
}

.recruitment-cta h3 {
  font-size: 1.3rem;
  color: #c97b1e;
  margin-bottom: 20px;
  font-weight: 600;
}

.recruitment-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
}

.benefit-item:hover {
  transform: translateY(-2px);
}

.benefit-item span {
  font-size: 1.3em;
}

.recruitment-contact {
  margin-top: 16px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

.recruitment-contact a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 600;
}

.recruitment-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .recruitment-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recruitment-title {
    font-size: 1.5rem;
  }

  .recruitment-cta {
    padding: 20px 16px;
  }

  .recruitment-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .slide {
    transition: none !important;
  }

  .project-card,
  .whyus-item,
  .scroll-animate,
  .animate-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .project-progress-inner {
    transition: none !important;
  }
}
