/* ================= RESET & GLOBAL ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #fff5f7;
  color: #1c2b36;
  line-height: 1.6;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   MAIN CONTENT LINK STYLES
   (Exclude buttons & CTAs)
========================= */
main a:not(.btn):not(.button):not(.primary-btn):not(.cta):not(.nav-link) {
  color: #c10930;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

main a:not(.btn):not(.button):not(.primary-btn):not(.cta):not(.nav-link):hover {
  color: #a10828;
}
header a,
footer a {
  text-decoration: none !important;
}

/* ================= HEADER / NAVBAR ================= */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #f3c6cf;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

/* HEADER LOGO */
.logo img {
  height: 46px;
  width: auto;
  max-width: 200px;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 38px;
    max-width: 170px;
  }
}

/* NAV LINKS */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #1c2b36;
  padding: 6px 0;
}

.main-nav a:hover {
  color: #c10930;
}

/* NAV BUTTONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: #c10930;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #9e0726;
}

.btn-outline {
  background: transparent;
  border: 1px solid #c10930;
  color: #c10930;
}

.btn-outline:hover {
  background-color: #c10930;
  color: #ffffff;
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1c2b36;
  margin-bottom: 4px;
}

/* ================= MOBILE NAV FIX ================= */
@media (max-width: 991px) {

  /* Show hamburger */
  .menu-toggle {
    display: flex;
  }

  /* Hide nav buttons on mobile */
  .nav-actions {
    display: none;
  }

  /* Mobile nav container */
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #f3c6cf;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  /* Active state (opened menu) */
  .main-nav.active {
    transform: translateY(0);
  }

  /* Stack nav links */
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }

  .main-nav a {
    font-size: 16px;
    width: 100%;
  }

  /* Animate hamburger icon */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}


/* ================= FOOTER ================= */
.site-footer {
  background-color: #2a0d14;
  color: #ffffff;
  padding: 50px 0 0;
}

/* FOOTER GRID */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* FOOTER HEADINGS */
.site-footer h3,
.site-footer h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

/* FOOTER TEXT */
.site-footer p {
  font-size: 14px;
  color: #f3c6cf;
  line-height: 1.6;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  font-size: 14px;
  color: #f3c6cf;
}

.site-footer a:hover {
  color: #ff4d6d;
}

/* FOOTER LOGO */
.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
}

/* CONTACT COLUMN */
.footer-contact li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #f3c6cf;
}

.footer-contact a {
  color: #ff4d6d;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #3b0f1c;
  text-align: center;
  font-size: 13px;
  color: #e5a3b2;
}

/* ================= HOME HERO SECTION ================= */
.home-hero {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe4ea 100%);
}

.home-hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* CONTENT */
.home-hero-content {
  max-width: 620px;
}

.home-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #2a0d14;
  margin-bottom: 18px;
}

.home-hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #c10930;
  margin-bottom: 12px;
}

.home-hero-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a1c28;
  margin-bottom: 14px;
}

.home-hero-text strong {
  color: #2a0d14;
  font-weight: 600;
}

/* ACTION BUTTONS */
.home-hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-hero-actions .btn {
  padding: 12px 26px;
  font-size: 15px;
  border-radius: 6px;
}

/* NOTE */
.home-hero-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: #7a2a3c;
}

/* IMAGE */
.home-hero-image {
  display: flex;
  justify-content: center;
}

.home-hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .home-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 60px 0;
  }

  .home-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-hero-title {
    font-size: 32px;
  }

  .home-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .home-hero-title {
    font-size: 28px;
  }

  .home-hero-actions .btn {
    width: 100%;
  }
}

/* ================= ABOUT REDDYBOOK SECTION ================= */

.home-about-reddybook {
  padding: 80px 0;
  background-color: #ffffff;
}

/* SECTION HEADER */
.about-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 10px;
  position: relative;
}

/* Red underline accent */
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #c10930;
  margin-top: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-top: 12px;
}

/* CONTENT GRID */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* CONTENT BLOCKS */
.about-block {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.about-highlight {
  border-left: 4px solid #c10930;
}

/* TEXT */
.about-text {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 16px;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: #111827;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
  }

  .about-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .home-about-reddybook {
    padding: 60px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-block {
    padding: 26px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 15px;
  }
}
/* ================= SECTION: REDDYBOOK ID ================= */
.home-reddybook-id {
  background-color: #ffffff;
  padding: 80px 0;
}

/* HEADER */
.id-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.id-header .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c2b36;
  margin-bottom: 10px;
}

.id-header .section-subtitle {
  font-size: 16px;
  color: #5b6b7a;
  line-height: 1.6;
}

/* CONTENT GRID */
.id-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT INFO */
.id-info {
  font-size: 15px;
  line-height: 1.7;
}

.id-text {
  margin-bottom: 18px;
  color: #334155;
}

.id-text strong {
  color: #c10930;
  font-weight: 600;
}

/* RIGHT STEPS */
.id-steps {
  background-color: #fff5f7;
  border-radius: 10px;
  padding: 30px;
}

.id-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.id-step:last-child {
  margin-bottom: 0;
}

/* STEP NUMBER */
.step-number {
  min-width: 38px;
  height: 38px;
  background-color: #c10930;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* STEP CONTENT */
.id-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1c2b36;
  margin-bottom: 6px;
}

.id-step p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.id-step strong {
  color: #c10930;
}

/* CTA */
.id-cta {
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .id-content {
    grid-template-columns: 1fr;
  }

  .id-steps {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .home-reddybook-id {
    padding: 60px 0;
  }

  .id-header .section-title {
    font-size: 26px;
  }

  .id-header .section-subtitle {
    font-size: 15px;
  }

  .id-step {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .id-header {
    margin-bottom: 35px;
  }

  .step-number {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .id-step h4 {
    font-size: 15px;
  }
}

/* ================= SPORTS BETTING SECTION ================= */
.home-sports-betting {
  background-color: #ffffff;
  padding: 80px 0;
}

/* SECTION HEADER */
.sports-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.sports-header .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}

.sports-header .section-subtitle {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

/* CONTENT GRID */
.sports-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT TEXT */
.sports-info .sports-text {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.sports-info strong {
  color: #c10930;
  font-weight: 600;
}

/* RIGHT FEATURES GRID */
.sports-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* FEATURE CARD */
.sports-feature {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-left: 4px solid #c10930;
  border-radius: 6px;
  padding: 18px 20px;
  transition: all 0.25s ease;
}

.sports-feature:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.sports-feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 6px;
}

.sports-feature p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .sports-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-sports-betting {
    padding: 60px 0;
  }

  .sports-header .section-title {
    font-size: 26px;
  }

  .sports-header .section-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .sports-header .section-title {
    font-size: 24px;
  }

  .sports-feature {
    padding: 16px;
  }
}
/* ================= LIVE BETTING SECTION ================= */
.home-live-betting {
  background-color: #ffffff;
  padding: 80px 0;
}

/* SECTION HEADER */
.live-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.live-header .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}

.live-header .section-subtitle {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

/* CONTENT GRID */
.live-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT TEXT */
.live-info .live-text {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.live-info strong {
  color: #c10930;
  font-weight: 600;
}

/* RIGHT HIGHLIGHTS */
.live-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* HIGHLIGHT CARD */
.live-highlight {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-left: 4px solid #c10930;
  border-radius: 6px;
  padding: 18px 20px;
  transition: all 0.25s ease;
}

.live-highlight:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.live-highlight h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 6px;
}

.live-highlight p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .live-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-live-betting {
    padding: 60px 0;
  }

  .live-header .section-title {
    font-size: 26px;
  }

  .live-header .section-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .live-header .section-title {
    font-size: 24px;
  }

  .live-highlight {
    padding: 16px;
  }
}
/* =============== REDDYBOOK LIVEPLAY | UNIQUE STYLE =============== */
.reddybook-liveplay {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 100px 0;
  position: relative;
}

/* HEADER AREA */
.liveplay-header {
  max-width: 760px;
  margin-bottom: 65px;
  position: relative;
}

.liveplay-title {
  font-size: 34px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.4px;
}

.liveplay-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #666666;
}

/* CONTENT WRAPPER */
.liveplay-layout {
  display: flex;
  gap: 70px;
}

/* LEFT TEXT PANEL */
.liveplay-description {
  flex: 1;
  background-color: #ffffff;
  padding: 35px 38px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.liveplay-text {
  font-size: 15px;
  color: #2d2d2d;
  line-height: 1.9;
  margin-bottom: 20px;
}

.liveplay-text:last-child {
  margin-bottom: 0;
}

.liveplay-text strong {
  color: #c10930;
  font-weight: 600;
}

/* RIGHT FEATURE STACK */
.liveplay-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* FEATURE BLOCK */
.liveplay-card {
  background-color: #ffffff;
  padding: 26px 28px;
  border-radius: 12px;
  border-bottom: 4px solid #c10930;
  transition: all 0.3s ease;
}

.liveplay-card:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

.liveplay-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.liveplay-card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
  .liveplay-layout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .reddybook-liveplay {
    padding: 75px 0;
  }

  .liveplay-title {
    font-size: 28px;
  }

  .liveplay-description {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .liveplay-title {
    font-size: 24px;
  }

  .liveplay-card {
    padding: 22px;
  }
}
/* ===============================
   REDDYBOOK CASINO ZONE (UNIQUE)
================================ */

.reddybook-casino-zone {
  background: #ffffff;
  padding: 90px 0;
  position: relative;
}

/* HEADER */
.casino-zone-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.casino-zone-title {
  font-size: 36px;
  font-weight: 800;
  color: #c10930;
  margin-bottom: 10px;
}

.casino-zone-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* MAIN CONTENT LAYOUT */
.casino-zone-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
}

/* IMAGE */
.casino-zone-visual {
  flex: 0 0 45%;
  position: relative;
}

.casino-zone-visual img {
  width: 100%;
  border-radius: 14px;
  background: #f9f9f9;
}

/* TEXT AREA */
.casino-zone-info {
  flex: 1;
}

.casino-zone-text {
  font-size: 15.5px;
  color: #1e1e1e;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* FEATURE STRIP (UNIQUE STYLE) */
.casino-zone-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.casino-zone-item {
  flex: 1 1 calc(25% - 20px);
  padding: 22px 20px;
  border-left: 4px solid #c10930;
  background: #fafafa;
}

.casino-zone-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1c1c1c;
}

.casino-zone-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .casino-zone-content {
    flex-direction: column;
    gap: 40px;
  }

  .casino-zone-strip {
    gap: 16px;
  }

  .casino-zone-item {
    flex: 1 1 100%;
  }

  .casino-zone-title {
    font-size: 30px;
  }
}
/* ===============================
   REDDYBOOK TRUST SHIELD (UNIQUE)
================================ */

.reddybook-trust-shield {
  background: #ffffff;
  padding: 95px 0;
  border-top: 1px solid #eee;
}

/* HEADER */
.trust-shield-header {
  max-width: 760px;
  margin-bottom: 55px;
}

.trust-shield-title {
  font-size: 34px;
  font-weight: 800;
  color: #c10930;
  margin-bottom: 12px;
}

.trust-shield-subtitle {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* CONTENT */
.trust-shield-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* TRUST POINT */
.trust-shield-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-left: 18px;
  border-left: 3px solid #c10930;
}

.trust-shield-point h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1c1c1c;
}

.trust-shield-point p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* ICON */
.trust-icon {
  font-size: 26px;
  line-height: 1;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trust-shield-title {
    font-size: 28px;
  }

  .trust-shield-point {
    gap: 14px;
  }

  .trust-icon {
    font-size: 22px;
  }
}
/* ===============================
   REDDYBOOK PAYFLOW (UNIQUE)
================================ */

.reddybook-payflow {
  background: #fff;
  padding: 100px 0;
  border-top: 1px solid #f0f0f0;
}

/* HEADER */
.payflow-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.payflow-title {
  font-size: 34px;
  font-weight: 800;
  color: #c10930;
  margin-bottom: 10px;
}

.payflow-subtitle {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* BODY */
.payflow-body {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

/* INFO */
.payflow-info {
  flex: 1;
}

.payflow-text {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* STEPS */
.payflow-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.payflow-step {
  border: 1px solid #eee;
  padding: 22px 24px;
  border-radius: 10px;
  background: #fafafa;
}

.payflow-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1d1d1d;
}

.payflow-step p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* TAG */
.payflow-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #c10930;
  margin-bottom: 8px;
}

/* NOTE */
.payflow-note {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px dashed #ddd;
}

.payflow-note p {
  font-size: 13.5px;
  color: #666;
  max-width: 700px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .payflow-body {
    flex-direction: column;
    gap: 40px;
  }

  .payflow-title {
    font-size: 28px;
  }
}

/* ===============================
   REDDYBOOK MOBILE ACCESS (S9)
================================ */

.reddybook-mobile-access {
  background: #ffffff;
  padding: 95px 0;
  border-top: 1px solid #f2f2f2;
}

/* HEADER */
.mobile-access-header {
  max-width: 780px;
  margin-bottom: 55px;
}

.mobile-access-title {
  font-size: 33px;
  font-weight: 800;
  color: #c10930;
  margin-bottom: 10px;
}

.mobile-access-subtitle {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* CONTENT */
.mobile-access-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */
.mobile-access-info {
  flex: 1.1;
}

.mobile-access-text {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* RIGHT */
.mobile-access-points {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 30px;
  border-left: 3px solid #c10930;
}

.mobile-point h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 6px;
}

.mobile-point p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* NOTE */
.mobile-access-note {
  margin-top: 45px;
  padding-top: 16px;
  border-top: 1px dashed #ddd;
}

.mobile-access-note p {
  font-size: 13.5px;
  color: #666;
  max-width: 720px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mobile-access-content {
    flex-direction: column;
    gap: 40px;
  }

  .mobile-access-points {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid #c10930;
    padding-top: 25px;
  }

  .mobile-access-title {
    font-size: 28px;
  }
}
/* MOBILE ACCESS IMAGE */
.mobile-access-visual {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-access-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE IMAGE HANDLING */
@media (max-width: 900px) {
  .mobile-access-visual {
    order: -1; /* image comes first on mobile */
  }

  .mobile-access-visual img {
    max-width: 280px;
  }
}
/* ===============================
   REDDYBOOK SUPPORT SYSTEM
================================ */

.reddybook-support-system {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

/* SECTION HEADER */
.support-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.support-title {
  font-size: 34px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
  position: relative;
}

.support-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #c10930;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

.support-subtitle {
  font-size: 16px;
  color: #5f6b75;
  line-height: 1.6;
}

/* CONTENT LAYOUT */
.support-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* SUPPORT OVERVIEW */
.support-overview {
  padding-right: 10px;
}

.support-text {
  font-size: 15.5px;
  color: #2b2f33;
  line-height: 1.75;
  margin-bottom: 18px;
}

.support-text strong {
  color: #c10930;
  font-weight: 600;
}

/* SUPPORT FEATURES */
.support-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.support-feature {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px 20px;
  transition: all 0.3s ease;
}

.support-feature:hover {
  border-color: #c10930;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(193, 9, 48, 0.08);
}

.support-feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 8px;
}

.support-feature p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* CTA BUTTONS */
.support-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.support-cta .btn {
  padding: 13px 28px;
  font-size: 14.5px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* PRIMARY BUTTON */
.support-cta .btn-primary {
  background: #c10930;
  color: #fff;
  border: 2px solid #c10930;
}

.support-cta .btn-primary:hover {
  background: #a70728;
  border-color: #a70728;
}

/* OUTLINE BUTTON */
.support-cta .btn-outline {
  background: transparent;
  color: #c10930;
  border: 2px solid #c10930;
}

.support-cta .btn-outline:hover {
  background: #c10930;
  color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-features {
    grid-template-columns: 1fr;
  }

  .support-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .support-title {
    font-size: 28px;
  }

  .support-cta {
    margin-top: 40px;
  }
}
/* ===============================
   SECTION 13 – WHY REDDYBOOK STANDS OUT
   =============================== */

.reddybook-why-standout {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #c10930, #7a0620);
  overflow: hidden;
}

/* Soft background glow */
.reddybook-why-standout::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
  filter: blur(70px);
}

/* HEADER */
.standout-header {
  max-width: 720px;
  margin-bottom: 60px;
  padding-left: 18px;
  border-left: 4px solid #ffffff;
}

.standout-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.standout-subtitle {
  font-size: 17px;
  color: #fde2e7;
  line-height: 1.6;
}

/* CONTENT GRID */
.standout-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* LEFT TEXT PANEL */
.standout-info {
  background: rgba(255,255,255,0.08);
  padding: 36px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.standout-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 18px;
}

.standout-text:last-child {
  margin-bottom: 0;
}

/* RIGHT VALUE CARDS */
.standout-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.standout-value {
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.18),
    rgba(122,6,32,0.9)
  );
  padding: 26px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standout-value:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.standout-value h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffe4ea;
  margin-bottom: 8px;
}

.standout-value p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .standout-content {
    grid-template-columns: 1fr;
  }

  .standout-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .reddybook-why-standout {
    padding: 70px 0;
  }

  .standout-title {
    font-size: 28px;
  }

  .standout-info {
    padding: 28px;
  }
}
/* ===============================
   RESPONSIBLE PLAY SECTION
================================ */

.reddybook-responsible-play {
  background: #ffffff;
  padding: 90px 0;
  border-top: 1px solid #f0f0f0;
}

/* HEADER */
.responsible-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.responsible-title {
  font-size: 36px;
  font-weight: 700;
  color: #c10930;
  margin-bottom: 12px;
}

.responsible-subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* CONTENT WRAP */
.responsible-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

/* LEFT INFO */
.responsible-info {
  padding-right: 10px;
}

.responsible-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.responsible-text:last-child {
  margin-bottom: 0;
}

/* GUIDELINES */
.responsible-guidelines {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* GUIDELINE ITEM */
.guideline-item {
  background: #fff;
  border-left: 4px solid #c10930;
  padding: 20px 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guideline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.guideline-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #c10930;
  margin-bottom: 6px;
}

.guideline-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* FOOT NOTE */
.responsible-note {
  margin-top: 55px;
  padding-top: 18px;
  border-top: 1px dashed #ddd;
  text-align: center;
}

.responsible-note p {
  font-size: 14px;
  color: #666;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .responsible-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .responsible-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .reddybook-responsible-play {
    padding: 70px 0;
  }

  .responsible-title {
    font-size: 26px;
  }

  .responsible-subtitle {
    font-size: 15px;
  }
}
/* ================================
   SECTION 15 – REDDYBOOK DIFFERENCE
================================ */

.reddybook-difference {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.reddybook-difference::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #c10930;
}

/* HEADER */
.difference-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.difference-title {
  font-size: 34px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}

.difference-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* CONTENT GRID */
.difference-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* INTRO TEXT */
.difference-intro {
  border-left: 3px solid rgba(193, 9, 48, 0.15);
  padding-left: 20px;
}

.difference-text {
  font-size: 15.5px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* POINTS LIST */
.difference-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* SINGLE POINT */
.difference-point {
  display: flex;
  gap: 14px;
  background: #fafafa;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.difference-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* ICON */
.point-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #c10930;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* POINT TEXT */
.difference-point h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 6px;
}

.difference-point p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .difference-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .difference-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .reddybook-difference {
    padding: 60px 0;
  }

  .difference-title {
    font-size: 26px;
  }

  .difference-point {
    padding: 16px;
  }
}
/* ===============================
   REDDYBOOK LEGACY SECTION
   =============================== */

.reddybook-legacy {
  background-color: #ffffff;
  padding: 90px 0;
  border-top: 1px solid #f0f0f0;
}

.legacy-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.legacy-title {
  font-size: 34px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
  position: relative;
}

.legacy-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #c10930;
  display: block;
  margin-top: 12px;
  border-radius: 2px;
}

.legacy-subtitle {
  font-size: 16px;
  color: #5f5f5f;
  line-height: 1.6;
}

/* LAYOUT */
.legacy-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.legacy-image {
  position: relative;
}

.legacy-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background-color: #f9f9f9;
}

/* IMAGE BADGE */
.legacy-image::before {
  content: "Since 2010";
  position: absolute;
  top: -18px;
  left: -18px;
  background-color: #c10930;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.4px;
}

/* CONTENT */
.legacy-content {
  position: relative;
}

.legacy-text {
  font-size: 15px;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 18px;
}

/* HIGHLIGHT STRIP */
.legacy-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 18px 22px;
  background-color: #fff4f6;
  border-left: 4px solid #c10930;
  border-radius: 6px;
}

.legacy-highlight span {
  color: #c10930;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.legacy-highlight p {
  font-size: 14px;
  color: #3b3b3b;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
  .legacy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legacy-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .reddybook-legacy {
    padding: 70px 0;
  }

  .legacy-title {
    font-size: 26px;
  }

  .legacy-image::before {
    top: -12px;
    left: -12px;
    font-size: 13px;
    padding: 6px 12px;
  }
}
/* ===============================
   REDDYBOOK EXCHANGE SECTION
================================ */

.reddybook-exchange {
  background: #ffffff;
  padding: 90px 0;
  position: relative;
}

/* HEADER */
.exchange-header {
  max-width: 720px;
  margin-bottom: 60px;
  border-left: 5px solid #c10930;
  padding-left: 20px;
}

.exchange-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.exchange-subtitle {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* MAIN LAYOUT */
.exchange-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT TEXT */
.exchange-info {
  background: #fafafa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}

.exchange-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 18px;
}

.exchange-text strong {
  color: #c10930;
  font-weight: 600;
}

/* RIGHT FEATURES */
.exchange-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.exchange-feature {
  background: #ffffff;
  border: 1px solid #f1f1f1;
  padding: 22px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exchange-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #c10930;
  border-radius: 12px 0 0 12px;
}

.exchange-feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.exchange-feature p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.exchange-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

/* FOOT NOTE */
.exchange-note {
  margin-top: 50px;
  text-align: center;
}

.exchange-note p {
  font-size: 14px;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .exchange-content {
    grid-template-columns: 1fr;
  }

  .exchange-features {
    grid-template-columns: 1fr;
  }

  .exchange-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .reddybook-exchange {
    padding: 70px 0;
  }

  .exchange-info {
    padding: 22px;
  }
}
/* ===============================
   REDDYBOOK FAQS – UNIQUE STYLES
================================ */

.reddybook-faqs {
  background: #f7f9fc;
  padding: 80px 0;
}

.faqs-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.faqs-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c2b36;
  margin-bottom: 12px;
}

.faqs-subtitle {
  font-size: 1rem;
  color: #5f6f7a;
  line-height: 1.6;
}

/* FAQ ACCORDION WRAP */
.faqs-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* INDIVIDUAL ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
  border-color: #c10930;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* SUMMARY HEADER */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1c2b36;
  position: relative;
  user-select: none;
}

/* REMOVE DEFAULT ARROW */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ICON (PLUS / MINUS) */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c10930;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

/* ANSWER CONTENT */
.faq-item p {
  padding: 0 22px 22px;
  font-size: 0.95rem;
  color: #4a5a65;
  line-height: 1.7;
  animation: faqFade 0.35s ease-in-out;
}

/* SMOOTH FADE */
@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE FIRST OPTIMIZATION
================================ */

@media (max-width: 768px) {
  .reddybook-faqs {
    padding: 60px 0;
  }

  .faqs-title {
    font-size: 1.8rem;
  }

  .faq-item summary {
    padding: 18px 52px 18px 18px;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 0 18px 18px;
    font-size: 0.92rem;
  }
}

/* ===============================
   DESKTOP ENHANCEMENTS
================================ */

@media (min-width: 1024px) {
  .faq-item summary:hover {
    background: #fafafa;
  }
}
/* ================================
   SECTION 19 – LEGAL TRANSPARENCY
   ================================ */

.reddybook-legal-transparency {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
  padding: 80px 0;
  border-top: 1px solid #dbe2ea;
}

.legal-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.legal-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c2430;
  margin-bottom: 10px;
}

.legal-subtitle {
  font-size: 1.05rem;
  color: #5b6776;
  line-height: 1.6;
}

/* CONTENT GRID */
.legal-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
}

/* LEFT TEXT AREA */
.legal-info {
  border-left: 4px solid #c10930;
  padding-left: 28px;
}

.legal-text {
  font-size: 0.98rem;
  color: #2e3745;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* RIGHT GUIDELINES */
.legal-guidelines {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 8px 22px rgba(28, 36, 48, 0.06);
  border-left: 5px solid #c10930;
}

.legal-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1c2430;
  margin-bottom: 6px;
}

.legal-item p {
  font-size: 0.9rem;
  color: #566070;
  line-height: 1.6;
}

/* FOOT NOTE */
.legal-note {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px dashed #cfd6df;
}

.legal-note p {
  font-size: 0.85rem;
  color: #6b7482;
  max-width: 720px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 900px) {
  .legal-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-info {
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .reddybook-legal-transparency {
    padding: 60px 0;
  }

  .legal-title {
    font-size: 1.9rem;
  }

  .legal-item {
    padding: 18px;
  }
}
/* ================================
   SECTION 20 – TEAM
   ================================ */

.reddybook-team {
  background: #ffffff;
  padding: 90px 0;
}

.team-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.team-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1c2430;
  margin-bottom: 12px;
}

.team-subtitle {
  font-size: 1.05rem;
  color: #5f6b7a;
  line-height: 1.6;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

/* MEMBER CARD */
.team-member {
  background: #f9fafc;
  border-radius: 20px;
  padding: 28px 24px 34px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(28, 36, 48, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(28, 36, 48, 0.12);
}

/* PHOTO */
.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #c10930;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.team-member h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1c2430;
  margin-bottom: 4px;
}

.team-member span {
  display: block;
  font-size: 0.85rem;
  color: #c10930;
  margin-bottom: 12px;
  font-weight: 500;
}

.team-member p {
  font-size: 0.9rem;
  color: #566070;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-title {
    font-size: 2rem;
  }
}
/* ================================
   SECTION 21 – EDUCATION
   ================================ */

.reddybook-education {
  background: #f8f9fc;
  padding: 95px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.education-header {
  max-width: 720px;
  margin-bottom: 55px;
}

.education-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: #1c2430;
  margin-bottom: 10px;
}

.education-subtitle {
  font-size: 1.05rem;
  color: #5f6b7a;
  line-height: 1.6;
}

/* LAYOUT */
.education-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* LEFT TEXT */
.education-overview {
  padding-right: 20px;
}

.education-text {
  font-size: 0.96rem;
  color: #475160;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* RIGHT MODULES */
.education-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.education-module {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px 28px;
  box-shadow: 0 14px 36px rgba(28, 36, 48, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-module:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(28, 36, 48, 0.12);
}

.module-icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 12px;
}

.education-module h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1c2430;
  margin-bottom: 8px;
}

.education-module p {
  font-size: 0.88rem;
  color: #596373;
  line-height: 1.6;
}

/* FOOT NOTE */
.education-note {
  margin-top: 55px;
  max-width: 760px;
  border-left: 4px solid #c10930;
  padding-left: 18px;
}

.education-note p {
  font-size: 0.85rem;
  color: #6a7380;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .education-layout {
    grid-template-columns: 1fr;
  }

  .education-modules {
    grid-template-columns: 1fr;
  }
}
/* ================================
   SECTION 22 – VOICES & REVIEWS
   ================================ */

.reddybook-voices {
  background: #ffffff;
  padding: 100px 0;
}

.voices-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.voices-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1c2b36; /* darker for contrast */
  margin-bottom: 12px;
}

.voices-subtitle {
  font-size: 1.05rem;
  color: #4b5563; /* improved contrast */
  line-height: 1.6;
}

/* GRID */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.voice-card {
  background: #ffffff; /* stronger contrast than #f9fafc */
  border-radius: 22px;
  padding: 30px 28px;
  position: relative;
  border: 1px solid #e3e8ef;
  box-shadow: 0 18px 44px rgba(28, 36, 48, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 22px;
  font-size: 4rem;
  color: #b81c1c; /* brand red – decorative only */
  font-weight: 700;
  line-height: 1;
}

.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(28, 36, 48, 0.14);
}

/* TEXT */
.voice-text {
  font-size: 0.95rem; /* slightly larger for readability */
  color: #2f3a45;     /* WCAG AA compliant */
  line-height: 1.7;
  margin-bottom: 22px;
}

/* AUTHOR */
.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.voice-author strong {
  display: block;
  font-size: 0.9rem;
  color: #1c2b36; /* strong contrast */
}

.voice-author span {
  font-size: 0.8rem;
  color: #5b6675; /* improved contrast */
}

/* NOTE */
.voices-note {
  margin-top: 60px;
  max-width: 760px;
  border-top: 1px dashed rgba(0,0,0,0.2);
  padding-top: 18px;
}

.voices-note p {
  font-size: 0.85rem;
  color: #4b5563; /* readable gray */
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   TRUST BADGES & HIGHLIGHTS
   ================================ */

.reddybook-trust {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f8fb 100%
  );
  padding: 110px 0;
}

.trust-header {
  max-width: 720px;
  margin-bottom: 70px;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1d2430;
  margin-bottom: 12px;
}

.trust-subtitle {
  font-size: 1.05rem;
  color: #5f6a79;
  line-height: 1.6;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* BADGE CARD */
.trust-badge {
  background: #ffffff;
  border-radius: 26px;
  padding: 38px 30px;
  text-align: left;
  position: relative;
  box-shadow: 0 24px 60px rgba(28, 36, 48, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trust-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: #c10930;
  border-radius: 26px 26px 0 0;
}

.trust-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 80px rgba(28, 36, 48, 0.16);
}

/* ICON */
.badge-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(193, 9, 48, 0.1);
  color: #c10930;
  margin-bottom: 18px;
}

/* TEXT */
.trust-badge h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d2430;
  margin-bottom: 10px;
}

.trust-badge p {
  font-size: 0.92rem;
  color: #4f5b6b;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   FINAL CTA SECTION
   ================================ */

.reddybook-final-cta {
  background: linear-gradient(
    135deg,
    #c10930 0%,
    #8f0624 100%
  );
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.reddybook-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      rgba(255,255,255,0.08) 1px,
      transparent 1px
    );
  background-size: 18px 18px;
  opacity: 0.6;
}

.final-cta-box {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.final-cta-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.final-cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* BUTTONS */
.final-cta-actions {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.cta-primary {
  background: #ffffff;
  color: #c10930;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.cta-secondary {
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
  background: #ffffff;
  color: #c10930;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .final-cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .final-cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===============================
   Reddybook WhatsApp Floating CTA
================================ */

.reddybook-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  background: #25d366; /* WhatsApp green */
  color: #ffffff;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;

  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reddybook-whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

/* WhatsApp Icon Wrapper */
.whatsapp-icon {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon svg {
  width: 22px;
  height: 22px;
}


/* Text */
.whatsapp-text {
  white-space: nowrap;
}

/* Mobile Optimization */
@media (max-width: 576px) {
  .reddybook-whatsapp-float {
    padding: 12px;
  }

  .whatsapp-text {
    display: none; /* icon only on small screens */
  }
}
.reddybook-whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  animation: whatsappPulse 2.5s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
}
/* ================= 404 PAGE ONLY ================= */
.reddybook-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: #f9f9fb;
}

.reddybook-404 .container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}

/* IMAGE */
.reddybook-404 .error-image img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;
}

/* TEXT */
.reddybook-404 .error-content h1 {
  font-size: 72px;
  font-weight: 700;
  color: #c10930;
  margin-bottom: 6px;
}

.reddybook-404 .error-content h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #1c2b36;
}

.reddybook-404 .error-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5b68;
  max-width: 480px;
  margin: 0 auto 22px;
}

/* ACTIONS */
.reddybook-404 .error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* DESKTOP */
@media (min-width: 768px) {
  .reddybook-404 .container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .reddybook-404 .error-actions {
    justify-content: flex-start;
  }

  .reddybook-404 .error-content h1 {
    font-size: 96px;
  }
}
.reddybook-404 .error-image {
  animation: float404 3s ease-in-out infinite;
}

@keyframes float404 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
/* ================================
   Reddybook Explained Section
   Google Discover Friendly Styling
================================ */

.reddybook-explained {
  padding: 70px 0;
  background-color: #ffffff;
}

.reddybook-explained .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Heading */
.reddybook-explained h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: #1c2b36;
  margin-bottom: 30px;
}

/* Sub-headings for each keyword explanation */
.reddybook-explained h3 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  color: #b81c1c; /* Brand red */
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Paragraph text */
.reddybook-explained p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 12px;
}

/* Highlighted keyword text */
.reddybook-explained strong {
  color: #1c2b36;
  font-weight: 600;
}

/* Disclaimer / note */
.reddybook-explained .note {
  margin-top: 30px;
  padding: 15px 18px;
  background-color: #f5f7fa;
  border-left: 4px solid #b81c1c;
}

.reddybook-explained .note em {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ================================
   Responsive Adjustments
================================ */

@media (max-width: 768px) {
  .reddybook-explained {
    padding: 50px 0;
  }

  .reddybook-explained h2 {
    font-size: 26px;
  }

  .reddybook-explained h3 {
    font-size: 20px;
  }

  .reddybook-explained p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .reddybook-explained h2 {
    font-size: 23px;
  }

  .reddybook-explained h3 {
    font-size: 18px;
  }

  .reddybook-explained p {
    font-size: 14.5px;
  }
}


.site-splash {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.85)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.site-splash.active {
  opacity: 1;
  pointer-events: all;
}

.splash-box {
  position: relative;
  background: #ffffff;
  padding: 42px 38px;
  max-width: 560px;
  width: 92%;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  animation: splashZoom 0.4s ease;
}

@keyframes splashZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.splash-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 30px;
  cursor: pointer;
  color: #777;
  transition: 0.2s;
}

.splash-close:hover {
  color: #c10930;
  transform: rotate(90deg);
}

.splash-box h3 {
  color: #c10930;
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 700;
}

.splash-subtext {
  font-size: 15px;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.6;
}

.splash-offers {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.splash-offers li {
  font-size: 15px;
  margin-bottom: 10px;
}

.splash-note {
  font-size: 13px;
  color: #777;
  margin-bottom: 22px;
}

.splash-btn {
  background: linear-gradient(135deg, #c10930, #e11245);
  color: #fff;
  border: none;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(193,9,48,0.35);
  transition: 0.3s;
}

.splash-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(193,9,48,0.45);
}

/* ============================================
   REDDY BOOK ID PAGE SPECIFIC STYLES
   All classes prefixed with .rb-id-
   ============================================ */

/* 1. HERO SECTION */
.rb-id-hero {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4ea 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.rb-id-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.rb-id-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2a0d14;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rb-id-hero-text {
    font-size: 18px;
    color: #4a1c28;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rb-id-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rb-id-cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background-color: #c10930;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rb-id-cta-btn:hover {
    background-color: #9e0726;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(193, 9, 48, 0.3);
}

.rb-id-whatsapp-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background-color: transparent;
    color: #c10930;
    border: 2px solid #c10930;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rb-id-whatsapp-btn:hover {
    background-color: #c10930;
    color: #ffffff;
    transform: translateY(-2px);
}

.rb-id-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.rb-id-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2a0d14;
}

.rb-id-trust-item i {
    color: #c10930;
    font-size: 20px;
}

/* 2. WHAT IS REDDY BOOK ID SECTION */
.rb-id-about {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-id-about .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-about h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.rb-id-about h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a1c28;
    margin-bottom: 20px;
}

.rb-id-disclaimer {
    background-color: #fff5f7;
    border-left: 4px solid #c10930;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.rb-id-disclaimer i {
    color: #c10930;
    font-size: 24px;
    margin-top: 3px;
}

.rb-id-disclaimer p {
    margin-bottom: 0;
    font-size: 16px;
}

/* 3. BENEFITS SECTION */
.rb-id-benefits {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rb-id-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-benefits h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.rb-id-benefits h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rb-id-benefit-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.rb-id-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.rb-id-benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rb-id-benefit-icon i {
    color: #c10930;
    font-size: 30px;
}

.rb-id-benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-id-benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6b7a;
}

/* 4. PROCESS SECTION */
.rb-id-process {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-id-process .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-process h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.rb-id-process h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-process-intro {
    font-size: 17px;
    text-align: center;
    color: #4a1c28;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rb-id-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.rb-id-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background-color: #fff5f7;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #c10930;
}

.rb-id-step-number {
    min-width: 50px;
    height: 50px;
    background-color: #c10930;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.rb-id-step-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

.rb-id-step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
}

.rb-id-process-cta {
    text-align: center;
}

.rb-id-process-note {
    margin-top: 20px;
    font-size: 15px;
    color: #7a2a3c;
}

.rb-id-process-note i {
    color: #c10930;
    margin-right: 8px;
}

/* 5. GAMES SECTION */
.rb-id-games {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rb-id-games .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-games h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.rb-id-games h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-games-intro {
    font-size: 17px;
    text-align: center;
    color: #4a1c28;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rb-id-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.rb-id-game-category {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.rb-id-game-category:hover {
    transform: translateY(-3px);
}

.rb-id-game-category h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-id-game-category h3 i {
    color: #c10930;
    font-size: 20px;
}

.rb-id-game-category p {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-left: 30px;
}

/* 6. PAYMENTS SECTION */
.rb-id-payments {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-id-payments .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-payments h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.rb-id-payments h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-payments-intro {
    font-size: 17px;
    text-align: center;
    color: #4a1c28;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rb-id-payment-methods {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.rb-id-payment-method {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.rb-id-payment-method:hover {
    transform: translateY(-5px);
}

.rb-id-payment-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rb-id-payment-icon i {
    color: #c10930;
    font-size: 28px;
}

.rb-id-payment-method h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

.rb-id-payment-method p {
    font-size: 14px;
    line-height: 1.5;
    color: #5b6b7a;
}

.rb-id-payments-note {
    background-color: #fff5f7;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #c10930;
}

.rb-id-payments-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
}

/* 7. SAFETY SECTION */
.rb-id-safety {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rb-id-safety .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-safety h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.rb-id-safety h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-safety-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.rb-id-safety-point {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #c10930;
}

.rb-id-safety-point h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-id-safety-point h3 i {
    color: #c10930;
    font-size: 24px;
}

.rb-id-safety-point p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
}

.rb-id-safety-resources {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    border: 2px solid #c10930;
}

.rb-id-safety-resources h3 {
    font-size: 22px;
    font-weight: 600;
    color: #c10930;
    margin-bottom: 15px;
}

.rb-id-safety-resources p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
    margin-bottom: 15px;
}

.rb-id-safety-resources ul {
    margin-left: 20px;
    margin-bottom: 0;
}

.rb-id-safety-resources li {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 8px;
    list-style-type: disc;
}

/* 8. LEGACY SECTION */
.rb-id-legacy {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-id-legacy .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-legacy h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.rb-id-legacy h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-legacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rb-id-legacy-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a1c28;
    margin-bottom: 20px;
}

.rb-id-legacy-highlight {
    background-color: #fff5f7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.rb-id-legacy-highlight i {
    color: #c10930;
    font-size: 28px;
    margin-top: 5px;
}

.rb-id-legacy-highlight p {
    margin-bottom: 0;
    font-size: 16px;
}

.rb-id-legacy-image {
    text-align: center;
}

.rb-id-legacy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* 9. FAQ SECTION */
.rb-id-faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rb-id-faq .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-faq h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.rb-id-faq h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rb-id-faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rb-id-faq-item summary {
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 60px;
}

.rb-id-faq-item summary::-webkit-details-marker {
    display: none;
}

.rb-id-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #c10930;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.rb-id-faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.rb-id-faq-item p {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
    margin: 0;
}

/* 10. SUPPORT SECTION */
.rb-id-support {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-id-support .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-id-support h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.rb-id-support h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 0;
    border-radius: 2px;
}

.rb-id-support-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a1c28;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rb-id-contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.rb-id-contact-option {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.rb-id-contact-option:hover {
    transform: translateY(-5px);
}

.rb-id-contact-icon {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rb-id-contact-icon i {
    color: #c10930;
    font-size: 32px;
}

.rb-id-contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

.rb-id-contact-details p {
    font-size: 15px;
    line-height: 1.5;
    color: #5b6b7a;
    margin-bottom: 0;
}

.rb-id-contact-details a {
    color: #c10930;
    font-weight: 600;
    text-decoration: none;
}

.rb-id-contact-details a:hover {
    text-decoration: underline;
}

.rb-id-support-note {
    background-color: #fff5f7;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.rb-id-support-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
    margin-bottom: 0;
}

.rb-id-support-note i {
    color: #c10930;
    margin-right: 8px;
}

/* FOOTER DISCLAIMER */
.rb-id-footer-disclaimer {
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.rb-id-footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #e5a3b2;
    margin-bottom: 0;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .rb-id-hero h1 {
        font-size: 36px;
    }
    
    .rb-id-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rb-id-payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rb-id-contact-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rb-id-legacy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rb-id-legacy-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .rb-id-hero {
        padding: 60px 0 40px;
    }
    
    .rb-id-hero h1 {
        font-size: 32px;
    }
    
    .rb-id-hero-text {
        font-size: 16px;
    }
    
    .rb-id-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rb-id-cta-btn,
    .rb-id-whatsapp-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .rb-id-trust-indicators {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .rb-id-about,
    .rb-id-benefits,
    .rb-id-process,
    .rb-id-games,
    .rb-id-payments,
    .rb-id-safety,
    .rb-id-legacy,
    .rb-id-faq,
    .rb-id-support {
        padding: 60px 0;
    }
    
    .rb-id-about h2,
    .rb-id-benefits h2,
    .rb-id-process h2,
    .rb-id-games h2,
    .rb-id-payments h2,
    .rb-id-safety h2,
    .rb-id-legacy h2,
    .rb-id-faq h2,
    .rb-id-support h2 {
        font-size: 30px;
    }
    
    .rb-id-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .rb-id-games-grid {
        grid-template-columns: 1fr;
    }
    
    .rb-id-payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rb-id-contact-options {
        grid-template-columns: 1fr;
    }
    
    .rb-id-step {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .rb-id-step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .rb-id-hero h1 {
        font-size: 28px;
    }
    
    .rb-id-about h2,
    .rb-id-benefits h2,
    .rb-id-process h2,
    .rb-id-games h2,
    .rb-id-payments h2,
    .rb-id-safety h2,
    .rb-id-legacy h2,
    .rb-id-faq h2,
    .rb-id-support h2 {
        font-size: 26px;
    }
    
    .rb-id-payment-methods {
        grid-template-columns: 1fr;
    }
    
    .rb-id-faq-item summary {
        font-size: 16px;
        padding: 20px 50px 20px 20px;
    }
    
    .rb-id-faq-item p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}
