/* ===========================
   VMAA - Vietnam M&A Association
   Global Stylesheet
   =========================== */

:root {
  --primary: #0d2137;
  --primary-light: #163352;
  --accent: #c8972b;
  --accent-light: #e4b84a;
  --accent-dark: #a57820;
  --light: #f4f7fb;
  --light-2: #eaeff7;
  --white: #ffffff;
  --text: #1e2d3d;
  --text-muted: #6b7c93;
  --border: #dce4f0;
  --success: #22a06b;
  --danger: #e53e3e;
  --shadow-sm: 0 1px 4px rgba(13, 33, 55, 0.08);
  --shadow: 0 4px 16px rgba(13, 33, 55, 0.12);
  --shadow-lg: 0 12px 40px rgba(13, 33, 55, 0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img { max-width: 100%; }

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 16px rgba(200, 151, 43, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 151, 43, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-bds { background: #e8f5e9; color: #2e7d32; }
.badge-dn  { background: #e3f2fd; color: #1565c0; }
.badge-hot { background: #fff3e0; color: #e65100; }
.badge-new { background: #f3e5f5; color: #6a1b9a; }
.badge-verify { background: #e8f5e9; color: #2e7d32; }
.badge-pending { background: #fff8e1; color: #f57f17; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img{
  max-width: 150px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -1px;
}

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

.logo-text .brand { color: var(--white); font-weight: 700; font-size: 16px; }
.logo-text .sub   { color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-menu a {
  color: rgb(14 67 109);
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgb(29 55 81);
}

.nav-menu a.active { color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-lang {
  color: rgba(14 67 109,0.6);
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-lang:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }

.nav-login {
  color:  rgb(14 67 109);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 7px;
  transition: all var(--transition);
}
.nav-login:hover { color: var(--white); background: rgb(29 55 81); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 60%, #0a3d6b 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200, 151, 43, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 151, 43, 0.15);
  border: 1px solid rgba(200, 151, 43, 0.35);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-label span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.hero h1 {
  color: var(--white);
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-search {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
}

.hero-search h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 18px;
}

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.06);
  padding: 4px;
  border-radius: 8px;
}

.stab {
  flex: 1;
  padding: 8px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}

.stab.active {
  background: var(--accent);
  color: var(--white);
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-form select,
.search-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}

.search-form select option { background: var(--primary); }
.search-form select:focus,
.search-form input:focus { border-color: var(--accent); }
.search-form input::placeholder { color: rgba(255,255,255,0.35); }

.search-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== STATS ===== */
.stats-bar {
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== FEATURED ===== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.listing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.listing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(200, 151, 43, 0.3);
}

.card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.card-img-placeholder.bds { background: linear-gradient(135deg, #1a3a5c, #2a5a8c); }
.card-img-placeholder.dn  { background: linear-gradient(135deg, #1a2e4a, #2d4a6e); }

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.card-lock {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.8);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 18px 20px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.card-meta-row span:first-child { font-size: 14px; }

.card-price {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-range {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-dark);
}

.price-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.card-footer {
  padding: 12px 20px;
  background: var(--light);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.card-verify {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--success);
  font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0.3;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(200, 151, 43, 0.3);
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}

.step-icon { font-size: 22px; margin-bottom: 10px; }

.step-card h4 { font-size: 15px; margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== WHY VMAA ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-visual {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 151, 43, 0.25), transparent 70%);
  border-radius: 50%;
}

.feature-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.feature-stat-card h3 {
  color: var(--accent-light);
  font-size: 28px;
  margin-bottom: 4px;
}

.feature-stat-card p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.feature-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-item h4 { font-size: 15px; margin-bottom: 5px; }
.feature-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== MEMBERSHIP ===== */
.membership {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.membership::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 151, 43, 0.15), transparent 70%);
}

.membership .section-title,
.membership .section-desc { color: var(--white); }
.membership .section-label { color: var(--accent-light); }
.membership .section-desc { color: rgba(255,255,255,0.6); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}

.plan-card.featured {
  background: var(--accent);
  border-color: var(--accent-light);
  transform: scale(1.04);
}

.plan-card:not(.featured):hover {
  border-color: rgba(200, 151, 43, 0.4);
  background: rgba(255,255,255,0.08);
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--accent-light);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  border: 1px solid var(--accent);
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.plan-card.featured .plan-name { color: rgba(255,255,255,0.75); }

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-period {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.plan-features li::before {
  content: '✓';
  color: var(--accent-light);
  font-weight: 700;
  font-size: 14px;
}

.plan-card.featured .plan-features li { color: rgba(255,255,255,0.9); }
.plan-card.featured .plan-features li::before { color: var(--white); }

.plan-btn {
  width: 100%;
  justify-content: center;
  padding: 13px;
}

/* ===== FOOTER ===== */
.footer {
  background: #080e18;
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}

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

.footer-brand .logo-mark { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  cursor: pointer;
}
.social-link:hover { background: var(--accent); }

.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
}

/* ===========================
   LISTING PAGE
   =========================== */

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
  padding: 120px 0 48px;
}

.page-hero h1 { color: var(--white); font-size: 32px; margin-bottom: 8px; }
.page-hero p  { color: rgba(255,255,255,0.6); font-size: 15px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 40px 0 80px;
}

/* Filter Sidebar */
.filter-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.filter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}

.filter-header h3 { font-size: 14px; }
.filter-reset { font-size: 12px; color: var(--accent-dark); cursor: pointer; font-weight: 600; }

.filter-section {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.filter-section:last-child { border-bottom: none; }

.filter-section h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ftag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.ftag:hover,
.ftag.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.filter-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-range select {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  width: 100%;
  cursor: pointer;
}

.filter-checkbox {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fcheck {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}

.fcheck input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
}

/* Listing Main */
.listing-main {}

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.listing-search {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  max-width: 400px;
}

.listing-search input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
}

.listing-search button {
  padding: 10px 16px;
  background: var(--primary);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

.view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.view-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-muted);
  transition: all var(--transition);
  background: transparent;
  border: none;
}

.view-btn.active,
.view-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.results-info {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.results-info strong { color: var(--primary); }

.listing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.listing-card-h {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
}

.listing-card-h:hover {
  box-shadow: var(--shadow);
  border-color: rgba(200, 151, 43, 0.3);
  transform: translateY(-2px);
}

.lcard-img {
  width: 160px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
}

.lcard-img.bds { background: linear-gradient(135deg, #1a3a5c, #2a5a8c); }
.lcard-img.dn  { background: linear-gradient(135deg, #1a2e4a, #2d4a6e); }

.lcard-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lcard-badges { display: flex; gap: 6px; margin-bottom: 8px; }

.lcard-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.lcard-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.lcard-meta span { display: flex; align-items: center; gap: 4px; }

.lcard-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.lcard-price-val { font-size: 16px; font-weight: 800; color: var(--accent-dark); }
.lcard-price-sub { font-size: 11px; color: var(--text-muted); }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.pag-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
  background: var(--white);
}

.pag-btn:hover,
.pag-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===========================
   ABOUT PAGE
   =========================== */

.about-hero {
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(200,151,43,0.15), transparent 60%);
}

.about-hero h1 { color: var(--white); font-size: 42px; margin-bottom: 16px; position: relative; }
.about-hero p  { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 580px; margin: 0 auto; position: relative; }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.about-intro-text h2 { font-size: 32px; margin-bottom: 16px; }
.about-intro-text p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.about-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-num-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
}

.about-num-card .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-dark);
  display: block;
}

.about-num-card .lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Mission/Vision */
.mv-section { background: var(--light); }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

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

.mv-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.mv-card h3 { font-size: 18px; margin-bottom: 12px; }
.mv-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* Timeline */
.timeline {
  padding: 80px 0;
}

.timeline-list {
  position: relative;
  padding-left: 32px;
  max-width: 700px;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}

.tl-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-item h4 { font-size: 16px; margin-bottom: 6px; }
.timeline-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Team */
.team-section { background: var(--light); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}

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

.team-avatar {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
}

.team-info { padding: 20px 16px; }
.team-info h4 { font-size: 15px; margin-bottom: 4px; }
.team-info .role { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.team-info .dept { font-size: 12px; color: var(--accent-dark); font-weight: 600; }

/* Partners */
.partners-section { padding: 64px 0; }
.partners-title { text-align: center; margin-bottom: 40px; }
.partners-title h2 { font-size: 24px; margin-bottom: 8px; }
.partners-title p  { color: var(--text-muted); font-size: 14px; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.partner-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  height: 70px;
  transition: all var(--transition);
}

.partner-card:hover {
  border-color: var(--accent);
  color: var(--primary);
  background: var(--white);
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-section {
  padding: 80px 0;
}

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

.contact-info-panel {}

.contact-info-panel h2 { font-size: 28px; margin-bottom: 12px; }
.contact-info-panel > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

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

.citem-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item p { font-size: 14px; color: var(--text); font-weight: 500; }
.contact-item small { font-size: 12px; color: var(--text-muted); }

.office-hours {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  border: 1px solid var(--border);
}

.office-hours h4 { font-size: 14px; margin-bottom: 12px; }

.oh-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.oh-row:last-child { border-bottom: none; }
.oh-row .day { color: var(--text-muted); }
.oh-row .time { font-weight: 600; color: var(--primary); }

/* Contact Form */
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-panel h3 { font-size: 20px; margin-bottom: 6px; }
.contact-form-panel > p { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label span { color: var(--danger); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 151, 43, 0.1);
}

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

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.itag {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
}

.itag:hover,
.itag.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  margin-top: 8px;
}

.map-section {
  background: var(--light);
  padding: 64px 0;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  border-radius: var(--radius-lg);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-top: 32px;
}

.map-placeholder .map-icon { font-size: 48px; }

.faq-section { padding: 80px 0; }

.faq-list { max-width: 720px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  background: var(--white);
  transition: all var(--transition);
}

.faq-q:hover { background: var(--light); }

.faq-q .chevron {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item.open .faq-q { background: var(--primary); color: var(--white); }
.faq-item.open .chevron { transform: rotate(180deg); color: var(--accent-light); }

.faq-a {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--light);
}

.faq-a.open {
  padding: 16px 20px;
  max-height: 200px;
}

.faq-a p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); font-size: 30px; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.6); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-accent { color: var(--accent-dark); }
.mt-4 { margin-top: 16px; }
.bg-light { background: var(--light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid      { grid-template-columns: 1fr; }
  .hero           { padding: 130px 0 64px; }
  .hero h1        { font-size: 36px; }
  .hero-search    { display: none; }
  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .cards-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: 1fr; }
  .plans-grid     { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-nums     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; }
  .partners-grid  { grid-template-columns: repeat(3, 1fr); }
  .listing-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .listing-cards  { grid-template-columns: 1fr; }
  .about-intro    { grid-template-columns: 1fr; }
  .mv-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .section-title { font-size: 26px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contact-form-panel { padding: 24px; }
}
