/* Promises page styles */
.promises-hero {
/* Main Section Layout */
.promises-main-section {
  background: #D4CBC4;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-member-box {
  background: #D4CBC4;
  border: 2px solid #7A0649;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(122,6,73,0.06);
  cursor: pointer;
}
.team-member-box:hover {
  border-color: #a80c6a;
  box-shadow: 0 4px 16px rgba(122,6,73,0.13);
  text-decoration: none;
}
.team-member-box h5 {
  color: #7A0649;
  font-weight: 600;
}
.team-member-box .small {
  color: #6c757d;
}
.team-member-box img {
  border: 2px solid #7A0649;
}
.promises-main-section .section-title h2 {
  color: #7A0649;
  font-weight: 700;
}
.promises-main-section .mini-info-box {
  border: 1px solid #f2c94c;
  background: #D4CBC4;
}
.promises-main-section .mini-info-box i {
  color: #7A0649;
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 992px) {
  .promises-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.promise-card {
  background: #D4CBC4;
  border-radius: 18px;
  border: 1.5px solid #7A0649;
  padding: 18px 14px 14px 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(122,6,73,0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.promise-card:hover {
  border-color: #a80c6a;
  box-shadow: 0 4px 16px rgba(122,6,73,0.13);
}
.promise-card .promise-icon {
  font-size: 2.1rem;
  color: #7A0649;
  margin-bottom: 8px;
}
.promise-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #7A0649;
  margin-bottom: 6px;
}
.promises-highlight-box {
  background: #D4CBC4;
  border-radius: 18px;
  border: 2px solid #7A0649;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 24px;
}
.promises-highlight-box .highlight-item {
  flex: 1 1 120px;
  min-width: 120px;
  text-align: center;
  padding: 24px 0;
}
.promises-highlight-box h3 {
  color: #7A0649;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 991px) {
  .promises-main-section .row {
    flex-direction: column;
  }
  .promises-grid {
    grid-template-columns: 1fr;
  }
  .promises-highlight-box {
    flex-direction: column;
  }
}
/* Team Members Section */
.promises-team-section {
  background: #D4CBC4;
  padding: 60px 0 30px 0;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-member-box {
  background: #D4CBC4;
  border: 2px solid #7A0649;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(122,6,73,0.06);
}
.team-member-box:hover {
  border-color: #a80c6a;
  box-shadow: 0 4px 16px rgba(122,6,73,0.13);
  text-decoration: none;
}
.team-member-box h5 {
  color: #7A0649;
  font-weight: 600;
}
.team-member-box .small {
  color: #6c757d;
}
.team-member-box img {
  border: 2px solid #7A0649;
}
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(242, 201, 76, 0.25), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(212, 203, 196, 0.12), transparent 28%),
    linear-gradient(125deg, #5a0336 0%, #7a0649 55%, #8d1459 100%);
  color: #fff;
}

.promises-hero::before,
.promises-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.promises-hero::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: -110px;
  background: rgba(242, 201, 76, 0.22);
}

.promises-hero::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -120px;
  background: rgba(212, 203, 196, 0.1);
}

.promises-hero .container {
  position: relative;
  z-index: 2;
}

.promises-hero-content {
  max-width: 700px;
  padding: 12px 0;
}

.promises-hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 14px;
  color: #fff;
}

.promises-hero-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
}

.promises-intro-section,
.promises-grid-section,
.promises-highlight-section,
.promises-faq-section,
.promises-cta-section {
  padding: 80px 0;
}

.promises-intro-section {
  background: #D4CBC4;
}

.promises-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.promises-intro-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.promises-intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.promises-intro-text p {
  margin-top: 12px;
}

.promises-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.promises-mini-points .mini-info-box {
  border: 1px solid rgba(242, 201, 76, 0.28);
  background: #D4CBC4;
}

.promises-grid-section {
  background: linear-gradient(to bottom, #D4CBC4, #D4CBC4);
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.promise-card {
  background: #D4CBC4;
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(242, 201, 76, 0.34);
  transition: var(--transition);
}

.promise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gold-glow);
}

.promise-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 27px;
}

.promise-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.promises-highlight-section {
  background: #D4CBC4;
}

.promises-highlight-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 30px;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  box-shadow: var(--shadow-lg);
}

.highlight-item {
  text-align: center;
  color: #fff;
}

.highlight-item h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 6px;
  font-weight: 700;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

.promises-faq-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 201, 76, 0.16), transparent 36%),
    radial-gradient(circle at 92% 18%, rgba(122, 6, 73, 0.08), transparent 30%),
    #D4CBC4;
}

.faq-tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: #D4CBC4;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  background: #D4CBC4;
  border: 1px solid rgba(242, 201, 76, 0.34);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(122, 6, 73, 0.06);
  margin-bottom: 18px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.faq-question {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #D4CBC4, #D4CBC4);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  color: var(--primary);
  font-size: 17px;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background: linear-gradient(135deg, #D4CBC4, #D4CBC4);
}

.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(242, 201, 76, 0.68);
  background: linear-gradient(135deg, #D4CBC4, #ffeebd);
  display: inline-block;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary);
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-question:not(.collapsed) {
  background: linear-gradient(135deg, #D4CBC4, #D4CBC4);
}

.faq-question:not(.collapsed) .faq-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
}

.faq-question:not(.collapsed) .faq-icon::before,
.faq-question:not(.collapsed) .faq-icon::after {
  background: #D4CBC4;
}

.faq-question:not(.collapsed) .faq-icon::after {
  height: 0;
}

.faq-answer-wrap {
  border-top: 1px solid rgba(122, 6, 73, 0.08);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text);
  line-height: 1.85;
}

.promises-cta-section {
  background: #D4CBC4;
}

.promises-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 60px 30px;
  box-shadow: var(--shadow-lg);
}

.promises-cta-box h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 38px;
}

.promises-cta-box p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .promises-hero-content h1 {
    font-size: 46px;
  }

  .promises-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promises-highlight-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .promises-intro-grid {
    grid-template-columns: 1fr;
  }

  .promises-intro-image img {
    height: 380px;
  }

  .promises-hero-content h1 {
    font-size: 36px;
  }

  .promises-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .promises-hero {
    padding: 72px 0;
  }

  .promises-hero-content h1 {
    font-size: 34px;
  }

  .promises-grid,
  .promises-highlight-box {
    grid-template-columns: 1fr;
  }

  .promises-intro-image img {
    height: 320px;
  }

  .promises-cta-box h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 18px;
  }
}

@media (max-width: 575px) {
  .promises-intro-section,
  .promises-grid-section,
  .promises-highlight-section,
  .promises-faq-section,
  .promises-cta-section {
    padding: 44px 0;
  }

  .promises-intro-image img {
    height: 240px;
  }

  .promise-card,
  .promises-cta-box {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .promises-highlight-box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .highlight-item h3,
  .promises-cta-box h2 {
    font-size: 24px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }
}

/* Final Promises page 3D theme layer */
html,
body,
.promises-main-section,
.promises-intro-section,
.promises-grid-section,
.promises-highlight-section,
.promises-faq-section,
.promises-cta-section {
  background: #D4CBC4 !important;
  background-color: #D4CBC4 !important;
}

.team-row-box,
.promises-intro-image,
.promises-mini-points .mini-info-box,
.promise-card,
.promises-highlight-box,
.faq-item,
.promises-cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e5dbd3 0%, #D4CBC4 58%, #bbaaa1 100%) !important;
  border: 2px solid #5a0336 !important;
  border-radius: 14px !important;
  box-shadow:
    7px 8px 0 rgba(90, 3, 54, 0.22),
    0 16px 28px rgba(90, 3, 54, 0.16),
    inset 1px 1px 0 rgba(255, 255, 255, 0.45) !important;
  transform-style: preserve-3d;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease !important;
}

.team-row-box::before,
.promise-card::before,
.promises-highlight-box::before,
.faq-item::before,
.promises-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.34), transparent 36%, rgba(90,3,54,.08));
  pointer-events: none;
  z-index: 0;
}

.team-row-box::after,
.promise-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #5a0336 0%, #D4CBC4 52%, #f2c94c 100%);
}

.team-row-box > *,
.promise-card > *,
.promises-highlight-box > *,
.faq-item > *,
.promises-cta-box > * {
  position: relative;
  z-index: 1;
}

.team-row-box:hover,
.promise-card:hover,
.promises-highlight-box:hover,
.faq-item:hover,
.promises-cta-box:hover {
  transform: translateY(-9px) rotateX(4deg) rotateY(-3deg) !important;
  filter: brightness(1.04);
  box-shadow:
    11px 13px 0 rgba(90, 3, 54, 0.28),
    0 24px 40px rgba(90, 3, 54, 0.24),
    inset 1px 1px 0 rgba(255, 255, 255, 0.52) !important;
}

.promise-icon,
.promises-mini-points .mini-info-box i,
.faq-icon {
  background: linear-gradient(145deg, #7a0649 0%, #5a0336 62%, #3a0123 100%) !important;
  color: #ffffff !important;
  border: 2px solid rgba(242, 201, 76, .5) !important;
  box-shadow:
    4px 5px 0 rgba(90, 3, 54, .24),
    0 12px 20px rgba(90, 3, 54, .16),
    inset 1px 1px 0 rgba(255, 255, 255, .18) !important;
  transition: transform .28s ease, box-shadow .28s ease;
}

.promise-card:hover .promise-icon,
.promises-mini-points .mini-info-box:hover i,
.faq-item:hover .faq-icon {
  transform: translateZ(18px) scale(1.08) rotate(-5deg);
}

.promises-highlight-box,
.promises-cta-box,
.promises-highlight-box h3,
.promises-highlight-box p,
.promises-cta-box h2,
.promises-cta-box p {
  color: #5a0336 !important;
}
