@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Mulish:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #0f1e3f;
  --navy-700: #213a56;
  --navy-500: #2d4a6f;
  --navy-100: #e8eef5;
  --gold-500: #cdaa80;
  --gold-700: #997953;
  --gold-300: #e2d0b5;
  --gold-100: #f5ede3;

  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #f8fafc;
  --success: #4caf50;
  --shadow-sm: 0 1px 3px rgba(15,30,63,.08);
  --shadow-md: 0 4px 20px rgba(15,30,63,.12);
  --shadow-lg: 0 12px 40px rgba(15,30,63,.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Mulish', sans-serif;
  --font-body: 'Mulish', sans-serif;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: all var(--transition); }
.btn-cta { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #fff; padding: 8px 20px; border-radius: 50px; font-size: 13px; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(205,170,128,.4); }
.btn-search { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #fff; width: 100%; padding: 14px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; margin-top: 8px; }
.btn-search:hover { background: var(--gold-700); }
.btn-slide { background: rgba(255,255,255,.2); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255,255,255,.4); border-radius: 50px; padding: 10px 24px; font-size: 13px; }
.btn-slide:hover { background: var(--gold-500); border-color: var(--gold-500); }
.btn-more { background: var(--white); color: var(--text); border: 2px solid #ddd; border-radius: 50px; padding: 12px 40px; }
.btn-more:hover { border-color: var(--gold-500); color: var(--gold-700); }
.btn-submit { background: var(--navy-900); color: #fff; width: 100%; padding: 14px; font-size: 15px; border-radius: var(--radius-sm); }
.btn-submit:hover { background: var(--navy-700); }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(33,48,78,.08); transition: all var(--transition); }
.header.scrolled { background: rgba(255,255,255,.65); box-shadow: 0 2px 20px rgba(33,48,78,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; }
.logo { display: flex; align-items: center; gap: 10px; margin: 0; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: #fff; }
.logo-text h1 { font-family: var(--font-heading); font-size: 16px; color: #21304E; font-weight: 700; letter-spacing: 1px; }
.logo img, .footer-logo img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.nav-center { display: flex; align-items: center; gap: 18px; }
.nav-center a { color: #21304E; font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; position: relative; padding: 4px 0; transition: color var(--transition); }
.nav-center a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold-500); transition: width var(--transition); }
.nav-center a:hover, .nav-center a.active { color: var(--gold-500); }
.nav-center a:hover::after, .nav-center a.active::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 15px; }
.header-phone { display: flex; align-items: center; gap: 6px; color: #21304E; font-weight: 600; font-size: 13px; }
.header-phone svg { color: var(--gold-500); flex-shrink: 0; }
.header-phone a { color: #21304E; }
.header-phone a:hover { color: var(--gold-500); }

.header-search-inline { position: relative; display: flex; align-items: center; gap: 8px; background: rgba(33, 48, 78, 0.05); border: 1px solid rgba(33, 48, 78, 0.12); border-radius: 50px; padding: 6px 14px; width: 170px; transition: all var(--transition); }
.header-search-inline:focus-within { width: 230px; background: rgba(33, 48, 78, 0.08); border-color: var(--gold-500); box-shadow: 0 0 10px rgba(205, 170, 128, 0.25); }
.header-search-inline svg { color: var(--gold-500); flex-shrink: 0; }
.header-search-inline input { border: none; background: none; outline: none; color: #21304E; font-size: 13px; width: 100%; }
.header-search-inline input::placeholder { color: rgba(33, 48, 78, 0.4); }

.lang-switch { display: flex; border: 1px solid rgba(33, 48, 78, 0.15); border-radius: 50px; overflow: hidden; }
.lang-btn { background: none; border: none; padding: 4px 10px; font-size: 12px; font-weight: 600; color: rgba(33,48,78,.5); cursor: pointer; transition: all var(--transition); }
.lang-btn.active { background: var(--gold-500); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; position: absolute; right: 24px; z-index: 1002; }
.hamburger span { width: 22px; height: 2px; background: #21304E; transition: all var(--transition); border-radius: 2px; }


/* ===== HERO SECTION ===== */
.hero { margin-top: 76px; padding: 0; position: relative; overflow: visible; margin-bottom: 145px; }
.hero-inner { max-width: 100%; margin: 0 auto; display: block; position: relative; width: 100%; box-shadow: none; border-radius: 0; }
.hero-slider { position: relative; overflow: hidden; height: calc(100vh - 76px); width: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 12s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,30,63,.85) 0%, rgba(15,30,63,.4) 50%, rgba(15,30,63,.1) 100%); }
.slide-content { position: absolute; top: 45%; left: 10%; transform: translateY(-50%); z-index: 2; max-width: 600px; color: #fff; }
.slide-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-500); color: var(--navy-900); padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(205,170,128,.4); }
.slide-content h2 { font-family: var(--font-heading); font-size: 44px; color: #fff; line-height: 1.15; margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.slide-content h2 span { color: var(--gold-300); }
.slide-content p { color: rgba(255,255,255,.9); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
.hero-dots { position: absolute; bottom: 120px; right: 10%; display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); background: transparent; cursor: pointer; transition: all var(--transition); }
.hero-dot.active { background: var(--gold-500); border-color: var(--gold-500); width: 24px; border-radius: 4px; }

/* ===== FLOATING SEARCH CARD ===== */
.hero-search-card {
  position: absolute;
  bottom: -145px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 15px 45px rgba(15, 30, 63, 0.18);
  z-index: 10;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(205, 170, 128, 0.2);
}
.hero-search-card-row-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}
.hero-search-card-row-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}
.hero-search-card-row-3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}
.hero-search-card .filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-search-card .filter-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.hero-search-card .filter-group select,
.hero-search-card .filter-group input {
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  background-color: #fff;
  outline: none;
  transition: all var(--transition);
  height: 42px;
}
.hero-search-card .filter-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23997953' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  cursor: pointer;
  padding-right: 32px;
}
.hero-search-card .filter-group select:focus,
.hero-search-card .filter-group input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(205,170,128,.15);
}
.hero-search-card .btn-search {
  height: 42px;
  margin-top: 0;
  padding: 0 24px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}
.hero-search-card .btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(205,170,128,.35);
}
.hero-search-card .kw-label {
  font-weight: 600;
  color: var(--navy-900);
}
.hero-search-card .kw-tag {
  font-size: 11px;
  color: var(--gold-700);
  font-weight: 600;
  padding: 4px 12px;
  background: var(--gold-100);
  border-radius: 50px;
  transition: all var(--transition);
}
.hero-search-card .kw-tag:hover {
  background: var(--gold-700);
  color: #fff;
}

/* ===== FEATURED PROJECTS ===== */
.section-featured { background: #fff; border-bottom: 1px solid #f0f0f0; }
.featured-header { margin-bottom: 24px; }
.featured-title-wrap {
  display: inline-block; position: relative;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  padding: 10px 28px 10px 20px;
  margin-bottom: 14px; margin-left: -24px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
}
.featured-title {
  font-family: var(--font-heading); font-size: 24px;
  color: #fff; font-weight: 700; font-style: italic;
}
.featured-sub {
  font-size: 13px; color: var(--text-light); line-height: 1.6;
}
.featured-tags { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.ftag {
  padding: 7px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid #e0e0e0; background: #fff;
  font-size: 13px; font-weight: 600; color: var(--text);
  cursor: pointer; transition: all var(--transition);
}
.ftag.active, .ftag:hover {
  background: var(--navy-900); color: #fff; border-color: var(--navy-900);
}
.featured-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.fcard-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}
.fcard {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #eef0f5; transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(15,30,63,.06);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.fcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(15,30,63,.14);
  border-color: var(--gold-300);
}
.fcard-img {
  height: 240px; overflow: hidden; position: relative;
}
.fcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.fcard:hover .fcard-img img { transform: scale(1.06); }
.fcard-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; z-index: 2;
}
.fbadge {
  padding: 4px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: .3px; backdrop-filter: blur(4px);
}
.fbadge-type { background: rgba(25,118,210,.85); }
.fbadge-status { background: rgba(46,160,67,.9); }
.fcard-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; gap: 6px; z-index: 2;
  opacity: 0; transition: opacity var(--transition);
}
.fcard:hover .fcard-actions { opacity: 1; }
.fcard-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--navy-900);
  transition: all var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.fcard-btn:hover { background: var(--gold-500); color: #fff; }
.fcard-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.fcard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.fcard-header-row h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
  margin-bottom: 0;
  transition: color var(--transition);
  flex: 1;
}
.fcard:hover .fcard-header-row h3 { color: var(--gold-700); }
.fcard-developer {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: .5px;
  text-transform: uppercase;
  background: var(--gold-100);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 2px;
}
.fcard-parent {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--gold-700); letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 4px;
}
.fcard-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-light); margin-bottom: 10px;
}
.fcard-location svg { color: var(--gold-500); flex-shrink: 0; }
.fcard-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-700);
  letter-spacing: .3px;
  margin-top: auto;
}

/* Unified Status Colors */
.status-selling {
  background: #10b981 !important; /* Green */
  color: #fff !important;
}
.status-upcoming {
  background: #f59e0b !important; /* Amber/Orange */
  color: #fff !important;
}
.status-sold, .status-completed {
  background: #64748b !important; /* Grey */
  color: #fff !important;
}

/* Property Type Unified Colors */
.type-nhapho {
  background: #2563eb !important; /* Xanh dương */
  color: #ffffff !important;
}
.type-bietthu {
  background: #2563eb !important; /* Xanh dương */
  color: #ffffff !important;
}
.type-canho {
  background: #2563eb !important; /* Xanh dương */
  color: #ffffff !important;
}
.type-shophouse {
  background: #2563eb !important; /* Xanh dương */
  color: #ffffff !important;
}
@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr; }
  .fcard-img { height: 200px; }
  .featured-title-wrap { margin-left: -12px; }
}

/* ===== PROJECTS BY REGION ===== */
.section { padding: 64px 0; }
.section-projects {
  background: #0f1e3f;
  position: relative; overflow: hidden;
}
.section-projects::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(205,170,128,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.section-projects::after {
  content: ''; position: absolute;
  bottom: -60px; left: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(205,170,128,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.proj-section-title {
  font-family: var(--font-body); font-size: 26px; font-weight: 700;
  color: #fff; margin-bottom: 6px; position: relative; z-index: 1;
  letter-spacing: .5px;
}
.proj-section-title::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px; margin-top: 10px;
}
.region-tabs {
  display: flex; gap: 8px; margin-bottom: 32px; margin-top: 20px;
  position: relative; z-index: 1;
  overflow-x: auto; flex-wrap: nowrap;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(205,170,128,.3) transparent;
}
.region-tabs::-webkit-scrollbar { height: 4px; }
.region-tabs::-webkit-scrollbar-track { background: transparent; }
.region-tabs::-webkit-scrollbar-thumb { background: rgba(205,170,128,.35); border-radius: 4px; }
.region-tab {
  padding: 7px 18px; border-radius: 50px;
  border: 1px solid rgba(205,170,128,.35);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.region-tab.active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  border-color: transparent; color: #fff; font-weight: 600;
  box-shadow: 0 4px 14px rgba(205,170,128,.35);
}
.region-tab:hover:not(.active) { background: rgba(255,255,255,.12); border-color: rgba(205,170,128,.5); color: #fff; }
.region-tab--more {
  border-style: dashed; border-color: rgba(205,170,128,.5);
  color: var(--gold-300); font-weight: 500;
}
.region-tab--more:hover { background: rgba(205,170,128,.15); border-color: var(--gold-500); color: #fff; }
.region-tabs--extra {
  flex-wrap: wrap; margin-top: -24px;
  animation: fadeSlideDown .3s ease;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 1; }
.project-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.project-card-img { position: relative; height: 200px; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,30,63,.35) 0%, transparent 50%);
  pointer-events: none;
}
.project-card:hover .project-card-img img { transform: scale(1.08); }
.card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 5px; z-index: 2; }
.badge {
  padding: 3px 9px; border-radius: 50px; font-size: 10px; font-weight: 700;
  color: #fff; letter-spacing: .3px; backdrop-filter: blur(4px);
}
.badge-type { background: rgba(25,118,210,.85); }
.badge-status { background: rgba(46,160,67,.9); }
.project-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-card-body h3 {
  font-size: 15px; font-weight: 700; color: var(--navy-900);
  margin-bottom: 6px; line-height: 1.3;
}
.card-location {
  display: flex; align-items: center; gap: 4px;
  color: var(--text-light); font-size: 12px; margin-bottom: 10px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card-location svg { flex-shrink: 0; color: var(--gold-500); }
.card-price {
  color: var(--gold-700); font-size: 15px; font-weight: 700;
  border-top: 1px solid #f0f0f0; padding-top: 10px; margin-top: auto;
}
.proj-more { text-align: center; margin-top: 36px; position: relative; z-index: 1; }
.proj-more .btn-more {
  background: transparent; border: 1.5px solid rgba(205,170,128,.5);
  color: var(--gold-300); border-radius: 50px; padding: 11px 40px; font-size: 14px; font-weight: 600;
}
.proj-more .btn-more:hover { background: rgba(205,170,128,.1); border-color: var(--gold-500); color: var(--gold-500); }

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
  font-size: 11px; color: var(--gold-700); letter-spacing: 4px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold-500); opacity: .6;
}
.section-title {
  font-family: var(--font-body); font-size: 26px; color: var(--navy-900);
  font-weight: 700; letter-spacing: .3px;
}

/* ===== NEWS ===== */
.section-news { background: #fff; }
.news-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.news-tab {
  padding: 8px 22px; border-radius: 50px; border: 1.5px solid #e2e8f0;
  background: #fff; color: var(--text-light); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.news-tab.active {
  background: var(--navy-900); color: #fff; border-color: var(--navy-900);
  font-weight: 600; box-shadow: 0 4px 12px rgba(15,30,63,.2);
}
.news-tab:hover:not(.active) { border-color: var(--gold-500); color: var(--gold-700); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  transition: all var(--transition);
  border: 1px solid #eef0f5;
  box-shadow: 0 2px 8px rgba(15,30,63,.06);
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(15,30,63,.12); border-color: var(--gold-300); }
/* ===== NEWS SECTION ===== */
.section-news { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.news-card-img { height: 210px; overflow: hidden; position: relative; }
.news-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,30,63,.3) 0%, transparent 50%);
  pointer-events: none; transition: opacity var(--transition);
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 18px 20px 20px; }
.news-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.news-date { font-size: 11px; color: var(--text-light); }
.news-cat { font-size: 10px; padding: 3px 10px; border-radius: 50px; font-weight: 700; letter-spacing: .3px; }
.cat-qh { background: #dbeafe; color: #1d4ed8; }
.cat-tt { background: #fce7f3; color: #be185d; }
.cat-da { background: var(--gold-100); color: var(--gold-700); }
.news-card-body h3 {
  font-size: 15px; font-weight: 600; color: var(--navy-900);
  line-height: 1.55; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--transition);
}
.news-card:hover .news-card-body h3 { color: var(--gold-700); }
.news-desc {
  font-size: 13px; color: var(--text-light); line-height: 1.6;
  margin-top: 8px; display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-keywords {
  text-align: center; margin-top: 28px;
  font-size: 12px; color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.news-keywords span { font-weight: 600; color: var(--navy-900); }
.news-keywords a {
  color: var(--gold-700); font-weight: 600;
  padding: 4px 14px; background: var(--gold-100);
  border-radius: 50px; font-size: 12px;
  transition: all var(--transition);
}
.news-keywords a:hover { background: var(--gold-700); color: #fff; }

/* ===== PARTNERS ===== */
.section-partners {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.partners-row { margin-bottom: 40px; }
.partners-row:last-child { margin-bottom: 0; }
.partner-label {
  font-size: 11px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 20px; text-align: center;
  display: flex; align-items: center; gap: 12px; justify-content: center;
}
.partner-label::before, .partner-label::after {
  content: ''; flex: 1; max-width: 80px;
  height: 1px; background: #e0e0e0;
}
.partner-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.partner-logo {
  width: 160px; height: 72px; background: #fff;
  border: 1px solid #ebebeb; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
  padding: 8px;
}
.partner-logo:hover {
  border-color: var(--gold-300);
  box-shadow: 0 4px 16px rgba(205,170,128,.15);
  transform: translateY(-2px);
}
.partner-logo img {
  max-width: 85%;
  max-height: 75%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: all var(--transition);
}
.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}
.partner-logo svg {
  max-width: 85%;
  max-height: 75%;
  width: auto;
  height: auto;
  color: #bbb;
  fill: currentColor;
  transition: all var(--transition);
}
.partner-logo:hover svg {
  color: var(--gold-700);
}

/* ===== ABOUT MODAL ===== */
.about-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  align-items: center; justify-content: center;
}
.about-modal.open { display: flex; }
.about-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(15,30,63,.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.about-modal-content {
  position: relative; z-index: 1;
  width: 92%; max-width: 960px; max-height: 90vh;
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.35);
  animation: modalSlideUp .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.about-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: var(--navy-900);
  border-bottom: 3px solid var(--gold-500);
}
.about-modal-brand { display: flex; align-items: center; gap: 12px; }
.about-modal-brand .logo-icon { width: 36px; height: 36px; font-size: 13px; }
.about-modal-brand h2 { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 1.5px; }
.about-modal-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.about-modal-close:hover { background: rgba(255,255,255,.2); color: #fff; transform: rotate(90deg); }
.about-modal-body { padding: 32px 28px; overflow-y: auto; flex: 1; }
.about-modal-body .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 24px; }
.about-label {
  font-size: 11px; color: var(--gold-700); letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.about-label::after { content: ''; width: 32px; height: 1px; background: var(--gold-500); }
.about-title { font-family: var(--font-heading); font-size: 26px; color: var(--navy-900); line-height: 1.25; margin-bottom: 16px; }
.about-intro { font-size: 13.5px; color: var(--text); line-height: 1.7; margin-bottom: 12px; text-align: justify; }
.about-desc { font-size: 12.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; text-align: justify; }
.about-desc strong { color: var(--navy-900); }

/* Core Values dynamic styling */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.value-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fdfaf6;
  border: 1.5px solid var(--gold-300);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-900);
  transition: all var(--transition);
}
.value-card:hover {
  background: #fff;
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}
.value-card-icon {
  color: var(--gold-500);
  display: flex;
  align-items: center;
}

/* Sidebar cards */
.about-cards { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: var(--bg); border-radius: 12px; padding: 18px 20px;
  border: 1px solid #eef0f5; transition: all var(--transition);
  display: flex; gap: 16px; align-items: flex-start;
}
.about-card:hover { border-color: var(--gold-300); box-shadow: 0 4px 16px rgba(205,170,128,.1); }
.about-card-icon-container {
  width: 36px; height: 36px;
  background: rgba(205,170,128,.12);
  border: 1.5px solid rgba(205,170,128,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-700); flex-shrink: 0;
}
.about-card-text { display: flex; flex-direction: column; }
.about-card-text h4 { font-size: 14.5px; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.about-card-text p { font-size: 12.5px; color: var(--text-light); line-height: 1.6; text-align: justify; }
.about-card-text ul { list-style: none; padding: 0; }
.about-card-text ul li {
  font-size: 12.5px; color: var(--text-light); line-height: 1.6;
  padding: 2px 0 2px 14px; position: relative;
}
.about-card-text ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500);
}

/* Commitment banner */
.about-commitment {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, var(--navy-900), #1a2f52);
  border-radius: 12px; padding: 18px 24px;
  color: rgba(255,255,255,.9); font-size: 13px; line-height: 1.6;
  margin-top: 10px;
}
.about-commitment strong { color: var(--gold-500); }
.commit-icon-container {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500); flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-modal-body .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-modal-content { width: 96%; max-height: 95vh; }
  .about-modal-body { padding: 20px; }
  .about-title { font-size: 22px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-commitment { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== CONTACT ===== */
.section-contact {
  background: linear-gradient(135deg, var(--navy-900) 0%, #1a2f52 100%);
  position: relative; overflow: hidden;
}
.section-contact::before {
  content: ''; position: absolute;
  top: -100px; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(205,170,128,.08) 0%, transparent 65%);
  border-radius: 50%;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.contact-info h2 {
  font-family: var(--font-heading); font-size: 32px;
  color: #fff; margin-bottom: 12px; line-height: 1.2;
}
.contact-info > p { color: rgba(255,255,255,.65); margin-bottom: 28px; font-size: 15px; }
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all var(--transition);
}
.benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(205, 170, 128, 0.35);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(205, 170, 128, 0.15);
  border: 1.5px solid rgba(205, 170, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 18px;
  height: 18px;
}
.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefit-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}
.benefit-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  text-align: justify;
}
.contact-form {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--navy-900); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .4px; }
.form-group .req { color: #ef4444; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid #eaeaea;
  border-radius: var(--radius-sm); font-size: 14px;
  color: var(--text); background: #fafafa;
  outline: none; transition: all var(--transition); resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-500); background: #fff;
  box-shadow: 0 0 0 3px rgba(205,170,128,.15);
}

/* Form Alternative Actions (Zalo & Hotline) */
.form-or-divider {
  text-align: center;
  margin: 18px 0 12px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 1.2px;
  position: relative;
}
.form-or-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #eaeaea;
  z-index: 1;
}
.form-or-divider span {
  background: #fff;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}
.form-alt-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-alt-actions .btn-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.form-alt-actions .btn-alt-phone {
  border: 1.5px solid var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}
.form-alt-actions .btn-alt-phone:hover {
  background: #f8fafc;
  color: var(--navy-700);
  border-color: var(--navy-700);
}
.form-alt-actions .btn-alt-zalo {
  border: 1.5px solid #0068ff;
  color: #fff;
  background: #0068ff;
}
.form-alt-actions .btn-alt-zalo:hover {
  background: #0052cc;
  border-color: #0052cc;
}
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  border-color: rgba(205, 170, 128, 0.35);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-900); color: rgba(255,255,255,.7);
  padding: 0;
  border-top: 3px solid var(--gold-500);
}
.footer-inner { padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.1fr 1.1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo h3 { font-family: var(--font-heading); font-size: 16px; color: #ffffff; font-weight: 700; letter-spacing: 1px; margin: 0; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); font-style: italic; margin-bottom: 20px; line-height: 1.6; }
.footer-info-list { display: flex; flex-direction: column; gap: 12px; }
.footer-info-list p { font-size: 13px; line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; margin: 0; }
.footer-info-list p svg.footer-icon { width: 16px; height: 16px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.footer-info-list p span, .footer-info-list p a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-info-list p a:hover { color: var(--gold-500); }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-bottom: 6px; }
.footer-col { padding-top: 4px; }
.footer-col h4 {
  color: var(--gold-500); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px; font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(205,170,128,.2);
}

/* Quick Links Styles */
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.65); transition: all var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '→'; opacity: 0; transform: translateX(-6px); transition: all var(--transition); color: var(--gold-500); font-weight: bold; font-size: 11px; }
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

/* Hotline Cards */
.footer-hotline-item { margin-bottom: 14px; padding: 12px 16px; background: rgba(255,255,255,.02); border-radius: 8px; border-left: 3px solid var(--gold-500); transition: all var(--transition); border-top: 1px solid rgba(255,255,255,0.01); border-right: 1px solid rgba(255,255,255,0.01); border-bottom: 1px solid rgba(255,255,255,0.01); }
.footer-hotline-item:hover { background: rgba(255,255,255,.05); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,.2); border-color: var(--gold-400); }
.hotline-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: 4px; }
.hotline-number { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--gold-500); transition: color var(--transition); }
.hotline-number svg.phone-svg { width: 14px; height: 14px; color: var(--gold-500); transition: color var(--transition); }
.hotline-number:hover { color: #fff; }
.hotline-number:hover svg.phone-svg { color: #fff; animation: phoneShake 0.5s ease-in-out infinite alternate; }

@keyframes phoneShake {
  0% { transform: rotate(-10deg); }
  100% { transform: rotate(10deg); }
}

/* Social Outline Icons */
.footer-social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-circle { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); background: transparent; transition: all var(--transition); }
.social-circle svg { width: 16px; height: 16px; }
.social-circle:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.social-circle.fb:hover { background: #1877F2; border-color: #1877F2; }
.social-circle.zalo:hover { background: #0068FF; border-color: #0068FF; }
.social-circle.yt:hover { background: #FF0000; border-color: #FF0000; }

/* Footer Map Dark overlay */
.footer-map-full { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); margin-bottom: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.footer-map-full iframe { width: 100%; height: 180px; border: 0; display: block; filter: none; transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.footer-map-full:hover iframe { filter: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center; font-size: 12px;
  color: rgba(255,255,255,.35); letter-spacing: .5px;
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--navy-900); color: var(--gold-500); border: 2px solid var(--gold-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 999; }
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-500); color: #fff; transform: translateY(-3px); }

/* ===== MOBILE NAV ===== */
.mobile-nav { display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: rgba(15,30,63,.98); z-index: 999; flex-direction: column; padding: 24px; transform: translateX(100%); transition: transform var(--transition); }
.mobile-nav.open { display: flex; transform: translateX(0); }
.mobile-nav a { color: rgba(255,255,255,.85); font-size: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 600; }
.mobile-nav a:hover { color: var(--gold-500); }


/* ===== LISTING PAGE ===== */
.page-projects { padding-top: 110px; padding-bottom: 80px; min-height: 80vh; background: #f8fafc; }
.listing-search-row { 
  background: var(--white); 
  border-bottom: 1px solid #eaeaea; 
  padding: 16px 24px; 
  display: flex; justify-content: center; 
}
.listing-search-box {
  width: 100%; max-width: 800px;
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid #eaeaea; border-radius: 8px;
  padding: 12px 20px; background: #fff;
  transition: all 0.3s;
}
.listing-search-box:focus-within { border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(205,170,128,.15); }
.listing-search-box input {
  flex: 1; border: none; background: transparent; outline: none; font-size: 15px; font-family: var(--font-body);
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.l-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.l-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.l-card-img-wrap {
  position: relative;
  height: 200px;
}
.l-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.l-card-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
}
.l-badge-type { background: #3b82f6; color: #fff; font-size: 11px; font-weight: 600; padding: 4px 8px; border-radius: 50px; }
.l-badge-status { background: #10b981; color: #fff; font-size: 11px; font-weight: 600; padding: 4px 8px; border-radius: 50px; display: flex; align-items: center; gap:4px; }
.l-badge-status::before { content: ''; width: 4px; height: 4px; background: #fff; border-radius: 50%; }

.l-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.l-card-title { font-size: 15px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; line-height: 1.4; }
.l-card-loc { font-size: 12px; color: #64748b; display: flex; align-items: flex-start; gap: 6px; margin-bottom: 16px; line-height: 1.4;}
.l-card-loc svg { flex-shrink: 0; margin-top: 2px; }
.l-card-price { font-size: 14px; font-weight: 700; color: #ea580c; margin-top: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-center { display: none; }
  .hamburger { display: flex; position: static; right: auto; margin-left: 8px; flex-shrink: 0; }
  .header-inner { height: 68px; }
  .mobile-nav { top: 68px; }
  .hero { margin-top: 68px; margin-bottom: 20px; }
  .header-right { gap: 10px; margin-right: 0; margin-left: auto; flex-shrink: 0; }
  .header-phone { display: none; }
  .header-search-inline { width: 140px; }
  .header-search-inline:focus-within { width: 180px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-slider { height: calc(100vh - 68px); min-height: 400px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { margin-top: 68px; margin-bottom: 20px; }
  .hero-slider { height: calc(100vh - 68px); min-height: 350px; }
  .hero-search-card { bottom: -20px; padding: 16px 20px; width: calc(100% - 24px); }
  .hero-search-card-row-1 { grid-template-columns: 1fr; gap: 10px; }
  .hero-search-card-row-2 { grid-template-columns: 1fr; gap: 10px; }
  .hero-search-card-row-3 { flex-wrap: wrap; gap: 6px; }
  .hero-search-card .btn-search { width: 100%; }
  .projects-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-tabs { flex-wrap: wrap; }
  .region-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .header-right .lang-switch { display: none; }
  .header-search-inline { display: none; }
  .header-inner { padding: 0 16px; }
  .logo { gap: 6px; }
  .logo img { height: 32px !important; }
}
@media (max-width: 480px) {
  .logo img { height: 28px !important; }
  .projects-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; gap: 16px; }
  .partner-logos { gap: 12px; }
  .partner-logo { width: 130px; height: 56px; font-size: 12px; }
  .slide-content h2 { font-size: 28px; }
  .slide-content p { font-size: 13px; }
  .slide-content { left: 6%; max-width: 85%; }
}

/* ===== GLOBAL HEADER SEARCH RESULTS PANEL ===== */
.search-results-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--gold-500);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-lg);
  max-height: 480px;
  overflow-y: auto;
  z-index: 1001;
  display: none;
  padding: 24px 30px;
}
.search-results-panel.show {
  display: block;
}
.search-results-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.search-results-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 32px;
}
.search-column {
  display: flex;
  flex-direction: column;
}
.search-column-title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
  border-left: 3px solid var(--gold-500);
  padding-left: 8px;
}
.search-column-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Projects cards search results */
.search-proj-card {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.search-proj-card:hover {
  background: #f1f5f9;
}
.search-proj-img {
  width: 70px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}
.search-proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-proj-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-proj-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 3px;
}
.search-proj-card:hover .search-proj-title {
  color: var(--gold-700);
}
.search-proj-meta {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
}

/* News cards search results */
.search-news-card {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.search-news-card:hover {
  background: #f1f5f9;
}
.search-news-img {
  width: 70px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}
.search-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-news-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-news-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 3px;
}
.search-news-card:hover .search-news-title {
  color: var(--gold-700);
}
.search-news-meta {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
}
.search-news-cat {
  color: var(--gold-700);
  margin-right: 6px;
}

/* Highlight matching terms */
.search-highlight {
  background: #fef08a;
  color: #0f1e3f;
  font-weight: 700;
  padding: 0 2px;
  border-radius: 2px;
}

/* Empty search result */
.search-empty {
  text-align: center;
  padding: 24px 0;
  color: var(--text-light);
  font-size: 13.5px;
  font-weight: 600;
}

/* Custom Scrollbar for results */
.search-results-panel::-webkit-scrollbar {
  width: 6px;
}
.search-results-panel::-webkit-scrollbar-track {
  background: transparent;
}
.search-results-panel::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* Responsive styling */
@media (max-width: 768px) {
  .search-results-panel {
    width: calc(100% - 32px);
    padding: 16px 20px;
  }
  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Footer brand contact link hover state */
.footer-brand p a:hover {
  color: var(--gold-500) !important;
  text-decoration: underline;
}
.contact-detail a:hover {
  color: var(--gold-500) !important;
  text-decoration: underline;
}
.contact-detail a:hover {
  color: var(--gold-500) !important;
  text-decoration: underline;
}

/* ==========================================================================
   ===== ABOUT PAGE STYLING =====
   ========================================================================== */
.about-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  margin-top: 76px;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  filter: brightness(0.85);
  animation: heroZoom 15s ease-in-out infinite alternate;
  z-index: 1;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 30, 63, 0.9) 0%, rgba(15, 30, 63, 0.4) 60%, rgba(15, 30, 63, 0.1) 100%);
  z-index: 2;
}
.about-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.about-hero-content {
  max-width: 650px;
}
.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-400, #d4b896);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #fff;
}
.about-hero-content h1 .gold {
  color: var(--gold-500);
}
.about-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* Intro Section */
.about-intro-section {
  padding: 80px 0;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-intro-left {
  display: flex;
  flex-direction: column;
}
.about-p-highlight {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.7;
  margin: 18px 0 20px;
  border-left: 4px solid var(--gold-500);
  padding-left: 18px;
}
.about-p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: justify;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stat-card {
  background: #fff;
  border: 1.5px solid rgba(205, 170, 128, 0.15);
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: 0 16px 36px rgba(205, 170, 128, 0.08);
}
.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-700);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Vision & Mission Section */
.about-vision-mission-section {
  padding: 80px 0;
  background: #fcf9f5;
  border-top: 1px solid rgba(205, 170, 128, 0.15);
  border-bottom: 1px solid rgba(205, 170, 128, 0.15);
}
.about-vimi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.about-vimi-card {
  background: #fff;
  border: 1.5px solid rgba(235, 240, 245, 0.8);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.015);
  transition: all 0.4s ease;
  height: 100%;
}
.about-vimi-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  box-shadow: 0 20px 40px rgba(205, 170, 128, 0.08);
}
.vimi-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(205, 170, 128, 0.12);
  border: 1.5px solid rgba(205, 170, 128, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  margin-bottom: 24px;
}
.vimi-icon-wrap svg {
  color: var(--gold-700);
}
.about-vimi-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.about-vimi-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.75;
  text-align: justify;
}
.vimi-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vimi-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.vimi-list li span {
  text-align: justify;
}
.check-icon {
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Core Values Section */
.about-core-section {
  padding: 80px 0;
}
.about-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.core-card {
  background: #fff;
  border: 1.5px solid #eef0f5;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.core-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-400);
  box-shadow: 0 16px 40px rgba(205, 170, 128, 0.12);
}
.core-card-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.core-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(205, 170, 128, 0.1);
  border: 1.5px solid rgba(205, 170, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  transition: all 0.3s ease;
}
.core-card:hover .core-icon-container {
  background: var(--navy-900);
  border-color: var(--gold-500);
  color: var(--gold-400);
}
.core-card-header h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.5px;
}
.core-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  text-align: justify;
}

/* Business Fields Section */
.about-fields-section {
  padding: 100px 0;
  background: #f4f6fa;
}
.fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.field-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 30, 63, 0.02);
  border: 1px solid rgba(15, 30, 63, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.field-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.field-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 30, 63, 0.08);
  border-color: rgba(205, 170, 128, 0.4);
}
.field-card:hover::before {
  height: 6px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
}
.field-header-box {
  padding: 35px 35px 15px 35px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.field-number {
  font-size: 56px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(205, 170, 128, 0.25);
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.field-card:hover .field-number {
  -webkit-text-stroke: 1.5px var(--gold-500);
  transform: scale(1.05);
}
.field-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(205, 170, 128, 0.08);
  border: 1px solid rgba(205, 170, 128, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.field-card:hover .field-icon-wrap {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(205, 170, 128, 0.35);
  transform: scale(1.08) rotate(360deg);
}
.field-body {
  padding: 15px 35px 40px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.field-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  line-height: 1.4;
  min-height: 80px;
  position: relative;
  padding-bottom: 16px;
}
.field-body h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-500);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.field-card:hover .field-body h3::after {
  width: 65px;
  background: var(--gold-700);
}
.field-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
}

/* Strategic Commitment CTA Banner */
.about-cta-section {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900) 0%, #1a2f52 100%);
}
.about-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(205, 170, 128, 0.12) 0%, transparent 60%);
  z-index: 1;
}
.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 30, 63, 0.85) 0%, rgba(26, 47, 82, 0.9) 100%);
  z-index: 2;
}
.about-cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.25;
}
.about-cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Responsive adjust for About page */
@media (max-width: 1024px) {
  .about-core-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fields-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 300px;
    margin-top: 68px;
  }
  .about-hero-content h1 {
    font-size: 30px;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-intro-section {
    padding: 60px 0;
  }
  .about-vimi-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-vision-mission-section {
    padding: 60px 0;
  }
  .about-vimi-card {
    padding: 30px;
  }
  .about-core-section {
    padding: 60px 0;
  }
  .about-fields-section {
    padding: 60px 0;
  }
  .fields-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-cta-section {
    padding: 80px 0;
  }
  .about-cta-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .about-core-grid {
    grid-template-columns: 1fr;
  }
}
