* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #faf9f6;
      color: #1e1e1e;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      font-weight: 400;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.3;
      font-style: normal;
    }

    img { max-width: 100%; height: auto; display: block; }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
    }

    :root {
      --navy: #0a1f3b;
      --navy-light: #1d3a5c;
      --gold: #b99b6b;
      --gold-light: #dcc7a6;
      --cream: #faf9f6;
      --gray-bg: #f1efe9;
      --text-dark: #1e1e1e;
      --text-muted: #4a4a4a;
      --white: #ffffff;
      --border-light: #e2ddd5;
      --zalo: #0068ff;
      --whatsapp: #25d366;
    }

    /* ================= TOP BAR ================= */
    .top-bar {
      background-color: var(--navy);
      color: #e0e0e0;
      font-size: 0.8rem;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }

    .top-bar .address {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex: 1;
      min-width: 0;
      font-weight: 500;
    }

    .top-bar .address i { color: var(--gold); flex-shrink: 0; }

    .top-bar .address span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* ================= LANGUAGE DROPDOWN ================= */
    .lang-dropdown {
      position: relative;
      flex-shrink: 0;
    }

    .lang-toggle {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: #e0e0e0;
      padding: 6px 12px;
      border-radius: 4px;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      transition: all 0.2s;
      min-height: 32px;
      white-space: nowrap;
    }

    .lang-toggle:hover {
      background: rgba(255,255,255,0.15);
      border-color: var(--gold);
    }

    .lang-toggle .flag { font-size: 0.9rem; flex-shrink: 0; }
    .lang-toggle .lang-label {
      white-space: nowrap;
      display: inline-block;
    }
    .lang-toggle .chevron {
      font-size: 0.6rem;
      transition: transform 0.2s;
      color: var(--gold-light);
      flex-shrink: 0;
    }

    .lang-dropdown.open .lang-toggle .chevron {
      transform: rotate(180deg);
    }

    .lang-menu {
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 4px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      min-width: 180px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: all 0.2s ease;
      z-index: 2000;
    }

    .lang-dropdown.open .lang-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      color: var(--navy);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: background 0.15s;
      border-bottom: 1px solid var(--border-light);
      font-family: 'Montserrat', sans-serif;
      white-space: nowrap;
    }

    .lang-menu a:last-child { border-bottom: none; }
    .lang-menu a:hover { background: var(--cream); color: var(--gold); }
    .lang-menu a.active {
      background: rgba(185,155,107,0.1);
      color: var(--navy);
      font-weight: 700;
    }

    .lang-menu a.active::after {
      content: "✓";
      margin-left: auto;
      color: var(--gold);
      font-weight: 700;
    }

    /* ================= HEADER ================= */
    .main-header {
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--border-light);
    }

    .main-header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      position: relative;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 9px;
      flex-shrink: 0;
      min-width: 0;
      text-decoration: none;
    }

    .logo-img {
      height: 44px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo-text { min-width: 0; }

    .logo-text h1 {
      font-size: 1.05rem;
      line-height: 1.1;
      color: var(--navy);
      letter-spacing: -0.01em;
      white-space: nowrap;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
    }

    .logo-text .sub {
      font-size: 0.58rem;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--gold);
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-family: 'Montserrat', sans-serif;
    }

    .nav-links {
      display: flex;
      gap: 22px;
      align-items: center;
      font-weight: 500;
      font-size: 0.9rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--navy);
      transition: color 0.2s;
      position: relative;
      padding: 6px 0;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.3s;
    }

    .nav-links a:hover::after { width: 100%; }

    .header-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-shrink: 0;
    }

    .phone-link {
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      font-size: 0.88rem;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      font-family: 'Montserrat', sans-serif;
    }

    .phone-link i { color: var(--gold); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 2px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
      font-size: 0.88rem;
      cursor: pointer;
      border: 1px solid transparent;
      letter-spacing: 0.03em;
      text-align: center;
      min-height: 46px;
      line-height: 1.2;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
    }

    .btn-primary {
      background-color: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .btn-primary:hover {
      background-color: #0d2847;
      border-color: #0d2847;
    }

    .btn-outline {
      background-color: transparent;
      border: 1px solid var(--navy);
      color: var(--navy);
    }

    .btn-outline:hover {
      background-color: var(--navy);
      color: var(--white);
    }

    .btn-gold {
      background-color: var(--gold);
      color: var(--navy);
      border-color: var(--gold);
      font-weight: 700;
    }

    .btn-gold:hover {
      background-color: #a88955;
      border-color: #a88955;
      color: var(--white);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.4rem;
      color: var(--navy);
      cursor: pointer;
      padding: 8px;
      min-width: 44px;
      min-height: 44px;
      border-radius: 4px;
      transition: background 0.2s;
      align-items: center;
      justify-content: center;
    }

    .menu-toggle:hover { background: var(--gray-bg); }

    /* ================= HERO ================= */
    .hero {
      background: linear-gradient(135deg, #f5f3ef 0%, #eae7e0 100%);
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 50px;
      align-items: center;
    }

    .hero-content .badge {
      display: inline-block;
      background: rgba(185, 155, 107, 0.15);
      color: var(--navy);
      padding: 7px 18px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 20px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-family: 'Montserrat', sans-serif;
    }

    .hero-content h2 {
      font-size: 2.6rem;
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 20px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .hero-content p {
      font-size: 1.02rem;
      color: var(--text-muted);
      margin-bottom: 28px;
      font-weight: 400;
      line-height: 1.7;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .hero-features {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      font-size: 0.85rem;
      color: var(--navy);
      font-weight: 500;
    }

    .hero-features span { display: flex; align-items: center; gap: 6px; }
    .hero-features i { color: var(--gold); }

    .hero-image {
      background: url('/images/1.webp') center/cover no-repeat;
      height: 460px;
      border-radius: 2px;
      box-shadow: 30px 30px 40px -20px rgba(10,31,59,0.25);
      position: relative;
      border: 8px solid var(--white);
    }

    .hero-image::after {
      content: 'Tư vấn tận tâm';
      position: absolute;
      bottom: 18px;
      right: 18px;
      background: var(--white);
      padding: 10px 18px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      border-left: 4px solid var(--gold);
      letter-spacing: 0.02em;
    }

    /* ================= STATS ================= */
    .stats-section {
      background-color: var(--white);
      padding: 50px 0;
      border-bottom: 1px solid var(--border-light);
    }

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

    .stat-item .number {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .stat-item .label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
    }

    /* ================= SECTIONS ================= */
    .section { padding: 60px 0; }

    .section-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .section-header .sub {
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
    }

    .section-header h3 {
      font-size: 2.1rem;
      color: var(--navy);
      margin-bottom: 14px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .section-header p {
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.7;
    }

    /* ================= SERVICES ================= */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      padding: 32px 26px;
      transition: all 0.3s;
      box-shadow: 0 5px 20px rgba(0,0,0,0.02);
      display: flex;
      flex-direction: column;
      border-radius: 2px;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(10,31,59,0.08);
      border-color: var(--gold-light);
    }

    .service-icon {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .service-card h4 {
      font-size: 1.15rem;
      color: var(--navy);
      margin-bottom: 14px;
      line-height: 1.4;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    .service-card > p {
      color: var(--text-muted);
      margin-bottom: 20px;
      font-size: 0.92rem;
      flex: 1;
      line-height: 1.7;
    }

    .service-features {
      list-style: none;
      margin-bottom: 24px;
    }

    .service-features li {
      font-size: 0.88rem;
      padding-left: 20px;
      position: relative;
      margin-bottom: 8px;
      color: var(--navy-light);
      line-height: 1.6;
      font-weight: 500;
    }

    .service-features li::before {
      content: "•";
      position: absolute;
      left: 4px;
      color: var(--gold);
      font-weight: 700;
      font-size: 1.1rem;
      line-height: 1;
      top: 4px;
    }

    .service-link {
      text-decoration: none;
      color: var(--navy);
      font-weight: 700;
      font-size: 0.82rem;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
      margin-top: auto;
      min-height: 40px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .service-link:hover { gap: 12px; color: var(--gold); }

    /* ================= CASES ================= */
    .cases-section {
      background-color: var(--gray-bg);
      padding: 60px 0;
    }

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

    .case-item {
      background: var(--white);
      padding: 24px 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      border-left: 4px solid var(--gold);
      transition: all 0.2s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }

    .case-item:hover {
      background: #fcfbf9;
      transform: translateX(6px);
    }

    .case-item p {
      font-weight: 500;
      color: var(--navy);
      font-size: 0.96rem;
      flex: 1;
      line-height: 1.6;
    }

    .case-item .btn-small {
      background: transparent;
      border: 1px solid var(--navy);
      padding: 10px 18px;
      font-size: 0.76rem;
      font-weight: 700;
      text-decoration: none;
      color: var(--navy);
      white-space: nowrap;
      transition: all 0.2s;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .case-item .btn-small:hover {
      background: var(--navy);
      color: var(--white);
    }

    /* ================= INTRO + PROCESS ================= */
    .intro-process {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .intro-text h4 {
      font-size: 1.8rem;
      color: var(--navy);
      margin-bottom: 20px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.35;
    }

    .intro-text > p {
      color: var(--text-muted);
      margin-bottom: 24px;
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .intro-values {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }

    .value-tag {
      background: var(--white);
      border: 1px solid var(--border-light);
      padding: 9px 16px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Montserrat', sans-serif;
    }

    .value-tag i { color: var(--gold); }

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

    .step-item {
      background: var(--white);
      padding: 26px 22px;
      border: 1px solid var(--border-light);
    }

    .step-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .step-item h5 {
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 8px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.4;
    }

    .step-item p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

    /* ================= TEAM ================= */
    .team-section { background: var(--white); padding: 60px 0; }

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

    .lawyer-card {
      background: var(--cream);
      border: 1px solid var(--border-light);
      padding: 28px 24px;
      transition: all 0.25s;
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .lawyer-card:hover { box-shadow: 0 20px 30px rgba(0,0,0,0.05); }

    .lawyer-avatar {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 3px solid var(--gold-light);
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
    }

    .lawyer-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    .lawyer-info h4 {
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 4px;
      line-height: 1.3;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    .lawyer-info .role {
      color: var(--gold);
      font-weight: 700;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
      font-family: 'Montserrat', sans-serif;
    }

    .lawyer-info .exp {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--navy-light);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Montserrat', sans-serif;
    }

    .lawyer-info .exp i { color: var(--gold); }

    .lawyer-info > p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 14px;
      line-height: 1.6;
    }

    .lawyer-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 16px;
    }

    .lawyer-tags span {
      background: rgba(185, 155, 107, 0.12);
      padding: 4px 10px;
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--navy);
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .lawyer-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .lawyer-actions a {
      font-size: 0.74rem;
      font-weight: 700;
      text-decoration: none;
      color: var(--navy);
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ================= COMMIT ================= */
    .commit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .commit-item {
      padding: 30px 22px;
      background: var(--white);
      border: 1px solid var(--border-light);
      text-align: center;
    }

    .commit-item i {
      font-size: 1.9rem;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .commit-item h5 {
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    .commit-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

    /* ================= TESTIMONIAL ================= */
    .testimonial {
      background: var(--navy);
      color: var(--white);
      padding: 55px 0;
      text-align: center;
    }

    .testimonial blockquote {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.3rem;
      max-width: 860px;
      margin: 0 auto 20px;
      line-height: 1.6;
      font-style: normal;
      font-weight: 500;
    }

    .testimonial .author {
      color: var(--gold-light);
      font-weight: 600;
      letter-spacing: 0.08em;
      font-size: 0.85rem;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
    }

    /* ================= BLOG ================= */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .blog-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      overflow: hidden;
    }

    .blog-img {
      height: 190px;
      background-size: cover;
      background-position: center;
    }

    .blog-content { padding: 22px; }

    .blog-meta {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 8px;
      font-family: 'Montserrat', sans-serif;
    }

    .blog-content h4 {
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.45;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    .blog-content p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 14px;
      line-height: 1.65;
    }

    .read-more {
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 40px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ================= FAQ ================= */
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .faq-item {
      background: var(--white);
      padding: 22px 24px;
      border: 1px solid var(--border-light);
    }

    .faq-item h5 {
      font-size: 0.98rem;
      color: var(--navy);
      margin-bottom: 8px;
      display: flex;
      gap: 10px;
      line-height: 1.5;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    .faq-item h5 i {
      color: var(--gold);
      font-size: 0.95rem;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .faq-item p {
      font-size: 0.88rem;
      color: var(--text-muted);
      padding-left: 26px;
      line-height: 1.65;
    }

    /* ================= CONTACT ================= */
    .contact-section {
      background: var(--gray-bg);
      padding: 60px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .contact-info h4 {
      font-size: 1.85rem;
      color: var(--navy);
      margin-bottom: 20px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.35;
    }

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

    .contact-detail {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
      align-items: flex-start;
    }

    .contact-detail i {
      color: var(--gold);
      font-size: 1.15rem;
      width: 24px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .contact-detail span {
      color: var(--navy);
      font-weight: 500;
      font-size: 0.98rem;
      word-break: break-word;
      line-height: 1.5;
    }

    .contact-detail a {
      color: var(--navy);
      text-decoration: none;
      font-weight: 600;
    }

    .contact-detail a:hover { color: var(--gold); }

    .office-visual {
      position: relative;
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(10,31,59,0.15);
      border: 8px solid var(--white);
      height: 480px;
    }

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

    .office-visual .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(10,31,59,0.95) 0%, rgba(10,31,59,0.7) 60%, transparent 100%);
      padding: 36px 32px 32px;
      color: white;
    }

    .office-visual .overlay .tag {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      padding: 5px 14px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 14px;
      font-family: 'Montserrat', sans-serif;
    }

    .office-visual .overlay h5 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .office-visual .overlay p {
      font-size: 0.9rem;
      color: #d0d6de;
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .office-visual .overlay .contact-mini {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    .office-visual .overlay .contact-mini a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: white;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      transition: color 0.2s;
    }

    .office-visual .overlay .contact-mini a i {
      color: var(--gold);
    }

    .office-visual .overlay .contact-mini a:hover {
      color: var(--gold);
    }

    /* ================= FLOATING CHAT BUTTONS ================= */
    .floating-chat {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1500;
    }

    .floating-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
      transition: all 0.25s;
      position: relative;
      animation: pulse 2s infinite;
    }

    .floating-btn.zalo {
      background: var(--zalo);
    }

    .floating-btn.whatsapp {
      background: var(--whatsapp);
    }

    .floating-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    }

    .floating-btn .tooltip {
      position: absolute;
      right: 100%;
      margin-right: 12px;
      background: var(--navy);
      color: white;
      padding: 8px 14px;
      border-radius: 4px;
      font-size: 0.76rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s;
      pointer-events: none;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .floating-btn:hover .tooltip {
      opacity: 1;
      visibility: visible;
      margin-right: 16px;
    }

    @keyframes pulse {
      0% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(0,104,255,0.5); }
      70% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 12px rgba(0,104,255,0); }
      100% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(0,104,255,0); }
    }

    .floating-btn.whatsapp {
      animation: pulseGreen 2s infinite;
    }

    @keyframes pulseGreen {
      0% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.5); }
      70% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 12px rgba(37,211,102,0); }
      100% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0); }
    }

    /* ================= FOOTER ================= */
    footer {
      background: var(--navy);
      color: #b0b8c5;
      padding: 50px 0 24px;
      font-size: 0.88rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 36px;
      margin-bottom: 40px;
    }

    .footer-logo h4 {
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 8px;
      font-weight: 800;
    }

    .footer-logo p {
      color: #8e9aab;
      margin-bottom: 12px;
      font-size: 0.86rem;
      line-height: 1.5;
    }

    .footer-links h5 {
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 6px; }

    .footer-links a {
      color: #b0b8c5;
      text-decoration: none;
      transition: color 0.2s;
      font-size: 0.88rem;
      line-height: 1.4;
    }

    .footer-links a:hover { color: var(--gold-light); }

    .footer-contact p {
      margin-bottom: 8px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .footer-contact i {
      color: var(--gold);
      width: 18px;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .footer-social {
      margin-top: 16px;
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      color: #b0b8c5;
      font-size: 1rem;
      min-width: 42px;
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      transition: all 0.2s;
      text-decoration: none;
    }

    .footer-social a:hover {
      color: var(--gold-light);
      background: rgba(255,255,255,0.1);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.78rem;
      color: #7c8798;
      line-height: 1.5;
    }

    .footer-bottom a {
      color: #7c8798;
      text-decoration: none;
      margin-left: 16px;
    }

    .footer-bottom a:hover { color: var(--gold-light); }

    /* ================= RESPONSIVE TABLET ================= */
    @media (max-width: 1024px) {
      .hero .container { grid-template-columns: 1fr; gap: 40px; }
      .hero-image { height: 380px; }
      .services-grid,
      .team-grid,
      .blog-grid,
      .commit-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
      .intro-process { grid-template-columns: 1fr; gap: 40px; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    }

    /* ================= RESPONSIVE MOBILE ================= */
    @media (max-width: 768px) {
      html { font-size: 17px; }
      .container { padding: 0 16px; }

      /* ---------- TOP BAR ---------- */
      .top-bar { padding: 6px 0; }
      .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
      }
      .top-bar .address {
        font-size: 0.68rem;
        max-width: 55%;
      }
      .top-bar .address i { font-size: 0.72rem; }

      /* ---------- LANG DROPDOWN - không xuống dòng ---------- */
      .lang-toggle {
        padding: 5px 9px;
        font-size: 0.72rem;
        min-height: 30px;
        gap: 4px;
        white-space: nowrap;
      }
      .lang-toggle .flag { font-size: 0.82rem; }
      .lang-toggle .lang-label {
        white-space: nowrap;
        font-size: 0.72rem;
      }
      .lang-toggle .chevron { font-size: 0.55rem; }
      .lang-menu {
        min-width: 170px;
        right: 0;
      }
      .lang-menu a {
        padding: 12px 14px;
        font-size: 0.88rem;
        min-height: 44px;
        white-space: nowrap;
      }

      /* ---------- HEADER ---------- */
      .main-header { padding: 8px 0; }
      .main-header .container {
        flex-wrap: nowrap;
        gap: 8px;
        align-items: center;
      }

      .logo-area { gap: 8px; flex: 1; min-width: 0; }
      .logo-img { height: 38px; max-width: 150px; }
      .logo-text .sub { display: none; }
      .logo-text h1 { font-size: 0.95rem; white-space: nowrap; }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 10px 16px;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-top: 1px solid var(--border-light);
        z-index: 999;
      }
      .nav-links.active { display: flex; }
      .nav-links a {
        padding: 14px 8px;
        width: 100%;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.95rem;
        font-weight: 500;
      }
      .nav-links a:last-child { border-bottom: none; }
      .nav-links a::after { display: none; }

      .header-actions { gap: 4px; flex-shrink: 0; }
      .header-actions .phone-link { display: none; }
      .header-actions .btn-primary { display: none; }

      .menu-toggle {
        display: flex;
        min-width: 40px;
        min-height: 40px;
        font-size: 1.25rem;
        padding: 6px;
      }

      /* ---------- HERO ---------- */
      .hero { padding: 36px 0; }
      .hero-content .badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 14px;
      }
      .hero-content h2 {
        font-size: 1.75rem;
        margin-bottom: 14px;
        line-height: 1.3;
      }
      .hero-content p {
        font-size: 0.96rem;
        margin-bottom: 22px;
      }
      .hero-cta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 22px;
      }
      .hero-cta .btn {
        width: 100%;
        padding: 14px 22px;
        font-size: 0.85rem;
      }
      .hero-features {
        gap: 10px;
        font-size: 0.82rem;
        flex-direction: column;
      }
      .hero-image { height: 250px; border-width: 6px; }
      .hero-image::after {
        font-size: 0.85rem;
        padding: 7px 12px;
        bottom: 10px;
        right: 10px;
      }

      /* ---------- STATS ---------- */
      .stats-section { padding: 36px 0; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
      .stat-item .number { font-size: 1.95rem; }
      .stat-item .label { font-size: 0.72rem; }

      /* ---------- SECTION ---------- */
      .section { padding: 40px 0; }
      .section-header { margin-bottom: 30px; }
      .section-header .sub { font-size: 0.68rem; }
      .section-header h3 { font-size: 1.6rem; }
      .section-header p { font-size: 0.92rem; }

      .services-grid,
      .team-grid,
      .blog-grid,
      .commit-grid,
      .cases-grid,
      .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .service-card { padding: 24px 20px; }
      .service-card h4 { font-size: 1.08rem; }
      .service-card > p { font-size: 0.9rem; }
      .service-features li { font-size: 0.88rem; margin-bottom: 10px; }
      .service-link { font-size: 0.78rem; min-height: 44px; }

      .case-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 18px;
      }
      .case-item p { font-size: 0.9rem; }
      .case-item .btn-small {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.76rem;
        min-height: 46px;
      }

      .intro-text h4 { font-size: 1.4rem; }
      .intro-text > p { font-size: 0.92rem; }
      .value-tag { font-size: 0.78rem; padding: 9px 14px; }
      .process-steps { grid-template-columns: 1fr; gap: 12px; }
      .step-item { padding: 22px 18px; }
      .step-num { font-size: 1.5rem; }
      .step-item h5 { font-size: 0.96rem; }
      .step-item p { font-size: 0.84rem; }

      .lawyer-card { padding: 22px 18px; gap: 14px; }
      .lawyer-avatar { width: 64px; height: 64px; font-size: 1.2rem; }
      .lawyer-info h4 { font-size: 1rem; }
      .lawyer-info .role { font-size: 0.66rem; }
      .lawyer-info .exp { font-size: 0.76rem; }
      .lawyer-info > p { font-size: 0.84rem; }
      .lawyer-tags span { font-size: 0.62rem; padding: 3px 8px; }
      .lawyer-actions a { font-size: 0.72rem; min-height: 36px; }

      .commit-item { padding: 26px 20px; }
      .commit-item h5 { font-size: 1rem; }
      .commit-item p { font-size: 0.86rem; }

      .testimonial { padding: 40px 0; }
      .testimonial blockquote { font-size: 1.05rem; line-height: 1.6; }
      .testimonial .author { font-size: 0.8rem; }

      .blog-content h4 { font-size: 1rem; }
      .blog-content p { font-size: 0.86rem; }
      .read-more { font-size: 0.76rem; min-height: 44px; }

      .faq-item { padding: 18px 18px; }
      .faq-item h5 { font-size: 0.92rem; }
      .faq-item p { font-size: 0.86rem; padding-left: 0; margin-top: 8px; }

      .contact-info h4 { font-size: 1.45rem; }
      .contact-info > p { font-size: 0.92rem; }
      .contact-detail span { font-size: 0.92rem; }
      .office-visual { height: 380px; border-width: 6px; }
      .office-visual .overlay { padding: 28px 22px 24px; }
      .office-visual .overlay h5 { font-size: 1.1rem; }
      .office-visual .overlay p { font-size: 0.85rem; margin-bottom: 16px; }
      .office-visual .overlay .contact-mini { gap: 14px; }
      .office-visual .overlay .contact-mini a { font-size: 0.82rem; }

      .floating-chat { bottom: 16px; right: 16px; gap: 10px; }
      .floating-btn { width: 52px; height: 52px; font-size: 1.4rem; }
      .floating-btn .tooltip { display: none; }

      /* ---------- FOOTER - gọn, ít khoảng cách ---------- */
      footer { padding: 32px 0 16px; }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 22px;
      }
      .footer-logo h4 {
        font-size: 1.3rem;
        margin-bottom: 6px;
      }
      .footer-logo p {
        font-size: 0.84rem;
        margin-bottom: 8px;
        line-height: 1.45;
      }
      .footer-links h5 {
        font-size: 0.85rem;
        margin-bottom: 10px;
        letter-spacing: 0.08em;
      }
      .footer-links li {
        margin-bottom: 2px;
      }
      .footer-links a {
        font-size: 0.86rem;
        min-height: 30px;
        display: inline-flex;
        align-items: center;
        line-height: 1.35;
      }
      .footer-contact p {
        font-size: 0.86rem;
        margin-bottom: 6px;
        line-height: 1.45;
      }
      .footer-social {
        margin-top: 12px;
        gap: 8px;
      }
      .footer-social a {
        min-width: 42px;
        min-height: 42px;
        font-size: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 0.74rem;
        gap: 6px;
        padding-top: 16px;
        line-height: 1.5;
      }
      .footer-bottom a { margin: 0 6px; }

      .final-cta h3 { font-size: 1.45rem !important; }
      .final-cta p { font-size: 0.92rem !important; }
      .final-cta .btn {
        width: 100%;
        padding: 14px 22px;
        font-size: 0.85rem;
      }
    }

    /* ================= MOBILE NHỎ ================= */
    @media (max-width: 380px) {
      .logo-text h1 { font-size: 0.86rem; }
      .logo-img { height: 34px; max-width: 130px; }
      .top-bar .address { font-size: 0.62rem; max-width: 48%; }
      .lang-toggle { padding: 4px 7px; font-size: 0.68rem; min-height: 28px; gap: 3px; }
      .lang-toggle .flag { font-size: 0.78rem; }
      .lang-toggle .lang-label { font-size: 0.68rem; }
      .lang-toggle .chevron { font-size: 0.5rem; }
      .hero-content h2 { font-size: 1.55rem; }
      .section-header h3 { font-size: 1.4rem; }
      .stat-item .number { font-size: 1.7rem; }
      .lawyer-avatar { width: 56px; height: 56px; font-size: 1.1rem; }
      .lawyer-info h4 { font-size: 0.94rem; }
      .office-visual { height: 320px; }
      .office-visual .overlay { padding: 22px 18px 20px; }
      .office-visual .overlay h5 { font-size: 1rem; }
      .office-visual .overlay p { font-size: 0.8rem; }
    }