/* 
  =========================================
  PREMIUM CONSTRUCTION COMPANY WEBSITE
  MAIN STYLESHEET (style.css)
  =========================================
*/
.divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom,
      transparent,
      #d4af37,
      transparent);
  margin: 0px 20px;
}

/* --- 1. DESIGN SYSTEM & VARIABLES --- */
:root {
  /* Colors */
  --color-bg-deep: #070707;
  --color-bg-card: #121212;
  --color-gold: #d4af37;
  --color-gold-hover: #b8932d;
  --color-gold-light: #f3e5ab;
  --color-gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  --color-text-white: #ffffff;
  --color-text-gray: #a0a0a0;
  --color-text-muted: #666666;
  --color-border-gold: rgba(212, 175, 55, 0.2);
  --color-border-dark: #222222;

  /* Fonts */
  --font-primary: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max-width: 1280px;
  --header-height: 90px;
  --header-height-sticky: 75px;

  /* Transitions & Animations */
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- 2. RESET & BASE STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-deep);
  color: var(--color-text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-hover);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 3. PREMIUM HEADER SECTION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: height var(--transition-normal), background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  background-color: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Sticky Header Active State */
.site-header.is-sticky {
  height: var(--header-height-sticky);
  background-color: rgba(7, 7, 7, 0.95);
  border-bottom: 1px solid var(--color-border-gold);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-gold);
  border-radius: 6px;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.logo:hover .logo-icon {
  transform: rotate(45deg);
  border-color: var(--color-text-white);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-text-white);
  line-height: 1.1;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-top: 2px;
}

/* Centered Navigation */
/* .main-nav {
  display: flex;
  align-items: center;
} */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #050505;
  border: 1px solid #333;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 14px 18px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #111;
  color: #d4af37;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-gray);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--color-text-white);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 100%;
}

.nav-item.active .nav-link {
  color: var(--color-gold);
}

/* Header Action CTA Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.btn-cta-gold {
  background: var(--color-gold-gradient);
  color: #000000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-cta-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-cta-gold:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-cta-gold:hover::before {
  opacity: 1;
}

/* Mobile Nav Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-white);
  transition: transform var(--transition-normal), opacity var(--transition-normal), background-color var(--transition-normal);
}

.nav-toggle:hover span {
  background-color: var(--color-gold);
}

/* Mobile Toggle Active State */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- 4. PREMIUM HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-deep);
  overflow: hidden;
}

/* Ambient Gold Light Glows */
.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid var(--color-border-gold);
  background: rgba(212, 175, 55, 0.04);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title span {
  display: block;
}

.hero-title .highlight-gold {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-gray);
  margin-bottom: 36px;
  max-width: 580px;
}

/* Hero Bullet Features */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-white);
}

.hero-feature-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-border-gold);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 0.75rem;
}

/* Hero CTA Actions */
.hero-actions-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-hero-solid {
  background: var(--color-gold-gradient);
  color: #000000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  padding: 16px 36px;
  font-size: 0.9rem;
}

.btn-hero-solid:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-hero-outline {
  border: 1.5px solid var(--color-gold);
  color: var(--color-text-white);
  padding: 15px 34px;
  font-size: 0.9rem;
  background: transparent;
}

.btn-hero-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

/* Hero Image Gallery Layout */
.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  width: 100%;
  height: 520px;
}

.hero-img-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  width: 100%;
}

.hero-img-1 {
  grid-column: 1 / 10;
  grid-row: 1 / 10;
  z-index: 2;
  border-right: 1px solid var(--color-border-gold);
  border-bottom: 1px solid var(--color-border-gold);
}

.hero-img-2 {
  grid-column: 5 / 13;
  grid-row: 4 / 13;
  z-index: 3;
  border-left: 2px solid var(--color-bg-deep);
  border-top: 2px solid var(--color-bg-deep);
  box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.7);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-img-card:hover img {
  transform: scale(1.06);
}

/* Floating Stats Badge */
.hero-floating-badge {
  position: absolute;
  bottom: 12%;
  left: -5%;
  background-color: rgba(18, 18, 18, 0.85);
  border: 1.5px solid var(--color-gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: 8px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: goldPulse 3s infinite;
}

.floating-badge-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.floating-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-white);
  line-height: 1.3;
}

/* --- 5. ULTRA-LUXURY UTILITIES & COMMON ELEMENTS --- */
.text-gold {
  color: var(--color-gold) !important;
}

.text-gold-light {
  color: var(--color-gold-light) !important;
}

.text-gray {
  color: var(--color-text-gray) !important;
}

.tracking-wider {
  letter-spacing: 2px !important;
}

.max-w-600 {
  max-width: 600px;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: var(--color-gold-gradient);
  border-radius: 2px;
  position: relative;
}

.gold-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-text-white);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}

.gold-divider-thin {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border-gold) 50%, transparent 100%);
}

.border-gold-thin {
  border: 1px solid var(--color-border-gold) !important;
}

/* Golden radial background gradient for premium headers */
.pricing-section::before,
.consultation-section::before,
.faq-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

/* --- 6. PREMIUM PRICING SECTION --- */
.pricing-card {
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 2;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold) !important;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1.5px solid var(--color-gold);
}

.pricing-card-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 11px;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.badge-pkg {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-pkg-gold {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-gold-gradient);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-box .currency {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-gray);
}

.price-box .price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.price-box .unit {
  font-size: 1rem;
  color: var(--color-text-gray);
  font-weight: 500;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

/* Soft Glow behind icons */
.pricing-features li i {
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
  font-size: 1.05rem;
}

.btn-gold {
  background: var(--color-gold-gradient);
  color: #000000 !important;
  border: none;
  border-radius: 4px;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-outline-gold {
  border: 1.5px solid var(--color-gold);
  color: var(--color-text-white);
  border-radius: 4px;
  background: transparent;
  transition: all var(--transition-normal);
}

.btn-outline-gold:hover {
  background: var(--color-gold-gradient);
  color: #000000 !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* --- 7. CONSULTATION FORM SECTION --- */
.consultation-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

.consultation-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 65%);
  pointer-events: none;
  z-index: -1;
}

.consultation-experience {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: rgba(18, 18, 18, 0.85);
  border: 1.5px solid var(--color-gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 340px;
  z-index: 5;
}

.consultation-experience .icon-box i {
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

.consultation-form-card {
  background: rgba(18, 18, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Premium styled input fields */
.consultation-form-card .form-control,
.consultation-form-card .form-select,
.modal-content .form-control {
  background-color: rgba(7, 7, 7, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-text-white) !important;
  border-radius: 6px !important;
  transition: all var(--transition-fast) !important;
}

.consultation-form-card .form-control:focus,
.consultation-form-card .form-select:focus,
.modal-content .form-control:focus {
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25) !important;
  outline: none !important;
}

/* Floating labels adjustments for dark theme */
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  color: var(--color-gold) !important;
  background-color: transparent !important;
}

/* --- 8. FAQ ACCORDION CUSTOM STYLING --- */
.accordion-custom .accordion-item {
  background-color: rgba(18, 18, 18, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.accordion-custom .accordion-item:hover {
  border-color: rgba(212, 175, 55, 0.3) !important;
}

.accordion-custom .accordion-button {
  background-color: transparent !important;
  color: var(--color-text-white) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 20px 25px !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-custom .accordion-button::after {
  background-image: none !important;
  content: '\F282';
  /* Bootstrap Icon Chevron Down */
  font-family: 'bootstrap-icons' !important;
  font-size: 1rem;
  color: var(--color-text-gray);
  transition: transform var(--transition-normal), color var(--transition-normal);
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--color-gold) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.accordion-custom .accordion-body {
  background-color: rgba(10, 10, 10, 0.4) !important;
  color: var(--color-text-gray) !important;
  line-height: 1.8;
  padding: 20px 25px !important;
}

/* --- 9. PROFESSIONAL FOOTER SECTION --- */
.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-gray);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.social-icon:hover {
  background-color: var(--color-gold);
  color: #000 !important;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* =========================================================
   LV.T LUXURY FOOTER
========================================================= */

.lvt-footer {
  background: #070707;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  margin-top: 80px;
  color: #aaa;
}

.lvt-footer-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================
   FOOTER TOP
========================= */

.lvt-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.3fr;
  gap: 60px;
  padding: 65px 0 55px;
}


/* =========================
   BRAND
========================= */

.lvt-footer-brand {
  max-width: 360px;
}

.lvt-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 22px;
}

.lvt-footer-logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
}

.lvt-footer-logo-icon svg {
  width: 34px;
  height: 34px;
}

.lvt-footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.lvt-footer-logo-text strong {
  font-size: 22px;
  letter-spacing: 3px;
  color: #f5f5f5;
  font-weight: 700;
}

.lvt-footer-logo-text small {
  margin-top: 6px;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #d4af37;
}

.lvt-footer-brand>p {
  font-size: 14px;
  line-height: 1.8;
  color: #888;
  margin: 0;
}


/* =========================
   SOCIAL
========================= */

.lvt-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.lvt-footer-social a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #292929;
  color: #aaa;

  text-decoration: none;

  transition: all 0.25s ease;
}

.lvt-footer-social a:hover {
  color: #d4af37;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.06);
}


/* =========================
   COLUMNS
========================= */

.lvt-footer-column h4,
.lvt-footer-contact h4 {
  margin: 0 0 24px;

  font-size: 14px;
  font-weight: 700;

  color: #f5f5f5;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lvt-footer-column h4::after,
.lvt-footer-contact h4::after {
  content: "";

  display: block;

  width: 28px;
  height: 1px;

  background: #d4af37;

  margin-top: 10px;
}


.lvt-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lvt-footer-column li {
  margin-bottom: 13px;
}

.lvt-footer-column a {
  position: relative;

  color: #888;

  font-size: 13px;
  line-height: 1.5;

  text-decoration: none;

  transition: color 0.25s ease;
}

.lvt-footer-column a::before {
  content: "›";

  color: #d4af37;

  margin-right: 8px;

  opacity: 0;

  transition: opacity 0.25s ease;
}

.lvt-footer-column a:hover {
  color: #d4af37;
}

.lvt-footer-column a:hover::before {
  opacity: 1;
}


/* =========================
   CONTACT
========================= */

.lvt-footer-contact {
  min-width: 0;
}

.lvt-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 18px;
}

.lvt-contact-icon {
  flex: 0 0 30px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(212, 175, 55, 0.3);

  color: #d4af37;

  font-size: 12px;
}

.lvt-contact-item small {
  display: block;

  font-size: 10px;
  text-transform: uppercase;

  letter-spacing: 1px;

  color: #666;

  margin-bottom: 3px;
}

.lvt-contact-item p {
  margin: 0;

  color: #999;

  font-size: 13px;
  line-height: 1.6;
}

.lvt-contact-item a {
  color: #aaa;

  font-size: 13px;

  text-decoration: none;

  transition: color 0.25s ease;
}

.lvt-contact-item a:hover {
  color: #d4af37;
}


/* =========================
   DIVIDER
========================= */

.lvt-footer-line {
  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.5),
      transparent);
}


/* =========================
   FOOTER BOTTOM
========================= */

.lvt-footer-bottom {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.lvt-footer-bottom p {
  margin: 0;

  font-size: 12px;
  color: #666;
}

.lvt-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lvt-footer-bottom-links a {
  color: #666;

  font-size: 12px;

  text-decoration: none;

  transition: color 0.25s ease;
}

.lvt-footer-bottom-links a:hover {
  color: #d4af37;
}

.lvt-footer-bottom-links span {
  width: 1px;
  height: 12px;
  background: #333;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

  .lvt-footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
  }

  .lvt-footer-brand {
    grid-column: 1 / -1;
    max-width: 600px;
  }

  .lvt-footer-contact {
    grid-column: span 1;
  }
}


@media (max-width: 768px) {

  .lvt-footer {
    margin-top: 50px;
  }

  .lvt-footer-container {
    width: min(100% - 30px, 600px);
  }

  .lvt-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;

    padding: 45px 0 35px;
  }

  .lvt-footer-brand {
    grid-column: 1 / -1;
  }

  .lvt-footer-contact {
    grid-column: 1 / -1;
  }

  .lvt-footer-bottom {
    flex-direction: column;
    justify-content: center;

    text-align: center;

    padding: 20px 0;
  }

}


@media (max-width: 480px) {

  .lvt-footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lvt-footer-brand,
  .lvt-footer-contact {
    grid-column: auto;
  }

  .lvt-footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

}


.map-placeholder iframe {
  transition: filter var(--transition-normal);
}

.map-placeholder:hover iframe {
  filter: grayscale(0.5) invert(0.9) contrast(1.1) !important;
}

/* --- 10. FLOATING ACTION BUTTONS (WIDGETS) --- */
.floating-widgets {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 999;
}

.widget-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  text-decoration: none !important;
}

.widget-messenger {
  background: linear-gradient(135deg, #006aff 0%, #00c6ff 100%);
}

.widget-zalo {
  background: #0068ff;
  font-weight: 800;
}

.widget-zalo .zalo-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.widget-hotline {
  background: #25d366;
  animation: shake 2s infinite;
}

.widget-backtotop {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.widget-backtotop.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.widget-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #fff !important;
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }

  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}



/* --- 12. POPUP CONSULTATION MODAL --- */
.icon-pulse {
  width: 80px;
  height: 80px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: goldPulse 2s infinite;
}

/* =========================================================
   LV.T LUXURY — GLOBAL HEADER
   Dùng chung cho toàn bộ website
   ========================================================= */

:root {
  --lvt-black: #080808;
  --lvt-black-2: #0d0d0d;
  --lvt-black-3: #121212;
  --lvt-gold: #d4af37;
  --lvt-gold-light: #e6c75a;
  --lvt-white: #ffffff;
  --lvt-muted: #999999;
  --lvt-border: rgba(212, 175, 55, 0.18);
}


/* =========================
   HEADER
   ========================= */

.site-header,
.site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100%;
  height: 82px;

  background: rgba(8, 8, 8, 0.96);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    background .3s ease,
    box-shadow .3s ease,
    height .3s ease;
}


.site-header.scrolled,
.site-header-sticky.scrolled {
  background: rgba(5, 5, 5, 0.98);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, .35);
}


/* =========================
   CONTAINER
   ========================= */

.site-header .header-container {

  width: min(1280px, calc(100% - 48px));

  height: 100%;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;
}


/* =========================
   LOGO
   ========================= */

.site-header .logo {

  display: flex;

  align-items: center;

  flex-shrink: 0;

  gap: 14px;

  color: var(--lvt-white);

  text-decoration: none;

  min-width: 285px;
}


/* icon */

.site-header .logo-icon {

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid var(--lvt-gold);

  border-radius: 5px;

  background: rgba(212, 175, 55, .03);

  transition: .3s ease;
}


.site-header .logo:hover .logo-icon {

  background: rgba(212, 175, 55, .1);

  box-shadow:
    0 0 20px rgba(212, 175, 55, .15);

  transform: translateY(-1px);
}


.site-header .logo-icon svg {

  width: 25px;
  height: 25px;

  display: block;
}


/* divider */

.site-header .logo .divider {

  width: 1px;
  height: 38px;

  background:
    linear-gradient(to bottom,
      transparent,
      var(--lvt-gold),
      transparent);

  opacity: .7;
}


/* logo text */

.site-header .logo-text {

  display: flex;

  flex-direction: column;

  justify-content: center;

  line-height: 1;
}


.site-header .logo-title {

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 22px;

  font-weight: 700;

  letter-spacing: 3px;

  color: #fff;
}


.site-header .logo-subtitle {

  margin-top: 7px;

  color: var(--lvt-gold);

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 3.5px;

  text-transform: uppercase;

  white-space: nowrap;
}


/* =========================
   MENU
   ========================= */

.site-header .menu {

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 38px;

  margin-left: auto;
}


.site-header .menu>a,
.site-header .dropbtn {

  position: relative;

  height: 100%;

  display: flex;

  align-items: center;

  gap: 9px;

  color: #d0d0d0;

  text-decoration: none;

  font-size: 12px;

  font-weight: 500;

  letter-spacing: 1px;

  white-space: nowrap;

  transition: color .3s ease;
}


.site-header .menu>a::after,
.site-header .dropbtn::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 19px;

  width: 0;
  height: 1px;

  background: var(--lvt-gold);

  transition: width .3s ease;
}


.site-header .menu>a:hover,
.site-header .dropbtn:hover {

  color: var(--lvt-gold);
}


.site-header .menu>a:hover::after,
.site-header .dropbtn:hover::after {

  width: 100%;
}


/* =========================
   DROPDOWN
   ========================= */

.site-header .dropdown {

  position: relative;

  height: 100%;

  display: flex;

  align-items: center;
}


.site-header .dropbtn {

  border: 0;

  background: transparent;

  cursor: pointer;
}


/* mũi tên */

.site-header .dropbtn::before {

  content: "";

  width: 7px;
  height: 7px;

  border-right: 1px solid var(--lvt-gold);
  border-bottom: 1px solid var(--lvt-gold);

  transform: rotate(45deg);

  margin-top: -4px;

  transition: transform .3s ease;
}


.site-header .dropdown:hover .dropbtn::before {

  transform: rotate(225deg);

  margin-top: 4px;
}


/* dropdown box */

.site-header .dropdown-content {

  position: absolute;

  top: calc(100% + 1px);

  left: 50%;

  transform:
    translateX(-50%) translateY(12px);

  width: 245px;

  padding: 8px;

  background:
    linear-gradient(145deg,
      #151515,
      #090909);

  border: 1px solid rgba(212, 175, 55, .22);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, .65),
    0 0 30px rgba(212, 175, 55, .06);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}


.site-header .dropdown:hover .dropdown-content,
.site-header .dropdown:focus-within .dropdown-content {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform:
    translateX(-50%) translateY(0);
}


/* mũi tên trên dropdown */

.site-header .dropdown-content::before {

  content: "";

  position: absolute;

  top: -6px;

  left: 50%;

  width: 11px;
  height: 11px;

  background: #151515;

  border-left: 1px solid rgba(212, 175, 55, .22);
  border-top: 1px solid rgba(212, 175, 55, .22);

  transform: translateX(-50%) rotate(45deg);
}


/* item */

.site-header .dropdown-content a {

  position: relative;

  display: flex;

  align-items: center;

  min-height: 55px;

  padding: 0 18px;

  color: #ddd;

  text-decoration: none;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: 1.2px;

  transition:
    color .25s ease,
    background .25s ease,
    padding-left .25s ease;
}


.site-header .dropdown-content a::after {

  content: "→";

  position: absolute;

  right: 18px;

  color: var(--lvt-gold);

  opacity: 0;

  transform: translateX(-8px);

  transition: .25s ease;
}


.site-header .dropdown-content a:hover {

  color: var(--lvt-gold);

  background:
    linear-gradient(90deg,
      rgba(212, 175, 55, .08),
      transparent);

  padding-left: 23px;
}


.site-header .dropdown-content a:hover::after {

  opacity: 1;

  transform: translateX(0);
}


/* =========================
   CTA
   ========================= */

.site-header .header-actions {

  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 15px;

  flex-shrink: 0;
}


.site-header .btn-cta-gold {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  height: 46px;

  padding: 0 27px;

  background:
    linear-gradient(135deg,
      #e1bb42,
      #b98b13);

  color: #080808 !important;

  border: 1px solid rgba(255, 255, 255, .08);

  border-radius: 4px;

  text-decoration: none;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.3px;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(212, 175, 55, .12);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}


.site-header .btn-cta-gold:hover {

  transform: translateY(-2px);

  filter: brightness(1.08);

  box-shadow:
    0 12px 35px rgba(212, 175, 55, .25);
}


/* =========================
   MOBILE BUTTON
   ========================= */

.site-header .nav-toggle {

  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 1px solid rgba(212, 175, 55, .35);

  background: transparent;

  cursor: pointer;
}


.site-header .nav-toggle span {

  display: block;

  width: 100%;
  height: 1px;

  margin: 5px 0;

  background: #fff;

  transition: .3s ease;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {

  .site-header .logo {

    min-width: auto;
  }

  .site-header .menu {

    gap: 22px;
  }

  .site-header .btn-cta-gold {

    padding: 0 18px;
  }

}


@media (max-width: 900px) {

  .site-header {

    height: 72px;
  }

  .site-header .header-container {

    width: calc(100% - 30px);
  }

  .site-header .menu {

    position: absolute;

    top: 72px;
    left: 15px;
    right: 15px;

    height: auto;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px;

    background: #0b0b0b;

    border: 1px solid rgba(212, 175, 55, .18);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
  }

  .site-header .menu.active {

    display: flex;
  }

  .site-header .menu>a,
  .site-header .dropbtn {

    height: 52px;

    padding: 0 15px;
  }

  .site-header .menu>a::after,
  .site-header .dropbtn::after {

    display: none;
  }

  .site-header .dropdown {

    height: auto;

    display: block;
  }

  .site-header .dropdown-content {

    position: static;

    width: 100%;

    transform: none;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    display: none;

    box-shadow: none;

    border: none;

    background: #111;
  }

  .site-header .dropdown:hover .dropdown-content {

    display: block;
  }

  .site-header .dropdown-content::before {

    display: none;
  }

  .site-header .header-actions .btn-cta {

    display: none;
  }

  .site-header .nav-toggle {

    display: block;
  }

}


@media (max-width: 480px) {

  .site-header .logo-title {

    font-size: 19px;
  }

  .site-header .logo-subtitle {

    font-size: 6px;

    letter-spacing: 2.5px;
  }

  .site-header .logo-icon {

    width: 38px;
    height: 38px;
  }

  .site-header .logo .divider {

    height: 32px;
  }

}

/* =========================================================
   LV.T NAVIGATION REPAIR
   ========================================================= */
.site-header .dropdown {
  position: relative;
}

.site-header .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 245px;
  padding: 10px 0;
  background: #090909;
  border: 1px solid rgba(212, 175, 55, .35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
  z-index: 99999;
}

.site-header .dropdown:hover>.dropdown-content,
.site-header .dropdown:focus-within>.dropdown-content,
.site-header .dropdown.is-open>.dropdown-content {
  display: block;
}

.site-header .dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 22px;
  color: #eee;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1.4px;
  transition: background .2s ease, color .2s ease, padding .2s ease;
}

.site-header .dropdown-content a:hover,
.site-header .dropdown-content a:focus-visible {
  color: #d4af37;
  background: rgba(212, 175, 55, .07);
  padding-left: 27px;
}

.site-header .dropbtn,
.site-header .nav-link-project {
  cursor: pointer;
}

/* Project cards used by the repaired du-an.js */
#projects-grid-list,
#lvt-project-grid {
  position: relative;
}

.lvt-project-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e8e4dc;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.lvt-project-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.lvt-project-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.lvt-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.lvt-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.lvt-project-card:hover .lvt-card-img-wrap img {
  transform: scale(1.055);
}

.lvt-card-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  background: rgba(8, 8, 8, .88);
  color: #d4af37;
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.lvt-card-body {
  padding: 25px 24px 28px;
}

.lvt-card-kicker {
  display: block;
  margin-bottom: 9px;
  color: #b99a5a;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
}

.lvt-card-title {
  margin: 0 0 12px;
  color: #111;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
}

.lvt-card-desc {
  margin: 0 0 18px;
  color: #777;
  font-size: 13px;
  line-height: 1.7;
}

.lvt-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #777;
  font-size: 11px;
}

.lvt-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lvt-card-meta i {
  color: #b99a5a;
}

.lvt-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #111;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.lvt-card-btn i {
  color: #b99a5a;
  transition: transform .2s ease;
}

.lvt-project-card:hover .lvt-card-btn i {
  transform: translate(3px, -3px);
}

.lvt-project-error {
  padding: 40px;
  border: 1px solid #e5e1d8;
  color: #777;
  text-align: center;
}

@media (max-width: 767px) {
  .site-header .dropdown-content {
    left: 0;
    transform: none;
    min-width: 220px;
  }

  .lvt-card-title {
    font-size: 22px;
  }
}

/* =========================================================
   LV.T LUXURY — HEADER ĐỒNG BỘ 3 TRANG
   Trang chủ / Giới thiệu / Dự án
   ========================================================= */

.site-header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;

  background: #050505 !important;
  background-image: none !important;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  box-shadow: none !important;

  z-index: 9999;
}


/* Container */
.site-header .header-container {
  width: min(1400px, calc(100% - 40px));
  height: 86px;

  margin: 0 auto;

  display: flex;
  align-items: center;

  padding: 0;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-header .logo {
  flex-shrink: 0;
}

.site-header .logo-title {
  color: #f5f5f5 !important;
}

.site-header .logo-subtitle {
  color: #d4af37 !important;
}


/* =========================================================
   MENU
   ========================================================= */

.site-header .menu {
  display: flex !important;
  align-items: center !important;

  gap: 38px !important;

  margin-left: auto;
  margin-right: 45px;

  height: 100%;
}


/* TẤT CẢ MENU ĐỒNG NHẤT */
.site-header .menu a,
.site-header .menu>li>a,
.site-header .menu li a {
  display: inline-flex !important;

  align-items: center;
  justify-content: center;

  height: 100%;

  padding: 0 !important;
  margin: 0 !important;

  color: rgba(255, 255, 255, .78) !important;

  font-family:
    Arial,
    Helvetica,
    sans-serif !important;

  font-size: 12px !important;

  font-weight: 600 !important;

  letter-spacing: 1.5px !important;

  line-height: 1 !important;

  text-decoration: none !important;

  white-space: nowrap !important;

  text-transform: uppercase;

  position: relative;
}


/* =========================================================
   MENU ACTIVE
   ========================================================= */

.site-header .menu a.active,
.site-header .menu li.active>a,
.site-header .menu>li.active>a {
  color: #d4af37 !important;

  font-weight: 600 !important;
}


/* Gạch vàng active */
.site-header .menu a.active::after,
.site-header .menu li.active>a::after,
.site-header .menu>li.active>a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 16px;

  width: 100%;
  height: 1px;

  margin: auto;

  background: #d4af37;
}


/* =========================================================
   DỰ ÁN — FIX QUAN TRỌNG
   ========================================================= */

/* Không cho DỰ ÁN xuống dòng */
.site-header .menu a[href*="du-an"],
.site-header .menu a[href*="du_an"],
.site-header .menu .du-an-link {
  white-space: nowrap !important;

  width: auto !important;
  min-width: max-content !important;

  display: inline-flex !important;

  flex-direction: row !important;

  font-weight: 600 !important;
}


/* Nếu HTML đang có span bên trong */
.site-header .menu a[href*="du-an"] span,
.site-header .menu a[href*="du_an"] span,
.site-header .menu .du-an-link span {
  display: inline !important;

  white-space: nowrap !important;

  font-weight: inherit !important;
}


/* Không để chữ DỰ ÁN bị bold do heading/global CSS */
.site-header .menu a strong,
.site-header .menu a b,
.site-header .menu a h1,
.site-header .menu a h2,
.site-header .menu a h3 {
  font-weight: inherit !important;
}


/* =========================================================
   DROPDOWN ARROW
   ========================================================= */

.site-header .menu .dropdown>a,
.site-header .menu li.has-dropdown>a {
  gap: 12px !important;
}


/* Mũi tên */
.site-header .menu .dropdown>a::before,
.site-header .menu li.has-dropdown>a::before {
  display: none !important;
}


/* Nếu dùng icon */
.site-header .menu .dropdown>a i,
.site-header .menu li.has-dropdown>a i {
  font-size: 11px !important;

  margin-left: 4px;

  color: currentColor;

  transition: transform .25s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.site-header .menu a:hover {
  color: #d4af37 !important;
}


/* =========================================================
   BUTTON TƯ VẤN
   ========================================================= */

.site-header .header-cta,
.site-header .btn-consultation,
.site-header .consultation-btn {
  flex-shrink: 0;

  height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;

  background: #d4af37 !important;

  color: #080808 !important;

  border: 1px solid #d4af37 !important;

  border-radius: 4px;

  font-size: 11px !important;
  font-weight: 700 !important;

  letter-spacing: 1.2px !important;

  text-transform: uppercase;

  white-space: nowrap;

  text-decoration: none;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}


.site-header .header-cta:hover,
.site-header .btn-consultation:hover,
.site-header .consultation-btn:hover {
  background: #e4c45a !important;

  color: #080808 !important;

  transform: translateY(-1px);
}


/* =========================================================
   FIX RIÊNG TRANG GIỚI THIỆU
   ========================================================= */

/* Nếu body/about đang làm DỰ ÁN đậm */
body.about-page .site-header .menu a[href*="du-an"],
body.gioi-thieu-page .site-header .menu a[href*="du-an"] {
  color: rgba(255, 255, 255, .78) !important;

  font-weight: 600 !important;
}


/* Chỉ GIỚI THIỆU active */
body.about-page .site-header .menu a[href*="gioi"],
body.gioi-thieu-page .site-header .menu a[href*="gioi"] {
  color: #d4af37 !important;

  font-weight: 600 !important;
}


/* =========================================================
   TRANG CHỦ
   ========================================================= */

body.home-page .site-header .menu a[href*="du-an"],
body.home-page .site-header .menu .du-an-link {
  color: rgba(255, 255, 255, .78) !important;

  font-weight: 600 !important;
}


/* Chỉ TRANG CHỦ active */
body.home-page .site-header .menu a[href*="trang-chu"],
body.home-page .site-header .menu a[href="/"],
body.home-page .site-header .menu a[href="index.html"] {
  color: #d4af37 !important;

  font-weight: 600 !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

  .site-header .menu {
    gap: 25px !important;
    margin-right: 25px;
  }

  .site-header .menu a {
    font-size: 11px !important;
    letter-spacing: 1.2px !important;
  }

  .site-header .header-cta {
    padding: 0 20px;
  }
}


@media (max-width: 850px) {

  .site-header {
    height: 76px;
  }

  .site-header .header-container {
    height: 76px;
  }

  .site-header .menu {
    gap: 18px !important;
    margin-right: 15px;
  }

  .site-header .menu a {
    font-size: 10px !important;
  }

  .site-header .header-cta {
    height: 42px;
    padding: 0 15px;
    font-size: 9px !important;
  }
}

/* LV.T HOMEPAGE REDESIGN — Dark Luxury 3-column editorial layout */
.lvt-home-redesign {
  --lvt-bg: #080808;
  --lvt-panel: #111111;
  --lvt-panel2: #151515;
  --lvt-gold: #d4af37;
  --lvt-gold2: #b98e22;
  --lvt-text: #f5f3ee;
  --lvt-muted: #a7a39a;
  --lvt-line: rgba(212, 175, 55, .28);
  background: var(--lvt-bg);
  color: var(--lvt-text);
  overflow: hidden
}

.lvt-home-redesign * {
  box-sizing: border-box
}

.lvt-home-redesign a {
  color: inherit;
  text-decoration: none
}

.lvt-container {
  width: min(1380px, calc(100% - 80px));
  margin: 0 auto
}

.lvt-section {
  padding: 105px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .055)
}

.lvt-eyebrow {
  display: inline-block;
  color: var(--lvt-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px
}

.lvt-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px
}

.lvt-section-head h2,
.lvt-intro-copy h2,
.lvt-editorial-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: #fff
}

.lvt-section-head h2 em,
.lvt-intro-copy h2 em,
.lvt-editorial-copy h2 em {
  font-style: normal;
  color: var(--lvt-gold)
}

.lvt-section-head p,
.lvt-intro-copy p,
.lvt-editorial-copy p {
  color: var(--lvt-muted);
  line-height: 1.85;
  font-size: 15px;
  margin: 0
}

.lvt-section-head:after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: var(--lvt-gold);
  margin: 25px auto 0;
  box-shadow: 0 0 18px rgba(212, 175, 55, .25)
}

.lvt-intro {
  padding-top: 115px
}

.lvt-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 85px;
  align-items: center
}

.lvt-media-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #161616;
  min-height: 600px
}

.lvt-media-card img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1)
}

.lvt-media-card:after,
.lvt-editorial-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .52));
  transition: background .45s ease
}

.lvt-media-card:hover img,
.lvt-editorial-image:hover img {
  transform: scale(1.045)
}

.lvt-media-card:hover:after,
.lvt-editorial-image:hover:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .32))
}

.lvt-media-badge {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  border: 1px solid rgba(212, 175, 55, .55);
  padding: 10px 14px;
  color: #fff;
  background: rgba(8, 8, 8, .68);
  font-size: 11px;
  letter-spacing: .18em
}

.lvt-intro-copy {
  padding-right: 35px
}

.lvt-intro-copy h2 {
  font-size: clamp(36px, 4.2vw, 62px)
}

.lvt-intro-copy .lvt-lead {
  font-size: 17px;
  color: #d0ccc3;
  margin-bottom: 18px
}

.lvt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 35px 0
}

.lvt-stats div {
  border-top: 1px solid var(--lvt-line);
  padding-top: 16px
}

.lvt-stats strong {
  display: block;
  color: var(--lvt-gold);
  font: 700 31px/1 "Be Vietnam Pro", sans-serif
}

.lvt-stats span {
  display: block;
  margin-top: 7px;
  color: #8f8b84;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.lvt-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border: 1px solid var(--lvt-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .35s ease
}

.lvt-btn:hover {
  background: var(--lvt-gold);
  color: #080808
}

.lvt-btn-gold {
  background: var(--lvt-gold);
  color: #080808 !important
}

.lvt-btn-gold:hover {
  background: #e4c45a
}

.lvt-btn-outline {
  border-color: rgba(255, 255, 255, .25);
  white-space: nowrap
}

.lvt-why {
  background: #0b0b0b
}

.lvt-why-grid,
.lvt-card-grid,
.lvt-project-grid,
.lvt-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

.lvt-feature {
  position: relative;
  padding: 32px 28px 30px;
  min-height: 235px;
  background: linear-gradient(145deg, #131313, #0e0e0e);
  border: 1px solid rgba(255, 255, 255, .07);
  transition: transform .35s, border-color .35s, background .35s
}

.lvt-feature:hover {
  transform: translateY(-6px);
  border-color: var(--lvt-line);
  background: #151515
}

.lvt-feature>span {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #5d5a54;
  font-size: 11px;
  letter-spacing: .12em
}

.lvt-feature i {
  display: block;
  color: var(--lvt-gold);
  font-size: 30px;
  margin-bottom: 25px
}

.lvt-feature h3 {
  font-size: 16px;
  letter-spacing: .06em;
  margin: 0 0 12px
}

.lvt-feature p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--lvt-muted);
  margin: 0
}

.lvt-services {
  background: linear-gradient(#0a0a0a, #0d0d0d)
}

.lvt-card-grid {
  gap: 20px
}

.lvt-service-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .06);
  min-height: 520px;
  transition: transform .4s, border-color .4s, box-shadow .4s
}

.lvt-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--lvt-line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.lvt-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1b1f21
}

.lvt-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s ease
}

.lvt-card-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55));
  pointer-events: none
}

.lvt-service-card:hover .lvt-card-img img {
  transform: scale(1.06)
}

.lvt-card-img span {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 16px;
  color: #fff;
  border: 1px solid rgba(212, 175, 55, .7);
  background: rgba(0, 0, 0, .55);
  padding: 7px 9px;
  font-size: 10px
}

.lvt-card-body {
  padding: 28px 28px 30px;
  display: flex;
  flex: 1;
  flex-direction: column
}

.lvt-card-body h3 {
  color: var(--lvt-gold);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 13px
}

.lvt-card-body p {
  color: var(--lvt-muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0
}

.lvt-card-body b {
  margin-top: auto;
  padding-top: 28px;
  color: #eee;
  font-size: 11px;
  letter-spacing: .12em
}

.lvt-card-body b i {
  color: var(--lvt-gold);
  margin-left: 7px
}

.lvt-projects {
  background: #080808
}

.lvt-section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
  max-width: none
}

.lvt-section-head-row:after {
  display: none
}

.lvt-section-head-row>div {
  max-width: 760px
}

.lvt-project-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.lvt-project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .05)
}

.lvt-project-card-featured {
  grid-column: span 1;
  grid-row: span 1
}

.lvt-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease
}

.lvt-project-card:after {
  display: none !important;
  content: none !important;
}

.lvt-project-card:hover img {
  transform: scale(1.06)
}

.lvt-project-card>div {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 24px
}

.lvt-project-card span {
  color: var(--lvt-gold);
  font-size: 10px;
  letter-spacing: .16em
}

.lvt-project-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  margin: 8px 0;
  color: #fff
}

.lvt-project-card p {
  font-size: 12px;
  color: #c4c0b8;
  margin: 0
}

.lvt-editorials {
  background: #0c0c0c
}

.lvt-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.lvt-editorial-block {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .06)
}

.lvt-editorial-image {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden
}

.lvt-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease
}

.lvt-editorial-image span {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 8px 11px;
  font-size: 10px;
  letter-spacing: .14em;
  background: rgba(0, 0, 0, .55)
}

.lvt-editorial-copy {
  padding: 32px 34px 35px
}

.lvt-editorial-copy h2 {
  font-size: 34px
}

.lvt-text-link {
  display: inline-flex;
  gap: 10px;
  color: var(--lvt-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-top: 25px
}

.lvt-text-link i {
  transition: transform .3s
}

.lvt-text-link:hover i {
  transform: translateX(5px)
}

.lvt-pricing {
  background: #080808
}

.lvt-price-grid {
  align-items: stretch
}

.lvt-price-card {
  position: relative;
  padding: 35px 30px 32px;
  min-height: 390px;
  background: linear-gradient(150deg, #151515, #0d0d0d);
  border: 1px solid rgba(212, 175, 55, .3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: .4s
}

.lvt-price-card:hover {
  transform: translateY(-7px);
  border-color: var(--lvt-gold)
}

.lvt-price-card.featured {
  border-color: var(--lvt-gold);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .45)
}

.lvt-price-card>small {
  position: absolute;
  top: -13px;
  background: var(--lvt-gold);
  color: #080808;
  padding: 7px 28px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .12em
}

.lvt-price-card>span {
  align-self: flex-start;
  color: var(--lvt-gold);
  font-size: 11px
}

.lvt-price-card>i {
  font-size: 34px;
  color: var(--lvt-gold);
  margin: 25px 0 20px
}

.lvt-price-card h3 {
  font-size: 22px;
  margin: 0 0 12px
}

.lvt-price-card p {
  color: var(--lvt-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0
}

.lvt-price-card b {
  margin-top: auto;
  color: var(--lvt-gold);
  font-size: 11px;
  letter-spacing: .13em
}

.lvt-price-card b i {
  margin-left: 8px
}

.lvt-process {
  background: #0b0b0b
}

.lvt-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--lvt-line);
  border-left: 1px solid rgba(212, 175, 55, .16)
}

.lvt-process-grid>div {
  min-height: 205px;
  padding: 28px;
  border-right: 1px solid rgba(212, 175, 55, .16);
  border-bottom: 1px solid rgba(212, 175, 55, .16);
  position: relative
}

.lvt-process-grid span {
  color: var(--lvt-gold);
  font: 700 13px/1 "Be Vietnam Pro", sans-serif;
  letter-spacing: .1em
}

.lvt-process-grid h3 {
  font-size: 15px;
  margin: 35px 0 10px;
  max-width: 230px
}

.lvt-process-grid p {
  font-size: 12px;
  color: var(--lvt-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 260px
}

.lvt-home-redesign .consultation-section {
  padding: 105px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, .055)
}

.lvt-home-redesign .faq-section {
  padding: 105px 0 !important;
  background: #080808 !important;
  border-top: 1px solid rgba(255, 255, 255, .055)
}

.lvt-home-redesign .faq-section .container {
  max-width: 1000px
}

.lvt-home-redesign .faq-section .accordion-button {
  background: #121212;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: none
}

.lvt-home-redesign .faq-section .accordion-body {
  background: #0f0f0f;
  color: #aaa;
  border: 1px solid rgba(255, 255, 255, .05)
}

@media (max-width:1100px) {
  .lvt-container {
    width: min(100% - 48px, 1200px)
  }

  .lvt-intro-grid {
    gap: 45px
  }

  .lvt-section {
    padding: 85px 0
  }

  .lvt-project-card {
    min-height: 370px
  }
}

@media (max-width:900px) {

  .lvt-why-grid,
  .lvt-card-grid,
  .lvt-project-grid,
  .lvt-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .lvt-intro-grid,
  .lvt-editorial-grid {
    grid-template-columns: 1fr
  }

  .lvt-media-card,
  .lvt-media-card img {
    min-height: 480px
  }

  .lvt-intro-copy {
    padding-right: 0
  }

  .lvt-process-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .lvt-section-head-row {
    align-items: flex-start;
    flex-direction: column
  }

  .lvt-project-card-featured {
    grid-column: auto
  }
}

@media (max-width:620px) {
  .lvt-container {
    width: calc(100% - 30px)
  }

  .lvt-section {
    padding: 65px 0
  }

  .lvt-section-head {
    margin-bottom: 36px
  }

  .lvt-section-head h2,
  .lvt-intro-copy h2 {
    font-size: 34px
  }

  .lvt-why-grid,
  .lvt-card-grid,
  .lvt-project-grid,
  .lvt-price-grid,
  .lvt-process-grid {
    grid-template-columns: 1fr
  }

  .lvt-stats {
    grid-template-columns: 1fr 1fr
  }

  .lvt-stats div:last-child {
    grid-column: 1/-1
  }

  .lvt-media-card,
  .lvt-media-card img {
    min-height: 360px
  }

  .lvt-service-card {
    min-height: 470px
  }

  .lvt-project-card {
    min-height: 390px
  }

  .lvt-price-card {
    min-height: 350px
  }

  .lvt-editorial-copy {
    padding: 25px
  }

  .lvt-editorial-copy h2 {
    font-size: 30px
  }

  .lvt-btn {
    padding: 13px 16px
  }

  .lvt-home-redesign .consultation-section,
  .lvt-home-redesign .faq-section {
    padding: 65px 0 !important
  }
}

/* =====================================================
   TẮT HOÀN TOÀN 2 NÚT DƯ CỦA CONVERSION WIDGET
   ===================================================== */
.conversion-float-widget,
.conversion-float-widget *,
.conversion-float-widget::before,
.conversion-float-widget::after {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =====================================================
   FOOTER - KHỐI LIÊN HỆ NẰM CỐ ĐỊNH BÊN PHẢI
   ===================================================== */

.lvt-footer-top {
  position: relative;
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* Phần thương hiệu bên trái */
.lvt-footer-brand {
  width: 45%;
  flex: 0 0 45%;
}

/* KHỐI LIÊN HỆ BÊN PHẢI */
.lvt-footer-contact {
  position: absolute !important;
  top: 0;
  right: 0;

  width: 40%;
  max-width: 480px;

  margin: 0 !important;
  padding: 0 0 0 50px !important;

  min-width: 0 !important;
}

/* Tiêu đề LIÊN HỆ */
.lvt-footer-contact h4 {
  margin: 0 0 25px 0;
  padding: 0;

  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Các dòng liên hệ */
.lvt-footer-contact .lvt-contact-item {
  display: flex;
  align-items: flex-start;

  width: 100%;
  margin-bottom: 20px;
}

/* Icon */
.lvt-footer-contact .lvt-contact-item i,
.lvt-footer-contact .lvt-contact-item svg {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 15px;

  border: 1px solid rgba(197, 168, 128, 0.35);
}

/* Nội dung */
.lvt-footer-contact .lvt-contact-item>div,
.lvt-footer-contact .lvt-contact-item span {
  min-width: 0;
}

/* Label */
.lvt-footer-contact .contact-label {
  display: block;

  margin-bottom: 5px;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;

  opacity: 0.55;
}

/* Text */
.lvt-footer-contact .contact-value {
  display: block;

  font-size: 14px;
  line-height: 1.6;

  word-break: break-word;
}


/* =====================================================
   DESKTOP LỚN
   ===================================================== */

@media (min-width: 1200px) {
  .lvt-footer-contact {
    right: 0;
    width: 42%;
    max-width: 500px;
    padding-left: 70px !important;
  }
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {
  .lvt-footer-top {
    display: flex !important;
    flex-direction: column;
  }

  .lvt-footer-brand {
    width: 100%;
    flex: none;
    margin-bottom: 40px;
  }

  .lvt-footer-contact {
    position: static !important;

    width: 100%;
    max-width: none;

    padding: 0 !important;
  }
}

/* =========================================
   FIX ICON FOOTER - KHÔNG CHỒNG 2 Ô VUÔNG
   ========================================= */

.lvt-footer-contact .lvt-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

/* Chỉ để 1 khung duy nhất */
.lvt-footer-contact .lvt-contact-item i,
.lvt-footer-contact .lvt-contact-item svg {
  box-sizing: border-box;

  width: 42px !important;
  height: 42px !important;

  min-width: 42px;
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid rgba(197, 168, 128, 0.45) !important;
  outline: none !important;
  box-shadow: none !important;

  background: transparent;
}

/* Nếu icon đang có pseudo-element tạo thêm ô */
.lvt-footer-contact .lvt-contact-item i::before,
.lvt-footer-contact .lvt-contact-item i::after,
.lvt-footer-contact .lvt-contact-item svg::before,
.lvt-footer-contact .lvt-contact-item svg::after {
  border: none !important;
  box-shadow: none !important;
}

/* Nội dung bên phải icon */
.lvt-footer-contact .lvt-contact-item>div {
  flex: 1;
  min-width: 0;
}

/* Label */
.lvt-footer-contact .contact-label {
  margin: 0 0 5px;
}

/* Giá trị */
.lvt-footer-contact .contact-value {
  margin: 0;
  line-height: 1.6;
}

.consultation {
  background: #101010;
  padding: 30px 0 32px
}

.consult-box {
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 55px;
  background: linear-gradient(120deg, #111 0%, #0c0c0c 100%)
}

.consult-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px
}

.consult-intro h2 {
  font: 500 29px/1.2 var(--sans);
  margin: 7px 0 12px;
  color: #f3f0e8
}

.consult-intro h2 span {
  color: var(--gold)
}

.consult-intro p {
  color: #bbb;
  line-height: 1.65;
  font-size: 13px;
  margin: 0 0 22px
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px
}

.benefits li {
  display: flex;
  gap: 13px;
  align-items: center
}

.benefits li>span {
  width: 28px;
  color: var(--gold);
  font-size: 24px;
  text-align: center
}

.benefits b {
  display: block;
  color: var(--gold);
  font-size: 13px
}

.benefits small {
  display: block;
  color: #888;
  font-size: 11px
}

.consult-form {
  display: grid;
  gap: 13px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.field {
  position: relative;
  display: block
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #111;
  border: 1px solid #353535;
  color: #eee;
  border-radius: 7px;
  outline: none;
  font-size: 13px;
  padding: 14px 42px 14px 15px;
  transition: .2s
}

.field input,
.field select {
  height: 50px
}

.field textarea {
  min-height: 96px;
  resize: vertical;
  padding-right: 15px
}

.field input::placeholder,
.field textarea::placeholder {
  color: #888
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(217, 169, 29, .08)
}

.field-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 18px;
  pointer-events: none
}

.select-field:after {
  content: "⌄";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none
}

.select-field select {
  appearance: none;
  padding-right: 42px
}

.form-bottom {
  display: flex;
  align-items: center;
  gap: 18px
}

.agree {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #ddd
}

.agree input {
  width: 17px;
  height: 17px;
  accent-color: var(--gold)
}

.agree a {
  color: var(--gold)
}

.consult-form button {
  margin-left: auto;
  min-width: 330px;
  height: 49px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #efc33d, #dcae21);
  color: #111;
  font-weight: 800;
  font-size: 12px
}

.consult-form button:disabled {
  opacity: .6;
  cursor: wait
}

.form-message {
  min-height: 20px;
  font-size: 12px
}

.form-message.success {
  color: #9fe08a
}

.form-message.error {
  color: #ff9696
}

.trust-strip {
  background: #090909;
  border-top: 1px solid #151515;
  padding: 27px 0
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.trust-grid>div {
  display: flex;
  gap: 14px;
  padding: 0 30px;
  border-right: 1px solid #2b2b2b
}

.trust-grid>div:first-child {
  padding-left: 0
}

.trust-grid>div:last-child {
  border-right: 0
}

.trust-grid span {
  color: var(--gold);
  font-size: 25px
}

.trust-grid b {
  display: block;
  color: #e7e1d4;
  font-size: 10px;
  letter-spacing: 2px
}

.trust-grid small {
  display: block;
  color: #777;
  font-size: 11px;
  margin-top: 3px
}

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 2000;
  background: #171717;
  border: 1px solid var(--gold);
  color: #fff;
  border-radius: 7px;
  padding: 13px 18px;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: .25s
}

.toast.show {
  opacity: 1;
  transform: none
}

@media(max-width:1100px) {
  .main-nav {
    gap: 18px
  }

  .brand {
    min-width: 190px
  }

  .header-cta {
    padding: 9px 15px
  }

  .gallery-info {
    grid-template-columns: 1fr
  }

  .consult-box {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px
  }

  .trust-grid>div:nth-child(2) {
    border-right: 0
  }

  .trust-grid>div {
    padding: 0
  }

  .trust-grid>div:nth-child(3),
  .trust-grid>div:nth-child(4) {
    padding-top: 15px
  }
}

@media(max-width:800px) {
  .container {
    width: min(calc(100% - 34px), var(--container))
  }

  .site-header {
    height: 70px
  }

  .nav-wrap {
    width: calc(100% - 34px)
  }

  .main-nav,
  .header-cta {
    display: none
  }

  .mobile-menu {
    display: block;
    margin-left: auto
  }

  .brand-symbol {
    width: 40px;
    height: 40px
  }

  .brand-copy strong {
    font-size: 17px
  }

  .project-hero {
    min-height: 650px;
    padding-top: 70px
  }

  .hero-inner {
    min-height: 580px
  }

  .hero-copy h1 {
    font-size: 47px
  }

  .hero-copy p {
    font-size: 14px
  }

  .hero-mini {
    gap: 17px;
    flex-wrap: wrap
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .heading-row h2 {
    font-size: 45px
  }

  .main-image {
    height: 400px
  }

  .thumbs {
    grid-template-columns: repeat(3, 1fr)
  }

  .info-item {
    min-height: 100px;
    padding: 18px 13px
  }

  .consult-box {
    padding: 27px 20px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .form-bottom {
    display: grid;
    gap: 15px
  }

  .consult-form button {
    width: 100%;
    margin: 0
  }

  .trust-grid {
    grid-template-columns: 1fr
  }

  .trust-grid>div,
  .trust-grid>div:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid #242424;
    padding: 15px 0
  }

  .trust-grid>div:last-child {
    border-bottom: 0
  }

  .content-copy h3 {
    font-size: 42px
  }
}

@media(max-width:480px) {
  .breadcrumb {
    font-size: 11px;
    gap: 7px
  }

  .hero-copy {
    margin-top: 55px
  }

  .hero-copy h1 {
    font-size: 40px
  }

  .hero-mini div {
    font-size: 13px
  }

  .project-detail {
    padding: 70px 0
  }

  .main-image {
    height: 300px
  }

  .card-intro {
    padding: 20px
  }

  .info-grid {
    grid-template-columns: 1fr
  }

  .info-item:nth-child(odd) {
    border-right: 0
  }

  .info-item:last-child {
    grid-column: auto
  }

  .content-copy h3 {
    font-size: 36px
  }

  .consult-intro h2 {
    font-size: 25px
  }
}

/* =========================================================
   TRANG CHỦ - KHỐI YÊU CẦU TƯ VẤN & BÁO GIÁ
   Đồng bộ bố cục với trang Chi tiết dự án
   ========================================================= */

.home-page .consultation {
  background: #101010;
  padding: 30px 0 32px;
}

.home-page .consultation>.container {
  width: min(calc(100% - 80px), var(--max-width));
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

.home-page .consult-box {
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 55px;
  background: linear-gradient(120deg, #111 0%, #0c0c0c 100%);
}

/* Cột giới thiệu bên trái */
.home-page .consult-intro {
  padding: 14px 0 14px 0;
  min-height: 310px;
}

.home-page .consult-intro>* {
  margin-left: 0;
  margin-right: 0;
}

.home-page .consult-kicker {
  color: gold;
  padding: 0 16px;
}

.home-page .consult-intro h2 {
  color: #dce3e8;
  font-size: 29px;
  line-height: 1.2;
  margin: 7px 16px 12px;
}

.home-page .consult-intro h2 span {
  color: gold;
}

.home-page .consult-intro p {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 16px 22px;
}

.home-page .consult-intro .benefits {
  margin: 0 16px;
}

.home-page .consult-intro .benefits li {
  gap: 13px;
}

.home-page .consult-intro .benefits li>span {
  color: gold;
}

.home-page .consult-intro .benefits b {
  color: gold;
}

.home-page .consult-intro .benefits small {
  color: rgba(255, 255, 255, .45);
}


/* Form bên phải */
.home-page .consult-form {
  min-width: 0;
}

.home-page .consult-form .field input,
.home-page .consult-form .field select,
.home-page .consult-form .field textarea {
  box-sizing: border-box;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .home-page .consultation>.container {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .home-page .consult-box {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-page .consult-intro {
    min-height: auto;
  }
}

@media (max-width: 800px) {
  .home-page .consultation>.container {
    width: calc(100% - 34px);
  }

  .home-page .consult-box {
    padding: 27px 20px;
  }

  .home-page .consult-intro {
    padding: 14px 0;
  }

  .home-page .form-row {
    grid-template-columns: 1fr;
  }

  .home-page .form-bottom {
    display: grid;
    gap: 15px;
  }

  .home-page .consult-form button {
    width: 100%;
    margin: 0;
  }
}

.consult-form a[href*="chinh-sach-bao-mat"] {
  color: gold !important;
}

.consult-form a[href*="chinh-sach-bao-mat"]:hover {
  color: gold !important;
}

/* =========================================================
   FIX HEADER PUBLIC PAGES
   Header luôn có nền đen, không để nội dung phía sau lọt lên
   ========================================================= */

.site-header,
.site-header.site-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: #080808 !important;
  background-color: #080808 !important;

  border-bottom: 1px solid rgba(212, 175, 55, 0.18);

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  opacity: 1 !important;
  visibility: visible;
}

/* Header không bị trong suốt khi chưa scroll */
.site-header:not(.scrolled),
.site-header.site-header-sticky:not(.scrolled) {
  background: #080808 !important;
  background-color: #080808 !important;
  opacity: 1 !important;
}

/* Khi scroll vẫn giữ nền đen */
.site-header.scrolled,
.site-header.site-header-sticky.scrolled {
  background: #080808 !important;
  background-color: #080808 !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

/* Nội dung trang không chui lên phía sau header */
.site-header+main {
  padding-top: var(--header-height-sticky, 90px);
}

/* Riêng trang chủ nếu hero có CSS riêng */
body:not(.home-page) .site-header,
body:not(.index-page) .site-header {
  background: #080808 !important;
}

/* =========================================================
   LV.T — PROJECT DROPDOWN GLOBAL SYNC
   Dùng cho tất cả trang NGOẠI TRỪ du-an.html
   Giữ nguyên style riêng của du-an.html
   ========================================================= */

body:not(.du-an-page) .site-header .dropdown-content,
body:not(.du-an-page) .site-header .project-dropdown {
  position: absolute !important;

  top: calc(100% + 1px) !important;
  left: 50% !important;

  width: 210px !important;
  min-width: 210px !important;
  max-width: 210px !important;

  padding: 9px !important;

  background:
    linear-gradient(145deg,
      #151515 0%,
      #090909 100%) !important;

  border: 1px solid rgba(212, 175, 55, .45) !important;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .65),
    0 0 25px rgba(212, 175, 55, .05) !important;

  transform:
    translateX(-50%) translateY(0) !important;

  z-index: 99999 !important;
}


/* Hình thoi phía trên */

body:not(.du-an-page) .site-header .dropdown-content::before,
body:not(.du-an-page) .site-header .project-dropdown::before {

  content: "" !important;

  position: absolute !important;

  top: -6px !important;
  left: 50% !important;

  width: 11px !important;
  height: 11px !important;

  background: #151515 !important;

  border-left:
    1px solid rgba(212, 175, 55, .45) !important;

  border-top:
    1px solid rgba(212, 175, 55, .45) !important;

  transform:
    translateX(-50%) rotate(45deg) !important;

  z-index: -1 !important;
}


/* Các mục con */

body:not(.du-an-page) .site-header .dropdown-content>a,
body:not(.du-an-page) .site-header .project-dropdown>a,
body:not(.du-an-page) .site-header .dropdown-content .project-dropdown-item {

  position: relative !important;

  display: flex !important;

  align-items: center !important;

  justify-content: flex-start !important;

  width: 100% !important;
  min-height: 55px !important;

  padding:
    0 17px !important;

  box-sizing: border-box !important;

  color: #dedede !important;

  background: transparent !important;

  font-size: 11px !important;
  font-weight: 600 !important;

  letter-spacing: 1.3px !important;

  text-decoration: none !important;

  transition:
    color .2s ease,
    background .2s ease,
    padding-left .2s ease !important;
}


/* Hover giống Hình 1 */

body:not(.du-an-page) .site-header .dropdown-content>a:hover,
body:not(.du-an-page) .site-header .project-dropdown>a:hover,
body:not(.du-an-page) .site-header .dropdown-content .project-dropdown-item:hover {

  color: #d4af37 !important;

  background:
    linear-gradient(90deg,
      rgba(212, 175, 55, .10),
      rgba(212, 175, 55, .025)) !important;

  padding-left: 21px !important;
}


/* Mũi tên bên phải */

body:not(.du-an-page) .site-header .dropdown-content>a::after,
body:not(.du-an-page) .site-header .project-dropdown>a::after,
body:not(.du-an-page) .site-header .dropdown-content .project-dropdown-item::after {

  content: "→" !important;

  position: absolute !important;

  right: 15px !important;

  top: 50% !important;

  transform:
    translateY(-50%) translateX(-5px) !important;

  color: #d4af37 !important;

  font-size: 17px !important;
  line-height: 1 !important;

  opacity: 0 !important;

  transition:
    opacity .2s ease,
    transform .2s ease !important;
}


body:not(.du-an-page) .site-header .dropdown-content>a:hover::after,
body:not(.du-an-page) .site-header .project-dropdown>a:hover::after,
body:not(.du-an-page) .site-header .dropdown-content .project-dropdown-item:hover::after {

  opacity: 1 !important;

  transform:
    translateY(-50%) translateX(0) !important;
}


/* Ẩn các icon mũi tên cũ bên trong item
   để không bị 2 mũi tên */

body:not(.du-an-page) .site-header .dropdown-content .project-dropdown-item>i,
body:not(.du-an-page) .site-header .project-dropdown-item>.bi {

  display: none !important;
}


/* Text bên trong item */

body:not(.du-an-page) .site-header .dropdown-content .dropdown-item-text {

  display: block !important;

  color: inherit !important;

  white-space: nowrap !important;
}


/* Đường line trang trí cũ */

body:not(.du-an-page) .site-header .dropdown-content .dropdown-item-line {

  display: none !important;
}


/* Desktop */

@media (min-width: 992px) {

  body:not(.du-an-page) .site-header .dropdown:hover>.dropdown-content,
  body:not(.du-an-page) .site-header .dropdown:focus-within>.dropdown-content,
  body:not(.du-an-page) .site-header .dropdown.is-open>.dropdown-content {

    display: block !important;

    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: auto !important;
  }

}


/* Mobile */

@media (max-width: 991px) {

  body:not(.du-an-page) .site-header .dropdown-content,
  body:not(.du-an-page) .site-header .project-dropdown {

    position: static !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    transform: none !important;

    margin-top: 8px !important;

    box-shadow: none !important;

    border-color:
      rgba(212, 175, 55, .25) !important;
  }

  body:not(.du-an-page) .site-header .dropdown-content::before,
  body:not(.du-an-page) .site-header .project-dropdown::before {

    display: none !important;
  }

}