.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #002a89;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.833vw 0;
}

.logo-img {
  height: 2.083vw;
  filter: brightness(0) invert(1);
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 0.625vw;
  padding: 0.625vw 1.25vw;
  background: #ff5ac0;
  color: white;
  border-radius: 0.417vw;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1);
}

.header-actions {
  display: flex;
}

.phone-btn:hover {
  background: #e04aab;
  color: white;
}

/* Section Styles */

.section.bg-gray {
  background-color: #f9fafb;
}

.section-header {
  margin-bottom: 1.667vw;
}

.section-header.text-center {
  text-align: center;
  max-width: 40vw;
  margin: 0 auto 2.5vw;
}

.section-badge {
  color: #ff5ac0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.729vw;
}

.section-title {
  font-size: 2.083vw;
  font-weight: bold;
  background: linear-gradient(to right, #002a89, #ff5ac0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.25vw;
}

.subsection-title {
  font-size: 1.563vw;
  font-weight: bold;
  color: #002a89;
  margin-bottom: 1.25vw;
}

.section-desc {
  font-size: 0.938vw;
  color: #6b7280;
  margin-bottom: 1.667vw;
  line-height: 1.75;
}

/* Grid Layout */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.667vw;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
  margin-bottom: 1.25vw;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.833vw;
  padding: 0.729vw;
  background: linear-gradient(to right, #f9fafb, white);
  border-radius: 0.625vw;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #ff5ac0;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1);
}

.card-content {
  flex: 1;
}

.card-header {
  display: flex;
  align-items: baseline;
  gap: 0.417vw;
  margin-bottom: 0.208vw;
}

.price {
  font-size: 1.25vw;
  font-weight: bold;
  color: #002a89;
}

.label {
  font-weight: 600;
  color: #ff5ac0;
}

.card-desc {
  color: #6b7280;
}

/* Image Gallery */
.image-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
}

.main-image {
  position: relative;
  border-radius: 0.833vw;
  overflow: hidden;
  min-height: 20.833vw;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.833vw;
}

.thumbnail {
  position: relative;
  border-radius: 0.625vw;
  overflow: hidden;
  min-height: 7.292vw;
}

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

.thumbnail:hover img {
  transform: scale(1.1);
}

section#chuyen-nhuong {
  padding: 3.333vw 0;
}

/* Property Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625vw, 1fr));
  gap: 1.25vw;
  margin-bottom: 1.667vw;
}

.property-card {
  background: white;
  border-radius: 0.625vw;
  overflow: hidden;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.property-card:hover {
  box-shadow: 0 1.042vw 1.302vw -0.26vw rgba(0, 0, 0, 0.1);
}

.property-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

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

.property-code {
  position: absolute;
  bottom: 0.625vw;
  left: 0.625vw;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(0.208vw);
  color: white;
  padding: 0.313vw 0.625vw;
  border-radius: 0.417vw;
  font-weight: 600;
  font-size: 0.729vw;
}

.property-content {
  padding: 1.042vw;
}

.property-price {
  margin-bottom: 0.625vw;
}

.property-price .price {
  font-size: 1.25vw;
  font-weight: bold;
  color: var(--bic-secondary-color);
  margin-bottom: 0.208vw;
}

.property-details {
  display: flex;
  align-items: center;
  gap: 0.833vw;
  margin-bottom: 0.625vw;
  padding-bottom: 0.625vw;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.313vw;
  color: #6b7280;
}

.detail-icon {
  width: 0.833vw;
  height: 0.833vw;
}

.property-location {
  display: flex;
  align-items: flex-start;
  gap: 0.417vw;
  margin-bottom: 0.833vw;
}

.location-icon {
  width: 0.833vw;
  height: 0.833vw;
  color: #003da5;
  flex-shrink: 0;
  margin-top: 0.104vw;
}

/* Project Info */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5vw;
}

.project-image {
  border-radius: 0.833vw;
  overflow: hidden;
  box-shadow: 0 1.302vw 2.604vw -0.625vw rgba(0, 0, 0, 0.25);
}

.project-image img {
  width: 100%;
  height: 35.417vw;
  object-fit: cover;
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  color: #374151;
}

.project-info ul {
  padding-left: 1.042vw;
}

.project-info ul > li {
  margin-bottom: 0.833vw;
}

.project-info ul > li::marker {
  color: var(--bic-primary-color);
}

.project-info ul > li strong {
  color: var(--bic-primary-color);
}

.info-item {
  display: flex;
  gap: 0.625vw;
}

.bullet {
  color: #002a89;
  margin-top: 0.313vw;
  font-weight: bold;
}

.info-item p strong {
  color: #002a89;
}

/* Vi Tri Section Styles */
.vi-tri-section {
  width: 100%;
  padding: 2.5vw 0;
  background-color: #002a89;
}

.vi-tri-header {
  text-align: center;
  max-width: 40vw;
  margin: 0 auto 3.333vw;
}

.vi-tri-badge {
  display: inline-block;
  padding: 0.417vw 1.25vw;
  background: linear-gradient(to right, #ff5ac0, rgba(255, 90, 192, 0.8));
  color: white;
  border-radius: 520.833vw;
  margin-bottom: 0.833vw;
  font-weight: 600;
}

.vi-tri-title {
  font-size: 2.083vw;
  font-weight: 700;
  color: white !important;
  margin: 0.833vw 0 1.25vw;
  line-height: 1.2;
}

.vi-tri-description {
  font-size: 0.938vw;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.vi-tri-grid {
  display: flex;
  gap: 1.667vw;
}

.vi-tri-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(to bottom right, #f9fafb, white);
  border-radius: 0.833vw;
  box-shadow: 0 1.302vw 2.604vw -0.625vw rgba(0, 0, 0, 0.25);
  padding: 1.667vw;
}

.form-group {
  margin-bottom: 1.25vw;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.417vw;
  font-size: 0.729vw;
  font-weight: 500;
  color: #003da5;
  margin-bottom: 0.833vw;
}

.required {
  color: #ef4444;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.521vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1.042vw;
  height: 1.042vw;
  color: #9ca3af;
}

.input-group input {
  width: 100%;
  padding: 0.781vw 0.521vw 0.781vw 1.563vw;
  border: 1px solid #d1d5db;
  border-radius: 0.313vw;
  font-size: 0.833vw;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #003da5;
  box-shadow: 0 0 0 0.156vw rgba(0, 61, 165, 0.1);
}

.checkbox-group {
  background: white;
  border-radius: 0.417vw;
  padding: 0.833vw;
  border: 1px solid #e5e7eb;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.625vw;
  margin-bottom: 0.625vw;
  cursor: pointer;
  color: #374151;
}

.checkbox-item:last-child {
  margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
  width: 0.833vw;
  height: 0.833vw;
  border: 2px solid #003da5;
  border-radius: 0.208vw;
  background: white;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"]:checked {
  background: #003da5;
  border-color: #003da5;
}

.checkmark {
  width: 0.833vw;
  height: 0.833vw;
  border: 2px solid #003da5;
  border-radius: 0.208vw;
  background: white;
  position: relative;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: #003da5;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 0.208vw;
  top: 0.052vw;
  width: 0.208vw;
  height: 0.417vw;
  border: solid white;
  border-width: 0 0.104vw 0.104vw 0;
  transform: rotate(45deg);
}

/* Contact Info */

.contact-info {
  margin-top: 0.833vw;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.833vw;
  padding: 0.833vw;
  background: #f9fafb;
  border-radius: 0.417vw;
}

.contact-info h5 {
  color: #fff;
  font-size: 0.729vw;
}

.contact-icon {
  width: 2.5vw;
  height: 2.5vw;
  background: #002a89;
  border-radius: 0.417vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25vw;
  height: 1.25vw;
  color: white;
}

.contact-details h4 {
  font-weight: bold;
  color: #003da5;
  margin-bottom: 0.208vw;
}

.contact-details a {
  font-size: 0.938vw;
  font-weight: bold;
  color: #ff5ac0;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  background: #002a89;
  color: white;
  padding: 0.677vw;
  border-radius: 0.521vw;
  border: none;
  font-weight: 500;
  font-size: 0.938vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--bic-secondary-color);
  transition: all 0.3s;
  color: white;
}

.btn-primary.full-width {
  width: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  background: #003da5;
  color: white;
  padding: 0.3125vw 0.521vw;
  border-radius: 0.313vw;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-secondary:hover {
  background: #002a73;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  background: #002a89;
  color: white;
  padding: 0.495vw 0.833vw;
  font-size: 0.83333vw;
  border-radius: 0.313vw;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-outline:hover {
  background: var(--bic-secondary-color);
  color: white;
  transition: all 0.3s ease;
}

.btn-icon {
  width: 1.042vw;
  height: 1.042vw;
}

.text-center {
  text-align: center;
}

.form-note {
  text-align: center;
  font-size: 0.729vw;
  color: #6b7280;
  margin-top: 0.833vw;
}

.form-note a {
  color: #003da5;
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

/* Footer */
.bic-footer {
  background: #002a89;
  color: white;
  padding: 2.5vw 0;
  font-size: 0.83333vw;
}

.title-ft h4 {
  color: #fff;
  font-size: 0.9375vw;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25vw;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.042vw 1.563vw;
  margin-bottom: 1.667vw;
}

.footer-left {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25vw;
}

.company-name {
  font-size: 0.83333vw;
  font-weight: 700;
  margin-bottom: 0.833vw;
}

.address {
  display: flex;
  align-items: flex-start;
  gap: 0.417vw;
  color: #d1d5dc;
}

.address-icon {
  width: 0.833vw;
  height: 0.833vw;
  color: #ff5ac0;
  flex-shrink: 0;
  margin-top: 0.104vw;
}

.contact-info h5 {
  font-weight: bold;
  margin-bottom: 0.833vw;
  font-size: 0.729vw;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.417vw;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 0.417vw;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.83333vw;
  transition: color 0.3s ease;
}

.contact-links a:first-child {
  font-size: 0.833vw;
  color: #fff;
  font-weight: 700;
}

.contact-links a:hover {
  color: #ff5ac0;
}

.contact-links a:first-child {
  font-weight: bold;
}

.contact-links svg {
  width: 0.833vw;
  height: 0.833vw;
  color: #ff5ac0;
}

.certificate h5 {
  font-weight: bold;
  margin-bottom: 0.833vw;
  font-size: 0.83333vw;
  color: #fff;
}

.certificate-image {
  border-radius: 0.417vw;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: white;
  padding: 0.833vw;
  width: 9.375vw;
}

.certificate-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-right h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625vw;
  font-size: 0.833vw;
}

.commitments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.021vw, 1fr));
  gap: 1.25vw;
  margin-bottom: 1.25vw;
}

.commitment-list {
  list-style: none;
  display: grid;
  gap: 0.417vw;
  padding: 0;
}

.commitment-list li {
  color: #e5e7eb;
  font-size: 0.83333vw;
  display: flex;
  align-items: center;
  gap: 0.417vw;
}

.commitment-list li svg {
  width: 0.729166vw;
  height: 0.729166vw;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.833vw;
  margin-bottom: 0.833vw;
}

.note-title {
  font-weight: bold;
  margin-bottom: 0.208vw;
  font-size: 0.833vw;
}

.note-desc {
  color: #d1d5db;
  font-size: 0.83333vw;
}

.disclaimer {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.417vw;
  padding: 0.833vw;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.disclaimer p {
  font-size: 0.83333vw;
  color: #e5e7eb;
  line-height: 1.75;
}

.disclaimer strong {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.833vw;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  align-items: center;
  font-size: 0.83333vw;
}

.footer-bottom p {
  color: #d1d5db;
}

.footer-bottom a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ff5ac0;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 10%;
  right: 0.781vw;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.floating-btn {
  position: relative;
  width: 2.917vw;
  height: 2.917vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.83333vw;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.floating-btn.phone-fixed-btn {
  background: #ff5ac0;
  animation: bounce 2s infinite;
}

.floating-btn:hover svg {
  color: white !important;
}

.floating-btn.phone-btn:hover {
  background: #e04aab;
  box-shadow: 0 1.042vw 1.302vw -0.26vw rgba(0, 0, 0, 0.1);
}

.floating-btn.zalo-btn {
  background: #0068ff;
}

.floating-btn.zalo-btn:hover {
  background: #0052cc;
}

.floating-btn svg {
  width: 1.458vw;
  height: 1.458vw;
}

.tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.391vw;
  background: #ff5ac0;
  color: white;
  padding: 0.520833vw;
  border-radius: 0.417vw;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1.042vw 1.302vw -0.26vw rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 10;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.floating-btn.zalo-btn .tooltip {
  background: #374151;
}

.bic-scroll-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.781vw);
  position: fixed;
  bottom: 0.521vw;
  right: 0.781vw !important;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 0.521vw 1.302vw 0px rgba(0, 0, 0, 0.15);
  color: var(--bic-primary-color);
  transition: 0.25s;
  width: 2.917vw;
  height: 2.917vw;
  padding: 0;
}

.bic-footer__copyright {
  position: relative;
  color: #d1d5dc;
  text-align: center;
  padding-top: 0.833vw;
  font-size: 0.833vw;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bic-footer__copyright .policy {
  display: flex;
  gap: 1.25vw;
  align-items: center;
}

.bic-footer__copyright a {
  color: #d1d5dc;
  font-weight: 500;
  font-size: 0.833vw;
}

.bic-footer__copyright a:hover {
  text-decoration: underline;
}

.bic-scroll-top .bic-icon {
  font-size: 1.25vw;
  font-weight: 700;
  color: #fff;
}

.bic-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background: var(--bic-secondary-color);
}

/* Animations */
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    transform: translate3d(0, -0.417vw, 0);
  }

  70% {
    transform: translate3d(0, -0.208vw, 0);
  }

  90% {
    transform: translate3d(0, -0.104vw, 0);
  }
}

/* Mat Bang Section Styles */
.mat-bang-section {
  width: 100%;
  margin: 0 auto;
  background-color: white;
}

.mat-bang-header {
  text-align: center;
  max-width: 46.25vw;
  margin: 0 auto 2.5vw;
}

.mat-bang-description {
  color: #374151;
  line-height: 1.6;
}

.mat-bang-grid {
  display: grid;
  gap: 1.25vw;
}

.mat-bang-card {
  background: white;
  border-radius: 0.833vw;
  overflow: hidden;
  box-shadow: 0 0.521vw 0.781vw -0.156vw rgba(0, 0, 0, 0.1),
    0 0.208vw 0.313vw -0.104vw rgba(0, 0, 0, 0.05);
  border: 2px solid #002a89;
  transition: all 0.3s ease;
}

.mat-bang-card:hover {
  box-shadow: 0 1.302vw 2.604vw -0.625vw rgba(0, 0, 0, 0.25);
}

.mat-bang-card-header {
  background: #002a89;
  color: white;
  padding: 1.25vw;
  text-align: center;
}

.mat-bang-card-title {
  font-size: 1.25vw;
  font-weight: 700;
  margin-bottom: 0.417vw;
  color: white;
}

.mat-bang-card-subtitle {
  font-size: 0.729vw;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

.mat-bang-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.mat-bang-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mat-bang-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mat-bang-card-content {
  padding: 1.25vw;
}

.mat-bang-info-box {
  background: #eff6ff;
  border-radius: 0.417vw;
  padding: 0.833vw;
  margin-bottom: 1.25vw;
}

.mat-bang-info-list p > strong {
  font-weight: 700;
  color: #002a89;
  margin-bottom: 0.625vw;
  font-size: 0.833vw;
}

.mat-bang-info-list ul {
  padding: 0 1.041666666vw;
}

.mat-bang-info-list ul > li::marker {
  background: #002a89;
  color: #002a89;
}

.mat-bang-info-item {
  display: flex;
  align-items: center;
  gap: 0.417vw;
  color: #374151;
  margin-bottom: 0.417vw;
}

.mat-bang-bullet {
  color: #002a89;
  flex-shrink: 0;
}

.mat-bang-info-item span:last-child {
  font-size: 0.83333vw;
}

.mat-bang-table-bic-container {
  margin-bottom: 1.25vw;
}

.mat-bang-table-header {
  background: #002a89;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.417vw;
  padding: 0.625vw;
  border-radius: 0.417vw 0.417vw 0 0;
}

.mat-bang-table-header > .mat-bang-table-cell {
  color: white;
}

.mat-bang-table-body {
  border: 2px solid #002a89;
  border-top: none;
  border-radius: 0 0 0.417vw 0.417vw;
  overflow: hidden;
}

.mat-bang-table-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.417vw;
  padding: 0.625vw;
  background: white;
}

.mat-bang-table-row-gray {
  background: #f9fafb;
}

.mat-bang-table-cell {
  font-size: 0.83333vw;
  color: #374151;
  text-align: center;
}

.mat-bang-table-cell-bold {
  font-weight: 700;
  color: #002a89;
}

.mat-bang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  width: 100%;
  background: #002a89;
  color: white;
  border: none;
  border-radius: 0.417vw;
  padding: 0.729vw 1.042vw;
  font-size: 0.729vw;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mat-bang-button:hover {
  background: #003da5;
}

.mat-bang-button-icon {
  width: 1.042vw;
  height: 1.042vw;
  margin-right: 0.417vw;
}

.mat-bang-footer {
  margin-top: 2.5vw;
  text-align: center;
}

.mat-bang-footer-text {
  color: #374151;
  margin-bottom: 0.833vw;
}

.mat-bang-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  background: #002a89;
  color: white;
  border: none;
  border-radius: 0.417vw;
  padding: 0.729vw 1.667vw;
  font-size: 0.83333vw;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mat-bang-footer-button:hover {
  background: #003da5;
}

/* Lien Ke Section Styles */
.lien-ke-section {
  padding: 3.333vw 0;
  width: 100%;
  background: linear-gradient(180deg, #fff 0%, #eff6ff 100%);
}

.lien-ke-header {
  text-align: center;
  max-width: 46.667vw;
  margin: 0 auto 2.5vw;
}

.lien-ke-description {
  color: #374151;
  line-height: 1.6;
}

.lien-ke-grid {
  display: grid;
  gap: 1.667vw;
}

.lien-ke-gallery {
  display: flex;
  flex-direction: column;
}

a.image-fancybox {
  height: 100%;
  width: 100%;
  position: absolute;
}

.lien-ke-main-image {
  position: relative;
  aspect-ratio: 6/5;
  border-radius: 0.833vw;
  overflow: hidden;
  box-shadow: 0 1.302vw 2.604vw -0.625vw rgba(0, 0, 0, 0.25);
  margin-bottom: 0.833vw;
}

.lien-ke-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lien-ke-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.25vw;
}

.lien-ke-image-text {
  color: white;
  font-weight: 700;
}

.lien-ke-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.417vw;
}

.lien-ke-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lien-ke-thumbnail {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.417vw;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  border: none;
  background: none;
  padding: 0;
}

.lien-ke-thumbnail:hover {
  opacity: 1;
}

.lien-ke-thumbnail-active {
  opacity: 1;
  box-shadow: 0 0 0 0.208vw #002a89;
}

.lien-ke-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lien-ke-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lien-ke-advantages {
  margin-bottom: 1.667vw;
}

.lien-ke-content-title {
  font-size: 1.25vw;
  font-weight: 700;
  color: #002a89;
  margin-bottom: 0.833vw;
}

.lien-ke-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.lien-ke-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625vw;
}

.lien-ke-check-icon {
  width: 1.25vw;
  height: 1.25vw;
  color: #00a651;
  flex-shrink: 0;
  margin-top: 0.104vw;
}

.lien-ke-advantage-text {
  color: #374151;
}

.lien-ke-info-box {
  background: white;
  border-radius: 0.625vw;
  padding: 1.25vw;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1),
    0 0.104vw 0.208vw -0.052vw rgba(0, 0, 0, 0.06);
  border: 2px solid #002a89;
}

.lien-ke-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lien-ke-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.417vw 0;
  border-bottom: 1px solid #e5e7eb;
}

.lien-ke-info-item:last-child {
  border-bottom: none;
}

.lien-ke-info-label {
  color: #6b7280;
}

.lien-ke-info-value {
  font-weight: 700;
  color: #002a89;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  background: #002a89;
  color: white;
  border: none;
  border-radius: 0.313vw;
  padding: 0.833vw 1.042vw;
  font-size: 0.729vw;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 1.667vw;
}

.lien-ke-button:hover {
  background: #003da5;
}

/* Biet Thu Section Styles */
.biet-thu-section {
  width: 100%;
  margin: 0 auto;
  padding: 2.083vw 0;
  background: linear-gradient(to bottom right, #fdf2f8, #f3e8ff, #eff6ff);
  position: relative;
  overflow: hidden;
}

.biet-thu-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.biet-thu-bg-pattern svg {
  width: 100%;
  height: 100%;
}

.biet-thu-bg-blur-1 {
  position: absolute;
  top: 2.083vw;
  right: 2.083vw;
  width: 15vw;
  height: 15vw;
  background: #ff5ac0;
  border-radius: 50%;
  filter: blur(5vw);
  opacity: 0.1;
}

.biet-thu-bg-blur-2 {
  position: absolute;
  bottom: 2.083vw;
  left: 2.083vw;
  width: 16.667vw;
  height: 16.667vw;
  background: #002a89;
  border-radius: 50%;
  filter: blur(5vw);
  opacity: 0.1;
}

.biet-thu-header {
  text-align: center;
  max-width: 46.667vw;
  margin: 0 auto 2.5vw;
  position: relative;
  z-index: 10;
}

.biet-thu-description {
  color: #374151;
  line-height: 1.6;
}

.biet-thu-grid {
  display: grid;
  gap: 1.667vw;
  position: relative;
  z-index: 10;
}

.biet-thu-gallery {
  display: flex;
  flex-direction: column;
}

.biet-thu-main-image {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 0.833vw;
  overflow: hidden;
  box-shadow: 0 1.302vw 2.604vw -0.625vw rgba(0, 0, 0, 0.25);
  margin-bottom: 0.833vw;
}

.biet-thu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.biet-thu-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.25vw;
}

.biet-thu-image-text {
  color: white;
  font-weight: 700;
}

.biet-thu-thumbnails {
  display: flex;
  gap: 0.417vw;
}

.biet-thu-thumbnail {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.417vw;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  border: none;
  background: none;
  padding: 0;
  width: 6.25vw;
}

.biet-thu-thumbnail:hover {
  opacity: 1;
}

.biet-thu-thumbnail-active {
  opacity: 1;
  box-shadow: 0 0 0 0.208vw #002a89;
}

.biet-thu-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biet-thu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.biet-thu-advantages {
  margin-bottom: 1.667vw;
}

.biet-thu-content-title {
  font-size: 1.25vw;
  font-weight: 700;
  color: #002a89;
  margin-bottom: 0.833vw;
}

.biet-thu-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.biet-thu-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625vw;
}

.biet-thu-check-icon {
  width: 1.25vw;
  height: 1.25vw;
  color: #00a651;
  flex-shrink: 0;
  margin-top: 0.104vw;
}

.biet-thu-advantage-text {
  color: #374151;
}

.biet-thu-info-box {
  background: white;
  border-radius: 0.625vw;
  padding: 1.25vw;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1),
    0 0.104vw 0.208vw -0.052vw rgba(0, 0, 0, 0.06);
  border: 2px solid #002a89;
}

.biet-thu-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.biet-thu-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.417vw 0;
  border-bottom: 1px solid #e5e7eb;
}

.biet-thu-info-item:last-child {
  border-bottom: none;
}

.biet-thu-info-label {
  color: #6b7280;
  white-space: nowrap;
}

.biet-thu-info-value {
  font-weight: 700;
  color: #002a89;
  text-align: right;
}

.biet-thu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  background: #002a89;
  color: white;
  border: none;
  border-radius: 0.313vw;
  padding: 1.25vw;
  font-size: 0.729vw;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 1.667vw;
}

.biet-thu-button:hover {
  background: #003da5;
}

/* Song Lap Section Styles */
.song-lap-section {
  width: 100%;
  margin: 0 auto;
  padding: 2.083vw 0;
  background: linear-gradient(to bottom, white, #eff6ff);
}

.song-lap-header {
  text-align: center;
  max-width: 46.667vw;
  margin: 0 auto 2.5vw;
}

.song-lap-description {
  color: #374151;
  line-height: 1.6;
}

.song-lap-grid {
  display: grid;
  gap: 1.667vw;
}

.song-lap-gallery {
  display: flex;
  flex-direction: column;
}

.song-lap-main-image {
  position: relative;
  aspect-ratio: 6/5;
  border-radius: 0.833vw;
  overflow: hidden;
  box-shadow: 0 1.302vw 2.604vw -0.625vw rgba(0, 0, 0, 0.25);
  margin-bottom: 0.833vw;
}

.song-lap-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.song-lap-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.25vw;
}

.song-lap-image-text {
  color: white;
  font-weight: 700;
}

.song-lap-thumbnails {
  display: flex;
  gap: 0.417vw;
}

.song-lap-thumbnail {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.417vw;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  border: none;
  background: none;
  padding: 0;
  width: 6.25vw;
}

.song-lap-thumbnail:hover {
  opacity: 1;
}

.song-lap-thumbnail-active {
  opacity: 1;
  box-shadow: 0 0 0 0.208vw #002a89;
}

.song-lap-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.song-lap-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.song-lap-advantages {
  margin-bottom: 1.667vw;
}

.song-lap-content-title {
  font-size: 1.25vw;
  font-weight: 700;
  color: #002a89;
  margin-bottom: 0.833vw;
}

.song-lap-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.song-lap-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625vw;
}

.song-lap-check-icon {
  width: 1.25vw;
  height: 1.25vw;
  color: #00a651;
  flex-shrink: 0;
  margin-top: 0.104vw;
}

.song-lap-advantage-text {
  color: #374151;
}

.song-lap-info-box {
  background: white;
  border-radius: 0.625vw;
  padding: 1.25vw;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1),
    0 0.104vw 0.208vw -0.052vw rgba(0, 0, 0, 0.06);
  border: 2px solid #002a89;
}

.song-lap-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.song-lap-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.417vw 0;
  border-bottom: 1px solid #e5e7eb;
}

.song-lap-info-item:last-child {
  border-bottom: none;
}

.song-lap-info-label {
  color: #6b7280;
}

.song-lap-info-value {
  font-weight: 700;
  color: #002a89;
}

.song-lap-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  background: #002a89;
  color: white;
  border: none;
  border-radius: 0.313vw;
  padding: 1.25vw;
  font-size: 0.729vw;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 1.667vw;
}

.song-lap-button:hover {
  background: #003da5;
}

/* Don Lap Section Styles */
.don-lap-section {
  width: 100%;
  margin: 0 auto;
  padding: 2.083vw 0;
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

.don-lap-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.don-lap-bg-pattern svg {
  width: 100%;
  height: 100%;
}

.don-lap-bg-blur-1 {
  position: absolute;
  top: 2.083vw;
  right: 2.083vw;
  width: 15vw;
  height: 15vw;
  background: #ff5ac0;
  border-radius: 50%;
  filter: blur(5vw);
  opacity: 0.1;
}

.don-lap-bg-blur-2 {
  position: absolute;
  bottom: 2.083vw;
  left: 2.083vw;
  width: 16.667vw;
  height: 16.667vw;
  background: #002a89;
  border-radius: 50%;
  filter: blur(5vw);
  opacity: 0.1;
}

.don-lap-header {
  text-align: center;
  max-width: 46.667vw;
  margin: 0 auto 2.5vw;
  position: relative;
  z-index: 10;
}

.don-lap-description {
  color: #374151;
  line-height: 1.6;
}

.don-lap-grid {
  display: grid;
  gap: 1.667vw;
  position: relative;
  z-index: 10;
}

.don-lap-gallery {
  display: flex;
  flex-direction: column;
}

.don-lap-main-image {
  position: relative;
  aspect-ratio: 6/5;
  border-radius: 0.833vw;
  overflow: hidden;
  box-shadow: 0 1.302vw 2.604vw -0.625vw rgba(0, 0, 0, 0.25);
  margin-bottom: 0.833vw;
}

.don-lap-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.don-lap-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.25vw;
}

.don-lap-image-text {
  color: white;
  font-weight: 700;
}

.don-lap-thumbnails {
  display: flex;
  gap: 0.417vw;
}

.don-lap-thumbnail {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.417vw;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  border: none;
  background: none;
  padding: 0;
  width: 6.25vw;
}

.don-lap-thumbnail:hover {
  opacity: 1;
}

.don-lap-thumbnail-active {
  opacity: 1;
  box-shadow: 0 0 0 0.208vw #002a89;
}

.don-lap-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.don-lap-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.don-lap-advantages {
  margin-bottom: 1.667vw;
}

.don-lap-content-title {
  font-size: 1.25vw;
  font-weight: 700;
  color: #002a89;
  margin-bottom: 0.833vw;
}

.don-lap-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.don-lap-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625vw;
}

.don-lap-check-icon {
  width: 1.25vw;
  height: 1.25vw;
  color: #00a651;
  flex-shrink: 0;
  margin-top: 0.104vw;
}

.don-lap-advantage-text {
  color: #374151;
}

.don-lap-info-box {
  background: white;
  border-radius: 0.625vw;
  padding: 1.25vw;
  box-shadow: 0 0.208vw 0.313vw -0.052vw rgba(0, 0, 0, 0.1),
    0 0.104vw 0.208vw -0.052vw rgba(0, 0, 0, 0.06);
  border: 2px solid #002a89;
}

.don-lap-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.don-lap-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.417vw 0;
  border-bottom: 1px solid #e5e7eb;
}

.don-lap-info-item:last-child {
  border-bottom: none;
}

.don-lap-info-label {
  color: #6b7280;
}

.don-lap-info-value {
  font-weight: 700;
  color: #002a89;
}

.don-lap-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.417vw;
  background: #002a89;
  color: white;
  border: none;
  border-radius: 0.313vw;
  padding: 1.25vw;
  font-size: 0.729vw;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 1.667vw;
}

.don-lap-button:hover {
  background: #003da5;
}

/* Dang Ky Section Styles */
.dang-ky-section {
  width: 100%;
  margin: 0 auto;
  padding: 3.333vw 0;
  background-color: white;
}

.dang-ky-grid {
  display: grid;
  gap: 2.5vw;
  align-items: center;
}

.dang-ky-content {
  display: flex;
  flex-direction: column;
}

.dang-ky-badge {
  color: #ff5ac0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dang-ky-description {
  font-size: 0.938vw;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.667vw;
}

.dang-ky-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  margin-bottom: 1.667vw;
}

.dang-ky-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.833vw;
  padding: 0.833vw;
  background: #f9fafb;
  border-radius: 0.417vw;
}

.dang-ky-contact-icon {
  width: 2.5vw;
  height: 2.5vw;
  background: #002a89;
  border-radius: 0.417vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dang-ky-contact-icon svg {
  width: 1.25vw;
  height: 1.25vw;
  color: white;
}

.dang-ky-contact-details {
  display: flex;
  flex-direction: column;
}

.dang-ky-contact-title {
  font-weight: 700;
  color: #003da5;
  margin-bottom: 0.208vw;
  font-size: 0.833vw;
}

.dang-ky-contact-link {
  font-size: 0.938vw;
  font-weight: 700;
  color: #ff5ac0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dang-ky-contact-link:hover {
  color: #e91e63;
  text-decoration: underline;
}

.dang-ky-offer-box {
  background: linear-gradient(
    to bottom right,
    rgba(255, 90, 192, 0.1),
    rgba(255, 90, 192, 0.05)
  );
  border: 2px solid #ff5ac0;
  border-radius: 0.417vw;
  padding: 1.25vw;
}

.dang-ky-offer-title {
  font-weight: 700;
  color: #003da5;
  margin-bottom: 0.625vw;
  display: flex;
  align-items: center;
  gap: 0.417vw;
  font-size: 0.938vw;
}

.dang-ky-offer-icon {
  font-size: 1.25vw;
}

.dang-ky-offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.417vw;
}

.dang-ky-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.417vw;
  color: #374151;
}

.dang-ky-check-icon {
  width: 0.833vw;
  height: 0.833vw;
  color: #00a651;
  flex-shrink: 0;
  margin-top: 0.104vw;
}

.dang-ky-form-bic-container {
  display: flex;
  justify-content: center;
}

.dang-ky-form-wrapper {
  background: linear-gradient(to bottom right, #f9fafb, white);
  border-radius: 0.833vw;
  box-shadow: 0 1.302vw 2.604vw -0.625vw rgba(0, 0, 0, 0.25);
  padding: 1.667vw;
  width: 100%;
}

.dang-ky-form {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

/* Form Contact */

.checkbox-contact {
  display: flex;
  flex-direction: column;
}

.input-flex {
  display: flex;
  align-items: center;
  border-radius: 0.417vw;
  border: 1px solid #d1d5dc;
  background: #f3f3f5;
  padding: 0.104vw 0.833vw;
  gap: 0.521vw;
  height: 2.60416666vw;
}

.input-flex svg {
  width: 1.30208333vw;
  height: 1.30208333vw;
}

.input-flex input {
  background: unset;
  border: unset;
  padding: 0;
}

.bic-form-input label {
  color: var(--bic-primary-color);
  font-weight: 600;
  font-size: 0.833vw;
}

.bic-form-input > label > span {
  color: #fb2c36;
}

.form-content {
  display: flex;
  flex-direction: column;
  row-gap: 1.25vw;
}

.form-checkbox {
  border-radius: 0.521vw;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 0.885vw;
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 0.625vw;
  cursor: pointer;
}

.form-checkbox input {
  width: 0.833vw;
  height: 0.833vw;
  border: 1px solid var(--bic-primary-color);
  border-radius: 0.208vw;
}

.form-checkbox .wpcf7-list-item-label {
  color: #364153;
}

.form-actions {
  background: var(--bic-primary-color);
  text-align: center;
  border-radius: 0.417vw;
  padding: 0.052vw 1.042vw;
  font-size: 0.938vw;
  transition: all 0.3s;
}

.form-actions:hover {
  background: var(--bic-secondary-color);
  transition: all 0.3s;
}

.form-actions input {
  font-weight: 500 !important;
  background-color: unset;
  width: 100%;
}

.form-actions svg {
  position: absolute;
  top: 50%;
  left: 34%;
  transform: translateY(-50%);
}

.dang-ky-form-wrapper > p {
  color: #6a7282;
  text-align: center;
  font-size: 0.83333vw;
  margin-top: 1.25vw;
  margin-bottom: 0;
}

.dang-ky-form-wrapper > p > a {
  color: var(--bic-primary-color);
}

/* responsive */

@media (min-width: 1024px) {
  .vi-tri-section {
    padding: 4.167vw 0;
  }

  .vi-tri-grid {
    display: flex;
    gap: 2.5vw;
    justify-content: space-around;
    align-items: center;
  }

  .vi-tri-image.left {
    max-width: 25.6770833vw;
    min-height: 31.19791666vw;
    flex: 0 0 25.6770833vw;
  }

  .vi-tri-image.right {
    max-width: 36.979166vw;
    min-height: 31.19791666vw;
    flex: 0 0 36.979166vw;
  }

  .grid-2 {
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5vw;
  }

  .section-title {
    font-size: 2.083vw;
  }

  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1.5fr;
  }

  .commitment-list {
    grid-template-columns: 1fr 1fr;
  }

  .mat-bang-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.667vw;
  }

  .lien-ke-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
  }

  .biet-thu-section {
    padding: 3.333vw 0;
  }

  .biet-thu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
  }

  .song-lap-section {
    padding: 3.333vw 0;
  }

  .song-lap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
  }

  .don-lap-section {
    padding: 3.333vw 0;
  }

  .don-lap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
  }

  .dang-ky-section {
    padding: 4.167vw 0;
  }

  .dang-ky-grid {
    grid-template-columns: 5fr 7fr;
    gap: 2.5vw;
  }

  .dang-ky-form-wrapper {
    padding: 2.5vw;
  }

  .vi-tri-header {
    margin-bottom: 3.333vw;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .bic-scroll-top.show,
  .floating-actions {
    display: none;
  }
  section {
    overflow: hidden !important;
  }
  span.bic-header__offcanvas-toggle svg {
    stroke: #fff;
  }

  a.phone-btn {
    padding: 8px;
    border-radius: 10px;
    gap: 10px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .info-card {
    padding: 14px 15px;
    border-radius: 10px;
  }

  .info-cards {
    gap: 16px;
    margin-bottom: 20px;
  }

  .price {
    font-size: 20px;
  }

  .btn-primary {
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
  }

  .image-gallery {
    gap: 14px;
  }

  .main-image {
    border-radius: 10px !important;
    height: 250px;
  }

  .thumbnails {
    gap: 10px;
  }

  .thumbnail {
    border-radius: 10px;
    overflow: hidden;
    min-height: 80px;
  }

  .property-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
  }

  .property-card {
    border-radius: 10px;
  }

  section#chuyen-nhuong {
    padding: 30px 0;
  }

  .property-code {
    bottom: 10px;
    left: 10px;
    padding: 8px;
    border-radius: 10px;
    font-size: 14px;
  }

  .property-price .price {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .property-content {
    padding: 20px 15px;
  }

  .btn-secondary {
    padding: 8px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .property-details {
    gap: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .detail-icon {
    width: 18px;
    height: 18px;
  }

  .property-price {
    margin-bottom: 10px;
  }

  .location-icon {
    width: 20px;
    height: 20px;
    margin-top: 6px;
    display: none;
  }

  .detail-item {
    gap: 5px;
  }

  .grid-2 {
    gap: 30px;
  }

  .mat-bang-footer-button {
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
  }

  .mat-bang-table-row {
    padding: 10px 5px;
  }

  .btn-outline {
    gap: 10px;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 10px;
  }

  .lien-ke-section {
    padding: 30px 0;
  }

  .section-badge {
    letter-spacing: unset;
    font-size: 16px;
  }

  .section-header {
    max-width: unset !important;
    margin: 0 0 30px !important;
  }

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

  .project-image img {
    height: 300px;
  }

  .subsection-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .project-info ul {
    padding-left: 20px;
  }

  .project-info ul > li {
    margin-bottom: 8px;
  }

  .vi-tri-section {
    padding: 30px 0;
  }

  .vi-tri-header {
    max-width: unset;
    margin: 0 auto 30px;
  }

  .vi-tri-badge {
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
  }

  .vi-tri-title {
    font-size: 30px;
    margin: 10px 0;
  }

  .vi-tri-description {
    font-size: 15px;
  }

  .mat-bang-info-list p > strong {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .mat-bang-info-list ul {
    padding: 0 20px;
  }

  .vi-tri-grid {
    gap: 20px;
    flex-direction: column;
  }

  .mat-bang-header {
    max-width: unset;
    margin: 0 auto 30px;
  }

  .mat-bang-card-subtitle {
    font-size: 13px;
    letter-spacing: unset;
  }

  .mat-bang-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .mat-bang-card {
    border-radius: 10px;
  }

  .mat-bang-info-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .mat-bang-card-header {
    padding: 15px 10px;
  }

  .mat-bang-info-item {
    gap: 8px;
    margin-bottom: 10px;
  }

  .mat-bang-info-item span:last-child {
    font-size: 16px;
  }

  .mat-bang-table-cell {
    font-size: 14px;
  }

  .mat-bang-table-bic-container {
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #002a89;
  }

  .mat-bang-table-header {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px 5px;
    border: 2px solid #002a89;
  }

  .mat-bang-table-body {
    border: 0;
  }
  .mat-bang-card-content {
    padding: 20px 15px;
  }

  .mat-bang-info-box {
    border-radius: 10px;
    padding: 20px 10px;
    margin-bottom: 20px;
  }

  .mat-bang-button {
    gap: 20px;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .mat-bang-button-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.417vw;
  }

  .mat-bang-grid {
    gap: 30px;
  }

  button.mat-bang-footer-button {
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .mat-bang-footer {
    margin-top: 30px;
  }

  .lien-ke-header {
    max-width: unset !important;
    margin: 0 auto 30px;
  }

  .lien-ke-main-image {
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .lien-ke-image-overlay {
    padding: 12px;
  }

  .lien-ke-thumbnail {
    border-radius: 10px;
    flex: 0 0 calc(100% / 5);
  }

  .lien-ke-content-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .lien-ke-grid {
    gap: 20px;
  }

  .lien-ke-check-icon {
    width: 16px;
    height: 16px;
    margin-top: 6px;
  }

  .lien-ke-advantage-item {
    gap: 10px;
  }

  .lien-ke-info-box {
    border-radius: 10px;
    padding: 20px 15px;
  }

  .lien-ke-info-item {
    padding: 14px 0;
  }

  .lien-ke-info-label {
    flex: 0 0 43%;
  }

  .lien-ke-info-value {
    text-align: right;
  }

  .primary-button {
    gap: 20px;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
  }

  .lien-ke-advantages {
    margin-bottom: 20px;
  }

  .dang-ky-description {
    font-size: 16px;
  }

  .dang-ky-grid {
    display: block;
  }

  .dang-ky-contact-item {
    gap: 10px;
    padding: 20px 10px 10px;
    border-radius: 10px;
  }

  .dang-ky-form-bic-container {
    margin-top: 30px;
  }

  .dang-ky-contact-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .dang-ky-contact-link {
    font-size: 18px;
  }

  .dang-ky-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .dang-ky-contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .dang-ky-contact-info {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  .dang-ky-offer-box {
    border-radius: 10px;
    padding: 20px;
  }

  .dang-ky-offer-list {
    gap: 20px;
    padding: 0;
  }

  .dang-ky-offer-item {
    gap: 10px;
  }

  .dang-ky-check-icon {
    width: 16px;
    height: 16px;
    margin-top: 6px;
  }

  .dang-ky-offer-title {
    margin-bottom: 20px;
    gap: 10px;
    font-size: 16px;
  }

  .dang-ky-form-wrapper {
    border-radius: 10px;
    padding: 20px;
  }

  .bic-form-input label {
    font-size: 16px;
    gap: 10px;
  }

  .input-flex {
    border-radius: 10px;
    padding: 0.104vw 0.833vw;
    padding: 10px;
    gap: 10px;
    height: 46px;
  }

  .input-flex svg {
    width: 18px;
    height: 18px;
  }

  .form-content {
    row-gap: 20px;
  }

  .form-checkbox {
    border-radius: 10px;
    padding: 20px 10px;
  }

  .form-checkbox input {
    width: 16px;
    height: 16px;
    border-radius: 3px;
  }

  .form-actions {
    border-radius: 10px;
    padding: 2px;
    font-size: 16px;
  }

  .form-actions svg {
    left: 19%;
  }

  .dang-ky-section {
    padding: 30px 0;
  }

  .dang-ky-form-wrapper > p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .bic-footer {
    padding: 40px 0 20px;
    font-size: 16px;
  }

  .footer-left {
    grid-template-columns: 1fr;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.042vw 1.563vw;
    margin-bottom: 20px;
  }

  .title-ft h4 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.75;
  }
  .company-name {
    font-size: 16px;
  }

  .note-title {
    font-size: 16px;
  }
  .contact-links a,
  .contact-links a:first-child {
    font-size: 16px;
  }

  .contact-info h5 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .address-icon {
    width: 16px;
    height: 16px;
    margin-top: 5px;
  }

  .address {
    gap: 5px;
  }

  .contact-info {
    margin: 20px 0;
  }

  .certificate h5 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .certificate-image {
    border-radius: 10px;
    padding: 10px;
    width: 180px;
    height: auto;
  }

  .footer-right {
    margin-top: 20px;
  }

  .footer-right h5 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .commitments {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 10px;
  }

  .commitment-list {
    gap: 12px;
    padding: 0;
  }

  .commitment-list li {
    font-size: 16px;
    gap: 6px;
  }

  .commitment-list li svg {
    width: 16px;
    height: 16px;
  }

  .footer-note {
    padding-top: 16px;
    margin-bottom: 16px;
  }

  .note-desc {
    font-size: 16px;
  }

  .disclaimer {
    border-radius: 10px;
    padding: 10px;
  }

  .disclaimer p {
    font-size: 16px;
    color: #e5e7eb;
    line-height: 1.5;
  }

  .bic-footer__copyright {
    padding-top: 16px;
    font-size: 14px;
  }

  .bic-footer__copyright a {
    font-size: 14px;
  }

  .bic-footer__copyright .policy {
    display: none;
  }
}

@media (max-width: 576px) {
  .bic-scroll-top.show,
  .floating-actions {
    display: none;
  }
  section {
    overflow: hidden !important;
  }
  span.bic-header__offcanvas-toggle svg {
    stroke: #fff;
  }

  a.phone-btn {
    padding: 8px;
    border-radius: 10px;
    gap: 10px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .info-card {
    padding: 14px 15px;
    border-radius: 10px;
  }

  .info-cards {
    gap: 16px;
    margin-bottom: 20px;
  }

  .price {
    font-size: 20px;
  }

  .btn-primary {
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
  }

  .image-gallery {
    gap: 14px;
  }

  .main-image {
    border-radius: 10px !important;
    height: 250px;
  }

  .thumbnails {
    gap: 10px;
  }

  .thumbnail {
    border-radius: 10px;
    overflow: hidden;
    min-height: 80px;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
  }

  .property-card {
    border-radius: 10px;
  }

  section#chuyen-nhuong {
    padding: 30px 0;
  }

  .property-code {
    bottom: 10px;
    left: 10px;
    padding: 8px;
    border-radius: 10px;
    font-size: 14px;
  }

  .property-price .price {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .property-content {
    padding: 20px 15px;
  }

  .btn-secondary {
    padding: 8px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .property-details {
    gap: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .detail-icon {
    width: 18px;
    height: 18px;
  }

  .property-price {
    margin-bottom: 10px;
  }

  .location-icon {
    width: 20px;
    height: 20px;
    margin-top: 6px;
    display: none;
  }

  .detail-item {
    gap: 5px;
  }

  .grid-2 {
    gap: 30px;
  }

  .mat-bang-footer-button {
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
  }

  .mat-bang-table-row {
    padding: 10px 5px;
  }

  .btn-outline {
    gap: 10px;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 10px;
  }

  .lien-ke-section {
    padding: 30px 0;
  }

  .section-badge {
    letter-spacing: unset;
    font-size: 16px;
  }

  .section-header {
    max-width: unset !important;
    margin: 0 0 30px !important;
  }

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

  .project-image img {
    height: 300px;
  }

  .subsection-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .project-info ul {
    padding-left: 20px;
  }

  .project-info ul > li {
    margin-bottom: 8px;
  }

  .vi-tri-section {
    padding: 30px 0;
  }

  .vi-tri-header {
    max-width: unset;
    margin: 0 auto 30px;
  }

  .vi-tri-badge {
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
  }

  .vi-tri-title {
    font-size: 22px;
    margin: 10px 0;
  }

  .vi-tri-description {
    font-size: 15px;
  }

  .mat-bang-info-list p > strong {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .mat-bang-info-list ul {
    padding: 0 20px;
  }

  .vi-tri-grid {
    gap: 20px;
    flex-direction: column;
  }

  .mat-bang-header {
    max-width: unset;
    margin: 0 auto 30px;
  }

  .mat-bang-card-subtitle {
    font-size: 13px;
    letter-spacing: unset;
  }

  .mat-bang-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .mat-bang-card {
    border-radius: 10px;
  }

  .mat-bang-info-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .mat-bang-card-header {
    padding: 15px 10px;
  }

  .mat-bang-info-item {
    gap: 8px;
    margin-bottom: 10px;
  }

  .mat-bang-info-item span:last-child {
    font-size: 16px;
  }

  .mat-bang-table-cell {
    font-size: 14px;
  }

  .mat-bang-table-bic-container {
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #002a89;
  }

  .mat-bang-table-header {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px 5px;
    border: 2px solid #002a89;
  }

  .mat-bang-table-body {
    border: 0;
  }
  .mat-bang-card-content {
    padding: 20px 15px;
  }

  .mat-bang-info-box {
    border-radius: 10px;
    padding: 20px 10px;
    margin-bottom: 20px;
  }

  .mat-bang-button {
    gap: 20px;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .mat-bang-button-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.417vw;
  }

  .mat-bang-grid {
    gap: 30px;
  }

  button.mat-bang-footer-button {
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .mat-bang-footer {
    margin-top: 30px;
  }

  .lien-ke-header {
    max-width: unset !important;
    margin: 0 auto 30px;
  }

  .lien-ke-main-image {
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .lien-ke-image-overlay {
    padding: 12px;
  }

  .lien-ke-thumbnail {
    border-radius: 10px;
    flex: 0 0 calc(100% / 5);
  }

  .lien-ke-content-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .lien-ke-grid {
    gap: 20px;
  }

  .lien-ke-check-icon {
    width: 16px;
    height: 16px;
    margin-top: 6px;
  }

  .lien-ke-advantage-item {
    gap: 10px;
  }

  .lien-ke-info-box {
    border-radius: 10px;
    padding: 20px 15px;
  }

  .lien-ke-info-item {
    padding: 14px 0;
  }

  .lien-ke-info-label {
    flex: 0 0 43%;
  }

  .lien-ke-info-value {
    text-align: right;
  }

  .primary-button {
    gap: 20px;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
  }

  .lien-ke-advantages {
    margin-bottom: 20px;
  }

  .dang-ky-description {
    font-size: 16px;
  }

  .dang-ky-grid {
    display: block;
  }

  .dang-ky-contact-item {
    gap: 10px;
    padding: 20px 10px 10px;
    border-radius: 10px;
  }

  .dang-ky-form-bic-container {
    margin-top: 30px;
  }

  .dang-ky-contact-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .dang-ky-contact-link {
    font-size: 18px;
  }

  .dang-ky-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .dang-ky-contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .dang-ky-contact-info {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  .dang-ky-offer-box {
    border-radius: 10px;
    padding: 20px;
  }

  .dang-ky-offer-list {
    gap: 20px;
    padding: 0;
  }

  .dang-ky-offer-item {
    gap: 10px;
  }

  .dang-ky-check-icon {
    width: 16px;
    height: 16px;
    margin-top: 6px;
  }

  .dang-ky-offer-title {
    margin-bottom: 20px;
    gap: 10px;
    font-size: 16px;
  }

  .dang-ky-form-wrapper {
    border-radius: 10px;
    padding: 20px;
  }

  .bic-form-input label {
    font-size: 16px;
    gap: 10px;
  }

  .input-flex {
    border-radius: 10px;
    padding: 0.104vw 0.833vw;
    padding: 10px;
    gap: 10px;
    height: 46px;
  }

  .input-flex svg {
    width: 18px;
    height: 18px;
  }

  .form-content {
    row-gap: 20px;
  }

  .form-checkbox {
    border-radius: 10px;
    padding: 20px 10px;
  }

  .form-checkbox input {
    width: 16px;
    height: 16px;
    border-radius: 3px;
  }

  .form-actions {
    border-radius: 10px;
    padding: 2px;
    font-size: 16px;
  }

  .form-actions svg {
    left: 19%;
  }

  .dang-ky-section {
    padding: 30px 0;
  }

  .dang-ky-form-wrapper > p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .bic-footer {
    padding: 40px 0 20px;
    font-size: 16px;
  }

  .footer-left {
    grid-template-columns: 1fr;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.042vw 1.563vw;
    margin-bottom: 20px;
  }

  .title-ft h4 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.75;
  }
  .company-name {
    font-size: 16px;
  }

  .note-title {
    font-size: 16px;
  }
  .contact-links a,
  .contact-links a:first-child {
    font-size: 16px;
  }

  .contact-info h5 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .address-icon {
    width: 16px;
    height: 16px;
    margin-top: 5px;
  }

  .address {
    gap: 5px;
  }

  .contact-info {
    margin: 20px 0;
  }

  .certificate h5 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .certificate-image {
    border-radius: 10px;
    padding: 10px;
    width: 180px;
    height: auto;
  }

  .footer-right {
    margin-top: 20px;
  }

  .footer-right h5 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .commitments {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 10px;
  }

  .commitment-list {
    gap: 12px;
    padding: 0;
  }

  .commitment-list li {
    font-size: 16px;
    gap: 6px;
  }

  .commitment-list li svg {
    width: 16px;
    height: 16px;
  }

  .footer-note {
    padding-top: 16px;
    margin-bottom: 16px;
  }

  .note-desc {
    font-size: 16px;
  }

  .disclaimer {
    border-radius: 10px;
    padding: 10px;
  }

  .disclaimer p {
    font-size: 16px;
    color: #e5e7eb;
    line-height: 1.5;
  }

  .bic-footer__copyright {
    padding-top: 16px;
    font-size: 14px;
  }

  .bic-footer__copyright a {
    font-size: 14px;
  }

  .bic-footer__copyright .policy {
    display: none;
  }
}
