/* SECTION WRAPPER */
.flawless-banner-section {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 128, 0, 0.25);
  margin: 60px auto;
  padding: 80px 60px;
  max-width: 1320px;
  width: 100%;
  transition: all 0.4s ease;
}

/* glow เบาๆ รอบกรอบ */
.flawless-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(224,191,168,0.25), transparent 70%);
  z-index: 0;
}

.flawless-banner-section:hover {
  box-shadow: 0 0 45px rgba(224, 191, 168, 0.35);
}

/* CONTAINER */
.flawless-banner-section .container {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 25px;
}

/* TITLE */
.text-gradient-flawless {
  background: linear-gradient(90deg, #f2c9a4, #c18e69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/* DESC */
.flawless-desc {
  color: #c8c8c8;
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 550px;
  line-height: 1.7;
}

/* BUTTON GROUP */
.btn-flawless-primary {
  background: linear-gradient(135deg, #f2c9a4 0%, #c18e69 100%);
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 14px rgba(193, 142, 105, 0.4);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.btn-flawless-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(224, 191, 168, 0.75);
  background: linear-gradient(135deg, #f8d8b5, #d7a579);
}

.btn-flawless-outline {
  border: 2px solid #e0bfa8;
  color: #e0bfa8;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  padding: 12px 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-flawless-outline:hover {
  background: rgba(224, 191, 168, 0.15);
  box-shadow: 0 0 25px rgba(224, 191, 168, 0.4);
  transform: translateY(-3px);
}

/* RIGHT IMAGE STACK */
.flawless-card-stack {
  position: relative;
  display: inline-block;
  max-width: 440px;
}

.flawless-card {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
  width: 100%;
  max-width: 300px;
}

.card1 { top: 0; left: 0; transform: rotate(-6deg); z-index: 3; }
.card2 { top: 50px; left: 70px; transform: rotate(-2deg); z-index: 2; }
.card3 { top: 100px; left: 140px; transform: rotate(2deg); z-index: 1; }

.flawless-card-stack:hover .flawless-card {
  transform: translateY(-10px) scale(1.05);
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .flawless-banner-section {
    padding: 60px 30px;
  }
  .flawless-banner-section .row {
    flex-direction: column;
    text-align: center;
  }
  .text-gradient-flawless {
    font-size: 1.8rem;
  }
  .flawless-desc {
    margin: 0 auto 30px;
  }
  .flawless-card-stack {
    margin: 40px auto 0;
    max-width: 300px;
  }
  .flawless-card {
    position: relative;
    transform: none !important;
    margin-bottom: 15px;
    width: 100%;
  }
  .btn-flawless-primary, .btn-flawless-outline {
    width: 80%;
    margin: 5px auto;
  }
}

@media (max-width: 576px) {
  .flawless-banner-section {
    padding: 40px 20px;
  }
  .text-gradient-flawless {
    font-size: 1.5rem;
  }
  .flawless-desc {
    font-size: 0.95rem;
  }
  .btn-flawless-primary, .btn-flawless-outline {
    width: 100%;
  }
}
