/* ============================================================
   RANTANG EMAS CATERING — Custom Theme CSS
   Color Palette: Dark Brown + Gold + Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --re-primary: #2C1810;
  --re-secondary: #4A2C1A;
  --re-gold: #C8860A;
  --re-gold-light: #F5A623;
  --re-gold-pale: #FFF3D4;
  --re-cream: #FDF6E3;
  --re-whatsapp: #25D366;
  --re-whatsapp-dark: #128C7E;
  --re-text-dark: #1A0F0A;
  --re-text-body: #4A3728;
  --re-text-muted: #8B6A50;
  --re-border: #E8D5B7;
  --re-white: #FFFFFF;
  --re-shadow: 0 4px 30px rgba(44, 24, 16, 0.12);
  --re-shadow-hover: 0 12px 40px rgba(44, 24, 16, 0.22);
}

/* ============================================================
   BASE RESET & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif !important;
  color: var(--re-text-body);
  background-color: var(--re-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif !important;
  color: var(--re-primary);
  font-weight: 700;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.re-navbar {
  background: var(--re-white) !important;
  box-shadow: 0 2px 20px rgba(44,24,16,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 0;
}

.re-navbar .navbar-brand img {
  height: 52px;
  width: auto;
}

.re-navbar .navbar-brand span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--re-primary);
  line-height: 1.2;
  display: block;
}

.re-navbar .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--re-primary) !important;
  padding: 26px 14px !important;
  transition: color 0.2s;
  position: relative;
}

.re-navbar .nav-link:hover,
.re-navbar .nav-link.active {
  color: var(--re-gold) !important;
}

.re-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--re-gold);
  border-radius: 2px 2px 0 0;
}

/* CTA Buttons in Nav */
.btn-re-webstore {
  background: var(--re-gold-light) !important;
  color: var(--re-primary) !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-re-webstore:hover {
  background: var(--re-gold) !important;
  color: var(--re-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200, 134, 10, 0.4);
}

.btn-re-wa {
  background: var(--re-whatsapp) !important;
  color: var(--re-white) !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-re-wa:hover {
  background: var(--re-whatsapp-dark) !important;
  color: var(--re-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Dropdown Menu */
.re-navbar .dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(44,24,16,0.12);
  border-radius: 12px;
  padding: 8px;
  margin-top: 0;
}
.re-navbar .dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: var(--re-primary);
  border-radius: 8px;
  padding: 9px 14px;
  transition: all 0.2s;
}
.re-navbar .dropdown-item:hover {
  background: var(--re-gold-pale);
  color: var(--re-gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.re-hero {
  background: var(--re-primary);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.re-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,134,10,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.re-hero-content { position: relative; z-index: 2; }

.re-hero-badge {
  background: rgba(200,134,10,0.2);
  border: 1px solid rgba(200,134,10,0.4);
  color: var(--re-gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.re-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--re-white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.re-hero-title .re-accent {
  color: var(--re-gold-light);
  position: relative;
}

.re-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

/* Feature Badges */
.re-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
@media (max-width: 600px) {
  .re-features-grid { grid-template-columns: repeat(2, 1fr); }
}

.re-feature-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  transition: all 0.25s;
}
.re-feature-badge:hover {
  background: rgba(200,134,10,0.15);
  border-color: rgba(200,134,10,0.3);
  transform: translateY(-3px);
}
.re-feature-badge i {
  font-size: 22px;
  color: var(--re-gold-light);
  margin-bottom: 7px;
  display: block;
}
.re-feature-badge .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--re-white);
  display: block;
  line-height: 1.3;
}
.re-feature-badge .sub {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}

/* Hero Image Side */
.re-hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.re-hero-img-main {
  width: 90%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.re-partner-card {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  max-width: 260px;
  position: absolute;
  bottom: -30px;
  right: -10px;
  z-index: 5;
}
.re-partner-card img { width: 48px; height: 48px; object-fit: contain; }
.re-partner-card .title { font-size: 13px; font-weight: 700; color: var(--re-primary); }
.re-partner-card .sub { font-size: 10px; color: var(--re-text-muted); text-transform: uppercase; letter-spacing: 0.8px; }

.re-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.re-check-list li {
  font-size: 12px;
  color: var(--re-text-muted);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.re-check-list li::before {
  content: '✓';
  color: var(--re-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.re-section { padding: 80px 0; }
.re-section-sm { padding: 50px 0; }

.re-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--re-gold);
  display: block;
  margin-bottom: 10px;
}

.re-section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--re-primary);
  line-height: 1.25;
  margin-bottom: 14px;
}

.re-section-desc {
  font-size: 15px;
  color: var(--re-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   CLIENTS / MITRA SECTION
   ============================================================ */
.re-clients-section {
  background: #FAFAF8;
  padding: 44px 0;
  border-top: 1px solid var(--re-border);
  border-bottom: 1px solid var(--re-border);
}

.re-clients-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--re-text-muted);
  text-align: center;
  margin-bottom: 30px;
}

.re-clients-track {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.re-client-logo {
  height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s;
}
.re-client-logo:hover { filter: grayscale(0%) opacity(1); }

.re-client-placeholder {
  font-size: 14px;
  font-weight: 700;
  color: #9CA3AF;
  white-space: nowrap;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.re-client-placeholder:hover { color: var(--re-gold); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.re-services-section { background: var(--re-white); }

.re-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) { .re-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .re-services-grid { grid-template-columns: 1fr; } }

.re-service-card {
  background: var(--re-white);
  border: 1.5px solid var(--re-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(44,24,16,0.06);
}
.re-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--re-shadow-hover);
  border-color: var(--re-gold);
}

.re-service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--re-primary), var(--re-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--re-gold-light);
}
.re-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.re-service-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.re-service-icon {
  width: 44px;
  height: 44px;
  background: var(--re-gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--re-gold);
  font-size: 18px;
}

.re-service-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--re-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.re-service-desc {
  font-size: 13px;
  color: var(--re-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.re-service-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.re-btn-webstore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--re-gold-light);
  color: var(--re-primary);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
}
.re-btn-webstore:hover {
  background: var(--re-gold);
  color: var(--re-white);
  transform: translateX(3px);
}
.re-btn-webstore-outline {
  background: transparent;
  border: 1.5px solid var(--re-gold-light);
  color: var(--re-gold);
}
.re-btn-webstore-outline:hover {
  background: var(--re-gold-pale);
  color: var(--re-gold);
}

.re-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #E8FFF2;
  color: var(--re-whatsapp-dark);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: 1.5px solid #C3F0D8;
}
.re-btn-wa:hover {
  background: var(--re-whatsapp);
  color: var(--re-white);
  border-color: var(--re-whatsapp);
}

/* ============================================================
   WHY US — PROCESS STEPS
   ============================================================ */
.re-whyus-section {
  background: var(--re-primary);
  position: relative;
  overflow: hidden;
}
.re-whyus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.re-whyus-label { color: var(--re-gold-light) !important; }
.re-whyus-title { color: var(--re-white) !important; }
.re-whyus-sub { color: rgba(255,255,255,0.65) !important; font-size: 14px; text-align: center; }

.re-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}

.re-step-item {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.re-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 34px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,134,10,0.6), rgba(200,134,10,0.2));
}

.re-step-icon {
  width: 68px;
  height: 68px;
  background: rgba(200,134,10,0.15);
  border: 2px solid rgba(200,134,10,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--re-gold-light);
  transition: all 0.3s;
  position: relative;
}
.re-step-item:hover .re-step-icon {
  background: rgba(200,134,10,0.3);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(200,134,10,0.3);
}

.re-step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--re-white);
  margin-bottom: 6px;
}
.re-step-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.re-testimonials-section { background: var(--re-cream); }

.re-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) { .re-testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .re-testi-grid { grid-template-columns: 1fr; } }

.re-testi-card {
  background: var(--re-white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(44,24,16,0.08);
  border: 1px solid var(--re-border);
  transition: all 0.3s;
  position: relative;
}
.re-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(44,24,16,0.14);
}

.re-testi-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 14px;
}

.re-testi-quote {
  font-size: 32px;
  color: var(--re-gold-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.re-testi-text {
  font-size: 14px;
  color: var(--re-text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.re-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.re-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--re-gold-light), var(--re-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--re-white);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.re-testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--re-primary);
  display: block;
}
.re-testi-role {
  font-size: 12px;
  color: var(--re-text-muted);
  display: block;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.re-cta-section {
  background: linear-gradient(135deg, var(--re-secondary) 0%, var(--re-primary) 100%);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.re-cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,134,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.re-cta-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--re-white);
  margin-bottom: 6px;
}
.re-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.re-cta-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.re-cta-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.re-cta-meta-item .icon { font-size: 18px; color: var(--re-gold-light); margin-bottom: 3px; }
.re-cta-meta-item .val { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); text-align: center; line-height: 1.3; }

/* ============================================================
   FOOTER
   ============================================================ */
.re-footer {
  background: var(--re-primary);
  color: rgba(255,255,255,0.75);
}

.re-footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.re-footer-brand img { height: 48px; margin-bottom: 14px; }
.re-footer-brand .brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--re-white);
  display: block;
}
.re-footer-brand .brand-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.re-footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 260px;
}

.re-footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--re-white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--re-gold);
  display: inline-block;
}

.re-footer-links { list-style: none; padding: 0; margin: 0; }
.re-footer-links li { margin-bottom: 8px; }
.re-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.re-footer-links a:hover { color: var(--re-gold-light); }
.re-footer-links a i { font-size: 11px; }

.re-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.re-footer-contact-item i {
  color: var(--re-gold-light);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.re-footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

.re-footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.re-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
}
.re-social-btn:hover {
  background: var(--re-gold-light);
  color: var(--re-primary);
  transform: translateY(-3px);
}

.re-footer-bottom {
  padding: 18px 0;
  text-align: center;
}
.re-footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.re-footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.re-footer-bottom a:hover { color: var(--re-gold-light); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.re-page-header {
  background: linear-gradient(135deg, var(--re-primary), var(--re-secondary));
  padding: 70px 0 55px;
  position: relative;
  overflow: hidden;
}
.re-page-header h1 {
  color: var(--re-white);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}
.re-page-header .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.re-page-header .breadcrumb-item a { color: var(--re-gold-light); text-decoration: none; }
.re-page-header .breadcrumb-item.active { color: rgba(255,255,255,0.65); }
.re-page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.re-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .re-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .re-gallery-grid { grid-template-columns: 1fr; } }

.re-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 4px 16px rgba(44,24,16,0.1);
  transition: transform 0.3s;
}
.re-gallery-item:hover { transform: scale(1.02); }
.re-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.re-gallery-item:hover img { transform: scale(1.08); }

.re-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(44,24,16,0.8));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.re-gallery-item:hover .re-gallery-overlay { opacity: 1; }
.re-gallery-overlay span { color: var(--re-white); font-size: 13px; font-weight: 600; }

/* ============================================================
   BLOG / ARTIKEL
   ============================================================ */
.re-blog-card {
  background: var(--re-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,24,16,0.07);
  border: 1px solid var(--re-border);
  transition: all 0.3s;
}
.re-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,24,16,0.14);
}
.re-blog-card-img {
  height: 200px;
  overflow: hidden;
}
.re-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.re-blog-card:hover .re-blog-card-img img { transform: scale(1.06); }
.re-blog-card-body { padding: 22px; }
.re-blog-date { font-size: 12px; color: var(--re-text-muted); margin-bottom: 8px; }
.re-blog-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--re-primary);
  line-height: 1.4;
  margin-bottom: 10px;
  text-decoration: none;
}
.re-blog-title:hover { color: var(--re-gold); }
.re-blog-excerpt { font-size: 13px; color: var(--re-text-muted); line-height: 1.65; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.re-contact-card {
  background: var(--re-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--re-shadow);
  border: 1px solid var(--re-border);
}
.re-form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--re-primary);
  margin-bottom: 6px;
  display: block;
}
.re-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--re-border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--re-text-body);
  background: var(--re-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.re-form-control:focus {
  border-color: var(--re-gold);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.12);
}
textarea.re-form-control { resize: vertical; min-height: 130px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.re-about-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44,24,16,0.2);
}
.re-stat-box {
  background: var(--re-gold-pale);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(200,134,10,0.2);
}
.re-stat-box .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--re-gold);
  display: block;
}
.re-stat-box .label { font-size: 13px; color: var(--re-text-muted); }

/* ============================================================
   UTILITIES
   ============================================================ */
.re-gold-text { color: var(--re-gold) !important; }
.re-gold-bg { background: var(--re-gold-light) !important; }
.re-primary-text { color: var(--re-primary) !important; }
.re-primary-bg { background: var(--re-primary) !important; }

.re-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--re-gold-light), var(--re-gold));
  border-radius: 2px;
  margin: 16px auto 28px;
}
.re-divider-left { margin-left: 0; }

/* Fade-in animation on scroll */
.re-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.re-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.re-delay-1 { transition-delay: 0.1s !important; }
.re-delay-2 { transition-delay: 0.2s !important; }
.re-delay-3 { transition-delay: 0.3s !important; }
.re-delay-4 { transition-delay: 0.4s !important; }
.re-delay-5 { transition-delay: 0.5s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .re-hero { min-height: auto; padding: 60px 0 80px; }
  .re-step-item:not(:last-child)::after { display: none; }
  .re-steps-row { gap: 24px; }
  .re-section { padding: 56px 0; }
  .re-cta-section .d-flex { flex-direction: column; gap: 16px; }
  .re-partner-card { position: static; margin-top: 20px; }
}

@media (max-width: 576px) {
  .re-navbar .navbar-nav { padding: 16px 0; }
  .re-contact-card { padding: 24px; }
}
