* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Be Vietnam Pro', Arial, Helvetica, sans-serif;
}

/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  width: 100%;
  height: 80%;
  overflow: hidden;
  background: #000;
}

.slideshow-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* Prev / Next buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slide-btn--prev {
  left: 20px;
}

.slide-btn--next {
  right: 20px;
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.dot--active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slide img {
    height: 50vw;
    min-height: 220px;
  }

  .slide-btn {
    width: 36px;
    height: 36px;
  }
}

/* ===== NÂNG TẦM THƯƠNG HIỆU ===== */
.brand-section {
  padding: 72px 24px;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f4ff 50%, #f5f0ff 100%);
}

.brand-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.brand-heading {
  text-align: center;
  margin-bottom: 56px;
}

.brand-heading h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 16px;
}

.brand-heading h2 span {
  color: #1565c0;
  font-weight: 700;
}

.brand-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.8;
}

/* Content layout */
.brand-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

/* Features columns */
.brand-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-features--left .brand-card {
  flex-direction: row;
  text-align: right;
}

.brand-features--left .brand-card__text {
  order: 1;
}

.brand-features--left .brand-card__icon {
  order: 2;
}

.brand-features--right .brand-card {
  flex-direction: row;
  text-align: left;
}

/* Card */
.brand-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.brand-card:hover {
  box-shadow: 0 6px 24px rgba(21, 101, 192, 0.13);
  transform: translateY(-2px);
}

.brand-card__text p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.brand-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-card__icon svg {
  width: 22px;
  height: 22px;
}

.brand-card__icon--blue {
  background: #e8f0fe;
  color: #1565c0;
}

.brand-card__icon--orange {
  background: #fff3e0;
  color: #e65100;
}

.brand-card__icon--teal {
  background: #e0f7fa;
  color: #00838f;
}

/* Center image */
.brand-image {
  width: 340px;
  flex-shrink: 0;
}

.brand-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(21, 101, 192, 0.15));
}

/* Responsive */
@media (max-width: 960px) {
  .brand-content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .brand-image {
    grid-column: 1 / -1;
    width: 280px;
    margin: 0 auto;
    order: -1;
  }

  .brand-features--left .brand-card {
    flex-direction: row;
    text-align: left;
  }

  .brand-features--left .brand-card__text {
    order: 2;
  }

  .brand-features--left .brand-card__icon {
    order: 1;
  }
}

@media (max-width: 600px) {
  .brand-content {
    grid-template-columns: 1fr;
  }

  .brand-image {
    width: 220px;
  }

  .brand-heading h2 {
    font-size: 1.5rem;
  }
}

/* ===== TẦM NHÌN & SỨ MỆNH ===== */
.vision-section {
  padding: 72px 24px;
  background: linear-gradient(180deg, #eaf4ff 0%, #f5f9ff 100%);
}

.vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

/* Image */
.vision-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.12);
}

/* Cards */
.vision-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  `n padding: 0 10px;
  `n
}

.vision-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.vision-card:hover {
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.13);
  transform: translateY(-2px);
}

.vision-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 12px;
}

.vision-card p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .vision-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== QUY TRÌNH THIẾT KẾ ===== */
.process-section {
  padding: 56px 24px;
  background: linear-gradient(160deg, #eaf4ff 0%, #f0f0ff 100%);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.process-label {
  padding-top: 16px;
}

.process-label__tag {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #404040;
  background: #e8f0fe;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-label h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #1565c0;
  line-height: 1.25;
  margin-bottom: 14px;
  white-space: nowrap;
}

.process-label__sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.process-label__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.15);
}

.process-label__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.process-row:hover {
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.12);
  transform: translateX(4px);
}

.process-row--shift1 {
  margin-left: 120px;
}

.process-row--shift2 {
  margin-left: 240px;
}

/* Cube */
.process-step__cube {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: rotate(-6deg);
  transition: transform 0.3s;
}

.process-row:hover .process-step__cube {
  transform: rotate(0deg) scale(1.1);
}

.process-cube--blue {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
}

.process-cube--purple {
  background: linear-gradient(135deg, #6a1b9a, #ab47bc);
}

.process-cube--red {
  background: linear-gradient(135deg, #c62828, #ef5350);
}

.process-cube--indigo {
  background: linear-gradient(135deg, #283593, #5c6bc0);
}

/* Image */
.process-step__img {
  width: 64px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Info */
.process-step__info span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1565c0;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}

.process-step__info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.process-step__info p {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .process-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-label {
    padding-top: 0;
  }

  .process-row--shift1,
  .process-row--shift2 {
    margin-left: 0;
  }
}


/* ===== ƯU ĐIỂM NỔI BẬT ===== */
.advantage-section {
  padding: 80px 24px;
  background: #fff;
}

.advantage-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.advantage-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.advantage-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1565c0;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.advantage-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 16px;
}

.advantage-content>p {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
}

/* Grid */
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.advantage-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9fbff;
  border: 1px solid #e8eef8;
  border-radius: 12px;
  padding: 16px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.advantage-card:hover {
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.1);
  transform: translateY(-2px);
}

.advantage-card--wide {
  grid-column: 1 / -1;
  max-width: calc(50% - 7px);
}

.advantage-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-card__icon svg {
  width: 22px;
  height: 22px;
}

.advantage-card span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .advantage-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .advantage-content h2 {
    font-size: 1.5rem;
  }

  .advantage-card--wide {
    max-width: 100%;
  }
}

/* ===== CTA HOTLINE ===== */
.cta-section {
  padding: 64px 24px;
  background: linear-gradient(180deg, #ddeeff 0%, #eaf4ff 100%);
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1565c0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-inner>p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
}

/* Phone links */
.cta-phones {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #e53935;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-phone svg {
  width: 22px;
  height: 22px;
  color: #e53935;
}

.cta-phone:hover {
  color: #b71c1c;
}

/* Red banner */
.cta-banner {
  background: #e53935;
  border-radius: 14px;
  padding: 24px 32px;
  color: #fff;
}

.cta-banner p {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.cta-banner p:last-child {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 0.88rem;
  opacity: 0.8;
}

.cta-banner__number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.cta-banner__number:hover {
  opacity: 0.85;
}

@media (max-width: 480px) {
  .cta-inner h2 {
    font-size: 1.3rem;
  }

  .cta-phone {
    font-size: 1.1rem;
  }

  .cta-banner__number {
    font-size: 1.3rem;
  }

  .cta-phones {
    gap: 20px;
  }
}

/* ===== STATS + GIÁ TRỊ ===== */
.stats-section {
  padding: 56px 24px;
  background: linear-gradient(180deg, #f0f7ff 0%, #e8f4ff 100%);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Stats row */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1565c0;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: #666;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: #c5d8f0;
  flex-shrink: 0;
}

.stats-divider-line {
  border: none;
  border-top: 1px solid #d0e4f7;
  margin: 0 0 40px;
}

/* Values heading */
.values-heading {
  text-align: center;
  margin-bottom: 40px;
}

.values-heading h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.values-heading h2 span {
  color: #1565c0;
  font-weight: 900;
}

.values-heading p {
  font-size: 0.93rem;
  color: #666;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  `n padding: 0 10px;
  `n
}

.value-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.value-card:hover {
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.13);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #1565c0;
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
}

.value-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 560px) {
  .stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BẢNG GIÁ DỊCH VỤ ===== */
.pricing-section {
  padding: 72px 24px;
  background: #f8fbff;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-heading {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-heading__tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1565c0;
  background: #e8f0fe;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-heading h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pricing-heading h2 span {
  color: #1565c0;
}

.pricing-heading p {
  font-size: 0.95rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

/* Card */
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 2px solid #e8eef8;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 12px 36px rgba(21, 101, 192, 0.12);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: linear-gradient(145deg, #1565c0 0%, #1976d2 100%);
  border-color: transparent;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(21, 101, 192, 0.3);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card__head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.pricing-card--featured .pricing-card__head h3 {
  color: #fff;
}

.pricing-card__head p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-card--featured .pricing-card__head p {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card__price {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8eef8;
}

.pricing-card--featured .pricing-card__price {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card__amount {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #1565c0;
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount {
  color: #fff;
}

.pricing-card__unit {
  font-size: 0.82rem;
  color: #999;
}

.pricing-card--featured .pricing-card__unit {
  color: rgba(255, 255, 255, 0.7);
}

/* Features */
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card__features svg {
  width: 18px;
  height: 18px;
  color: #1565c0;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card--featured .pricing-card__features svg {
  color: #90caf9;
}

/* Button */
.pricing-card__btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  background: #e8f0fe;
  color: #1565c0;
  transition: background 0.2s, transform 0.15s;
}

.pricing-card__btn:hover {
  background: #1565c0;
  color: #fff;
  transform: translateY(-1px);
}

.pricing-card--featured .pricing-card__btn {
  background: #fff;
  color: #1565c0;
}

.pricing-card--featured .pricing-card__btn:hover {
  background: #e8f0fe;
}

/* Admin extras */
.admin-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: #e8f0fe;
  color: #1565c0;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

.admin-badge--gold {
  background: #fff8e1;
  color: #f59e0b;
}

.admin-price {
  color: #1565c0;
  font-size: 1rem;
}

.admin-table__sub {
  font-size: 0.78rem;
  color: #999;
  margin-top: 2px;
}

.admin-form__textarea {
  resize: vertical;
  min-height: 160px;
  font-family: inherit;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ===== BLOG NỔI BẬT TRANG CHỦ ===== */
.home-blog {
  padding: 72px 24px;
  background: #f8fbff;
}

.home-blog__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.home-blog__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.home-blog__tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1565c0;
  background: #e8f0fe;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-blog__heading h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}

.home-blog__heading h2 span {
  color: #1565c0;
}

.home-blog__more {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1565c0;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid #1565c0;
  transition: opacity 0.15s;
}

.home-blog__more:hover {
  opacity: 0.75;
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .home-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .home-blog__grid {
    grid-template-columns: 1fr;
  }

  .home-blog__heading h2 {
    font-size: 1.5rem;
  }
}

/* ===== ANIMATIONS ===== */

/* Fade + slide up */
.anim-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.anim-fade.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide up for headings */
.anim-slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-slide-up.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bounce for process cubes */
.process-step__cube.anim-bounce {
  animation: cubeBounce 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes cubeBounce {
  0% {
    transform: rotate(-6deg) scale(0.5);
    opacity: 0;
  }

  60% {
    transform: rotate(-6deg) scale(1.15);
    opacity: 1;
  }

  80% {
    transform: rotate(-6deg) scale(0.95);
  }

  100% {
    transform: rotate(-6deg) scale(1);
    opacity: 1;
  }
}

/* Stat numbers — pulse khi counter xong */
.stat-number,
.kh-stat__num,
.about-stat__num {
  display: inline-block;
  transition: transform 0.2s;
}

/* Smooth hover lift cho cards */
.brand-card,
.vision-card,
.value-card,
.advantage-card,
.pricing-card,
.blog-card,
.kh-testi-card,
.kh-project-card,
.about-value-card {
  will-change: transform;
}

/* Slideshow fade-in */
.slideshow {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slideshow.anim-visible {
  opacity: 1;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {

  .anim-fade,
  .anim-slide-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .process-step__cube.anim-bounce {
    animation: none !important;
  }

  .slideshow {
    opacity: 1 !important;
  }
}

/* ===== DOMAIN CHECK ===== */
.domain-check {
  background: linear-gradient(135deg, #ddeeff 0%, #f0e8ff 100%);
  padding: 0;
  overflow: hidden;
}

.domain-check__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.domain-check__text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1565c0;
  margin-bottom: 8px;
  line-height: 1.2;
}

.domain-check__text>p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
}

/* Input form */
.domain-check__form {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.15);
  margin-bottom: 20px;
}

.domain-check__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.domain-check__input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.97rem;
  font-family: inherit;
  color: #333;
  padding: 16px 0;
  background: transparent;
}

.domain-check__input-wrap input::placeholder {
  color: #bbb;
}

.domain-check__mic {
  color: #bbb;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.domain-check__mic svg {
  width: 20px;
  height: 20px;
}

.domain-check__btn {
  padding: 0 28px;
  background: #1565c0;
  color: #fff;
  border: none;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.domain-check__btn:hover {
  background: #0d47a1;
}

.domain-check__btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* TLD prices */
.domain-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.domain-tld {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1565c0;
}

.domain-tld span {
  font-weight: 400;
  color: #e53935;
}

/* Image */
.domain-check__img img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 8px 24px rgba(21, 101, 192, 0.12));
}

/* Result */
.domain-result {
  background: #fff;
  border-top: 1px solid #e8eef8;
  padding: 20px 24px;
}

.domain-result__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dr-available,
.dr-taken,
.dr-error {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  flex-wrap: wrap;
}

.dr-available {
  background: #e8f5e9;
  color: #2e7d32;
}

.dr-available svg {
  flex-shrink: 0;
  color: #2e7d32;
}

.dr-taken {
  background: #fff3e0;
  color: #e65100;
}

.dr-taken svg {
  flex-shrink: 0;
  color: #e65100;
}

.dr-error {
  background: #ffebee;
  color: #c62828;
  font-weight: 600;
}

.dr-available>div,
.dr-taken>div {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
}

.dr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.85;
}

.dr-btn {
  display: inline-flex;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.dr-btn:hover {
  opacity: 0.85;
}

.dr-btn--green {
  background: #2e7d32;
  color: #fff;
}

.dr-btn--blue {
  background: #1565c0;
  color: #fff;
}

@media (max-width: 768px) {
  .domain-check__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .domain-check__img {
    display: none;
  }

  .domain-check__text h2 {
    font-size: 1.6rem;
  }

  .domain-check__btn {
    padding: 0 18px;
    font-size: 0.88rem;
  }
}

/* Domain suggestions */
.dr-suggestions {
  margin-top: 10px;
}

.dr-suggestions p {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
  font-weight: 600;
}

.dr-suggest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dr-suggest-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  padding: 6px 12px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dr-suggest-item:hover {
  border-color: #1565c0;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.12);
}

.dr-suggest-tld {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1565c0;
}

.dr-suggest-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e53935;
}

/* ============================================
   DECORATIVE BACKGROUNDS
   ============================================ */

/* ---- Stats section: floating numbers ---- */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '100%';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(21, 101, 192, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ---- Brand section: watermark ---- */
.brand-section {
  position: relative;
  overflow: hidden;
}

.brand-section::before {
  content: 'DEVORA';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(21, 101, 192, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.2em;
}

/* ---- Vision section: dot pattern ---- */
.vision-section {
  position: relative;
  overflow: hidden;
}

.vision-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(circle, rgba(21, 101, 192, 0.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* ---- Process section: diagonal lines ---- */
.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 40px,
      rgba(21, 101, 192, 0.025) 40px,
      rgba(21, 101, 192, 0.025) 41px);
  pointer-events: none;
}

/* ---- Advantage section: circle blur ---- */
.advantage-section {
  position: relative;
  overflow: hidden;
}

.advantage-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Pricing section: grid pattern ---- */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 101, 192, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 101, 192, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ---- CTA hotline: wave shape ---- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.06);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.04);
  pointer-events: none;
}

/* ---- Home blog: subtle wave ---- */
.home-blog {
  position: relative;
  overflow: hidden;
}

.home-blog::before {
  content: 'BLOG';
  position: absolute;
  right: -20px;
  bottom: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(21, 101, 192, 0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.15em;
}

/* ---- Values section: floating icons ---- */
.about-values,
.stats-section .values-heading {
  position: relative;
}

/* ---- Domain check: decorative blobs ---- */
.domain-check {
  position: relative;
}

.domain-check::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.domain-check::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 50, 200, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Floating badge decorations on stats numbers ---- */
.stat-number {
  position: relative;
  display: inline-block;
}

/* ---- Section divider wave ---- */
.section-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.section-wave svg {
  display: block;
  width: 100%;
}

/* ===== SITE POPUP ===== */
.site-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.site-popup-overlay.is-open {
  display: flex;
  animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.site-popup-box {
  background: #fff;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  animation: popupSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupSlideUp {
  from {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.site-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.15s;
}

.site-popup-close:hover {
  background: rgba(0, 0, 0, 0.35);
}

.site-popup-img img {
  width: 100%;
  display: block;
  max-height: 320px;
  object-fit: cover;
}

.site-popup-body {
  padding: 24px 28px 28px;
  text-align: center;
}

.site-popup-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.site-popup-body p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.site-popup-btn {
  display: inline-flex;
  padding: 12px 28px;
  background: #1565c0;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.site-popup-btn:hover {
  background: #0d47a1;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .site-popup-box {
    border-radius: 12px;
  }

  .site-popup-body {
    padding: 18px 20px 22px;
  }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  width: 100%;
  margin: 18px 0 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}

.marquee-track span {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #F6B22B;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== GLOBAL MOBILE PADDING ===== */
@media (max-width: 768px) {

  .marquee-wrap,
  .promo-banners {
    margin-left: 12px;
    margin-right: 12px;
  }

  .marquee-track span {
    font-size: 16px;
  }

  /* Banner 2: hiện đủ ảnh, không cắt */
  .promo-banner {
    height: auto;
    object-fit: contain;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  max-width: 1600px;
  margin: 40px auto 0;
  padding: 0 90px;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ===== ABOUT IMG GRID ===== */
.about-img {
  flex-shrink: 0;
  width: 590px;
  position: relative;
}

.about-img-grid {
  position: relative;
  width: 100%;
  height: 650px;
}

/* Ảnh lớn: trái-dưới */
.about-img-grid__large {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 68%;
  height: 80%;
  z-index: 1;
  box-shadow: 4px 6px 20px rgba(0,0,0,.2);
  overflow: hidden;
  border: 4px solid #fcd333;

  -webkit-mask:
    radial-gradient(circle 30px at top left,     #0000 98%, #000 100%),
    radial-gradient(circle 30px at top right,    #0000 98%, #000 100%),
    radial-gradient(circle 30px at bottom left,  #0000 98%, #000 100%),
    radial-gradient(circle 30px at bottom right, #0000 98%, #000 100%),
    linear-gradient(#000, #000);
  -webkit-mask-composite: destination-out, destination-out, destination-out, destination-out, destination-over;
  mask-image:
    radial-gradient(circle 30px at top left,     #0000 98%, #000 100%),
    radial-gradient(circle 30px at top right,    #0000 98%, #000 100%),
    radial-gradient(circle 30px at bottom left,  #0000 98%, #000 100%),
    radial-gradient(circle 30px at bottom right, #0000 98%, #000 100%),
    linear-gradient(#000, #000);
  mask-composite: exclude, exclude, exclude, exclude, add;
}

.about-img-grid__large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.about-img-grid__large:hover img {
  transform: scale(1.06);
}

/* 2 ảnh nhỏ: cột phải, đè lên ảnh lớn */
.about-img-grid__small {
  position: absolute;
  right: -40px;
  top: 0;
  width: 52%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.about-img-grid__small .img-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 4px 6px 20px rgba(0,0,0,.2);
  border: 4px solid #fcd333;
}

.about-img-grid__small .img-wrap:nth-child(2) {
  transform: translateY(20px);
}

.about-img-grid__small img {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}

.about-img-grid__small .img-wrap:hover img {
  transform: scale(1.06);
}

/* ===== ABOUT CONTENT ===== */
.about-content {
  flex: 1;
  margin-left: 50px;
}

/* ===== SKEW TAG (thay title1.png) ===== */
.skew-tag {
  position: relative;
  width: 150px;
  height: 46px;
  margin-bottom: 16px;
}

.skew-tag__red,
.skew-tag__yellow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  transform: skewX(-20deg);
}

.skew-tag__red {
  background: #d61f2c;
  transform: skewX(-20deg) translate(6px, 6px);
  z-index: 1;
}

.skew-tag__yellow {
  background: #F6B22B;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Roboto Slab', serif;
  text-transform: uppercase;
}

.about-tag {
  display: inline-block;
  background: url('/images/title1.png') no-repeat center/100% 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 10px 36px;
  min-width: 200px;
  height: 52px;
  line-height: 32px;
  margin-bottom: 13px;
  font-family: 'Roboto Slab', serif;
  text-align: center;
}

@font-face {
  font-family: 'MTD AlFresco';
  src: url('/fonts/MTDAlFresco.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.about-title-script {
  font-family: 'MTD AlFresco', 'Dancing Script', cursive;
  font-size: 62px;
  font-weight: 700;
  color: #F6B22B;
  margin: 0 0 16px;
  line-height: 1.2;
}

.about-desc {
  font-size: 15px;
  color: #000000d1;
  line-height: 1.9;
  margin: 0 0 24px;
  font-style: italic;
}

.about-btn {
  --btn-main: #F6B22B;
  --btn-dark: #d4961f;
  --btn-glow: #F6B22B63;

  cursor: pointer;
  width: 140px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: 0.875em;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: var(--btn-main);
  border: 2px solid var(--btn-dark);
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
  box-shadow: 0 8px 0 var(--btn-dark);
  transform: skew(-10deg);
  transition: all .1s ease;
  filter: drop-shadow(0 15px 20px var(--btn-glow));
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
}

.about-btn:active {
  letter-spacing: 0px;
  transform: skew(-10deg) translateY(8px);
  box-shadow: 0 0 0 var(--btn-dark);
}

.about-btn:hover {
  opacity: .9;
}

@media (max-width: 768px) {
  .about-section {
    padding: 0 22px;
    margin: 24px auto 0;
    overflow-x: hidden;
  }

  .about-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }

  .about-img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-shrink: 1;
  }

  .about-img-grid {
    height: 348px;
    max-width: 100%;
    overflow: hidden;
  }

  .about-img-grid__large {
    width: 58%;
    height: 86%;
    border-width: 2px;
  }

  /* Cột phải: đặt từ trái để đè lên ảnh lớn (36% + 58% = 94% < 100%) */
  .about-img-grid__small {
    right: auto;
    left: 36%;
    width: 58%;
    /* gap 10 + ~20px offset thay cho translateY (tránh cắt do overflow) */
    gap: 30px;
  }

  .about-img-grid__small .img-wrap {
    border-width: 2px;
  }

  .about-img-grid__small .img-wrap:nth-child(2) {
    transform: none;
  }

  .about-content {
    margin-left: 0;
    width: 100%;
    padding-bottom: 16px;
    overflow: visible;
    max-width: 100%;
    min-width: 0;
  }

  .about-title-script {
    font-size: 36px;
  }
}

/* ===== ABOUT SECTION ANIMATIONS ===== */
.about-anim {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--anim-delay, 0s);
}

.about-anim--left {
  transform: translateX(-60px);
}

.about-anim--up {
  transform: translateY(36px);
}

.about-anim.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Shimmer trên ảnh lớn khi vào viewport */
.about-img-grid__large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(246,178,43,0.18) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -100% 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  transition: none;
}

.about-anim.is-visible .about-img-grid__large::after,
.about-section .about-img.is-visible ~ * .about-img-grid__large::after {
  animation: aboutShimmer 1.2s ease 0.5s forwards;
}

/* Trigger shimmer sớm hơn — dùng class riêng */
.about-img-grid__large.shimmer-run::after {
  animation: aboutShimmer 1.2s ease forwards;
}

@keyframes aboutShimmer {
  0%   { background-position: -100% 0; opacity: 1; }
  100% { background-position: 200% 0;  opacity: 0; }
}

/* Đường kẻ trang trí chạy dưới about-tag */
.about-tag::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #F6B22B;
  margin-top: 6px;
  border-radius: 2px;
  transition: width 0.6s ease 0.3s;
}

.about-tag.is-visible::after {
  width: 100%;
}

/* Counter số nếu có */
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.why-section {
  width: 100%;
  margin: 40px 0 0;
  background: url('/images/background-item1.png') center/100% 100% no-repeat;
  padding: 80px 60px 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-sub {
  margin: 0 0 0px;
}

.why-sub-svg {
  width: 320px;
  height: 50px;
  display: block;
  margin: 0 auto;
}

.why-sub-svg text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  fill: #c4253a;
  opacity: .9;
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
}

.why-title {
  font-family: 'MTD AlFresco', 'Dancing Script', cursive;
  font-size: 68px;
  color: #c4253a;
  margin: -40px 0 6px;
  line-height: 1.2;
}

.why-phone {
  margin: 4px 0 0;
}

.why-phone a {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  color: #c4253a;
  text-decoration: none;
  letter-spacing: 3px;
  font-family: 'Roboto Slab', serif;
  padding: 4px 20px;
  border-radius: 30px;
  border: 2px solid rgba(196, 37, 58, .4);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.why-phone a:hover {
  background: #c4253a;
  color: #fff;
  border-color: #c4253a;
  transform: scale(1.04);
  text-decoration: none;
}

.why-items {
  display: flex;
  justify-content: center;
  gap: 180px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.why-item:nth-child(1),
.why-item:nth-child(4) {
  transform: translateY(-50px);
}

.why-item:nth-child(2),
.why-item:nth-child(3) {
  transform: translateY(0px);
}

.why-item__icon {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-item p {
  color: #c4253a;
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  margin-top: -25px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px rgba(255,255,255,.6);
}

@media (max-width: 768px) {
  .why-section {
    padding: 40px 20px 50px;
  }

  /* why-sub cách why-title 10px */
  .why-sub {
    margin-top: 15px;
    margin-bottom: 0;
  }

  .why-title {
    font-size: 38px;
    margin:-20px 0 6px;
  }

  .why-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    justify-items: center;
    max-width: 100%;
  }

  /* Hàng 1 (ô 1–2): lệch trái; hàng 2 (ô 3–4): lệch phải; lặp lại nếu > 4 ô */
  .why-item:nth-child(4n + 1),
  .why-item:nth-child(4n + 2) {
    transform: translateX(-14px);
  }

  .why-item:nth-child(4n + 3),
  .why-item:nth-child(4n + 4) {
    transform: translateX(14px);
  }

  .why-item__icon {
    width: 60px;
    height: 60px;
  }
}

/* ===== SPECIALS SECTION ===== */
.specials-section {
  width: 100%;
  margin: -50px 0 0;
  background: url('/images/background-item2.png') center/100% 100% no-repeat;
  position: relative;
  z-index: 0;
}

.specials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.specials-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 100%;
}

.specials-title__main {
  font-family: 'Roboto Slab', serif;
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

.specials-title__sub {
  margin: 0 0 0;
  padding-top: 10px;
}

.specials-title__svg {
  width: 320px;
  height: 60px;
  display: block;
  margin: 0 auto;
}

.specials-title__svg text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  fill: #fff;
  opacity: .9;
  font-family: 'Roboto Slab', serif;
}

.specials-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 12px auto 0;
}

.specials-swiper {
  width: 100%;
  padding-bottom: 48px !important;
}

.specials-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.specials-swiper .swiper-slide .special-card {
  height: 100%;
}

/* Fallback layout when Swiper is not initialized */
.specials-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.specials-swiper:not(.swiper-initialized) .swiper-slide {
  width: 100%;
}

.specials-swiper:not(.swiper-initialized) .specials-pagination,
.specials-swiper:not(.swiper-initialized) .specials-prev,
.specials-swiper:not(.swiper-initialized) .specials-next {
  display: none;
}

.specials-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: .5;
}

.specials-swiper .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.specials-swiper .swiper-button-prev,
.specials-swiper .swiper-button-next {
  color: #fff;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
  top: 40%;
}

.specials-swiper .swiper-button-prev::after,
.specials-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 900;
}

.special-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-card__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F6B22B;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.special-card__img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.special-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}

.special-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.special-card:hover .special-card__img img {
  transform: scale(1.08);
}

.special-card__info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 80%;
}

.special-card__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 4px;
  font-family: 'Roboto Slab', serif;
}

.special-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #F6B22B;
  margin: 0;
  line-height: 1.3;
  font-family: 'Roboto Slab', serif;
}

.special-card__price-wrap {
  display: none;
}

.specials-more {
  text-align: center;
  margin-top: 28px;
}

.specials-more-btn {
  display: inline-block;
  background: #F6B22B;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 36px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
  clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  transition: background .25s, transform .2s, color .25s;
  position: relative;
}

.specials-more-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
  opacity: 0;
  transition: opacity .25s;
  z-index: 0;
}

.specials-more-btn span {
  position: relative;
  z-index: 1;
}

.specials-more-btn:hover {
  color: #F6B22B;
  transform: scale(1.05);
}

.specials-more-btn:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .specials-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    background: url('/images/background-item2.png') center/cover no-repeat;
  }

  .specials-title__sub {
    padding-top: 40px;
  }

  .specials-inner {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 16px 60px;
    box-sizing: border-box;
  }

  .specials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 12px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    justify-items: stretch;
    align-items: stretch;
  }

  .specials-grid .special-card {
    max-width: none;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .specials-title__main {
    font-size: 25px;
  }

  .specials-swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .specials-swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}



/* ===== MARQUEE VIDEO CLIP ===== */
.section-marquee-box1 {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin: 50px 0 0;
}

.section-marquee-box1 span {
  white-space: nowrap;
  font-size: 37px;
  flex-shrink: 0;
  padding: 0 20px;
  width: max-content;
  display: flex;
  align-items: center;
  transform: translateX(0);
  animation: text-scroll 30s linear infinite;
  font-family: 'CHISON1', serif;
  color: #F6B22B;
  text-shadow: 2px 2px 0px #FAE7C3, -2px 2px 0px #FAE7C3, 2px -2px 0px #FAE7C3, -2px -2px 0px #FAE7C3, 4px 4px 0px #FAAD19, 4px 6px 4px rgba(0, 0, 0, 0.35);
  line-height: normal;
}

@keyframes text-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 16px;
}

.video-frame-outer {
  position: relative;
  padding: 14px;
  background: linear-gradient(135deg, #F6B22B 0%, #8a1525 40%, #F6B22B 100%);
  border-radius: 12px;
}

/* Viền vàng chấm bi bên trong */
.video-frame-outer::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 2px dashed rgba(250, 173, 25, 0.6);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.video-frame-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  z-index: 2;
}

.video-frame-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Decor góc */
.vf-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #FAAD19;
  border-style: solid;
  z-index: 3;
}

.vf-corner--tl {
  top: -4px;
  left: -4px;
  border-width: 4px 0 0 4px;
  border-radius: 6px 0 0 0;
}

.vf-corner--tr {
  top: -4px;
  right: -4px;
  border-width: 4px 4px 0 0;
  border-radius: 0 6px 0 0;
}

.vf-corner--bl {
  bottom: -4px;
  left: -4px;
  border-width: 0 0 4px 4px;
  border-radius: 0 0 0 6px;
}

.vf-corner--br {
  bottom: -4px;
  right: -4px;
  border-width: 0 4px 4px 0;
  border-radius: 0 0 6px 0;
}

@media (max-width: 768px) {
  .video-section {
    padding: 0 12px;
  }
}

/* ===== ALBUM SECTION ===== */
.album-section {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.album-decor-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
}

/* Responsive - ẩn decor3.png trên mobile */
@media (max-width: 768px) {
  .album-decor-right {
    display: none;
  }
}

.wrap-album {
  margin: 0 auto;
  position: relative;
  background:
    url('/images/bgkg1.png') no-repeat top left,
    url('/images/itembgkg2.png') no-repeat top right;
  mix-blend-mode: multiply;
}

.wrap-content {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: auto;
  position: relative;
  padding-top: 20px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
}

.p-relative { position: relative; }

/* Khu vực chứa ảnh + title bên phải */
.album-body {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 540px;
}

/* Title chung */
.title-main {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}

.feedback-title.title-main span {
  font-size: 30px !important;
}

.title-main span,
.title-main h2,
.title-main h1 {
  display: block;
  color: #274A72;
  font-size: 90px;
  font-family: 'SG85-HIENKHANH1', serif;
  font-style: italic;
  text-shadow: 2px 2px 0px #FAE7C3, -2px 2px 0px #FAE7C3, 2px -2px 0px #FAE7C3, -2px -2px 0px #FAE7C3, 3px 4px 4px rgba(0,0,0,0.35);
}

.title-main p {
  color: #F6B22B;
  font-size: 82px;
  font-family: 'CHISON1', serif;
  margin-top: -20px;
  margin-bottom: 0;
  text-shadow: 2px 2px 0px #FAE7C3, -2px 2px 0px #FAE7C3, 2px -2px 0px #FAE7C3, -2px -2px 0px #FAE7C3, 4px 4px 0px #FAAD19, 4px 6px 4px rgba(0,0,0,0.35);
}

/* Title góc phải trên — nằm ngoài list-album */
.title-album {
  width: 36%;
  flex-shrink: 0;
  text-align: center;
  padding-left: 24px;
  padding-top: 20px;
  position: static;
}

/* Title góc trái dưới */
.title-album.title1 {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 50%;
  text-align: center;
  padding-left: 0;
  padding-top: 0;
}

/* Grid ảnh chồng chéo */
.list-album {
  position: relative;
  width: 62%;           /* nhường 38% bên phải cho title */
  height: 540px;
}

.itemA {
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  position: absolute;
  box-shadow: 4px 6px 20px rgba(0,0,0,.3);
  aspect-ratio: 1 / 1;
}

/* Ảnh 1: trái trên — viền kem polaroid */
.itemA:nth-child(1) {
  width: 48%;
  top: 0;
  left: 0;
  background: #FAE7C3;
  padding: 8px 8px 28px;
  border-radius: 2px;
  box-shadow: 3px 3px 12px rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.06);
  z-index: 1;
}

/* Ảnh 2: giữa đè lên — không viền */
.itemA:nth-child(2) {
  width: 50%;
  top: 40px;
  left: 28%;
  z-index: 3;
  border: 3px solid #F6B22B;
  transform: rotate(1.5deg);
}

/* Ảnh 3: trái dưới — viền kem polaroid */
.itemA:nth-child(3) {
  width: 46%;
  bottom: 0;
  left: 4%;
  background: #FAE7C3;
  padding: 8px 8px 28px;
  border-radius: 2px;
  box-shadow: 3px 3px 12px rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.06);
  z-index: 2;
  transform: rotate(-2deg);
}

/* Ảnh 4: phải dưới — không viền */
.itemA:nth-child(4) {
  width: 46%;
  bottom: 10px;
  right: -8%;
  z-index: 2;
  border: 3px solid #FAAD19;
  transform: rotate(1deg);
}

.itemA img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  border-radius: 2px;
}

.scale-img:hover img { transform: scale(1.05); }
.w-100 { width: 100%; }

/* Nút xem album */
.text-center { text-align: center; }
.mt-3 { margin-top: 16px; }

.view-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 30px 0 20px;
  color: #fff;
  width: 160px;
  height: 42px;
  background: #F6B22B;
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
  transition: opacity .2s, transform .15s;
  position: relative;
}
.view-about:hover { opacity: .85; transform: scale(1.04); }

/* Responsive */
@media (max-width: 768px) {
  .title-album,
  .title-album.title1 {
    position: static;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
  .wrap-content { padding-top: 20px; padding-bottom: 40px; }
  .title-main p { font-size: 40px; }
  .title-main span { font-size: 28px; }
  /* Album: ghi đè inline style trên mobile */
  .title-album.title-main span {
    font-size: 30px !important;
  }
  .title-album.title-main p {
    font-size: 35px !important;
  }

  .news-title.title-main span {
    font-size: 30px !important;
  }
  .news-title.title-main p {
    font-size: 35px !important;
  }

  .feedback-title.title-main span {
    font-size: 30px !important;
  }
  .feedback-title.title-main p {
    font-size: 35px !important;
  }

  .itemA:nth-child(1),
  .itemA:nth-child(2),
  .itemA:nth-child(3) {
    width: calc(50% - 4px);
  }
  .itemA:nth-child(4) { width: 100%; }

  /* Mobile: chữ "Album / Không gian" + banner trước, lưới ảnh bên dưới */
  .album-body {
    flex-direction: column;
  }
  .album-body > .title-album.title-main {
    order: 1;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 8px;
  }
  .album-body > .list-album {
    order: 2;
    margin-top: 8px;
  }
  .album-banner4 {
    display: none !important;
  }
  .list-album {
    position: static;
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .itemA {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    transform: none !important;
  }
  .title-album,
  .title-album.title1 {
    position: static;
    width: 100%;
    text-align: center;
    padding: 16px 0 0;
  }
}

/* ===== NEWS SECTION ===== */
.news-section {
  width: 100%;
  max-width: 100%;
  margin: 60px 0 0;
  padding: 40px 0;
  background: url('/images/newbackground.png') center center / cover no-repeat;
}

.news-section .news-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.news-title {
  margin-bottom: 36px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

/* Ảnh có viền răng cưa stamp */
.news-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card__img::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 16px;
  background:
    radial-gradient(circle at 8px -4px, transparent 8px, #F6B22B 8px) left / 16px 16px repeat-x;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.news-card:hover .news-card__img img { transform: scale(1.05); }

.news-card__body {
  background: #F6B22B;
  padding: 16px 18px 20px;
  flex: 1;
}

.news-card__meta {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin: 0 0 8px;
}

.news-card__title {
  font-family: 'Roboto Slab', serif;
  font-size: 15px;
  font-weight: 700;
  color: #b01e31;
  margin: 0 0 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .news-grid { 
    grid-template-columns: 1fr; 
    gap: 16px; 
  }
  
  .news-card {
    flex-direction: row;
    align-items: stretch;
  }
  
  .news-card__img {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
  }
  
  .news-card__img::after {
    display: none;
  }
  
  .news-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
  }
  
  .news-card__title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  
  .news-card__desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  
  .news-section { margin-top: 40px; }
}

/* ===== VIDEO PLAY BUTTON ===== */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
  animation: play-pulse 2.5s ease-in-out infinite;
}

.video-play-btn svg { width: 100%; height: 100%; }

@keyframes play-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.1); }
}

.album-banner4 {
  display: block;
  width: calc(100% + 50px);
  height: auto;
  margin-top: 46px;
  border-radius: 8px;
  transform: rotate(-27deg);
  transform-origin: center center;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F6B22B;
  border: 2px solid #FAAD19;
  color: #FAAD19;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(176,30,49,.4);
  z-index: 9990;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #FAAD19;
  color: #F6B22B;
}

.back-to-top svg { width: 22px; height: 22px; }

/* ===== FLOATING SOCIAL BUTTONS ===== */
.float-social-btns {
  position: fixed;
  right: 16px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
}

.float-social-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  overflow: visible;
}

.float-social-btn:hover {
  transform: scale(1.15) translateX(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

.float-social-btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 50%;
}

.float-social-btn svg { width: 22px; height: 22px; fill: #fff; }

/* Label hiện khi hover */
.float-social-btn__label {
  position: absolute;
  right: 56px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.float-social-btn:hover .float-social-btn__label { opacity: 1; }

/* Pulse animation cho tất cả nút, stagger delay */
.float-social-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: social-pulse 2.5s ease-out infinite;
  z-index: -1;
}

.float-social-btn:nth-child(2)::after { animation-delay: 0.4s; }
.float-social-btn:nth-child(3)::after { animation-delay: 0.8s; }
.float-social-btn:nth-child(4)::after { animation-delay: 1.2s; }
.float-social-btn:nth-child(5)::after { animation-delay: 1.6s; }

@keyframes social-pulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ===== FLOATING SOCIAL — RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
  .float-social-btns {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    height: 64px;           /* chiều cao thanh */
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;  /* căn icon từ dưới lên */
    gap: 0;
    background: #b01e31;
    padding: 0 8px 8px;
    box-shadow: 0 -2px 12px rgba(0,0,0,.18);
    border-radius: 0;
    z-index: 9999;
    box-sizing: border-box;
    overflow: visible;      /* cho phép icon tràn lên trên */
  }

  /* Mỗi nút là cột: icon + label */
  .float-social-btn,
  .float-social-btn:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: 100%;
    margin-top: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    flex: 1;
    background: transparent !important;
    padding: 0;
    gap: 2px;
  }

  /* Icon — nửa trên nổi ra khỏi thanh */
  .float-social-btn img,
  .float-social-btn svg,
  .float-social-btn:first-child img,
  .float-social-btn:first-child svg {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: -22px;      /* nổi lên 1 nửa (44/2 = 22px) */
    flex-shrink: 0;
  }

  /* Label bên dưới icon, trong thanh */
  .float-social-btn__label {
    position: static;
    background: transparent;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 0;
    border-radius: 0;
    opacity: 1;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
    line-height: 1;
  }

  .float-social-btn:hover .float-social-btn__label { opacity: 1; }
  .float-social-btn:hover { transform: none; }
  .float-social-btn::after { display: none; }

  /* Đẩy nội dung lên để không bị che */
  body { padding-bottom: 64px; }
}

/* ===== FEEDBACK SECTION ===== */
.feedback-section {
  width: 100%;
  margin: 60px 0 0;
  padding: 80px 40px;
  background: #f9b121;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0% 4%, 2% 0%, 4% 3%, 6% 0%, 8% 4%, 10% 1%, 12% 4%, 14% 0%, 16% 3%,
    18% 0%, 20% 4%, 22% 1%, 24% 3%, 26% 0%, 28% 4%, 30% 1%, 32% 3%,
    34% 0%, 36% 4%, 38% 1%, 40% 3%, 42% 0%, 44% 4%, 46% 1%, 48% 3%,
    50% 0%, 52% 4%, 54% 1%, 56% 3%, 58% 0%, 60% 4%, 62% 1%, 64% 3%,
    66% 0%, 68% 4%, 70% 1%, 72% 3%, 74% 0%, 76% 4%, 78% 1%, 80% 3%,
    82% 0%, 84% 4%, 86% 1%, 88% 3%, 90% 0%, 92% 4%, 94% 1%, 96% 3%, 98% 0%, 100% 4%,
    100% 96%, 98% 100%, 96% 97%, 94% 100%, 92% 96%, 90% 100%, 88% 97%,
    86% 100%, 84% 96%, 82% 100%, 80% 97%, 78% 100%, 76% 96%, 74% 100%,
    72% 97%, 70% 100%, 68% 96%, 66% 100%, 64% 97%, 62% 100%, 60% 96%,
    58% 100%, 56% 97%, 54% 100%, 52% 96%, 50% 100%, 48% 97%, 46% 100%,
    44% 96%, 42% 100%, 40% 97%, 38% 100%, 36% 96%, 34% 100%, 32% 97%,
    30% 100%, 28% 96%, 26% 100%, 24% 97%, 22% 100%, 20% 96%, 18% 100%,
    16% 97%, 14% 100%, 12% 96%, 10% 100%, 8% 97%, 6% 100%, 4% 96%, 2% 100%, 0% 96%
  );
}

/* Decor góc */
.fb-decor {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}
.fb-decor--tl { top: 20px; left: 20px; }
.fb-decor--tr { top: 20px; right: 20px; }
.fb-decor--bl { bottom: 20px; left: 20px; }
.fb-decor--br { bottom: 20px; right: 20px; }

/* Chấm nền */
.fb-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(176,30,49,.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.fb-dots::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 350px;
  height: 350px;
  background-image: url('/images/decor5.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
}

.fb-dots::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  width: 350px;
  height: 350px;
  background-image: url('/images/decor4.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
}

/* Responsive - ẩn decor4.png và decor5.png trên mobile */
@media (max-width: 768px) {
  .fb-dots::before,
  .fb-dots::after {
    display: none;
  }
}

.feedback-inner { position: relative; z-index: 1; }

.feedback-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.feedback-header {
  text-align: center;
  margin-bottom: 40px;
}

.feedback-header__sub { margin: 0 0 4px; }

.feedback-header__title {
  font-family: 'MTD AlFresco', 'Dancing Script', cursive;
  font-size: 75px;
  color: #b01e31;
  margin: 0 0 8px;
  line-height: 1.1;
}

.feedback-header__desc {
  font-size: 14px;
  color: rgba(176,30,49,.7);
  font-style: italic;
  margin: 0;
  font-family: 'Lora', serif;
}

.feedback-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Swiper feedback */
.feedback-swiper {
  width: 100%;
  padding: 20px 0 10px;
}

.feedback-swiper .swiper-slide {
  transition: transform .4s, opacity .4s;
  opacity: .6;
  transform: scale(0.88);
}

.feedback-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.fb-card {
  background: rgba(255,255,255,.8);
  border-radius: 12px;
  padding: 28px 24px 20px;
  box-shadow: 0 4px 20px rgba(176,30,49,.1);
  border: 1px solid rgba(176,30,49,.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fb-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  line-height: 0.6;
  color: #b01e31;
  opacity: .2;
  position: absolute;
  top: 16px;
  left: 18px;
  pointer-events: none;
}

.fb-card__stars {
  color: #f9b121;
  font-size: 18px;
  letter-spacing: 1px;
}

.fb-card__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fb-card__text {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
  padding-top: 20px;
}

.fb-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(176,30,49,.1);
  padding-top: 14px;
  margin-top: auto;
}

.fb-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #b01e31;
  flex-shrink: 0;
}

.fb-card__name {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #b01e31;
  margin: 0 0 2px;
}

.fb-card__pos {
  font-size: 14px;
  color: #888;
  margin: 0;
  font-family: 'Lora', serif;
  font-style: italic;
}

.feedback-title { margin-bottom: 36px; }

.feedback-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.feedback-img {
  position: sticky;
  top: 20px;
}

.ink-frame {
  width: 100%;
  -webkit-mask-image: url('/images/ink-mask.png');
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('/images/ink-mask.png');
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
}

.ink-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.feedback-list-wrap {
  overflow: hidden;
  position: relative;
  /* chiều cao sẽ được set bằng JS theo feedback-img */
}

.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feedback-list--scroll {
  will-change: transform;
}

.feedback-list--scroll .feedback-card {
  transition: none;
  flex-shrink: 0;
}

.feedback-card {
  background: url('/images/itemfb.png') center center / 100% 100% no-repeat;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(176,30,49,.1);
  box-shadow: 2px 4px 12px rgba(0,0,0,.08);
}

.feedback-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.feedback-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F6B22B;
  flex-shrink: 0;
}

.feedback-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feedback-card__name {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: #F6B22B;
  margin: 0 0 2px;
}

.feedback-card__pos {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.feedback-card__text {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .feedback-layout { grid-template-columns: 1fr; }
  .feedback-img { display: none; }
  .feedback-section { padding: 40px 16px; }
  .feedback-cards { grid-template-columns: 1fr; gap: 16px; }
  .feedback-header__title { font-size: 36px; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger cho grid items */
.specials-grid .special-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.specials-grid .special-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.specials-grid .special-card.reveal:nth-child(4) { transition-delay: 0.08s; }
.specials-grid .special-card.reveal:nth-child(5) { transition-delay: 0.16s; }
.specials-grid .special-card.reveal:nth-child(6) { transition-delay: 0.24s; }

.news-grid .news-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.news-grid .news-card.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ===== SỔ 3D ===== */
.book3d-section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.book3d-decor-img {
  position: absolute;
  top: 0;
  width: 320px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.book3d-decor-img--left { left: 0; }
.book3d-decor-img--right { right: 0; transform: scaleX(1); width: 370px;}

/* Responsive cho decor images */
@media (max-width: 768px) {
  .book3d-decor-img {
    width: 230px;
    opacity: 0.9;
  }
  
  .book3d-decor-img--right { 
    width: 230px;
  }
  
  .book3d-title {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .book3d-decor-img {
    width: 120px;
    opacity: 0.9;
  }
  
  .book3d-decor-img--right { 
    width: 120px;
  }
  
  .book3d-title {
    font-size: 12px !important;
  }
}

@media (max-width: 360px) {
  .book3d-decor-img {
    display: none;
  }
  
  .book3d-title {
    font-size: 12px !important;
  }
}

.book3d-title {
  font-family: 'Roboto Slab', serif;
  color: #b01e31;
  font-size: 30px;
  margin-bottom: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-shadow: none;
}

/* ===== BOOK3D TABS ===== */
.book3d-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.book3d-tab {
  background: transparent;
  border: 2px solid #b01e31;
  color: #b01e31;
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
}

.book3d-tab:hover {
  background: #f9e8e0;
  transform: scale(1.04);
}

.book3d-tab.active {
  background: #b01e31;
  color: #fff;
  box-shadow: 0 4px 14px rgba(176,30,49,.3);
}

@media (max-width: 480px) {
  .book3d-tab {
    font-size: 12px;
    padding: 8px 18px;
  }
}

.book3d-wrapper {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 24px;
}

.book3d-nav {
  background: #F6B22B;
  border: 2px solid #d4961f;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  flex-shrink: 0;
}
.book3d-nav:hover:not(:disabled) {
  background: #d4961f;
  transform: scale(1.1);
}
.book3d-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.page-clickable { cursor: pointer; transition: background .2s; }
.page-right.page-clickable:hover { background: linear-gradient(to left, #ede4d2, #f5f0e8) !important; }
.page-left.page-clickable:hover { background: linear-gradient(to right, #ede4d2, #f5f0e8) !important; }

.scene { perspective: 2000px; perspective-origin: 50% 40%; }

.book3d {
  position: relative;
  width: 930px;
  height: 630px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 20px 20px rgba(0,0,0,0.8));
  /* Viền ngoài kem */
  box-shadow: 0 0 0 12px #f5efe6, 0 20px 20px rgba(0,0,0,0.8);
  border-radius: 4px;
}

/* Lỗ đục ring binder dọc giữa */
.book3d::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 9px);
  width: 18px;
  z-index: 200;
  pointer-events: none;
  background:
    radial-gradient(circle 6px at 9px center, #1a0a05 58%, transparent 60%) 0 24px / 18px 32px repeat-y;
}

/* Decor dao nĩa góc trên giữa */
.book3d-decor {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 300;
  white-space: nowrap;
  color: #F6B22B;
  font-size: 16px;
}
.book3d-decor::before,
.book3d-decor::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F6B22B);
}
.book3d-decor::after {
  background: linear-gradient(270deg, transparent, #F6B22B);
}

.book-spine {
  position: absolute; left: -28px; top: 0; width: 28px; height: 520px;
  background: linear-gradient(90deg, #2a1208 0%, #6b3a2a 40%, #4a2214 70%, #2a1208 100%);
  transform-origin: right center; transform: rotateY(-90deg);
  border-radius: 4px 0 0 4px;
  box-shadow: inset -3px 0 8px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
}
.book-spine::after {
  content: '✦ Thực Đơn ✦'; writing-mode: vertical-rl;
  font-family: 'Roboto Slab', serif; font-size: 11px;
  color: rgba(201,150,42,0.7); letter-spacing: 0.2em;
}
.book-back {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0904 0%, #2d1208 50%, #1a0904 100%);
  border-radius: 0 6px 6px 0; transform: translateZ(-8px);
}
.pages-stack {
  position: absolute; right: 0; top: 4px; bottom: 4px; width: 16px;
  background: repeating-linear-gradient(to bottom, #f0e8d8 0px, #e8ddc8 1px, #f5efe6 2px);
  border-radius: 0 2px 2px 0; box-shadow: 2px 0 6px rgba(0,0,0,0.3);
}
.ribbon {
  position: absolute; top: 0; right: 60px; width: 16px; height: 70px;
  background: linear-gradient(180deg, #8b1a1a 0%, #a02020 100%);
  z-index: 200; clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  box-shadow: 2px 4px 10px rgba(0,0,0,0.4);
}
.book-interior {
  position: absolute; inset: 0; overflow: hidden; border-radius: 2px 6px 6px 2px;
}
.pages-container { position: absolute; inset: 0; border-radius: 2px 6px 6px 2px; overflow: hidden; }

.spread { position: absolute; inset: 0; display: flex; opacity: 0; transition: opacity 0.15s; }
.spread.active { opacity: 1; z-index: 1; }

.page-left, .page-right {
  flex: 1; height: 100%; background: #faf7f2; padding: 32px 28px; position: relative; overflow: hidden;
}
.page-left { border-right: 1px solid rgba(100,60,20,0.12); background: linear-gradient(to right, #f0e8d8 0%, #faf7f2 100%); }
.page-right { background: linear-gradient(to left, #f0e8d8 0%, #faf7f2 100%); }
.page-right::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 30px; height: 30px;
  background: linear-gradient(225deg, #e8ddc8 0%, rgba(240,232,216,0) 100%);
  border-radius: 0 0 4px 0; opacity: 0.6;
}

.page-num { position: absolute; bottom: 16px; font-size: 11px; color: rgba(60,30,10,0.3); font-family: 'Lora', serif; font-style: italic; }
.page-left .page-num { left: 28px; }
.page-right .page-num { right: 28px; }

.page-heading { font-family: 'Playfair Display', serif; font-size: 18px; color: #8b4513; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(139,69,19,0.2); }
.page-body { font-family: 'Lora', serif; font-size: 13px; line-height: 1.85; color: #2c1a0e; opacity: 0.8; }
.dropcap { float: left; font-family: 'Playfair Display', serif; font-size: 52px; line-height: 0.75; color: #8b4513; margin-right: 6px; margin-top: 6px; }
.page-image { width: 100%; height: 100px; border-radius: 3px; background: linear-gradient(135deg, #c9962a22 0%, #8b451322 100%); border: 1px solid rgba(139,69,19,0.15); margin: 14px 0; display: flex; align-items: center; justify-content: center; font-size: 28px; color: rgba(139,69,19,0.3); }
.tag { display: inline-block; background: rgba(139,69,19,0.1); color: #8b4513; font-size: 10px; padding: 2px 8px; border-radius: 10px; margin: 2px; border: 1px solid rgba(139,69,19,0.2); font-family: 'Lora', serif; }
.rule { height: 1px; background: linear-gradient(90deg, transparent, rgba(139,69,19,0.25), transparent); margin: 12px 0; }
.quote { border-left: 2px solid #c9962a; padding: 6px 12px; font-style: italic; font-size: 12.5px; color: #8b4513; margin: 12px 0; background: rgba(201,150,42,0.05); }

.flip-page {
  position: absolute; top: 0; width: 50%; height: 100%;
  transform-style: preserve-3d; z-index: 50; pointer-events: none; display: none;
}
.flip-page.flipping { display: block; }
.flip-face, .flip-back { position: absolute; inset: 0; backface-visibility: hidden; overflow: hidden; }
.flip-face { background: linear-gradient(to right, #f5efe6 0%, #faf7f2 100%); padding: 32px 28px; }
.flip-back { background: linear-gradient(to left, #f5efe6 0%, #faf7f2 100%); transform: rotateY(180deg); padding: 32px 28px; }
.flip-shadow { position: absolute; inset: 0; background: linear-gradient(to left, rgba(0,0,0,0.12) 0%, transparent 60%); pointer-events: none; z-index: 2; }

.book3d-indicator { font-family: 'Lora', serif; font-style: italic; color: rgba(201,150,42,0.6); font-size: 13px; min-width: 100px; text-align: center; }

@media (max-width: 768px) {
  .book3d { width: 320px; height: 240px; }
  .book-spine { height: 240px; }
  .page-heading { font-size: 14px; }
  .page-body { font-size: 11px; }
  .dropcap { font-size: 36px; }
  .page-image { height: 60px; font-size: 20px; }
}

/* ===== VIDEO + ĐẶT BÀN ===== */
.video-booking-section {
  display: flex;
  width: 100%;
  padding-top: 100px;
  min-height: 480px;
  background: url('/images/background4.png') top center/100% 100% no-repeat;
  overflow: hidden;
}

.video-booking-inner {
  display: flex;
  width: 100%;
  padding: 40px 60px;
  gap: 40px;
  align-items: stretch;
  box-sizing: border-box;
}

.video-booking__video {
  flex: 1;
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.video-booking__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-booking__form {
  flex: 0 0 420px;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 32px;
  box-sizing: border-box;
}

.vbf-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #F6B22B;
  margin: 0 0 6px;
  text-align: center;
}

.vbf-sub {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin: 0 0 10px;
  font-style: italic;
}

.vbf-divider {
  color: #F6B22B;
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.vbf-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vbf-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(246,178,43,.4);
  padding-bottom: 8px;
}

.vbf-field svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  color: #F6B22B;
}

.vbf-field input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-family: 'Lora', serif;
  min-width: 0;
}

.vbf-field input::placeholder { color: rgba(255,255,255,.45); }

.vbf-btn {
  margin-top: 10px;
  background: #F6B22B;
  color: #fff;
  border: none;
  padding: 12px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  align-self: center;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
  transition: background .2s, transform .15s;
  font-family: 'Roboto Slab', serif;
}

.vbf-btn:hover {
  background: #d4961f;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .video-booking-inner { flex-direction: column; padding: 24px 16px; }
  .video-booking-section { 
    padding-top: 80px; 
    background: url('/images/background4.png') top center/190% 100% no-repeat;
    min-height: auto;
  }
  .video-booking__video { min-height: 220px; }
  .video-booking__form { flex: none; width: 100%; }
}


