

/* =========================
   SERVICE BANNER
========================= */
.rg-about-hero {
  background-position: bottom!important;
  background-repeat: no-repeat;
  background-size: cover;

  min-height: 65vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.rg-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 42, 77, 0.05),
    rgba(15, 42, 77, 0.05)
  );
}

.rg-about-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.rg-about-hero h1 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
  margin-right: 250px;
}

.rg-about-hero p {
  font-size: 18px;
  color: #e0e6f0;
  padding-right: 200px;
}

/* =========================
   SERVICE INTRO (2 COLUMN)
========================= */
.rg-service-intro {
  padding: 90px 0;
  background: #f5f7fb;
}

.rg-service-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}

.rg-service-image img {
  width: 100%;
  max-width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Intro content */
.rg-service-content {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  text-align: justify;
}

.rg-service-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #2c3e60;
}

/* =========================
   COUNTER SECTION
========================= */
.rg-counter-section {
  background: linear-gradient(135deg, #0f2a4d, #07182e);
  padding: 80px 0;
}

.rg-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.rg-counter-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 40px 20px;
  border-radius: 18px;
}

.rg-counter-number {
  font-size: 42px;
  font-weight: 700;
  color: #E68345;
}

.rg-counter-box p {
  margin-top: 10px;
  color: #e0e6f0;
}

/* =========================
   SERVICE DETAILS CONTENT
========================= */
.rg-service-details {
  padding: 90px 0;
  background: #ffffff;
}

.rg-service-details .container {
  max-width: 900px;
}

.rg-service-details h2,
.rg-service-details h3 {
  margin: 30px 0 15px;
  color: #0f2a4d;
}

.rg-service-details p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e60;
  text-align: justify;
}

.rg-service-details ul {
  margin: 20px 0 30px;
  padding-left: 22px;
}

.rg-service-details li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
  list-style: none;
}

.rg-service-details li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #E68345;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .rg-service-grid {
    grid-template-columns: 1fr;
  }

  .rg-service-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .rg-about-hero {
    min-height: 55vh;
    text-align: center;
  }

  .rg-about-hero p {
    font-size: 15px;
  }

  .rg-service-content {
    padding: 25px;
  }

  .rg-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rg-about-hero {
  background-position: right !important;
}
}
@media (max-width: 480px) {
  .rg-counter-grid {
    grid-template-columns: 1fr;
  }

  .rg-about-hero h1 {
    font-size: 26px;
    margin-right: 0px;
  }
}

.rg-counter-number.plus::after {
  content: "+";
}

.rg-counter-number.percent::after {
  content: "%";
}

.rg-counter-number.slash::after {
  content: "/7";
}

/* =========================
   SERVICE FAQ SECTION
========================= */

.rg-service-faq {
  padding: 80px 0;
  background: #f8f9fb;
}

.rg-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.rg-faq-header h2 {
  font-size: 34px;
  color: #0f2a4d;
  margin-bottom: 10px;
}

.rg-faq-header p {
  color: #666;
  font-size: 16px;
}

.rg-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.rg-faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.rg-faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #0f2a4d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.rg-faq-question:hover {
  background: #f1f3f7;
}

.rg-faq-icon {
  font-size: 24px;
  color: #E68345;
  transition: transform 0.3s ease;
}

.rg-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 25px;
}

.rg-faq-answer p {
  padding: 15px 0 25px;
  color: #444;
  line-height: 1.7;
  font-size: 15px;
}

.rg-faq-item.active .rg-faq-answer {
  max-height: 300px;
}

.rg-faq-item.active .rg-faq-icon {
  transform: rotate(45deg);
}
/* =========================
   FAQ RESPONSIVE STYLES
========================= */

/* Tablets (up to 992px) */
@media (max-width: 992px) {

  .rg-service-faq {
    padding: 60px 20px;
  }

  .rg-faq-header h2 {
    font-size: 28px;
  }

  .rg-faq-question {
    font-size: 17px;
    padding: 18px 20px;
  }

  .rg-faq-answer {
    padding: 0 20px;
  }
}

/* Mobile devices (up to 768px) */
@media (max-width: 768px) {

  .rg-faq-header h2 {
    font-size: 24px;
  }

  .rg-faq-header p {
    font-size: 14px;
  }

  .rg-faq-question {
    font-size: 16px;
    line-height: 1.4;
    padding: 16px 18px;
  }

  .rg-faq-icon {
    font-size: 22px;
  }

  .rg-faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Small mobiles (up to 480px) */
@media (max-width: 480px) {

  .rg-service-faq {
    padding: 50px 15px;
  }

  .rg-faq-header h2 {
    font-size: 22px;
  }

  .rg-faq-question {
    font-size: 15px;
    padding: 14px 15px;
  }

  .rg-faq-icon {
    font-size: 20px;
  }

  .rg-faq-answer p {
    padding: 12px 0 20px;
  }
}
/* =========================
   LEGAL PROCESS SECTION
========================= */

.rg-legal-process {
  padding: 80px 0;
  background: #ffffff;
}

.rg-process-header {
  text-align: center;
  margin-bottom: 50px;
}

.rg-process-header h2 {
  font-size: 34px;
  color: #0f2a4d;
  margin-bottom: 10px;
}

.rg-process-header p {
  font-size: 16px;
  color: #666;
}

.rg-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.rg-process-step {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.rg-process-step:hover {
  transform: translateY(-6px);
}

.rg-process-number {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: #E68345;
  margin-bottom: 15px;
}

.rg-process-step h3 {
  font-size: 18px;
  color: #0f2a4d;
  margin-bottom: 10px;
}

.rg-process-step p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}
/* ===== RESPONSIVE LEGAL PROCESS ===== */

@media (max-width: 992px) {
  .rg-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .rg-process-steps {
    grid-template-columns: 1fr;
  }

  .rg-process-header h2 {
    font-size: 24px;
  }

  .rg-process-step {
    padding: 25px 18px;
  }
}
