/* ===== home.html ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy: #0D1B2A;
    --navy-light: #1B2E40;
    --gold: #C89B4A;
    --gold-light: #E8C07A;
    --cream: #F8F4EE;
    --cream-dark: #EDE6D8;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-muted: #7A7A7A;
    --white: #FFFFFF;
    --accent-green: #2D6A4F;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,27,42,0.96);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    border-bottom: 1px solid rgba(200,155,74,0.2);
  }
  .nav-logo {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--gold);
    font-size: 1.25rem;
    letter-spacing: 0.03em;
  }
  .nav-logo span { color: var(--white); font-weight: 300; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.45rem 1.25rem !important;
    border-radius: 4px;
    font-weight: 500 !important;
    color: var(--navy) !important;
  }
  .nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,155,74,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,155,74,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,155,74,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    padding: 120px 6% 80px 8%;
    position: relative; z-index: 2;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,155,74,0.12);
    border: 1px solid rgba(200,155,74,0.3);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 2rem;
  }
  .hero-badge::before { content: '●'; font-size: 0.5rem; }
  .hero h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }
  .hero-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-visual {
    padding: 120px 8% 80px 2%;
    position: relative; z-index: 2;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    backdrop-filter: blur(4px);
  }
  .stat-card:first-child { margin-left: 2rem; }
  .stat-card:last-child { margin-left: 4rem; }
  .stat-icon {
    width: 44px; height: 44px;
    background: rgba(200,155,74,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .stat-number {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
  }
  .stat-label { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 2px; }

  /* ── INTRO BAR ── */
  .intro-bar {
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    gap: 3rem;
    padding: 1.1rem 5%;
    flex-wrap: wrap;
  }
  .intro-bar-item {
    display: flex; align-items: center; gap: 0.6rem;
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 500;
  }
  .intro-bar-item::before { content: '✓'; font-weight: 700; }

  /* ── SECTION COMMON ── */
  section { padding: 100px 8%; }
  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 1rem;
  }
  .section-sub {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
  }

  /* ── SERVICES ── */
  .services { background: var(--white); }
  .services-header { text-align: center; margin-bottom: 4rem; }
  .services-header .section-sub { margin: 0 auto; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .service-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 14px;
    padding: 2rem;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon {
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .service-card h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .service-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
  .service-tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .service-tag {
    background: rgba(200,155,74,0.12);
    color: var(--gold);
    border: 1px solid rgba(200,155,74,0.25);
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.03em;
  }

  /* ── WHY US ── */
  .why-us {
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .why-us .section-title { color: var(--white); }
  .why-us .section-sub { color: rgba(255,255,255,0.55); }
  .why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
  .why-feature {
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .why-num {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 2.5rem;
    color: rgba(200,155,74,0.25);
    line-height: 1;
    min-width: 48px;
    font-weight: 700;
  }
  .why-feature h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
  }
  .why-feature p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; }

  .why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .why-metric {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
  }
  .why-metric:nth-child(2) { margin-top: 1.5rem; }
  .why-metric:nth-child(4) { margin-top: -1.5rem; }
  .why-metric-num {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
  }
  .why-metric-text { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.5; }

  /* ── PROCESS ── */
  .process { background: var(--cream); }
  .process-header { text-align: center; margin-bottom: 4rem; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
    opacity: 0.3;
  }
  .process-step {
    padding: 0 1.5rem;
    text-align: center;
  }
  .step-dot {
    width: 56px; height: 56px;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    position: relative; z-index: 1;
    transition: background 0.25s, border-color 0.25s;
  }
  .process-step:hover .step-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
  }
  .process-step h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .process-step p { color: var(--text-mid); font-size: 0.85rem; line-height: 1.7; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--white); }
  .testimonials-header { text-align: center; margin-bottom: 4rem; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testimonial-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 14px;
    padding: 1.75rem;
  }
  .testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
  .testimonial-text {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-style: italic;
  }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
  }
  .author-name { font-size: 0.875rem; font-weight: 500; color: var(--navy); }
  .author-role { font-size: 0.775rem; color: var(--text-muted); }

  /* ── CTA ── */
  .cta-section {
    background: var(--navy);
    text-align: center;
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle 500px at 20% 50%, rgba(200,155,74,0.06) 0%, transparent 60%),
      radial-gradient(circle 500px at 80% 50%, rgba(200,155,74,0.06) 0%, transparent 60%);
  }
  .cta-section h2 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
  }
  .cta-section h2 em { font-style: normal; color: var(--gold); }
  .cta-section p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    position: relative;
  }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 3rem auto 0;
    position: relative;
  }
  .contact-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
  }
  .contact-item-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.3rem; letter-spacing: 0.05em; }
  .contact-item-val { font-size: 0.875rem; color: var(--gold); font-weight: 500; }

  /* ── FOOTER ── */
  footer {
    background: #080E15;
    padding: 3rem 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-logo {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
  }
  .footer-logo span { color: rgba(255,255,255,0.4); font-weight: 300; }
  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
  .footer-links a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-badge { animation: fadeUp 0.6s ease 0.1s both; }
  .hero h1    { animation: fadeUp 0.6s ease 0.25s both; }
  .hero-desc  { animation: fadeUp 0.6s ease 0.4s both; }
  .hero-actions { animation: fadeUp 0.6s ease 0.55s both; }
  .stat-card  { animation: fadeUp 0.6s ease 0.7s both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 120px 6% 2rem; }
    .hero-visual { padding: 0 6% 80px; flex-direction: row; flex-wrap: wrap; }
    .stat-card:first-child, .stat-card:last-child { margin-left: 0; }
    .why-us { grid-template-columns: 1fr; padding: 80px 6%; }
    .why-visual { grid-template-columns: repeat(2,1fr); }
    .why-metric:nth-child(2), .why-metric:nth-child(4) { margin-top: 0; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .site-nav { padding: 0 4%; }
    .nav-links { display: none; }
    section { padding: 80px 6%; }
  }


/* ===== about-page.html ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy: #0D1B2A;
    --navy-light: #1B2E40;
    --gold: #C89B4A;
    --gold-light: #E8C07A;
    --cream: #F8F4EE;
    --cream-dark: #EDE6D8;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-muted: #7A7A7A;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,27,42,0.96);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 68px;
    border-bottom: 1px solid rgba(200,155,74,0.2);
  }
  .nav-logo { font-family: 'Be Vietnam Pro', sans-serif; color: var(--gold); font-size: 1.25rem; }
  .nav-logo span { color: var(--white); font-weight: 300; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.875rem; letter-spacing: 0.04em; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta { background: var(--gold); color: var(--navy) !important; padding: 0.45rem 1.25rem !important; border-radius: 4px; font-weight: 500 !important; }

  /* ── HERO ABOUT ── */
  .hero-about {
    min-height: 70vh;
    background: var(--navy);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 120px 8% 80px;
  }
  .hero-about::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,155,74,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,155,74,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-about::after {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,155,74,0.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-about-inner {
    max-width: 780px;
    position: relative; z-index: 2;
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 1.75rem;
  }
  .breadcrumb a { color: rgba(255,255,255,0.4); font-size: 0.8rem; text-decoration: none; }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb-sep { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
  .breadcrumb span { color: var(--gold); font-size: 0.8rem; }
  .hero-about-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,155,74,0.12);
    border: 1px solid rgba(200,155,74,0.3);
    color: var(--gold);
    font-size: 0.75rem; letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px;
    margin-bottom: 1.5rem;
  }
  .hero-about h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .hero-about h1 em { font-style: italic; color: var(--gold); }
  .hero-about p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 620px;
  }
  .hero-about-stats {
    display: flex; gap: 3rem; margin-top: 3rem;
    flex-wrap: wrap;
  }
  .h-stat-num {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 2.2rem; color: var(--gold); display: block; line-height: 1;
  }
  .h-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; display: block; }
  .h-stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

  /* ── SECTION COMMON ── */
  section { padding: 100px 8%; }
  .section-label {
    font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.25; color: var(--navy); margin-bottom: 1rem;
  }
  .section-sub { color: var(--text-mid); font-size: 1rem; line-height: 1.8; }

  /* ── STORY ── */
  .story { background: var(--white); }
  .story-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }
  .story-text .section-sub { margin-bottom: 1.5rem; }
  .story-quote {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin: 2rem 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.7;
  }
  .story-sig { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
  .sig-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1rem; color: var(--gold);
  }
  .sig-name { font-size: 0.95rem; font-weight: 500; color: var(--navy); }
  .sig-role { font-size: 0.8rem; color: var(--text-muted); }
  .story-timeline {
    display: flex; flex-direction: column; gap: 0;
    position: relative;
  }
  .timeline-item {
    display: flex; gap: 1.25rem;
    padding-bottom: 2rem;
    position: relative;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-left { display: flex; flex-direction: column; align-items: center; }
  .timeline-dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--cream-dark);
    border: 2px solid var(--gold);
    flex-shrink: 0; margin-top: 4px;
    transition: background 0.2s;
  }
  .timeline-item:hover .timeline-dot { background: var(--gold); }
  .timeline-line {
    width: 1px; flex: 1;
    background: linear-gradient(to bottom, rgba(200,155,74,0.3), transparent);
    margin-top: 4px;
  }
  .timeline-item:last-child .timeline-line { display: none; }
  .timeline-year {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.85rem; color: var(--gold);
    font-weight: 600; white-space: nowrap;
    min-width: 44px; margin-top: 2px;
  }
  .timeline-body h4 { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
  .timeline-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

  /* ── VISION MISSION ── */
  .vm-section { background: var(--cream); }
  .vm-section .section-label, .vm-section .section-title { text-align: center; }
  .vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .vm-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .vm-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.07); }
  .vm-card-accent {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
  }
  .vm-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .vm-card h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.3rem; color: var(--navy);
    margin-bottom: 1rem;
  }
  .vm-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; }
  .vm-card.featured {
    background: var(--navy);
  }
  .vm-card.featured .vm-icon-wrap { background: rgba(200,155,74,0.15); }
  .vm-card.featured h3 { color: var(--white); }
  .vm-card.featured p { color: rgba(255,255,255,0.55); }
  .vm-card.featured .vm-card-accent { background: var(--gold-light); }

  /* ── CORE VALUES ── */
  .values-section { background: var(--navy); }
  .values-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1rem; }
  .values-header .section-title { color: var(--white); margin-bottom: 0; }
  .values-header .section-sub { color: rgba(255,255,255,0.5); max-width: 360px; font-size: 0.9rem; }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    transition: background 0.25s, border-color 0.25s;
    cursor: default;
  }
  .value-card:hover {
    background: rgba(200,155,74,0.07);
    border-color: rgba(200,155,74,0.25);
  }
  .value-num {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 2rem; color: rgba(200,155,74,0.2);
    line-height: 1; margin-bottom: 1rem;
    font-weight: 700;
  }
  .value-card:hover .value-num { color: rgba(200,155,74,0.5); }
  .value-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
  .value-card h4 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
  .value-card p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

  /* ── TEAM ── */
  .team-section { background: var(--white); }
  .team-header { text-align: center; margin-bottom: 4rem; }
  .team-header .section-sub { max-width: 500px; margin: 0 auto; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .team-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .team-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.3rem; color: var(--gold);
    margin: 0 auto 1rem;
    border: 3px solid var(--cream-dark);
    transition: border-color 0.2s;
  }
  .team-card:hover .team-avatar { border-color: var(--gold); }
  .team-card h4 { font-family: 'Be Vietnam Pro', sans-serif; font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
  .team-card .team-role { font-size: 0.8rem; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; }
  .team-card .team-exp { font-size: 0.8rem; color: var(--text-muted); }
  .team-cert {
    display: inline-block;
    background: rgba(200,155,74,0.1);
    border: 1px solid rgba(200,155,74,0.25);
    color: var(--gold);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
  }

  /* ── ACHIEVEMENTS ── */
  .achievements { background: var(--cream); }
  .achievements-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .ach-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
  .ach-item {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.2s;
  }
  .ach-item:hover { border-color: rgba(200,155,74,0.4); }
  .ach-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(200,155,74,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
  }
  .ach-item h4 { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.2rem; }
  .ach-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
  .ach-metrics {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .ach-metric {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
  }
  .ach-metric:nth-child(even) { margin-top: 1.5rem; }
  .ach-metric-num {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 2.2rem; color: var(--navy);
    display: block; line-height: 1; margin-bottom: 0.4rem;
  }
  .ach-metric-num span { color: var(--gold); }
  .ach-metric-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

  /* ── CONTACT FORM ── */
  .contact-section { background: var(--navy); padding: 100px 8%; position: relative; overflow: hidden; }
  .contact-section::before {
    content: '';
    position: absolute;
    top: -300px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200,155,74,0.06) 0%, transparent 65%);
    pointer-events: none;
  }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 6rem; align-items: start;
    position: relative; z-index: 2;
  }
  .contact-left .section-title { color: var(--white); }
  .contact-left .section-sub { color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }
  .contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
  .contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
  .ci-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(200,155,74,0.12);
    border: 1px solid rgba(200,155,74,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .ci-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 2px; letter-spacing: 0.05em; }
  .ci-val { font-size: 0.9rem; color: var(--white); font-weight: 400; }
  .ci-val a { color: var(--gold); text-decoration: none; }
  .ci-val a:hover { text-decoration: underline; }
  .contact-divider {
    border: none; height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 2rem 0;
  }
  .social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .social-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .social-btn:hover { background: rgba(200,155,74,0.1); border-color: rgba(200,155,74,0.3); color: var(--gold); }

  /* Form */
  .contact-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem;
  }
  .form-header { margin-bottom: 2rem; }
  .form-header h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.35rem; color: var(--white);
    margin-bottom: 0.3rem;
  }
  .form-header p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .form-group label {
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em; font-weight: 400;
  }
  .form-group label span { color: var(--gold); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(200,155,74,0.5);
    background: rgba(200,155,74,0.05);
  }
  .form-group select { appearance: none; cursor: pointer; }
  .form-group select option { background: #1B2E40; color: var(--white); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-check-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
  .form-check-row input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
  .form-check-row label { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
  .form-check-row label a { color: var(--gold); text-decoration: none; }
  .btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none; border-radius: 8px;
    padding: 0.9rem 2rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }
  .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-submit:active { transform: translateY(0); }
  .form-note { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.25); margin-top: 0.75rem; }
  .success-msg {
    display: none;
    text-align: center; padding: 1.5rem;
    background: rgba(45,106,79,0.15);
    border: 1px solid rgba(45,106,79,0.3);
    border-radius: 10px;
    margin-top: 1rem;
  }
  .success-msg .check { font-size: 2rem; margin-bottom: 0.5rem; }
  .success-msg p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; }
  .success-msg strong { color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    background: #080E15;
    padding: 3rem 8%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo { font-family: 'Be Vietnam Pro', sans-serif; color: var(--gold); font-size: 1.1rem; }
  .footer-logo span { color: rgba(255,255,255,0.4); font-weight: 300; }
  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
  .footer-links a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-about-badge { animation: fadeUp 0.6s ease 0.1s both; }
  .hero-about h1    { animation: fadeUp 0.6s ease 0.25s both; }
  .hero-about > .hero-about-inner > p { animation: fadeUp 0.6s ease 0.4s both; }
  .hero-about-stats { animation: fadeUp 0.6s ease 0.55s both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .site-nav { padding: 0 4%; }
    .nav-links { display: none; }
    section, .contact-section { padding: 80px 6%; }
    .story-inner, .achievements-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .ach-metrics .ach-metric:nth-child(even) { margin-top: 0; }
  }
  @media (max-width: 540px) {
    .team-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .hero-about-stats { gap: 1.5rem; flex-wrap: wrap; }
    .h-stat-divider { display: none; }
  }

.avatar--image,
.team-avatar--image {
  overflow: hidden;
  padding: 0;
  background: var(--cream-dark);
}
.avatar--image img,
.team-avatar--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar--blank {
  background:
    linear-gradient(135deg, rgba(13,27,42,0.06), rgba(200,155,74,0.12)),
    var(--cream-dark);
  border: 1px solid rgba(13,27,42,0.08);
}


/* ===== contact-page.html ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy: #0D1B2A;
    --navy-light: #1B2E40;
    --gold: #C89B4A;
    --gold-light: #E8C07A;
    --cream: #F8F4EE;
    --cream-dark: #EDE6D8;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-muted: #7A7A7A;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 68px;
    border-bottom: 1px solid rgba(200,155,74,0.2);
  }
  .nav-logo { font-family: 'Be Vietnam Pro', sans-serif; color: var(--gold); font-size: 1.25rem; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
  .nav-logo span { color: var(--white); font-weight: 300; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; letter-spacing: 0.04em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a.active { color: var(--gold); }
  .nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.4rem 1.2rem !important; border-radius: 4px; font-weight: 500 !important; }

  /* ── HERO ── */
  .page-hero {
    background: var(--navy);
    padding: 130px 8% 70px;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,155,74,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,155,74,0.035) 1px, transparent 1px);
    background-size: 55px 55px;
  }
  .page-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .page-hero-inner { position: relative; z-index: 2; max-width: 640px; }
  .breadcrumb {
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem;
  }
  .breadcrumb a { color: rgba(255,255,255,0.35); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb-sep { color: rgba(255,255,255,0.18); font-size: 0.75rem; }
  .breadcrumb span { color: var(--gold); font-size: 0.78rem; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(200,155,74,0.12);
    border: 1px solid rgba(200,155,74,0.28);
    color: var(--gold); font-size: 0.72rem;
    letter-spacing: 0.13em; text-transform: uppercase;
    padding: 5px 13px; border-radius: 50px; margin-bottom: 1.25rem;
  }
  .hero-badge::before { content: '●'; font-size: 0.45rem; }
  .page-hero h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white); line-height: 1.2; margin-bottom: 1rem;
  }
  .page-hero h1 em { font-style: italic; color: var(--gold); }
  .page-hero p { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.8; max-width: 500px; }

  /* ── QUICK CONTACT BAR ── */
  .quick-bar {
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 0 8%;
  }
  .quick-bar-inner {
    display: flex; align-items: stretch;
    border-left: 1px solid var(--cream-dark);
  }
  .quick-item {
    display: flex; align-items: center; gap: 0.9rem;
    padding: 1.1rem 2rem;
    border-right: 1px solid var(--cream-dark);
    flex: 1;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
  }
  .quick-item:hover { background: var(--cream); }
  .qi-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
    transition: background 0.2s;
  }
  .quick-item:hover .qi-icon { background: var(--gold); }
  .qi-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 1px; }
  .qi-val { font-size: 0.9rem; font-weight: 500; color: var(--navy); }

  /* ── MAIN LAYOUT ── */
  .contact-main {
    padding: 70px 8% 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  /* ── FORM SIDE ── */
  .form-panel {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 20px;
    overflow: hidden;
  }
  .form-panel-header {
    background: var(--navy);
    padding: 2rem 2.25rem;
    position: relative; overflow: hidden;
  }
  .form-panel-header::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: rgba(200,155,74,0.08);
    border-radius: 50%;
  }
  .form-panel-header h2 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.4rem; color: var(--white);
    margin-bottom: 0.3rem; position: relative; z-index: 1;
  }
  .form-panel-header p { font-size: 0.83rem; color: rgba(255,255,255,0.4); position: relative; z-index: 1; }
  .form-panel-header .response-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(200,155,74,0.15);
    border: 1px solid rgba(200,155,74,0.3);
    color: var(--gold); font-size: 0.72rem;
    padding: 4px 10px; border-radius: 50px;
    margin-top: 0.75rem; position: relative; z-index: 1;
  }
  .form-panel-header .response-badge::before { content: '⚡'; }

  .form-body { padding: 2rem 2.25rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
  .form-group label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.03em; }
  .form-group label .req { color: var(--gold); margin-left: 2px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    background: var(--cream);
    color: var(--text-dark);
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.9rem;
    padding: 0.7rem 0.95rem;
    outline: none;
    width: 100%;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #BCBCB4; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200,155,74,0.1);
  }
  .form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2rem; }
  .form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

  /* Services checkboxes */
  .service-checks {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.5rem; margin-top: 0.25rem;
  }
  .check-item {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 7px;
    padding: 0.55rem 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.82rem;
    color: var(--text-mid);
    user-select: none;
  }
  .check-item input[type="checkbox"] { display: none; }
  .check-item .cb-box {
    width: 16px; height: 16px; border-radius: 4px;
    border: 1.5px solid var(--cream-dark);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.15s;
    font-size: 0.65rem;
  }
  .check-item.checked { border-color: rgba(200,155,74,0.5); background: rgba(200,155,74,0.06); color: var(--navy); }
  .check-item.checked .cb-box { background: var(--gold); border-color: var(--gold); color: var(--white); }

  .privacy-row {
    display: flex; align-items: flex-start; gap: 0.65rem;
    margin: 1rem 0 1.5rem;
  }
  .privacy-row input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
  .privacy-row label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
  .privacy-row label a { color: var(--gold); text-decoration: none; }

  .btn-submit {
    width: 100%; background: var(--navy); color: var(--white);
    border: none; border-radius: 9px;
    padding: 0.9rem 2rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    cursor: pointer; letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    position: relative; overflow: hidden;
  }
  .btn-submit::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(200,155,74,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  .btn-submit:hover { background: var(--navy-light); transform: translateY(-2px); }
  .btn-submit:hover::after { transform: translateX(100%); }
  .btn-submit:active { transform: translateY(0); }
  .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

  .form-note { text-align: center; font-size: 0.76rem; color: var(--text-muted); margin-top: 0.75rem; }

  /* Success */
  .success-state {
    display: none; text-align: center;
    padding: 3rem 2rem;
  }
  .success-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(45,106,79,0.1);
    border: 2px solid rgba(45,106,79,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 1.25rem;
  }
  .success-state h3 { font-family: 'Be Vietnam Pro', sans-serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
  .success-state p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; max-width: 320px; margin: 0 auto 1.5rem; }
  .btn-reset {
    background: transparent; border: 1px solid var(--cream-dark);
    color: var(--text-mid); border-radius: 8px; padding: 0.6rem 1.5rem;
    font-family: 'Be Vietnam Pro', sans-serif; font-size: 0.85rem; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-reset:hover { border-color: var(--gold); color: var(--gold); }

  /* ── MAP SIDE ── */
  .map-panel {
    display: flex; flex-direction: column; gap: 1.25rem;
    position: sticky; top: 88px;
  }
  .map-wrap {
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--cream-dark);
    position: relative;
  }
  .map-wrap iframe {
    width: 100%; height: 400px;
    border: none; display: block;
  }
  .map-overlay-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    display: flex; align-items: center; gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    font-size: 0.82rem; font-weight: 500; color: var(--navy);
  }
  .map-overlay-badge::before { content: '📍'; font-size: 1rem; }
  .map-open-link {
    position: absolute; bottom: 14px; right: 14px;
    background: var(--navy); color: var(--white);
    text-decoration: none; border-radius: 8px;
    padding: 0.55rem 1rem; font-size: 0.8rem; font-weight: 500;
    transition: background 0.2s; display: flex; align-items: center; gap: 0.4rem;
  }
  .map-open-link:hover { background: var(--gold); color: var(--navy); }

  /* Info cards below map */
  .info-cards { display: flex; flex-direction: column; gap: 0.9rem; }
  .info-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex; align-items: flex-start; gap: 1rem;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
  }
  .info-card:hover { border-color: rgba(200,155,74,0.4); transform: translateX(4px); }
  .info-card-icon {
    width: 44px; height: 44px; border-radius: 11px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
    transition: background 0.2s;
  }
  .info-card:hover .info-card-icon { background: var(--gold); }
  .info-card-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 3px; }
  .info-card-val { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
  .info-card-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }

  /* Hours card */
  .hours-card {
    background: var(--navy);
    border-radius: 14px;
    padding: 1.5rem;
  }
  .hours-card h4 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1rem; color: var(--white);
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
  }
  .hours-card .contact-section-title {
    color: var(--white);
  }
  .hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
  }
  .hours-row:last-child { border-bottom: none; }
  .hours-day { color: rgba(255,255,255,0.5); }
  .hours-time { color: var(--white); font-weight: 500; }
  .hours-time.closed { color: rgba(255,255,255,0.25); font-weight: 400; }
  .hours-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4CAF50; display: inline-block; margin-right: 6px;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* ── FAQ STRIP ── */
  .faq-strip {
    background: var(--white);
    padding: 80px 8%;
    border-top: 1px solid var(--cream-dark);
  }
  .faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
  .faq-left .section-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.75rem; }
  .faq-left h2 { font-family: 'Be Vietnam Pro', sans-serif; font-size: 1.8rem; color: var(--navy); line-height: 1.3; margin-bottom: 0.75rem; }
  .faq-left p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-bottom: 1px solid var(--cream-dark);
    padding: 1.25rem 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--cream-dark); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; gap: 1rem;
    font-size: 0.93rem; font-weight: 500; color: var(--navy);
    user-select: none;
  }
  .faq-arrow {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--cream); border: 1px solid var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
    color: var(--text-muted);
  }
  .faq-item.open .faq-arrow { background: var(--gold); color: var(--white); transform: rotate(180deg); }
  .faq-a {
    font-size: 0.875rem; color: var(--text-mid); line-height: 1.75;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 0.75rem; }

  /* ── FOOTER ── */
  footer {
    background: #080E15;
    padding: 3rem 8%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo { font-family: 'Be Vietnam Pro', sans-serif; color: var(--gold); font-size: 1.1rem; }
  .footer-logo span { color: rgba(255,255,255,0.4); font-weight: 300; }
  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
  .footer-links a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .page-hero-inner > * { animation: fadeUp 0.55s ease both; }
  .page-hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
  .page-hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
  .page-hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
  .page-hero-inner > *:nth-child(4) { animation-delay: 0.35s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .contact-main { grid-template-columns: 1fr; }
    .map-panel { position: static; }
    .map-wrap iframe { height: 320px; }
    .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 768px) {
    .site-nav { padding: 0 4%; }
    .nav-links { display: none; }
    .page-hero { padding: 120px 6% 60px; }
    .contact-main, .faq-strip { padding-left: 6%; padding-right: 6%; }
    .quick-bar { padding: 0 6%; }
    .quick-bar-inner { flex-direction: column; }
    .quick-item { border-right: none; border-bottom: 1px solid var(--cream-dark); }
    .form-row { grid-template-columns: 1fr; }
    .service-checks { grid-template-columns: 1fr; }
  }


/* ===== Shared theme shell ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(13, 27, 42, 0.97);
  border-bottom: 1px solid rgba(200, 155, 74, 0.2);
  backdrop-filter: blur(10px);
}
.site-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav .nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.site-nav .nav-links a:hover,
.site-nav .nav-links .current-menu-item > a {
  color: var(--gold);
}
.site-nav .nav-cta {
  color: var(--navy) !important;
  background: var(--gold);
  border-radius: 4px;
  padding: 0.45rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav .nav-cta:hover {
  background: var(--gold-light);
}
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer .footer-logo {
  color: var(--gold);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.1rem;
}
.site-footer .footer-logo span {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.site-footer .footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
.site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-decoration: none;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links .current-menu-item > a {
  color: var(--gold);
}
@media (max-width: 760px) {
  .site-nav {
    padding: 0 4%;
    gap: 1rem;
  }
  .site-nav .nav-links {
    display: none;
  }
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}


/* ===== FAQ page ===== */
.faq-page-section {
  background: var(--cream);
  padding: 80px 8% 100px;
}
.faq-page-inner {
  align-items: start;
}
.faq-page-hero {
  padding-bottom: 90px;
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.faq-a p:first-child {
  margin-top: 0;
}
.faq-a p:last-child {
  margin-bottom: 0;
}
.faq-empty {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  padding: 1.25rem;
  color: var(--text-muted);
}


/* ===== Shared contact form ===== */
.shared-contact-form .form-group:last-of-type {
  margin-bottom: 1.5rem;
}
.form-error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin: 0 0 1rem;
}
.success-state.is-visible {
  display: block;
}
.contact-form-wrap .form-panel {
  border-radius: 20px;
}
.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-section-title {
  margin: 0 0 1rem;
  color: #10243a;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.25rem;
}
.form-feedback {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
}
.form-feedback.is-success {
  color: #166534;
}
.form-feedback.is-error {
  color: #b42318;
}
.header-search {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.header-search input {
  width: 180px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 0.55rem 0.8rem;
}
.header-search input::placeholder { color: rgba(255,255,255,0.55); }
.header-search button {
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.news-hero {
  padding: 130px 0 56px;
  background: var(--navy);
  color: var(--white);
}
.news-hero h1 {
  margin: 0 0 1rem;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}
.news-hero p:last-child {
  max-width: 620px;
  color: rgba(255,255,255,0.65);
}
.news-archive {
  padding: 56px 0 96px;
  background: var(--cream);
}
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.news-filter {
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  cursor: pointer;
}
.news-filter.is-active,
.news-filter:hover {
  color: var(--white);
  background: var(--navy);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.news-article-card,
.news-skeleton,
.news-empty {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
}
.news-article-card__link {
  display: block;
  padding: 1.5rem;
}
.news-article-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.news-article-card__category {
  color: var(--gold);
  font-weight: 600;
}
.news-article-card h2 {
  margin: 1rem 0 0.75rem;
  color: var(--navy);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.35rem;
  line-height: 1.35;
}
.news-article-card p,
.news-empty p {
  margin: 0;
  color: var(--text-mid);
}
.news-empty {
  padding: 1.5rem;
}
.news-skeleton {
  padding: 1.5rem;
}
.news-skeleton span,
.news-skeleton h2,
.news-skeleton p {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, #ece7de 25%, #f7f4ef 37%, #ece7de 63%);
  background-size: 400% 100%;
  animation: news-shimmer 1.2s ease infinite;
}
.news-skeleton span { width: 35%; height: 14px; }
.news-skeleton h2 { width: 85%; height: 24px; margin: 1rem 0; }
.news-skeleton p { width: 100%; height: 14px; margin-top: 0.75rem; }
.news-skeleton p:last-child { width: 70%; }
@keyframes news-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
@media (max-width: 900px) {
  .header-search { display: none; }
  .news-grid { grid-template-columns: 1fr; }
}
.site-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
}
.site-nav .nav-links {
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav-logo__image {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav-logo__text {
  color: var(--gold);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-search {
  position: relative;
  display: flex;
  align-items: center;
}
.header-search__toggle {
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.header-search__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  display: flex;
  gap: 0.5rem;
  width: min(320px, calc(100vw - 32px));
  padding: 0.65rem;
  border: 1px solid rgba(200,155,74,0.2);
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.header-search.is-open .header-search__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-search__panel input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 0.65rem 0.85rem;
}
.header-search__panel button {
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  padding: 0 1rem;
  cursor: pointer;
}
.news-hero {
  margin-top: 0;
}
.news-filters {
  gap: 0.65rem;
}
.news-filter {
  border-color: rgba(13,27,42,0.08);
  box-shadow: 0 8px 18px rgba(13,27,42,0.05);
}
.news-filter.is-active,
.news-filter:hover {
  transform: translateY(-1px);
}
.news-article-card__link {
  padding: 0;
}
.news-article-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}
.news-article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-article-card__content {
  padding: 1.5rem;
}
@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: auto auto;
  }
  .site-nav .nav-links {
    display: none;
  }
}
@media (max-width: 640px) {
  .site-nav {
    padding: 0 16px;
    gap: 0.75rem;
  }
  .nav-logo {
    font-size: 1rem;
  }
  .nav-logo span:last-child {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .header-search__panel {
    right: -8px;
  }
}
/* ===== News/layout fixes ===== */
.news-filters,
.news-pagination .navigation.pagination {
  position: static;
  inset: auto;
  z-index: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}
.news-filters {
  justify-content: flex-start;
}
.news-pagination {
  margin-top: 2.25rem;
}
.news-pagination .navigation.pagination {
  display: block;
  margin-top: 0;
}
.news-pagination .nav-links {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 0.85rem;
  color: var(--navy);
  font-weight: 600;
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(13,27,42,0.05);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.news-pagination a.page-numbers:hover,
.news-pagination .page-numbers.current {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}
.news-pagination .page-numbers.dots {
  color: var(--text-muted);
  background: transparent;
  box-shadow: none;
}
.header-search__panel button {
  width: auto;
  height: auto;
  min-width: 56px;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  line-height: 1;
}
/* ===== Final header/news fixes ===== */
.header-search__toggle {
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  line-height: 1;
}
.news-filters {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
}
.news-pagination .navigation.pagination {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
}
.services-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.services-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
  padding: 0.25rem 0 1rem;
}
.services-slider::-webkit-scrollbar { display: none; }
.services-slider .service-card {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
}
.service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.services-slider-button {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold-soft);
  font-size: 1.6rem;
  cursor: pointer;
}
.services-slider-button:hover {
  color: var(--white);
  background: var(--gold);
}
@media (max-width: 760px) {
  .services-slider-wrap {
    gap: 0;
  }
  .services-slider-button {
    display: none;
  }
}
/* ===== Professional footer + floating actions ===== */
.nav-logo__image {
  width: 42px;
  height: 42px;
}
.site-footer {
  display: block;
  padding: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 1fr));
  gap: 2.5rem;
  padding: 4rem 8% 2.5rem;
}
.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.25rem;
}
.footer-brand__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.footer-brand p,
.footer-contact li {
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.site-footer h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.05rem;
}
.site-footer .footer-links {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}
.footer-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(200,155,74,0.35);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-menu-toggle:hover {
  background: rgba(200,155,74,0.12);
  border-color: rgba(200,155,74,0.7);
  transform: translateY(-1px);
}
.footer-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}
.footer-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  pointer-events: none;
  visibility: hidden;
}
.footer-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.footer-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13,27,42,0.58);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.24s ease;
}
.footer-drawer.is-open .footer-drawer__backdrop {
  opacity: 1;
}
.footer-drawer__panel {
  position: relative;
  width: min(86vw, 340px);
  height: 100%;
  padding: 1.2rem 1.1rem max(1.2rem, env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--navy);
  border-right: 1px solid rgba(200,155,74,0.28);
  box-shadow: 18px 0 42px rgba(0,0,0,0.28);
  transform: translateX(-100%);
  transition: transform 0.28s linear;
}
.footer-drawer.is-open .footer-drawer__panel {
  transform: translateX(0);
}
.footer-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-drawer__close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold);
  font-size: 1.45rem;
  line-height: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,155,74,0.35);
  border-radius: 4px;
  cursor: pointer;
}
.footer-drawer__links {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-drawer__links a {
  display: block;
  padding: 0.9rem 0.85rem;
  color: rgba(255,255,255,0.78);
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-drawer__links a:hover,
.footer-drawer__links .current-menu-item > a {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
  transform: translateX(2px);
}
body.footer-drawer-open {
  overflow: hidden;
}
.footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-socials {
  display: grid;
  gap: 0.7rem;
}
.footer-socials a {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.1rem 8%;
  color: rgba(255,255,255,0.34);
  font-size: 0.82rem;
}
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.floating-action {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(13,27,42,0.18);
  cursor: pointer;
}
.floating-action.messenger { background: #0084ff; }
.floating-action.zalo { background: #0068ff; }
.floating-action.facebook { background: #1877f2; }
.back-to-top {
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    padding-left: 6%;
    padding-right: 6%;
  }
  .footer-links-wrap {
    display: none;
  }
  .footer-menu-toggle {
    display: inline-flex;
  }
  .footer-drawer {
    display: block;
  }
}
@media (max-width: 640px) {
  .site-footer {
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.65rem;
    padding: 2.4rem 20px 1.8rem;
  }
  .footer-brand__logo {
    font-size: 1.05rem;
  }
  .site-footer h2 {
    margin-bottom: 0.65rem;
  }
  .footer-bottom {
    padding: 1rem 20px;
    text-align: center;
  }
  .floating-actions {
    right: 14px;
    bottom: 14px;
  }
}
/* ===== Footer / floating action refinements ===== */
.footer-brand__logo img {
  width: 40px;
  height: 40px;
  max-width: 40px;
}
.back-to-top {
  color: #111111;
  background: var(--gold);
}
.floating-action.facebook {
  font-size: 1.35rem;
}
.services-page-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.services-page-grid.is-loading {
  align-items: stretch;
}
.service-skeleton {
  pointer-events: none;
}
.service-skeleton::after {
  display: none;
}
.service-skeleton__icon,
.service-skeleton__title,
.service-skeleton__line,
.service-skeleton__tags span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, #ece7de 25%, #f8f4ee 37%, #ece7de 63%);
  background-size: 400% 100%;
  animation: news-shimmer 1.2s ease infinite;
}
.service-skeleton__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.service-skeleton__title {
  width: 78%;
  height: 24px;
  margin-bottom: 1rem;
}
.service-skeleton__line {
  width: 100%;
  height: 14px;
  margin-top: 0.75rem;
}
.service-skeleton__line.is-short {
  width: 66%;
}
.service-skeleton__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.35rem;
}
.service-skeleton__tags span {
  width: 72px;
  height: 28px;
}
.services-pagination {
  margin-top: 2rem;
}
.service-card--detail a {
  display: block;
  color: inherit;
}
.service-card--detail h2 {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.2rem;
}
.service-single {
  padding-top: 120px;
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.share-buttons a,
.share-buttons button {
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 0.65rem 1rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Typography + news hover refresh ===== */
body,
button,
input,
textarea,
select,
.nav-logo,
.hero h1,
.section-title,
.service-card h3,
.news-article-card h2,
.site-footer h2,
.footer-brand__logo,
.page-title,
.news-hero h1,
.service-card--detail h2 {
  font-family: 'Be Vietnam Pro', Arial, sans-serif !important;
}
.news-article-card {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-article-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.news-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.news-article-card:hover::after {
  transform: scaleX(1);
}
/* ===== Professional typography reset ===== */
body,
button,
input,
textarea,
select,
.nav-logo,
.hero h1,
.section-title,
.service-card h3,
.news-article-card h2,
.site-footer h2,
.footer-brand__logo,
.page-title,
.news-hero h1,
.service-card--detail h2,
.hero-about h1,
.page-hero h1,
.faq-left h2,
.success-state h3 {
  font-family: 'Be Vietnam Pro', Arial, sans-serif !important;
}
.floating-action.zalo img {
  width: 24px;
  height: 24px;
}
.service-description,
.service-description p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.service-description p {
  margin: 0 0 1.25rem;
}
.service-card .service-description {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.share-buttons {
  align-items: center;
}
.share-buttons .share-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  line-height: 1;
}
.share-buttons .share-icon--facebook {
  color: #1877f2;
  font-size: 1.1rem;
  font-weight: 700;
}
.share-buttons .share-icon--zalo img {
  width: 20px;
  height: 20px;
}
.share-buttons .share-icon--copy {
  font-size: 1rem;
}

/* ===== Final pagination and footer drawer overrides ===== */
.news-pagination .navigation.pagination .nav-links {
  display: flex !important;
  justify-content: center;
  gap: 0.55rem;
}
.news-pagination .navigation.pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  padding: 0 0.9rem;
  color: var(--navy) !important;
  background: var(--white) !important;
  border: 1px solid rgba(200,155,74,0.32) !important;
  border-radius: 4px !important;
  box-shadow: 0 8px 18px rgba(13,27,42,0.06);
}
.news-pagination .navigation.pagination a.page-numbers:hover,
.news-pagination .navigation.pagination .page-numbers.current {
  color: var(--navy) !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
}
.news-pagination .navigation.pagination .page-numbers.dots {
  color: rgba(13,27,42,0.55) !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none;
}
@media (min-width: 901px) {
  .footer-menu-toggle,
  .footer-drawer {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .footer-menu-toggle {
    display: inline-flex !important;
  }
  .footer-drawer {
    display: block !important;
  }
}

/* ── SKELETON (shimmer kiểu YouTube – không nhấp nháy) ── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skeleton-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  padding: 2rem;
}
.skel {
  border-radius: 6px;
  background: linear-gradient(90deg, #ede8e0 25%, #e2dbd2 50%, #ede8e0 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s infinite linear;
}
.skel-icon  { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 1.25rem; }
.skel-title { height: 18px; width: 60%; margin-bottom: 0.8rem; }
.skel-line  { height: 12px; width: 100%; margin-bottom: 0.45rem; }
.skel-line.s75 { width: 75%; margin-bottom: 1.35rem; }
.skel-tags  { display: flex; gap: 0.4rem; }
.skel-tag   { height: 22px; width: 58px; border-radius: 50px; }
.skel-tag:nth-child(2) { width: 76px; }
.skel-tag:nth-child(3) { width: 50px; }

/* ── PAGINATION ── */
.services-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 2.75rem;
}
.page-btn {
  min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  background: var(--white); color: var(--text-mid);
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s;
}
.page-btn:hover:not(:disabled):not(.active) {
  border-color: var(--gold); color: var(--gold); transform: translateY(-1px);
}
.page-btn.active {
  background: var(--navy); border-color: var(--navy);
  color: var(--white); font-weight: 500; cursor: default;
}
.page-btn:disabled { opacity: 0.3; cursor: default; }