/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

.section-subtitle {
  color: var(--muted);
  font-size: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--surface);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  box-shadow: 0 6px 16px var(--shadow-hover);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--heading);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background-color: var(--bg-soft);
  color: var(--gold-dark);
}

/* Inputs & Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-sale {
  background-color: #fcf1db;
  color: var(--gold-dark);
}

.badge-rent {
  background-color: #e2ecf7;
  color: #2b6cb0;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-slogan {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.gold-text {
  color: var(--gold);
}

.desktop-nav {
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hotline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--surface);
  background-color: var(--gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(200, 146, 50, 0.2);
}

.btn-hotline:hover {
  background-color: var(--gold-dark);
  box-shadow: 0 4px 12px rgba(200, 146, 50, 0.3);
}

.phone-icon {
  width: 16px;
  height: 16px;
}

.btn-zalo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f4f8;
  color: #0068ff;
  border: 1px solid #d0e0f5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-zalo:hover {
  background-color: #0068ff;
  color: var(--surface);
  border-color: #0068ff;
}

/* Hamburger menu */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--heading);
  transition: all 0.3s ease;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  visibility: hidden;
  transition: visibility 0.3s;
}

.mobile-nav-drawer.active {
  visibility: visible;
}

.mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 35, 31, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-drawer.active .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--surface);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  padding: 30px;
  transition: right 0.3s ease;
}

.mobile-nav-drawer.active .mobile-nav-content {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-nav-title {
  font-weight: 700;
  color: var(--heading);
  font-size: 18px;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  display: block;
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-nav-footer {
  margin-top: auto;
}

.btn-mobile-call {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet & Mobile styles for Header */
@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }
  
  .hamburger-toggle {
    display: flex;
  }
  
  .header-actions .btn-hotline {
    display: none;
  }
}

/* Hero Section Styles */
.hero-section {
  padding-top: 140px; /* Accounts for 80px fixed header + spacing */
  padding-bottom: 80px;
  background-color: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 550px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--heading);
  font-weight: 700;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-hero {
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-image-wrapper {
  flex: 1.2;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
  border: 1px solid var(--border);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments for Hero */
@media (max-width: 1023px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    height: 400px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .btn-hero {
    width: 100%;
  }
  
  .hero-image-wrapper {
    height: 300px;
  }
}

/* Search Section Styles */
.search-section {
  position: relative;
  z-index: 20;
  margin-top: -35px;
  padding: 0;
}

.search-bar {
  background-color: var(--surface);
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  height: 70px;
  overflow: hidden;
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  border-right: 1px solid var(--border);
  gap: 12px;
}

.field-label-group {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.field-label-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
}

.field-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.search-select {
  flex: 1;
  border: none;
  background-color: transparent;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--muted);
  outline: none;
  appearance: none;
  text-align: right;
  direction: rtl;
  padding-right: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%23746b63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
  cursor: pointer;
}

.search-select option {
  direction: ltr;
  text-align: left;
}

.btn-search {
  height: 100%;
  padding: 0 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  background-color: var(--gold);
  color: var(--surface);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-search:hover {
  background-color: var(--gold-dark);
}

/* Responsive adjustments for Search */
@media (max-width: 1023px) {
  .search-section {
    margin-top: -30px;
    padding: 0 20px;
  }
  
  .search-bar {
    height: auto;
    flex-wrap: wrap;
    border-radius: 6px;
  }
  
  .search-field {
    min-width: 50%;
    height: 60px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .search-field:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  
  .search-field:nth-child(4), .search-field:nth-child(5) {
    border-bottom: none;
  }
  
  .btn-search {
    width: 100%;
    height: 55px;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 767px) {
  .search-section {
    margin-top: -20px;
    padding: 0 15px;
  }
  
  .search-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 6px;
  }
  
  .search-field {
    width: 100%;
    min-width: 100%;
    height: 55px;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 0 16px;
  }
  
  .search-select {
    max-width: 60%;
  }
  
  .btn-search {
    height: 50px;
    border-top: none;
  }
}

/* Featured Properties Section */
.section-properties {
  background-color: var(--surface);
  padding: 80px 0;
}

.properties-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.properties-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--heading);
  position: relative;
  padding-bottom: 8px;
}

.properties-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.view-all-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.2s;
}

.view-all-link:hover {
  color: var(--gold-dark);
}

.properties-slider-container {
  width: 100%;
  position: relative;
}

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

/* Property Card */
.property-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.property-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 700;
}

.property-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.property-project {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.property-specs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.spec-item {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.spec-divider {
  color: var(--border);
  font-weight: 700;
}

.property-location-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  height: 38px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.property-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark);
}

.btn-card-detail {
  font-size: 12px;
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 4px;
  height: auto;
  border: 1px solid var(--gold);
}

/* Featured Projects Section */
.section-projects {
  background-color: var(--surface);
  padding: 80px 0;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.projects-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--heading);
  position: relative;
  padding-bottom: 8px;
}

.projects-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.projects-slider-container {
  width: 100%;
  position: relative;
}

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

/* Project Card */
.project-card {
  background-color: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.project-image-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.meta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.project-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.btn-project-detail {
  font-size: 12px;
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 4px;
  height: auto;
  border: 1px solid var(--gold);
  width: 100%;
  text-align: center;
}

/* Service Benefits Section */
.section-benefits {
  background-color: var(--surface);
  padding: 40px 0 80px 0;
}

.benefits-grid {
  background-color: var(--gold-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.benefit-icon-wrapper {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.benefit-content {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* Investment Insights & Lead Capture Section */
.section-insights {
  background-color: var(--surface);
  padding: 80px 0;
}

.insights-container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column: Insights list */
.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.insights-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--heading);
  position: relative;
  padding-bottom: 8px;
}

.insights-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}

.news-thumbnail-wrapper {
  width: 120px;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.news-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-thumbnail {
  transform: scale(1.05);
}

.news-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
  transition: color 0.2s;
}

.news-item:hover .news-title {
  color: var(--gold);
}

.news-date {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Right Column: Lead Form Card */
.form-card {
  background-color: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 8px 30px var(--shadow);
}

.form-card-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input, .form-select {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: var(--bg-main);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 50, 0.1);
}

/* Select Styling */
.form-select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23746b63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

.form-select:required:invalid {
  color: var(--muted);
}

.btn-submit {
  height: 46px;
  width: 100%;
  background-color: var(--gold);
  color: var(--surface);
  border: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: var(--gold-dark);
}

/* Tablet & Mobile responsiveness for Shop Nổi Bật, Dự Án Nổi Bật, Lợi Thế Dịch Vụ & Tin Tức */
@media (max-width: 1023px) {
  .properties-grid, .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px 30px;
  }

  .insights-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .section-properties, .section-projects {
    padding: 60px 0;
  }

  .properties-title, .projects-title {
    font-size: 26px;
  }
  
  .properties-slider-container, .projects-slider-container {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 10px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .properties-slider-container::-webkit-scrollbar, .projects-slider-container::-webkit-scrollbar {
    display: none;
  }
  
  .properties-grid, .projects-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
  }
  
  .property-card, .project-card {
    width: 84vw;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Mobile Header Alignment with Mockup */
  .btn-zalo {
    display: none;
  }
  
  .header-actions .btn-hotline {
    display: flex !important;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid var(--gold);
    background-color: transparent;
    color: var(--gold);
    justify-content: center;
    align-items: center;
  }
  
  .header-actions .btn-hotline span {
    display: none;
  }
  
  .header-actions .btn-hotline .phone-icon {
    width: 18px;
    height: 18px;
    margin: 0;
  }

  /* Mobile Service Benefits Alignment */
  .section-benefits {
    padding: 20px 0 60px 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    padding: 24px 16px;
  }

  .benefit-item {
    gap: 12px;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
  }

  .benefit-title {
    font-size: 15px;
  }

  .benefit-desc {
    font-size: 14px; /* Ensure no font size under 14px */
  }

  /* Mobile Insights & Lead Form Alignment */
  .section-insights {
    padding: 60px 0;
  }

  .insights-header {
    margin-bottom: 24px;
  }

  .insights-title {
    font-size: 26px;
  }

  .insights-container {
    gap: 40px;
  }

  .news-list {
    gap: 20px;
  }

  .news-thumbnail-wrapper {
    width: 100px;
  }

  .news-title {
    font-size: 14px; /* Ensure no font size under 14px */
  }

  .news-date {
    font-size: 14px; /* Ensure no font size under 14px */
  }

  .form-card {
    padding: 30px 20px;
  }

  .form-card-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .form-input, .form-select, .btn-submit {
    height: 44px;
    font-size: 14px; /* Ensure no font size under 14px */
  }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 80px 0 0 0;
  color: var(--text);
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  background-color: var(--surface);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 25px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-link {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-link.highlight {
  font-weight: 600;
  color: var(--gold-dark);
}

.contact-text {
  color: var(--text);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 25px 0;
  background-color: var(--surface);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.bottom-links {
  display: flex;
  gap: 24px;
}

.bottom-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Footer Styles */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 0 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-col-title {
    margin-bottom: 20px;
  }
  
  .footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .bottom-links {
    justify-content: center;
    gap: 16px;
  }
  
    font-size: 14px; /* Strictly keep mobile font sizes >= 14px */
  }
}

/* ==========================================
   ADVANCED UX EXPERIENCES
   ========================================== */

/* 1. Skeleton Loading Shimmer */
@keyframes shimmer-loader {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.property-card.skeleton .property-image,
.project-card.skeleton .project-image {
  opacity: 0 !important;
}

.property-card.skeleton .property-image-wrapper,
.project-card.skeleton .project-image-wrapper {
  background: linear-gradient(90deg, #f3ebd8 25%, #faf7f1 37%, #f3ebd8 63%);
  background-size: 400% 100%;
  animation: shimmer-loader 1.4s ease infinite !important;
}

.property-card.skeleton .badge,
.property-card.skeleton .btn-card-detail,
.project-card.skeleton .project-meta {
  display: none !important;
}

.property-card.skeleton .property-title,
.property-card.skeleton .property-project,
.property-card.skeleton .property-specs,
.property-card.skeleton .property-location-note,
.property-card.skeleton .property-price,
.project-card.skeleton .project-name {
  color: transparent !important;
  background: linear-gradient(90deg, #f3ebd8 25%, #faf7f1 37%, #f3ebd8 63%);
  background-size: 400% 100%;
  animation: shimmer-loader 1.4s ease infinite !important;
  border-radius: 4px;
  border: none !important;
}

.property-card.skeleton .property-title { height: 20px; width: 75%; margin-bottom: 12px; }
.property-card.skeleton .property-project { height: 14px; width: 45%; margin-bottom: 15px; }
.property-card.skeleton .property-specs { height: 14px; width: 60%; margin-bottom: 15px; }
.property-card.skeleton .property-location-note { height: 36px; width: 100%; margin-bottom: 20px; }
.property-card.skeleton .property-price { height: 24px; width: 35%; }
.project-card.skeleton .project-name { height: 22px; width: 60%; }

/* 2. Quick View Button on Card */
.btn-quick-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(83, 58, 28, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.btn-quick-view svg {
  stroke: var(--muted);
  transition: stroke 0.3s;
}

.btn-quick-view:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(200, 146, 50, 0.25);
}

.btn-quick-view:hover svg {
  stroke: #ffffff;
}

.property-image-wrapper:hover .btn-quick-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* 3. Quick View Modal Overlay */
.quick-view-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(40, 35, 31, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
  padding: 24px;
}

.quick-view-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quick-view-container {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(83, 58, 28, 0.12);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-view-overlay.active .quick-view-container {
  transform: translateY(0) scale(1);
}

.quick-view-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-view-close:hover {
  background-color: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  transform: rotate(90deg);
}

.quick-view-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
}

.quick-view-gallery {
  background-color: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--border-light);
}

.qv-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quick-view-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.qv-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.qv-project-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.qv-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.qv-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.qv-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qv-spec-label {
  font-size: 12px;
  color: var(--muted);
}

.qv-spec-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.qv-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.qv-price-label {
  font-size: 14px;
  color: var(--muted);
}

.qv-price-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-dark);
}

.qv-form-container {
  background-color: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(83, 58, 28, 0.02);
}

.qv-form-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 16px 0;
  text-align: center;
}

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

.qv-form-row {
  display: flex;
  gap: 12px;
}

.qv-form-group {
  flex: 1;
}

.qv-input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0 14px;
  font-size: 14px;
  color: var(--text);
  background-color: var(--bg-soft);
  transition: all 0.3s;
}

.qv-input:focus {
  border-color: var(--gold);
  background-color: var(--surface);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 146, 50, 0.08);
}

.qv-submit-btn {
  height: 44px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* 4. Bottom Sheet Filter */
.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(40, 35, 31, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
}

.bottom-sheet-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet-drawer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -10px 30px rgba(83, 58, 28, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-sheet-overlay.active .bottom-sheet-drawer {
  transform: translateY(0);
}

.bottom-sheet-handle-wrapper {
  padding: 12px 0 8px 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.bottom-sheet-handle {
  width: 40px;
  height: 4px;
  background-color: var(--border);
  border-radius: 2px;
}

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

.bottom-sheet-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
}

.bottom-sheet-close-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.bottom-sheet-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.bs-filter-group {
  margin-bottom: 20px;
}

.bs-filter-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.bs-select-wrapper {
  position: relative;
}

.bs-select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.bs-select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--text);
  background-color: var(--bg-soft);
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s;
}

.bs-select:focus {
  border-color: var(--gold);
  background-color: var(--surface);
  outline: none;
}

.bs-actions {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  margin-top: 30px;
}

.bs-reset-btn {
  height: 48px;
  font-size: 14px;
  font-weight: 600;
}

.bs-submit-btn {
  height: 48px;
  font-size: 14px;
  font-weight: 600;
}

/* 5. Mobile Search Trigger Elements */
.mobile-search-bar-trigger {
  display: none;
}

/* 6. Advanced Micro-Animations */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.btn:hover::after {
  left: 150%;
  transition: all 0.7s ease;
}

/* Image zoom effect on hover */
.property-image, .project-image {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover .property-image,
.project-card:hover .project-image {
  transform: scale(1.05);
}

/* Fade-in reveal animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Responsive Overrides for Advanced UX */
@media (max-width: 768px) {
  .quick-view-overlay {
    padding: 12px;
  }

  .quick-view-container {
    max-height: 95vh;
  }

  .quick-view-content {
    grid-template-columns: 1fr;
  }
  
  .quick-view-gallery {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .quick-view-details {
    padding: 24px;
  }
  
  .qv-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .qv-specs {
    margin-bottom: 20px;
    padding: 12px;
  }
  
  .qv-price-value {
    font-size: 24px;
  }
  
  .qv-form-row {
    flex-direction: column;
    gap: 12px;
  }

  /* Hide quick view button on mobile (use click detail instead) */
  .btn-quick-view {
    display: none !important;
  }

  /* Mobile Search Bar Style */
  .search-bar.desktop-only {
    display: none !important;
  }
  
  .mobile-search-bar-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 4px 15px rgba(83, 58, 28, 0.04);
  }
  
  .ms-input-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
  }

  .ms-input-placeholder svg {
    color: var(--muted);
  }
  
  .btn-mobile-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .btn-mobile-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
}

/* ==========================================
   STICKY CONTACT CTAS (FLOATERS & MOBILE BAR)
   ========================================== */
.desktop-floating-contact {
  position: fixed;
  bottom: 40px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(83, 58, 28, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
  cursor: pointer;
}

.float-zalo {
  background-color: #0068ff;
}

.float-phone {
  background-color: var(--gold);
  animation: pulse-phone 2s infinite;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(83, 58, 28, 0.25);
}

.mobile-sticky-bottom-bar {
  display: none;
}

@keyframes pulse-phone {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 146, 50, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(200, 146, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 146, 50, 0);
  }
}

/* Mobile Responsive Adjustments for Sticky Contact */
@media (max-width: 768px) {
  .desktop-floating-contact {
    display: none !important;
  }
  
  body {
    padding-bottom: 60px; /* Offset for sticky bottom bar */
  }
  
  .mobile-sticky-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--surface);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 15px rgba(83, 58, 28, 0.08);
    z-index: 998; /* Under modals/drawers */
  }
  
  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px; /* Strictly keep mobile font sizes >= 14px */
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
  }
  
  .cta-phone {
    background-color: var(--surface);
    color: var(--gold);
  }
  
  .cta-phone:active {
    background-color: var(--bg-soft);
  }
  
  .cta-zalo {
    background-color: var(--gold);
    color: #ffffff;
  }
  
  .cta-zalo:active {
    background-color: var(--gold-dark);
  }
}

/* ==========================================
   VIDEO DỰ ÁN & THỰC TẾ
   ========================================== */
.video-section {
  padding: 80px 0;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.video-header {
  text-align: center;
  margin-bottom: 50px;
}

.video-section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.video-section-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.video-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: start;
}

.vid-featured {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background-color: #000;
  box-shadow: 0 10px 30px rgba(83, 58, 28, 0.08);
  aspect-ratio: 16/10;
}

.vid-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.vid-featured:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}

.vid-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(0deg, rgba(40, 35, 31, 0.9) 0%, transparent 60%);
}

.vid-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 0 35px rgba(200, 146, 50, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vid-featured:hover .vid-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--gold-light);
  box-shadow: 0 0 45px rgba(200, 146, 50, 0.65);
}

.vid-play-btn svg {
  margin-left: 4px;
}

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

.vid-title-main {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.vid-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 8px;
}

.vid-list::-webkit-scrollbar {
  width: 4px;
}

.vid-list::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 2px;
}

.vid-item {
  display: flex;
  gap: 16px;
  cursor: pointer;
  padding: 12px;
  background-color: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all 0.3s;
  align-items: center;
}

.vid-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(83, 58, 28, 0.05);
  transform: translateY(-2px);
}

.vid-thumb {
  position: relative;
  flex: 0 0 120px;
  height: 75px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #000;
}

.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vid-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.vid-thumb-play svg {
  margin-left: 2px;
}

.vid-info {
  flex: 1;
}

.vid-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 6px 0;
}

.vid-item-sub {
  font-size: 12px;
  color: var(--muted);
}

/* Video Player Modal Popup */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99999;
  padding: 24px;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  width: 100%;
  max-width: 900px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
  transition: color 0.3s;
}

.video-modal-close:hover {
  color: var(--gold-light);
}

.video-modal-content {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .video-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }

  .video-section-title {
    font-size: 26px;
  }

  .vid-featured {
    aspect-ratio: 16/9;
  }

  .vid-play-btn {
    width: 60px;
    height: 60px;
  }

  .vid-title-main {
    font-size: 18px;
  }

  .vid-item {
    padding: 10px;
  }

  .vid-thumb {
    flex: 0 0 100px;
    height: 60px;
  }

  .vid-item-title {
    font-size: 14px;
  }
}




