/* --- Base Section --- */
.rbks-about-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
  color: #1A1A1A;
  overflow: hidden;
}

.rbks-gold-text {
  color: #D4AF37;
}

/* --- Left Column: Content --- */
.rbks-section-subtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.9rem;
  color: #555555;
}

.rbks-section-subtitle .rbks-line {
  height: 2px;
  width: 50px;
  background-color: #D4AF37;
}

.rbks-about-headline {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 2rem;
  color: #1A1A1A;
}

.rbks-about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 1.5rem;
}

/* --- Pillars --- */
.rbks-pillar {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #F8F9FA;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  transition: all 0.3s ease;
}

.rbks-pillar:hover {
  background-color: #1A1A1A;
  border-color: #1A1A1A;
  color: #FFFFFF;
}

.rbks-pillar:hover .rbks-pillar-icon {
  background-color: #D4AF37;
  color: #1A1A1A;
}

.rbks-pillar:hover h5 {
  color: #FFFFFF;
}

.rbks-pillar-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rbks-pillar-icon svg {
  width: 22px;
  height: 22px;
}

.rbks-pillar h5 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1A1A1A;
  transition: color 0.3s ease;
}

/* --- Right Column: Visual --- */
.rbks-about-visual {
  position: relative;
  padding: 2rem;
}

.rbks-shape-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #1A1A1A;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}

.rbks-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -15px 15px 0px rgba(212, 175, 55, 0.2);
}

.rbks-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Floating Experience Badge */
.rbks-experience-badge {
  position: absolute;
  bottom: -10%;
  left: -5%;
  background: linear-gradient(135deg, #D4AF37 0%, #b59228 100%);
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border: 3px solid #FFFFFF;
}

.rbks-experience-badge .badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.rbks-experience-badge .badge-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Mobile Adjustments --- */
@media (max-width: 991px) {
  .rbks-about-headline {
    font-size: 2.5rem;
  }
  .rbks-about-visual {
    margin-top: 3rem;
    padding: 0;
  }
  .rbks-experience-badge {
    bottom: -5%;
    left: 5%;
  }
}