/* ============================================================
   SHARON LUXURY LINES — rentgo-style.css
   Color Scheme: Black + Gold
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gold-1: #c9a84c;
  --gold-2: #e2b96f;
  --gold-3: #f5d78e;
  --gold-4: #d4af37;
  --gold-5: #8b6914;
  --gold-gradient: linear-gradient(
    90deg,
    #8b6914 0%,
    #c9a84c 35%,
    #f5d78e 60%,
    #d4af37 100%
  );
  --gold-gradient-v: linear-gradient(
    135deg,
    #8b6914 0%,
    #c9a84c 35%,
    #f5d78e 60%,
    #d4af37 100%
  );
  --black-deep: #050505;
  --black-primary: #0a0a0a;
  --black-surface: #111111;
  --black-card: #161616;
  --light-bg: #f8f6f2;
  --warm-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: rgba(216, 208, 192, 0.85);
  --transition: all 0.3s ease;
  --radius: 12px;
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ── Keyframes ── */
@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes navGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(201, 168, 76, 0);
  }
  50% {
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
  }
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.rg-body {
  font-family: "Poppins", "Lato", sans-serif;
  background: var(--black-primary);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--black-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-gradient);
  border-radius: 4px;
}

/* ── Selection ── */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--warm-white);
}

/* ── Utility ── */
.rg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rg-gold-text {
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s linear infinite;
}

.rg-eyebrow {
  color: var(--gold-1);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

.rg-eyebrow-dark {
  color: var(--gold-1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.rg-eyebrow-gold {
  color: var(--gold-1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.rg-section-title {
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.rg-section-title.dark {
  color: var(--text-dark);
}
.rg-section-title.light {
  color: #ffffff;
}

.rg-section-sub {
  font-size: 16px;
  margin-top: 12px;
}
.rg-section-sub.dark {
  color: #666666;
}
.rg-section-sub.light {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Buttons ── */
.rg-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #000000;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  transition: var(--transition);
  cursor: pointer;
  animation: shimmer 4s linear infinite;
  justify-content: center;
}

.rg-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
  color: #000000;
}

.rg-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  transition: var(--transition);
  cursor: pointer;
}

.rg-btn-ghost:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #000000;
}

/* ── Section Head ── */
.rg-section-head {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Scroll Reveal ── */
.rg-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.rg-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.rg-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
  background-color: #000000;
}

.rg-nav-scrolled {
  background: rgba(5, 5, 5, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.rg-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
}

.rg-logo img {
  width: 150px;
  transition: filter 0.3s ease;
}

.rg-logo:hover img {
  filter: brightness(1.2);
}

/* Menu */
.rg-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.rg-menu > li {
  position: relative;
}

.rg-menu > li > a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  position: relative;
  transition: color 0.3s ease;
}

.rg-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.rg-menu > li > a:hover {
  color: #ffffff;
}
.rg-menu > li > a:hover::after {
  transform: scaleX(1);
}
.rg-menu > li.active > a {
  color: var(--gold-1);
}

/* Dropdown */
.rg-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(10, 10, 10, 0.97);
  border-top: 2px solid var(--gold-1);
  min-width: 220px;
  border-radius: 0 0 10px 10px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.rg-menu > li:hover .rg-dropdown,
.rg-menu > li.open .rg-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rg-dropdown li a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.rg-dropdown li a:hover {
  color: var(--gold-1);
  padding-left: 28px;
  background: rgba(201, 168, 76, 0.05);
}

/* Dropdown arrow indicator */
/* .rg-has-drop > a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
} */
#rgBookingForm {
  padding: 20px;
}
.rg-has-drop:hover > a::before {
  transform: rotate(180deg);
}

/* CTA Button */
.rg-nav-cta {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #000000 !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  padding: 11px 28px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  animation: shimmer 3s linear infinite;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.rg-nav-cta::after {
  display: none !important;
}

.rg-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: #000000 !important;
}

/* Hamburger */
.rg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1010;
}

.rg-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.rg-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rg-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.rg-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay menu */
.rg-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rg-nav-overlay.active {
  opacity: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.rg-hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.rg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.rg-hero:hover .rg-hero-bg {
  transform: scale(1);
}

.rg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(33, 32, 32, 0.307) 0%,
    rgba(5, 5, 5, 0.251) 60%,
    rgba(5, 5, 5, 0.375) 100%
  );
  z-index: 1;
}

.rg-hero-content {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  text-align: center;
  z-index: 2;
}

.rg-hero-title {
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.rg-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rg-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Booking Bar */
.rg-booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.rg-booking-inner {
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(201, 168, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  padding: 22px 32px;
  gap: 20px;
  max-width: 1400px;
  width: 100%;
  flex-wrap: nowrap;
  backdrop-filter: blur(10px);
}

.rg-booking-field {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.rg-booking-field-select {
  flex: 1.1;
}

.rg-booking-field-phone {
  flex: 0.9;
}

.rg-bfield-icon {
  color: var(--gold-1);
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.rg-booking-field:hover .rg-bfield-icon {
  color: var(--gold-2);
  transform: scale(1.1);
}

.rg-bfield-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #888888;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.rg-bfield-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rg-phone-link {
  color: var(--gold-1);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.rg-phone-link:hover {
  color: var(--gold-2);
}

.rg-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rg-booking-sep {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    180deg,
    rgba(216, 208, 192, 0.2) 0%,
    rgba(216, 208, 192, 0.4) 50%,
    rgba(216, 208, 192, 0.2) 100%
  );
  flex-shrink: 0;
}

.rg-booking-btn {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #000000;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rg-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4);
  color: #000000;
  background-position: 100% center;
}

.rg-booking-btn:active {
  transform: translateY(0);
}

.rg-booking-select {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  cursor: pointer;
  font-family: "Poppins", "Lato", sans-serif;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23c9a84c' d='M1 1.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  width: 100%;
  min-width: 140px;
}

.rg-booking-select:hover {
  border-color: var(--gold-1);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
}

.rg-booking-select:focus {
  outline: none;
  border-color: var(--gold-1);
  box-shadow:
    0 0 0 4px rgba(201, 168, 76, 0.12),
    0 4px 12px rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.rg-stats {
  background: var(--black-surface);
  padding: 100px 0 60px;
  position: relative;
  z-index: -1;
}

.rg-stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
}

.rg-stat {
  flex: 1;
  text-align: center;
  padding: 32px 16px;
}

.rg-stat-num {
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 52px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.rg-stat-num sup {
  vertical-align: middle;
  color: #fff;
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 52px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  top: 0;
  line-height: 1;
}

.rg-stat-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 8px;
}

.rg-stat-div {
  width: 1px;
  height: 60px;
  background: rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.rg-about {
  background: var(--light-bg);
  padding: 100px 0;
}

.rg-about-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.rg-about-img-wrap {
  flex: 1;
  position: relative;
  min-height: 340px;
}

.rg-about-img {
  width: 100%;

  object-fit: cover;
  border-radius: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

.rg-about-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--gold-gradient);
  color: #000000;
  padding: 20px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
  z-index: 2;
}

.rg-badge-num {
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 36px;
  display: block;
  line-height: 1;
}

.rg-badge-txt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.rg-about-img-deco {
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  z-index: 0;
}

.rg-about-content {
  flex: 1;
}

.rg-about-desc {
  color: #555555;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.rg-about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.rg-about-feat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rg-feat-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.rg-feat-text h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.rg-feat-text p {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.rg-services {
  background: var(--warm-white);
  padding: 100px 0;
}

.rg-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.rg-svc-card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-left 0.3s ease;
  border-left: 3px solid transparent;
}

.rg-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
  border-left: 3px solid var(--gold-1);
}

.rg-svc-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rg-svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.rg-svc-body {
  padding: 28px;
}

.rg-svc-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  color: #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.rg-svc-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.rg-svc-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.rg-svc-link {
  color: var(--gold-1);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.rg-svc-link i {
  transition: transform 0.3s ease;
}

.rg-svc-link:hover {
  color: var(--gold-5);
}

.rg-svc-link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.rg-why {
  background: var(--light-bg);
  padding: 100px 0;
}

.rg-why-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.rg-why-content {
  flex: 0 0 50%;
}

.rg-why-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 0;
}

.rg-why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.rg-why-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rg-why-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-1);
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.rg-why-item:hover .rg-why-icon {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #000000;
}

.rg-why-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.rg-why-text p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* Mosaic */
.rg-why-mosaic {
  flex: 1;
}

/* About page mosaic — grid layout scoped to .rg-about-mosaic */
.rg-about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
}
.rg-mosaic-large {
  grid-column: 1;
  grid-row: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.rg-mosaic-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.rg-mosaic-large:hover img {
  transform: scale(1.06);
}

.rg-mosaic-sm-col {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rg-mosaic-sm {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.rg-mosaic-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.rg-mosaic-sm:hover img {
  transform: scale(1.06);
}

.rg-mosaic-wide {
  grid-column: 1 / 3;
  grid-row: 2;
  border-radius: var(--radius);
  overflow: hidden;
}
.rg-mosaic-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.rg-mosaic-wide:hover img {
  transform: scale(1.04);
}

.rg-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 350px 350px;
  gap: 28px;
}

@media (max-width: 767px){
  .rg-mosaic-grid{
    grid-template-columns: 1fr;
  }

  .rg-mosaic-grid > * {
    aspect-ratio: 2 / 3;   /* taller than square */
    width: 100%;
    min-height: 500px;
    overflow: hidden;
  }

  .rg-mosaic-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.rg-mosaic-img {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  gap: 10px
  
}

.rg-mosaic-wide {
  grid-column: 1 / 3;
}

/* Redesigned Why Section - Card Layout */
.rg-why-redesigned {
  background: linear-gradient(135deg, #f8f6f2 0%, #fafaf8 100%);
  padding: 100px 0;
}

.rg-why-header {
  text-align: center;
  margin-bottom: 64px;
}

.rg-why-header .rg-section-title {
  margin-top: 16px;
}

.rg-why-subtitle {
  font-size: 16px;
  color: #555555;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.rg-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.rg-why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.rg-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.25);
}

.rg-why-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.1) 0%,
    rgba(201, 168, 76, 0.05) 100%
  );
  border: 2px solid var(--gold-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-1);
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.rg-why-card:hover .rg-why-card-icon {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
}

.rg-why-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}

.rg-why-card-content p {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.rg-why-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-1) 0%, var(--gold-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.rg-why-card:hover .rg-why-card-accent {
  transform: scaleX(1);
}

/* ============================================================
   PREMIUM DARK
   ============================================================ */
.rg-premium {
  background: var(--black-primary);
  padding: 100px 0;
}

.rg-premium-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.rg-premium-content {
  flex: 0 0 45%;
}

.rg-premium-desc {
  color: rgba(216, 208, 192, 0.75);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 36px;
}

.rg-premium-car {
  flex: 1;
  position: relative;
}

.rg-premium-car img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.2);
  display: block;
}

.rg-premium-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 76, 0.15) 0%,
    transparent 70%
  );
  border-radius: 12px;
  pointer-events: none;
}

/* ============================================================
   FLEET / PRICING
   ============================================================ */
.rg-fleet {
  background: var(--black-surface);
  padding: 100px 0;
}

.rg-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.rg-fleet-card {
  background: var(--black-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
  position: relative;
}

.rg-fleet-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.rg-fleet-featured {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

.rg-fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-gradient);
  color: #000000;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  z-index: 5;
}

.rg-fleet-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rg-fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.rg-fleet-body {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.rg-fleet-info h4 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.rg-fleet-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rg-fleet-tags span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.rg-fleet-tags i {
  color: var(--gold-1);
}

.rg-fleet-price {
  text-align: right;
  flex-shrink: 0;
}

.rg-price-from {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 2px;
}

.rg-price-amt {
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 28px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.rg-price-per {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.rg-fleet-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #000000;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.rg-fleet-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  color: #000000;
}

.rg-fleet-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  margin-top: 24px;
}

.rg-fleet-note a {
  color: var(--gold-1);
  text-decoration: none;
}

.rg-fleet-note a:hover {
  color: var(--gold-3);
}

/* ============================================================
   CAR FEATURES
   ============================================================ */
.rg-carfeat {
  background: var(--light-bg);
  padding: 100px 0;
}

.rg-carfeat-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.rg-carfeat-img-wrap {
  flex: 1;
  position: relative;
}

.rg-carfeat-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

.rg-carfeat-img-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  z-index: 0;
}

.rg-carfeat-content {
  flex: 1;
}

.rg-feat-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 28px 0 36px;
}

.rg-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rg-feat-check {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.rg-feat-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.rg-feat-info p {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

/* ============================================================
   CONNECT / CTA
   ============================================================ */
.rg-connect {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.rg-connect-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.rg-connect-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
}

.rg-connect-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}

.rg-connect-content {
  flex: 0 0 50%;
}

.rg-connect-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 36px;
}

.rg-connect-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rg-connect-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rg-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.rg-contact-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.rg-ccard-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.rg-ccard-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 4px;
}

.rg-ccard-val {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.rg-ccard-val:hover {
  color: var(--gold-1);
}

/* ============================================================
   BLOG
   ============================================================ */
.rg-blog {
  background: var(--warm-white);
  padding: 100px 0;
}

.rg-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* Blog listing page — 2×2 grid for 4 articles */
.rg-blog-listing .rg-blog-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 0;
}

.rg-blog-card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.rg-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.13);
}

.rg-blog-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rg-blog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.rg-blog-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold-gradient);
  color: #000000;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.rg-blog-body {
  padding: 24px;
}

.rg-blog-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}

.rg-blog-excerpt {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.rg-blog-link {
  color: var(--gold-1);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.rg-blog-link i {
  transition: transform 0.3s ease;
}

.rg-blog-link:hover {
  color: var(--gold-5);
}
.rg-blog-link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   VIDEOS SHOWCASE
   ============================================================ */
.rg-videos {
  background: var(--black-primary);
  padding: 96px 0;
  position: relative;
}

.rg-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.rg-video-card {
  background: var(--black-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.rg-video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.3);
}

.rg-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--black-deep);
  overflow: hidden;
}

.rg-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rg-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 5;
  pointer-events: none;
}

.rg-video-card:hover .rg-video-overlay {
  opacity: 0.8;
}

.rg-video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-1);
  border: 2px solid var(--gold-3);
  color: var(--black-primary);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.rg-video-play-btn:hover {
  background: var(--gold-2);
  transform: scale(1.15);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.6);
}

.rg-video-info {
  padding: 24px;
}

.rg-video-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.rg-video-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Video Gallery Container */
.rg-video-gallery-container {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Main Video Player (Left - Vertical) */
.rg-video-main {
  position: sticky;
  top: 120px;
}

.rg-video-player-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.15);
  background: var(--black-deep);
}

.rg-video-player-main {
  width: 100%;
  height: 500px;
  display: block;
  background: var(--black-deep);
  object-fit: contain;
}

.rg-video-player-info {
  padding: 20px 24px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(22, 22, 22, 0.9) 100%
  );
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.rg-video-player-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-1);
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}

.rg-video-player-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Thumbnail Grid (Right) */
.rg-video-thumbnails {
  display: flex;
  flex-direction: column;
}

.rg-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.rg-video-thumbnail {
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
  background: var(--black-card);
  border: 2px solid rgba(201, 168, 76, 0.1);
  height: 140px;
}

.rg-video-thumbnail:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.2);
}

.rg-video-thumbnail.rg-thumbnail-active {
  border-color: var(--gold-1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.rg-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--black-deep);
}

.rg-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rg-video-thumbnail:hover .rg-thumb-img {
  transform: scale(1.08);
}

.rg-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rg-video-thumbnail:hover .rg-thumb-overlay {
  opacity: 1;
}

.rg-video-thumbnail.rg-thumbnail-active .rg-thumb-overlay {
  opacity: 1;
  background: rgba(201, 168, 76, 0.3);
}

.rg-thumb-play {
  font-size: 32px;
  color: var(--gold-1);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.rg-video-thumbnail:hover .rg-thumb-play,
.rg-video-thumbnail.rg-thumbnail-active .rg-thumb-play {
  transform: scale(1.2);
}

.rg-thumb-title {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  margin: 0;
  transition: all 0.3s ease;
}

.rg-video-thumbnail:hover .rg-thumb-title {
  color: var(--gold-1);
  background: rgba(201, 168, 76, 0.1);
}

.rg-video-thumbnail.rg-thumbnail-active .rg-thumb-title {
  color: var(--gold-1);
  background: rgba(201, 168, 76, 0.15);
}

/* Instagram Card - Premium Design */
.rg-instagram-card-main {
  grid-column: span 2;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  border: 2px solid rgba(201, 168, 76, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 140px;
}

.rg-instagram-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.rg-instagram-card-content {
  display: flex;
  width: 100%;
  height: 100%;
}

.rg-instagram-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15),
    rgba(201, 168, 76, 0.05)
  );
  border-right: 2px solid rgba(201, 168, 76, 0.2);
  padding: 16px;
}

.rg-instagram-icon-main {
  font-size: 56px;
  color: var(--gold-1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.rg-instagram-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 16px 20px;
  gap: 4px;
}

.rg-instagram-heading {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-1);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.rg-instagram-desc {
  margin: 0;
  font-size: 11px;
  color: rgba(216, 208, 192, 0.75);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.rg-instagram-cta {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.rg-instagram-card-main:hover {
  border-color: var(--gold-1);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.4);
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
}

.rg-instagram-card-main:hover::before {
  opacity: 1;
}

.rg-instagram-card-main:hover .rg-instagram-icon-main {
  transform: scale(1.2) rotate(-10deg);
  filter: drop-shadow(0 12px 32px rgba(201, 168, 76, 0.5));
}

.rg-instagram-card-main:hover .rg-instagram-heading {
  color: #f5d78e;
}

.rg-instagram-card-main:hover .rg-instagram-desc {
  color: rgba(216, 208, 192, 0.95);
}

.rg-instagram-card-main:hover .rg-instagram-cta {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.rg-footer {
  background: var(--black-deep);
}

.rg-footer-top {
  padding: 80px 0;
}

.rg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.rg-footer-brand img {
  margin-bottom: 20px;
}

.rg-footer-brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}

.rg-footer-social {
  display: flex;
  gap: 12px;
}

.rg-footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.rg-footer-social a:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #000000;
}

.rg-footer-heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-1);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.rg-footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold-gradient);
}

.rg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rg-footer-links li {
  margin-bottom: 10px;
}

.rg-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.rg-footer-links a:hover {
  color: var(--gold-1);
  padding-left: 4px;
}

.rg-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rg-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rg-footer-contact-list i {
  color: var(--gold-1);
  margin-top: 2px;
  flex-shrink: 0;
}

.rg-footer-contact-list span,
.rg-footer-contact-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.rg-footer-contact-list a:hover {
  color: var(--gold-1);
}

.rg-footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 24px 0;
}

.rg-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.rg-footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

.rg-footer-legal {
  display: flex;
  align-items: center;
}

.rg-footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.rg-footer-legal a:hover {
  color: var(--gold-1);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.rg-back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  color: #000000;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.rg-back-top.visible {
  display: flex;
}

.rg-back-top:hover {
  transform: scale(1.1);
  color: #000000;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
}

/* ============================================================
   CALL FLOATING BUTTON
   ============================================================ */
.rg-call-btn {
  position: fixed;
  bottom: 132px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold-1);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: var(--transition);
  z-index: 950;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  border: none;
  cursor: pointer;
}

.rg-call-btn:hover {
  transform: scale(1.15) translateY(-8px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.rg-call-btn:active {
  transform: scale(1.08) translateY(-5px);
}

.rg-call-label {
  position: absolute;
  bottom: -35px;
  background: var(--gold-1);
  color: #000000;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.rg-call-btn:hover .rg-call-label {
  opacity: 1;
}

.rg-call-pulse {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  top: 0;
  left: 0;
  animation: callPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.rg-whatsapp-btn {
  position: fixed;
  bottom: 82px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold-1);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: var(--transition);
  z-index: 950;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  border: none;
  cursor: pointer;
}

.rg-whatsapp-btn:hover {
  transform: scale(1.15) translateY(-8px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.rg-whatsapp-btn:active {
  transform: scale(1.08) translateY(-5px);
}

.rg-whatsapp-label {
  position: absolute;
  bottom: -35px;
  background: var(--gold-1);
  color: #000000;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.rg-whatsapp-btn:hover .rg-whatsapp-label {
  opacity: 1;
}

.rg-whatsapp-pulse {
  display: none;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .rg-fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-about-inner,
  .rg-why-inner,
  .rg-premium-inner,
  .rg-carfeat-inner,
  .rg-connect-inner {
    flex-direction: column;
    gap: 48px;
  }

  .rg-about-img-wrap,
  .rg-about-content,
  .rg-why-content,
  .rg-why-mosaic,
  .rg-premium-content,
  .rg-premium-car,
  .rg-carfeat-img-wrap,
  .rg-carfeat-content,
  .rg-connect-content,
  .rg-connect-cards {
    flex: none;
    width: 100%;
  }
  .rg-about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px;
  }

  .rg-about-badge {
    right: 16px;
  }
  .rg-about-img-deco {
    left: -12px;
  }

  .rg-mosaic-grid {
    grid-template-rows: 200px 160px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .rg-hamburger {
    display: flex;
    width: 100px;
    align-items: flex-end;
  }

  .rg-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    z-index: 1005;
    transition: left 0.4s ease;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
  }

  .rg-menu.active,
  .rg-menu.open {
    left: 0;
  }

  .rg-menu > li {
    width: 100%;
  }

  .rg-menu > li > a {
    font-size: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 1px;
    width: 100%;
    display: block;
  }

  .rg-menu > li > a::after {
    display: none;
  }

  .rg-dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border-top: none;
    border-left: 2px solid var(--gold-1);
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      visibility 0.3s ease;
    padding: 0;
    margin-left: 12px;
  }

  .rg-menu > li.open .rg-dropdown {
    max-height: 300px;
    visibility: visible;
  }

  .rg-dropdown li a {
    padding: 10px 16px;
    font-size: 13px;
  }

  .rg-nav-cta {
    display: none;
  }

  /* Services grid */
  .rg-services-grid {
    grid-template-columns: 1fr;
  }

  /* Blog grid */
  .rg-blog-grid {
    grid-template-columns: 1fr;
  }

  /* Videos responsive */
  .rg-videos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rg-videos {
    padding: 64px 0;
  }

  /* Footer */
  .rg-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Booking bar — dark luxury card, 2×2 grid */
  .rg-booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(145deg, #111111 0%, #0d0d0d 100%);
    border: 1px solid rgba(201, 168, 76, 0.28);
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(201, 168, 76, 0.1);
    align-items: stretch;
  }

  /* Each field: dark mini-card */
  .rg-booking-field {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    justify-content: flex-start;
  }

  /* Phone field — full width row */
  .rg-booking-field-phone {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.07);
    border-color: rgba(201, 168, 76, 0.32);
    padding: 10px 16px;
  }

  /* Gold labels on dark bg */
  .rg-bfield-label {
    color: rgba(201, 168, 76, 0.8);
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  /* Smaller icon */
  .rg-bfield-icon {
    font-size: 15px;
  }

  /* Select: transparent on dark card */
  .rg-booking-select,
  .rg-booking-select:hover,
  .rg-booking-select:focus {
    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 14 9'%3E%3Cpath fill='%23c9a84c' d='M1 1.5l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 4px center !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-size: 13px;
    min-width: unset;
    width: 100%;
    padding: 2px 22px 2px 0;
  }

  .rg-booking-select option {
    background: #1a1a1a;
    color: #ffffff;
  }

  /* Phone number gold */
  .rg-bfield-val {
    color: #ffffff;
  }

  /* Hide separators — grid gap replaces them */
  .rg-booking-sep {
    display: none;
  }

  /* Book Now — spans full width */
  .rg-booking-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 10px;
  }

  /* Stats */
  .rg-stats {
    padding: 80px 0 40px;
  }

  /* Hero */
  .rg-hero-content {
    bottom: 220px;
  }

  /* Fleet: reduce to single col at 768 */
  .rg-fleet-grid {
    grid-template-columns: 1fr;
  }

  /* Video Gallery - Mobile Responsive */
  .rg-video-gallery-container {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .rg-video-main {
    position: static;
    top: auto;
  }

  .rg-video-player-main {
    height: 350px;
  }

  .rg-thumbnails-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .rg-video-thumbnail {
    height: 120px;
  }

  /* Why Choose Us - Mobile Responsive */
  .rg-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
  }

  .rg-why-card {
    padding: 24px 20px;
  }

  .rg-why-card-icon {
    width: 60px;
    height: 60px;
  }

  .rg-why-card h3 {
    font-size: 16px;
  }

  .rg-why-card p {
    font-size: 13px;
  }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  /* Footer single col */
  .rg-footer-grid {
    grid-template-columns: 1fr;
  }

  /* Hero title */
  .rg-hero-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  /* Hero subtitle */
  .rg-hero-sub {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 170px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Stats 2x2 */
  .rg-stats-inner {
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 16px;
  }

  .rg-stat {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .rg-stat:nth-child(even) {
    border-left: 1px solid rgba(201, 168, 76, 0.1);
  }

  .rg-stat-div {
    display: none;
  }

  /* Mosaic single col */
  .rg-mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .rg-mosaic-img {
    height: 180px;
  }
  .rg-mosaic-wide {
    grid-column: auto;
  }

  /* Connect buttons */
  .rg-connect-btns {
    flex-direction: column;
  }
  .rg-hero-actions {
    flex-direction: row;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
  }

  .rg-btn-gold {
    font-size: 6px;
    padding: 15px 15px;
  }

  .rg-btn-ghost {
    font-size: 6px;
  }

  /* Booking bar on very small */
  .rg-booking-bar {
    position: static;
    transform: none;
    padding: 0 12px;
    margin-top: 0;
  }
  .rg-hero {
    padding-bottom: 0;
  }
  .rg-stats {
    padding-top: 40px;
  }

  /* About badge reposition */
  .rg-about-badge {
    right: 0;
    bottom: 0;
  }
  .rg-about-img-deco {
    display: none;
  }
  .rg-carfeat-img-deco {
    display: none;
  }

  /* Reduce section padding */
  .rg-about,
  .rg-services,
  .rg-why,
  .rg-premium,
  .rg-fleet,
  .rg-carfeat,
  .rg-blog {
    padding: 60px 0;
  }

  .rg-connect {
    padding: 80px 0;
  }

  /* Footer bottom */
  .rg-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .rg-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
  .rg-footer-legal a {
    margin-left: 0;
    margin: 4px 8px;
  }
}

/* ============================================================
   INNER PAGE HERO BANNER
   ============================================================ */
/* ── INNER PAGE HERO BANNER ── */
.rg-page-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
  background-size: cover;
  background-position: center;
}

/* Background div fills the fixed-height container */
.rg-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease;
  z-index: 0;
}

.rg-page-hero:hover .rg-page-hero-bg {
  transform: scale(1.1);
}

.rg-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 62%) !important;
  z-index: 1;
}

.rg-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.rg-page-hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #ffffff;
  letter-spacing: 8px;
  line-height: 1;
  margin-bottom: 18px;
}

/* About Page Hero - Increased Height for Desktop */
.rg-page-hero:has(+ .rg-about-page) {
  height: 727px !important;
}

/* ── MOBILE: background-image in fixed-height container ── */
@media (max-width: 767px) {

  /* Fixed height so background-image has a frame to fill */
  .rg-page-hero {
    height: 177px !important;
    min-height: unset !important;
    margin-top: 50px;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* About page hero — custom mobile height */
  .rg-page-hero:has(+ .rg-about-page) {
    height: 177px !important;
  }

  /* Background div is absolutely positioned within the container */
  .rg-page-hero-bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: contain !important;
    background-position: bottom !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    transform: none !important;
  }

  /* Overlay covers the full image — stretches to container via absolute */
  .rg-page-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 1 !important;
  }

  /* Text centered over the image */
  .rg-page-hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    padding: 0 16px !important;
    text-align: center !important;
    z-index: 2 !important;
    white-space: nowrap; /* prevents awkward wrapping on narrow screens */
  }

  .rg-page-hero-content h1 {
    font-size: clamp(1.2rem, 5.5vw, 2.2rem) !important;
    letter-spacing: 3px !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
    white-space: normal !important; /* allow h1 to wrap naturally */
  }

  /* Breadcrumb font size reduced for mobile */
  .rg-breadcrumb {
    font-size: 10px !important;
    gap: 6px !important;
  }
}


.rg-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
}
/* Reset ol/li inside breadcrumb (Bootstrap override) */
.rg-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rg-breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
}
.rg-breadcrumb ol li + li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 6px;
  color: var(--gold-1);
  display: inline-block;
}
.rg-breadcrumb ol li a {
  color: var(--gold-2);
  text-decoration: none;
  transition: var(--transition);
}
.rg-breadcrumb ol li a:hover {
  color: var(--gold-3);
}
.rg-breadcrumb ol li span {
  color: rgba(255, 255, 255, 0.55);
}
.rg-breadcrumb a {
  color: var(--gold-2);
  text-decoration: none;
  transition: var(--transition);
}
.rg-breadcrumb a:hover {
  color: var(--gold-3);
}
.rg-breadcrumb-sep {
  color: var(--gold-1);
  font-size: 9px;
}
.rg-breadcrumb-cur {
  color: #e2b96f;
}

/* ============================================================
   FOOTER CTA STRIP — Premium design
   ============================================================ */
.rg-footer-cta-strip {
  background: #0d0d0d;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.rg-footer-cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #8b6914 0%,
    #c9a84c 35%,
    #f5d78e 60%,
    #d4af37 100%
  );
}
.rg-footer-cta-strip::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.rg-fcta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.rg-fcta-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #ffffff;
  letter-spacing: 4px;
  margin: 0 0 8px;
  line-height: 1.1;
}
.rg-fcta-content p {
  color: rgba(216, 208, 192, 0.55);
  font-size: 14.5px;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.rg-fcta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.rg-fcta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.rg-fcta-phone i {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.rg-fcta-phone:hover {
  color: var(--gold-3);
}

/* ============================================================
   FOOTER — Fully redesigned
   ============================================================ */
/* ── Footer CTA Strip ── */
.rg-footer-cta-strip {
  background: linear-gradient(135deg, #0a0a0a 0%, #111008 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.rg-footer-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.rg-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.rg-footer-cta-eyebrow {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.rg-footer-cta-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.5px;
  margin: 0;
}
.rg-footer-cta-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.rg-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #000;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.rg-footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}
.rg-footer-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 13px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.rg-footer-cta-call:hover {
  color: var(--gold-1);
  border-color: rgba(201, 168, 76, 0.4);
}

/* ── Footer Main ── */
.rg-footer {
  background: #050505;
  position: relative;
}
.rg-footer-top {
  padding: 72px 0 52px;
}
.rg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.7fr;
  gap: 52px;
}

/* Brand */
.rg-footer-brand img {
  margin-bottom: 16px;
  display: block;
}
.rg-footer-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 14px;
}
.rg-footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.33);
  line-height: 1.9;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 290px;
}

/* Social */
.rg-footer-social {
  display: flex;
  gap: 10px;
}
.rg-footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.rg-footer-social a:hover {
  background: var(--gold-gradient);
  color: #050505;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.28);
}

/* Headings */
.rg-footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 22px;
  padding-bottom: 14px;
  position: relative;
}
.rg-footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-1), transparent);
  border-radius: 2px;
}

/* Links */
.rg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rg-footer-links li {
  margin-bottom: 12px;
}
.rg-footer-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rg-footer-links a i {
  color: rgba(201, 168, 76, 0.45);
  font-size: 9px;
  width: 12px;
  flex-shrink: 0;
  transition:
    color 0.25s,
    transform 0.25s;
}
.rg-footer-links a:hover {
  color: var(--gold-2);
  padding-left: 2px;
}
.rg-footer-links a:hover i {
  color: var(--gold-1);
  transform: translateX(3px);
}

/* Contact List */
.rg-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rg-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rg-footer-ci {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rg-footer-ci i {
  color: var(--gold-1);
  font-size: 12px;
}
.rg-footer-contact-list span,
.rg-footer-contact-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.25s;
  padding-top: 6px;
}
.rg-footer-contact-list a:hover {
  color: var(--gold-2);
}

/* WhatsApp */
.rg-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25d366;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.rg-footer-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.18);
}

/* Bottom Bar */
.rg-footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 22px 0;
}
.rg-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.rg-footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
  letter-spacing: 0.3px;
}
.rg-footer-social-bottom {
  gap: 8px;
}
.rg-footer-social-bottom a {
  width: 30px;
  height: 30px;
  font-size: 11px;
}
.rg-footer-legal {
  display: flex;
  align-items: center;
}
.rg-footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.25s;
  white-space: nowrap;
}
.rg-footer-legal a:last-child {
  border-right: none;
  padding-right: 0;
}
.rg-footer-legal a:hover {
  color: var(--gold-2);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.rg-about-page {
  background: var(--light-bg);
  padding: 100px 0;
}
.rg-about-page-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}
.rg-about-page-img {
  flex: 0 0 46%;
  position: relative;
}
.rg-about-page-img img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.rg-about-page-img::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius);
  z-index: -1;
}
.rg-about-page-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(5, 5, 5, 0.3) 100%
  );
  pointer-events: none;
}
.rg-about-page-content {
  flex: 1;
  padding-top: 8px;
}
.rg-about-page-content > p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 300;
}
.rg-about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.rg-value-card {
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  padding: 22px 18px;
  transition: all 0.35s ease;
}
.rg-value-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.rg-value-card-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #8b6914, #c9a84c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-size: 16px;
  margin-bottom: 12px;
}
.rg-value-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.rg-value-card p {
  font-size: 12.5px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}
.rg-about-stats {
  display: flex;
  gap: 0;
  background: var(--black-primary);
  border-radius: var(--radius);
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.rg-astat {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(201, 168, 76, 0.08);
}
.rg-astat:last-child {
  border-right: none;
}
.rg-astat-num {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  background: linear-gradient(
    90deg,
    #8b6914 0%,
    #c9a84c 35%,
    #f5d78e 60%,
    #d4af37 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rg-astat-lbl {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   ABOUT — MISSION STRIP (dark band)
   ============================================================ */
.rg-mission-strip {
  background: var(--black-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.rg-mission-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.35;
}
.rg-mission-strip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.35;
}
.rg-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.rg-mission-item {
  padding: 40px 44px;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  transition: background 0.3s;
}
.rg-mission-item:last-child {
  border-right: none;
}
.rg-mission-item:hover {
  background: rgba(201, 168, 76, 0.04);
}
.rg-mission-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  font-size: 18px;
  margin-bottom: 20px;
}
.rg-mission-item h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 12px;
}
.rg-mission-item p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .rg-mission-grid {
    grid-template-columns: 1fr;
  }
  .rg-mission-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 32px 24px;
  }
  .rg-mission-item:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   ABOUT — ARTICLE CSS
   ============================================================ */
.rg-article-section {
  padding: 80px 0;
  background: var(--light-bg);
}
.rg-article-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}
.rg-article-featured-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 52px;
  display: block;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}
.rg-article-body {
  font-family: "Poppins", sans-serif;
  color: #2a2a2a;
  font-size: 1.02rem;
  line-height: 1.9;
}
.rg-article-body > p {
  margin-bottom: 22px;
}
.rg-article-body h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--black-primary);
  margin: 40px 0 14px;
  padding-left: 16px;
  border-left: 4px solid var(--gold-1);
  line-height: 1.3;
}
.rg-article-body h2.rg-article-sub {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-5);
  margin: 28px 0 8px;
  padding-left: 0;
  border-left: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.rg-article-body strong {
  color: var(--black-primary);
  font-weight: 600;
}
.rg-article-body a {
  color: var(--gold-5);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.rg-article-body a:hover {
  color: var(--gold-1);
}
@media (max-width: 768px) {
  .rg-article-section {
    padding: 50px 0;
  }
  .rg-article-body h2 {
    font-size: 1.25rem;
  }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.rg-services-page {
  background: var(--light-bg);
  padding: 100px 0;
}
.rg-services-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.rg-svc-page-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.06);
}
.rg-svc-page-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(201, 168, 76, 0.15);
}
.rg-svc-page-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.rg-svc-page-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.55) 0%, transparent 55%);
}
.rg-svc-page-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.rg-svc-page-card:hover .rg-svc-page-img-inner {
  transform: scale(1.05);
}
.rg-svc-page-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rg-svc-page-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8b6914, #c9a84c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-size: 19px;
  margin-bottom: 16px;
}
.rg-svc-page-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.rg-svc-page-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-weight: 300;
}

/* ============================================================
   SERVICE CARD (services.html listing grid)
   ============================================================ */
/* 2-column grid specifically on the services listing page */
.rg-services-page .rg-services-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.rg-service-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.rg-service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.11),
    0 0 0 1px rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.22);
}

/* Image area */
.rg-service-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.rg-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.rg-service-card:hover .rg-service-card-img img {
  transform: scale(1.06);
}
.rg-service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.45) 0%,
    rgba(5, 5, 5, 0.05) 55%,
    transparent 100%
  );
  pointer-events: none;
}

/* Body */
.rg-service-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rg-service-card-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.1;
}
.rg-service-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
  font-weight: 300;
}

/* Action buttons */
.rg-service-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* Ghost button on light card background — override white text */
.rg-service-card-actions .rg-btn-ghost {
  color: var(--text-dark);
  border-color: rgba(201, 168, 76, 0.5);
  background: transparent;
}
.rg-service-card-actions .rg-btn-ghost:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .rg-services-page .rg-services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .rg-service-card-img {
    height: 220px;
  }
  .rg-service-card-body {
    padding: 20px;
  }
  .rg-services-page {
    padding: 60px 0;
  }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.rg-blog-page {
  background: var(--light-bg);
  padding: 100px 0;
}
.rg-blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.rg-service-detail {
  padding: 100px 0;
  background: var(--light-bg);
}
.rg-service-detail-inner {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}
.rg-service-detail-img {
  flex: 0 0 48%;
  position: relative;
}
.rg-service-detail-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.rg-service-detail-img::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 1.5px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius);
  z-index: -1;
}
.rg-service-detail-content {
  flex: 1;
}
.rg-service-detail-content > p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}
.rg-service-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.rg-service-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid var(--gold-1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.rg-service-perk:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}
.rg-service-perk i {
  color: var(--gold-1);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.rg-service-perk div h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.rg-service-perk div p {
  font-size: 12.5px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}
.rg-service-info-row {
  background: var(--black-primary);
  padding: 80px 0;
}
.rg-service-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.rg-service-info-box {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.rg-service-info-box:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.rg-service-info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #8b6914 0%,
    #c9a84c 35%,
    #f5d78e 60%,
    #d4af37 100%
  );
}
.rg-service-info-box h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 20px;
}
.rg-service-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.rg-service-info-box ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}
.rg-service-info-box ul li i {
  color: var(--gold-1);
  font-size: 11px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.rg-contact-page {
  background: var(--light-bg);
  padding: 100px 0;
}
.rg-contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.rg-contact-info-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 3px;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.1;
}
.rg-contact-info-section > p {
  font-size: 15px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 300;
}
.rg-contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.rg-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.rg-contact-info-card:hover {
  border-color: rgba(201, 168, 76, 0.28);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}
.rg-contact-info-card-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #8b6914, #c9a84c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-size: 17px;
  flex-shrink: 0;
}
.rg-contact-info-card-text span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 5px;
}
.rg-contact-info-card-text p,
.rg-contact-info-card-text a {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  transition: var(--transition);
}
.rg-contact-info-card-text a:hover {
  color: var(--gold-1);
}
.rg-contact-social-row {
  display: flex;
  gap: 10px;
}
.rg-contact-social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-1);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.rg-contact-social-row a:hover {
  background: linear-gradient(135deg, #8b6914, #c9a84c);
  color: #050505;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.28);
}
.rg-contact-form-section {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.07);
  position: relative;
  overflow: hidden;
}
.rg-contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #8b6914 0%,
    #c9a84c 35%,
    #f5d78e 60%,
    #d4af37 100%
  );
}
.rg-contact-form-section h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.rg-form-group {
  margin-bottom: 18px;
}
.rg-form-group label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 7px;
}
.rg-form-group input,
.rg-form-group select,
.rg-form-group textarea {
  width: 100%;
  background: #f8f7f5;
  border: 1.5px solid #ece9e0;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.rg-form-group input:focus,
.rg-form-group select:focus,
.rg-form-group textarea:focus {
  border-color: var(--gold-1);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.rg-form-group input::placeholder,
.rg-form-group textarea::placeholder {
  color: #bbb;
  font-size: 13px;
}
.rg-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.rg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rg-form-submit {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
  border: none;
}
.rg-form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.rg-form-msg.success {
  background: rgba(52, 168, 83, 0.1);
  color: #2d7a3a;
  border: 1px solid rgba(52, 168, 83, 0.2);
}
.rg-form-msg.error {
  background: rgba(234, 67, 53, 0.1);
  color: #c0392b;
  border: 1px solid rgba(234, 67, 53, 0.2);
}
.rg-map-section {
  padding: 0 0 100px;
  background: var(--light-bg);
}
.rg-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.rg-map-wrap iframe {
  display: block;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.rg-404-section {
  min-height: 100vh;
  background: var(--black-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.rg-404-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.rg-404-content {
  position: relative;
  z-index: 2;
}
.rg-404-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(9rem, 22vw, 18rem);
  line-height: 0.85;
  background: linear-gradient(
    90deg,
    #8b6914 0%,
    #c9a84c 35%,
    #f5d78e 60%,
    #d4af37 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
  opacity: 0.65;
}
.rg-404-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: 7px;
  margin-bottom: 14px;
}
.rg-404-content p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.rg-404-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — Inner Pages
   ============================================================ */
@media (max-width: 1024px) {
  .rg-about-page-inner {
    flex-direction: column;
  }
  .rg-about-page-img {
    flex: none;
    width: 100%;
    max-width: 560px;
  }
  .rg-service-detail-inner {
    flex-direction: column;
  }
  .rg-service-detail-img {
    flex: none;
    width: 100%;
  }
  .rg-service-detail-img img {
    height: 380px;
  }
  .rg-services-page-grid {
    grid-template-columns: 1fr;
  }
  .rg-contact-page-inner {
    grid-template-columns: 1fr;
  }
  .rg-service-info-grid {
    grid-template-columns: 1fr;
  }
  .rg-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .rg-footer-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .rg-footer-cta-right {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* ── PAGE HERO — handled in the hero block above ── */
 
  .rg-fcta-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .rg-fcta-actions {
    flex-direction: column;
    align-items: center;
  }
  .rg-blog-page-grid {
    grid-template-columns: 1fr;
  }
  .rg-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rg-footer-cta-right {
    flex-direction: column;
    width: 100%;
  }
  .rg-footer-cta-btn,
  .rg-footer-cta-call {
    width: 100%;
    justify-content: center;
  }
  .rg-footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .rg-footer-social-bottom {
    display: none;
  }
  .rg-about-values {
    grid-template-columns: 1fr;
  }
  .rg-about-stats {
    flex-wrap: wrap;
  }
  .rg-astat {
    flex: 0 0 50%;
  }
  .rg-contact-form-section {
    padding: 28px 20px;
  }
  .rg-form-row {
    grid-template-columns: 1fr;
  }
  .rg-services-page-grid {
    grid-template-columns: 1fr;
  }
  .rg-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .rg-footer-legal a {
    border-right: none;
    padding: 4px 10px;
  }
}

@media (max-width: 600px) {
  /* .rg-page-hero height is auto on mobile — set in hero block */
  .rg-service-detail-img img {
    height: 260px;
  }
  .rg-contact-form-section {
    padding: 24px 16px;
  }
  .rg-404-num {
    font-size: 28vw;
  }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
@keyframes rg-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rg-modal-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.rg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.rg-modal-overlay.rg-modal-active {
  display: flex;
  animation: rg-overlay-in 0.3s ease forwards;
}
.rg-modal-overlay.rg-modal-active .rg-modal {
  animation: rg-modal-in 0.35s ease forwards;
}
.rg-modal {
  background: #0f0f0f;
  border-top: 3px solid var(--gold-1);
  border-radius: 14px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-1) #1a1a1a;
}
.rg-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 36px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.rg-modal-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 3px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.rg-modal-title span {
  color: var(--gold-1);
}
.rg-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.rg-modal-close:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-1);
  border-color: var(--gold-1);
}
.rg-modal-body {
  padding: 32px 36px 36px;
}
.rg-modal-subtitle {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.rg-bform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.rg-bform-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rg-bform-group.full,
.rg-bform-full {
  margin-bottom: 20px;
}
.rg-bform-group label {
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.rg-bform-group label .rg-req {
  color: var(--gold-1);
  margin-left: 3px;
}
.rg-bform-group input,
.rg-bform-group select,
.rg-bform-group textarea {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  padding: 13px 16px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.rg-bform-group input::placeholder,
.rg-bform-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}
.rg-bform-group input:focus,
.rg-bform-group select:focus,
.rg-bform-group textarea:focus {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.09);
}
.rg-bform-group input.rg-input-error,
.rg-bform-group select.rg-input-error {
  border-color: #e55;
}
.rg-bform-group select option {
  background: #161616;
  color: #fff;
}
.rg-bform-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.rg-bform-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

.rg-bform-group input:read-only,
.rg-bform-group input[readonly] {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
  color: rgba(201, 168, 76, 0.9);
  cursor: not-allowed;
}

.rg-bform-group input:read-only::placeholder,
.rg-bform-group input[readonly]::placeholder {
  color: rgba(201, 168, 76, 0.5);
}
.rg-field-err {
  font-size: 11px;
  color: #f08080;
  min-height: 14px;
  display: block;
}
.rg-modal-submit {
  width: 100%;
  /* margin-top: 24px; */
  padding: 16px;
  font-size: 12px;
  letter-spacing: 2.5px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #000;
  transition: all 0.3s;
  animation: shimmer 4s linear infinite;
}
.rg-modal-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.rg-modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  animation: none;
}
.rg-bform-msg {
  display: none;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}
.rg-bform-msg.success {
  background: rgba(50, 180, 80, 0.12);
  border: 1px solid rgba(50, 180, 80, 0.3);
  color: #6dda8a;
  display: block;
}
.rg-bform-msg.error {
  background: rgba(220, 60, 60, 0.12);
  border: 1px solid rgba(220, 60, 60, 0.3);
  color: #f08080;
  display: block;
}
.rg-modal-success-state {
  text-align: center;
  padding: 20px 0 10px;
  display: none;
}
.rg-modal-success-state.show {
  display: block;
}
.rg-modal-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--gold-1);
}
.rg-modal-success-state h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
}
.rg-modal-success-state p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .rg-modal {
    border-radius: 10px 10px 0 0;
    max-height: 95vh;
  }
  .rg-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .rg-modal-header {
    padding: 24px 22px 18px;
  }
  .rg-modal-body {
    padding: 24px 22px 32px;
  }
  .rg-bform-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}

/* ============================================================
   BASE BODY (all pages — font, overflow)
   ============================================================ */
body {
  font-family: "Poppins", "Lato", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================================
   SERVICE SIDEBAR (inner service pages)
   ============================================================ */
.rg-service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.rg-service-sidebar {
  position: sticky;
  top: 90px;
}
.rg-service-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
/* Image flush at the top of the card */
.rg-service-sidebar-card > img:first-child {
  display: block;
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  height: 200px;
  object-fit: cover;
  margin: -24px -24px 24px -24px;
  border-radius: 12px 12px 0 0 !important;
}
.rg-service-sidebar-card h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.rg-service-sidebar-card h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 14px;
}
.rg-service-sidebar-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}
/* Ghost button override for light background context */
.rg-service-sidebar-card .rg-btn-ghost {
  color: var(--text-dark);
  border-color: rgba(201, 168, 76, 0.45);
  background: transparent;
}
.rg-service-sidebar-card .rg-btn-ghost:hover {
  color: #000;
}
.rg-service-sidebar-card .rg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rg-service-sidebar-card .rg-footer-links li a {
  color: var(--text-mid);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: color 0.2s;
}
.rg-service-sidebar-card .rg-footer-links li:last-child a {
  border-bottom: none;
}
.rg-service-sidebar-card .rg-footer-links li a:hover {
  color: var(--gold-1);
}
.rg-service-sidebar-card .rg-footer-links li a i {
  color: var(--gold-1);
  font-size: 10px;
}

/* Service features list */
.rg-service-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rg-service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 14px;
  background: #f9f7f3;
  border-radius: 8px;
  border-left: 3px solid var(--gold-1);
}
.rg-service-features li i {
  color: var(--gold-1);
  font-size: 14px;
  flex-shrink: 0;
}

/* Service gallery strip */
.rg-service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.rg-sgal-item {
  border-radius: 8px;
  overflow: hidden;
}
.rg-sgal-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.rg-sgal-item:hover img {
  transform: scale(1.06);
}

/* ============================================================
   CONTACT SECTION (contact-us page)
   ============================================================ */
.rg-contact-section {
  background: var(--light-bg);
  padding: 100px 0;
}
.rg-contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

/* Contact form */
.rg-contact-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.rg-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.rg-form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
}
.rg-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: #fafaf8;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.rg-form-control:focus {
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: #ffffff;
}
.rg-form-control::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.rg-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
textarea.rg-form-control {
  resize: vertical;
  line-height: 1.6;
}
input[type="date"].rg-form-control::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

/* Contact info sidebar */
.rg-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rg-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.rg-contact-info-item:first-child {
  padding-top: 0;
}
.rg-contact-info-item:last-child {
  border-bottom: none;
}
.rg-contact-info-item h5 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.rg-contact-info-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.rg-contact-info-item a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}
.rg-contact-info-item a:hover {
  color: var(--gold-1);
}
.rg-ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold-1);
}

/* ============================================================
   BLOG LISTING (blog.html new card classes)
   ============================================================ */
.rg-blog-card-img {
  height: 500px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.rg-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.rg-blog-card:hover .rg-blog-card-img img {
  transform: scale(1.06);
}
.rg-blog-card-body {
  padding: 22px 24px 24px;
}
.rg-blog-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-1);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.rg-blog-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 10px;
}
.rg-blog-card-excerpt {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.rg-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold-1);
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}
.rg-blog-read-more:hover {
  color: var(--gold-5);
  gap: 10px;
}

/* ============================================================
   BLOG ARTICLE DETAIL PAGE
   ============================================================ */
.rg-blog-cat-hero {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-1);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.rg-blog-article-wrap {
  background: var(--light-bg);
  padding: 80px 0 100px;
}
.rg-blog-detail-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
.rg-blog-detail-img img {
  width: 100%;
  /* max-height: 480px; */
  object-fit: cover;
  display: block;
}
.rg-blog-detail-content {
  /* max-width: 800px; */
  margin: 0 auto;
}
.rg-blog-detail-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}
.rg-blog-content-head {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin: 36px 0 14px;
  line-height: 1.2;
}
.rg-blog-detail-content h2.content {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0 8px;
  letter-spacing: 0;
  font-family: "Poppins", sans-serif;
}
.rg-blog-detail-content a.blog-head {
  color: var(--gold-1);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.rg-blog-detail-content a.blog-head:hover {
  color: var(--gold-5);
  text-decoration: underline;
}
.rg-blog-detail-content strong.content2 {
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================================
   MOBILE FIXES — 1024px (service detail sidebar)
   ============================================================ */
@media (max-width: 1024px) {
  .rg-service-detail-inner {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
  .rg-contact-grid {
    grid-template-columns: 1fr 320px;
    gap: 36px;
  }
}

/* ============================================================
   MOBILE FIXES — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Service sidebar stacks below content */
  .rg-service-detail-inner {
    grid-template-columns: 1fr;
  }
  .rg-service-sidebar {
    position: static;
  }
  .rg-service-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Contact grid stacks */
  .rg-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rg-contact-form {
    padding: 28px 22px;
  }
  /* Footer CTA strip */
  .rg-fcta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .rg-fcta-actions {
    justify-content: center;
  }
}

/* ============================================================
   MOBILE FIXES — 600px (critical hero + image heights)
   ============================================================ */
@media (max-width: 600px) {
  /* ── Hero overlap fix ─────────────────────────────────── */
  .rg-hero {
    height: auto;
    min-height: 100svh;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding-bottom: 0;
  }
  .rg-hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 110px 20px 36px;
    text-align: center;
  }

  /* ── Carfeat image height ─────────────────────────── */
  .rg-carfeat-img {
    height: 220px;
  }

  /* ── Mosaic image height ──────────────────────────── */
  .rg-mosaic-img {
    height: 130px;
  }

  /* ── Service gallery single col ──────────────────── */
  .rg-service-gallery {
    grid-template-columns: 1fr;
  }
  .rg-sgal-item img {
    height: 180px;
  }

  /* ── Service detail padding ───────────────────────── */
  .rg-service-detail {
    padding: 60px 0;
  }
  .rg-service-sidebar-card {
    padding: 20px;
  }

  /* ── Contact section ──────────────────────────────── */
  .rg-contact-section {
    padding: 60px 0;
  }
  .rg-contact-form {
    padding: 22px 16px;
  }

  /* ── Blog card image ──────────────────────────────── */
  .rg-blog-card-img {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .rg-blog-card-img {
    height: 150px;
  }
}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================================ */
.rg-legal-page {
  background: var(--light-bg);
  padding: 80px 0 100px;
}
.rg-legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 56px 60px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.rg-legal-updated {
  font-size: 12.5px;
  color: rgba(201, 168, 76, 0.9);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.rg-legal-wrap > p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}
.rg-legal-wrap h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin: 40px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rg-legal-wrap h2:first-of-type {
  margin-top: 28px;
}
.rg-legal-wrap h2 i {
  width: 34px;
  height: 34px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold-1);
  flex-shrink: 0;
}
.rg-legal-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rg-legal-wrap ul li {
  font-size: 14.5px;
  color: #555;
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}
.rg-legal-wrap ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-1);
}
.rg-legal-wrap ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}
.rg-legal-contact {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rg-legal-contact div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #555;
}
.rg-legal-contact div i {
  color: var(--gold-1);
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.rg-legal-contact a {
  color: var(--gold-1);
  text-decoration: none;
}
.rg-legal-contact a:hover {
  text-decoration: underline;
}

/* ── Sitemap page ── */
.rg-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px 0 40px;
}
.rg-sitemap-group {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 24px 28px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.rg-sitemap-group h2 {
  font-size: 1.1rem !important;
  letter-spacing: 1.5px !important;
  margin: 0 0 16px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.rg-sitemap-group ul {
  margin: 0 !important;
  gap: 6px !important;
}
.rg-sitemap-group ul li {
  padding-left: 0 !important;
}
.rg-sitemap-group ul li::before {
  display: none;
}
.rg-sitemap-group ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  padding: 5px 0;
  transition:
    color 0.2s,
    gap 0.2s;
}
.rg-sitemap-group ul li a i {
  font-size: 10px;
  color: var(--gold-1);
  flex-shrink: 0;
}
.rg-sitemap-group ul li a:hover {
  color: var(--gold-1);
  gap: 12px;
}
.rg-sitemap-cta {
  text-align: center;
  padding: 32px 0 8px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.rg-sitemap-cta p {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* Responsive legal pages */
@media (max-width: 768px) {
  .rg-legal-wrap {
    padding: 36px 28px;
  }
  .rg-sitemap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .rg-legal-page {
    padding: 60px 0 80px;
  }
  .rg-legal-wrap {
    padding: 28px 20px;
    border-radius: 10px;
  }
  .rg-legal-wrap h2 {
    font-size: 1.3rem;
  }
}

/* ============================================================
   CALL & WHATSAPP BUTTONS — MOBILE (matches desktop circle design)
   ============================================================ */
@media (max-width: 768px) {

  /* Call button — positioned above WhatsApp */
  .rg-call-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    right: 16px;
    left: auto;
    bottom: calc(132px + env(safe-area-inset-bottom, 0px));
    font-size: 20px;
    z-index: 950;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  }

  /* No hover lift on touch */
  .rg-call-btn:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  }

  /* Tactile press */
  .rg-call-btn:active {
    transform: scale(0.93);
  }

  /* Hide tooltip label on mobile */
  .rg-call-label {
    display: none;
  }

  /* Restore pulse ring — matches button size */
  .rg-call-pulse {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }

  /* Circle button — same size as .rg-back-top (44px) */
  .rg-whatsapp-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    right: 16px;
    left: auto;
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    font-size: 22px;
    padding-bottom: 0;
    gap: 0;
    justify-content: center;
    z-index: 950;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  }

  /* No hover lift on touch */
  .rg-whatsapp-btn:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  }

  /* Tactile press */
  .rg-whatsapp-btn:active {
    transform: scale(0.93);
  }

  /* Hide tooltip label on mobile */
  .rg-whatsapp-label {
    display: none;
  }

  /* Hide pulse ring */
  .rg-whatsapp-pulse {
    display: none;
  }

  /* Remove body padding — no full-width bar */
  body {
    padding-bottom: 0;
  }

  /* Back-to-top sits at its normal mobile position */
  .rg-back-top {
    bottom: 32px;
    right: 16px;
  }
}


/* ============================================================
   Hero section — ALL INNER PAGES
   All heroes use <div class="rg-page-hero-bg" style="background-image: url(...)">
   background-size, position, and zoom are handled by .rg-page-hero-bg
   ============================================================ */

/* HOME PAGE — special: uses contain so the full slider image shows */
#home-hero {
  height: 100%;
  width: 100%;
  margin-top: 50px;
  background-image: url("../images/slider/111.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

