/* ════════════════════════════════════════════
   CREATIVE THEME - FIERY FLAME DESIGN (RTL)
   ════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  --c-primary:       #FF5E3A;
  --c-primary-dark:  #E64A26;
  --c-primary-light: #FF885B;
  --c-primary-alpha: rgba(255, 94, 58, 0.1);
  --c-gradient:      linear-gradient(135deg, #FF512F 0%, #F09819 100%);
  --c-gradient-h:    linear-gradient(135deg, #F09819 0%, #FF512F 100%);
  --c-secondary:     #F09819;
  --c-bg:            #FFFBF7;
  --c-text:          #1F1C18;
  --c-text-muted:    #A39990;
  --c-card:          #ffffff;
  --c-border:        #F0EAE1;
  --c-glow:          rgba(255, 94, 58, 0.25);
  --c-shadow:        0 10px 30px rgba(255, 94, 58, 0.12);
}

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

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text);
  direction: rtl;
  text-align: right;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--c-primary);
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
  color: var(--c-primary-dark);
}

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.cr-navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 94, 58, 0.06);
}
.cr-navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cr-logo img { height: 42px; }

.cr-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.cr-nav-links a {
  color: var(--c-text);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}
.cr-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 2px;
  background: var(--c-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.cr-nav-links a:hover::after { width: 100%; }
.cr-nav-links a:hover { color: var(--c-primary); }

/* ── Buttons ── */
.cr-btn-primary {
  background: var(--c-gradient);
  background-size: 200% auto;
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 20px var(--c-glow);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.cr-btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--c-glow);
  color: #fff !important;
}

.cr-btn-outline {
  background: transparent;
  color: var(--c-primary) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  border: 2px solid var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.cr-btn-outline:hover {
  background: var(--c-primary);
  color: #fff !important;
  box-shadow: 0 6px 18px var(--c-glow);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.cr-mobile-menu-btn {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--c-text);
  cursor: pointer;
  padding: 5px;
}


/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.cr-hero {
  padding: 160px 0 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fiery Background Blobs */
.cr-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}
.cr-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240, 152, 25, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -20px); }
}

.cr-hero-content { text-align: right; position: relative; z-index: 2; }

.cr-hero-badge {
  background: var(--c-primary-alpha);
  color: var(--c-primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 94, 58, 0.2);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 94, 58, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255, 94, 58, 0); }
}

.cr-hero h1 {
  font-size: 54px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 22px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.cr-hero h1 span {
  background: var(--c-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.cr-hero p {
  font-size: 18px;
  color: var(--c-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 90%;
}
.cr-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Hero Artwork ── */
.cr-hero-image { position: relative; z-index: 2; }
.cr-hero-artwork {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer ring */
.cr-hero-artwork::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border: 2px dashed rgba(255, 94, 58, 0.2);
  border-radius: 50%;
  animation: spinSlow 20s linear infinite;
}
.cr-hero-artwork::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border: 1px dashed rgba(240, 152, 25, 0.15);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite reverse;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.artwork-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: absolute;
}
.main-circle {
  width: 200px; height: 200px;
  background: var(--c-gradient);
  color: #fff;
  font-size: 86px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 50px var(--c-glow);
}
.floating-icon {
  width: 68px; height: 68px;
  background: var(--c-card);
  color: var(--c-primary);
  font-size: 30px;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.float-1 { top: 10%; right: 15%; animation: float 5s ease-in-out infinite 0.5s; color: #E1306C; }
.float-2 { bottom: 10%; right: 5%; animation: float 7s ease-in-out infinite 1s; color: #1DA1F2; }
.float-3 { top: 30%; left: 10%; animation: float 6s ease-in-out infinite 1.5s; color: #FF0000; }

.artwork-card {
  position: absolute;
  bottom: 20px; left: 0;
  background: var(--c-card);
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
  animation: float 8s ease-in-out infinite 2s;
  text-align: right;
  border: 1px solid var(--c-border);
}
.artwork-card .card-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-primary-alpha);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.artwork-card .card-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
}
.artwork-card .card-text span {
  font-size: 13px;
  color: var(--c-text-muted);
}

/* Stats chips floating near artwork */
.artwork-stats-chip {
  position: absolute;
  top: 15px; left: 5%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  animation: float 7s ease-in-out infinite 3s;
  z-index: 4;
}
.artwork-stats-chip .chip-dot {
  width: 10px; height: 10px;
  background: var(--c-gradient);
  border-radius: 50%;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* ── Stats Counter Row ── */
.cr-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.cr-stat-item { text-align: right; }
.cr-stat-number {
  font-size: 32px;
  font-weight: 900;
  background: var(--c-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.cr-stat-label {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ════════════════════════════════════════════
   HOW IT WORKS STRIP
   ════════════════════════════════════════════ */
.cr-steps-strip {
  background: var(--c-gradient);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.cr-steps-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cr-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.cr-step-item { text-align: center; color: #fff; }
.cr-step-num {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 16px;
  backdrop-filter: blur(4px);
}
.cr-step-item h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.cr-step-item p { font-size: 14px; opacity: 0.85; line-height: 1.6; margin: 0; }

/* ════════════════════════════════════════════
   FEATURES SECTION
   ════════════════════════════════════════════ */
.cr-features {
  padding: 100px 0;
  background: var(--c-bg);
  position: relative;
}
.cr-section-title {
  text-align: center;
  margin-bottom: 64px;
}
.cr-section-tag {
  display: inline-block;
  background: var(--c-primary-alpha);
  color: var(--c-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 94, 58, 0.2);
}
.cr-section-title h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cr-section-title p { font-size: 17px; color: var(--c-text-muted); }

.cr-feature-card {
  background: var(--c-card);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--c-border);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cr-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 24px 24px 0 0;
}
.cr-feature-card:hover::before { transform: scaleX(1); }
.cr-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(255, 94, 58, 0.1);
  border-color: var(--c-primary-light);
}
.cr-feature-icon {
  width: 80px; height: 80px;
  background: var(--c-primary-alpha);
  color: var(--c-primary);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 28px;
  transition: all 0.3s ease;
}
.cr-feature-card:hover .cr-feature-icon {
  background: var(--c-gradient);
  color: #fff;
  box-shadow: 0 10px 25px var(--c-glow);
}
.cr-feature-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--c-text);
}
.cr-feature-card p { color: var(--c-text-muted); line-height: 1.7; font-size: 15px; }

/* ════════════════════════════════════════════
   CTA SECTION (Fire Banner)
   ════════════════════════════════════════════ */
.cr-cta-section {
  padding: 100px 0;
  background: var(--c-gradient);
  background-size: 200% auto;
  animation: fieryFlow 5s ease infinite;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@keyframes fieryFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cr-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='3' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/g%3E%3C/svg%3E");
}
.cr-cta-section h2 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cr-cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cr-btn-white {
  background: #fff;
  color: var(--c-primary) !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.cr-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  color: var(--c-primary-dark) !important;
}

/* ════════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════════ */
.cr-services-hero {
  padding: 120px 0 70px;
  background: var(--c-gradient);
  background-size: 200% auto;
  animation: fieryFlow 6s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cr-services-hero::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'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
}
.cr-services-hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cr-services-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cr-services-section { padding: 60px 0 100px; }

/* Filter Bar */
.cr-filter-bar {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 94, 58, 0.05);
}
.cr-filter-bar .form-control {
  border-radius: 12px;
  border: 1.5px solid var(--c-border);
  padding: 11px 16px;
  font-size: 15px;
  font-weight: 600;
  background: var(--c-bg);
  color: var(--c-text);
  transition: border-color 0.3s ease;
}
.cr-filter-bar .form-control:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-alpha);
  outline: none;
  background: #fff;
}

/* Modern Services Table */
.modern-services-wrapper { display: flex; flex-direction: column; gap: 28px; }
.modern-category-group { }
.modern-category-title-wrapper {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.modern-category-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--c-card);
  border-radius: 14px;
  border: 1px solid var(--c-border);
  margin: 0;
}
.modern-category-title i {
  color: var(--c-primary);
  font-size: 18px;
}
.modern-table-responsive {
  background: var(--c-card);
  border-radius: 18px;
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 94, 58, 0.04);
}
.modern-services-table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}
.modern-services-table thead tr {
  background: var(--c-bg);
  border-bottom: 2px solid var(--c-border);
}
.modern-services-table thead th {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: right;
  border: none;
}
.modern-services-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s ease;
}
.modern-services-table tbody tr:last-child { border-bottom: none; }
.modern-services-table tbody tr:hover { background: var(--c-primary-alpha); }
.modern-services-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  text-align: right;
  border: none;
  vertical-align: middle;
}

.modern-badge-id {
  background: var(--c-primary-alpha);
  color: var(--c-primary);
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
}
.modern-badge-price {
  background: linear-gradient(135deg, rgba(255, 81, 47, 0.1), rgba(240, 152, 25, 0.1));
  color: var(--c-primary-dark);
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
}
.modern-badge-qty {
  background: var(--c-bg);
  color: var(--c-text-muted);
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--c-border);
}
.service-name-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
}
.btn-outline-primary {
  border: 2px solid var(--c-primary) !important;
  color: var(--c-primary) !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
}
.btn-outline-primary:hover {
  background: var(--c-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px var(--c-glow) !important;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.cr-footer {
  background: #111111;
  color: #8a8a8a;
  padding: 70px 0 30px;
  position: relative;
}
.cr-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-gradient);
}
.cr-footer h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 22px;
}
.cr-footer p { line-height: 1.8; font-size: 14px; }
.cr-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cr-footer-links li { margin-bottom: 10px; }
.cr-footer-links a {
  color: #8a8a8a;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.cr-footer-links a:hover {
  color: var(--c-primary-light);
  padding-right: 6px;
}
.cr-footer-links a::before {
  content: '›';
  color: var(--c-primary);
  font-size: 18px;
  line-height: 1;
}
.cr-footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
}

/* ════════════════════════════════════════════
   AUTH PAGES (sign_in, sign_up, forgot)
   ════════════════════════════════════════════ */
body.modern-layout { background: var(--c-bg); }

.modern-auth-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
}
.modern-auth-banner {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  text-align: right;
  position: relative;
  overflow: hidden;
  background: var(--c-gradient);
  background-size: 200% auto;
  animation: fieryFlow 6s ease infinite;
}
.modern-auth-banner::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'%3E%3Ccircle cx='30' cy='30' r='3' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/g%3E%3C/svg%3E");
}
@media (min-width: 992px) { .modern-auth-banner { display: flex; } }

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
}
.banner-content h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}
.banner-content p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.banner-features { list-style: none; padding: 0; margin: 0 0 32px; }
.banner-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}
.banner-features li i {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.modern-auth-form-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  background: var(--c-card);
}
@media (min-width: 992px) {
  .modern-auth-form-container {
    max-width: 520px;
    box-shadow: -12px 0 40px rgba(0,0,0,0.06);
  }
}
.modern-auth-form { width: 100%; max-width: 420px; }
.modern-auth-logo img { height: 48px; margin-bottom: 32px; }
.modern-auth-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 8px;
}
.modern-auth-subtitle {
  color: var(--c-text-muted);
  margin-bottom: 32px;
  font-size: 15px;
}

/* ── Auth Form Inputs (RTL-fixed) ── */
.input-icon { position: relative; }

/* Icon sits inside on the RIGHT side (RTL) */
.input-icon-addon {
  position: absolute;
  top: 50% !important;
  bottom: auto !important;
  right: 14px !important;
  left: auto !important;
  transform: translateY(-50%);
  color: var(--c-text-muted);
  pointer-events: none;
  z-index: 5;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto !important;
  width: auto !important;
}

/* Input with right-side icon padding for RTL */
.input-icon .form-control {
  padding-right: 44px !important; /* space for icon on right */
  padding-left: 14px !important;
  text-align: right;
}

/* Override for LTR-only fields (email/pass) */
.input-icon .form-control[dir="ltr"] {
  text-align: left;
  padding-left: 14px !important;
  padding-right: 44px !important;
}

.form-control {
  border-radius: 12px;
  border: 1.5px solid var(--c-border);
  padding: 12px 14px;
  height: auto;
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  background: #ffffff;
  color: var(--c-text);
  transition: all 0.3s ease;
  direction: rtl;
  text-align: right;
}
.form-control:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-alpha);
  background: #fff;
  outline: none;
}
.form-control::placeholder {
  color: var(--c-text-muted);
  opacity: 0.7;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

/* Auth Submit Button */
.cr-btn-primary.btn-block, button.cr-btn-primary {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 16px;
}

/* Checkbox RTL */
.custom-control-label::before,
.custom-control-label::after {
  right: -1.5rem;
  left: auto;
}
.custom-control {
  padding-right: 1.5rem;
  padding-left: 0;
}

/* ════════════════════════════════════════════
   FAQs / TERMS
   ════════════════════════════════════════════ */
.cr-page-hero {
  padding: 120px 0 70px;
  background: var(--c-gradient);
  background-size: 200% auto;
  animation: fieryFlow 6s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cr-page-hero::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'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
}
.cr-page-hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cr-page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.cr-content-section {
  padding: 70px 0 100px;
}
.cr-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.cr-faq-item:hover { box-shadow: 0 6px 20px rgba(255, 94, 58, 0.08); }
.cr-faq-question {
  padding: 20px 24px;
  font-weight: 800;
  font-size: 16px;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s ease;
}
.cr-faq-question:hover { color: var(--c-primary); }
.cr-faq-question .faq-icon {
  width: 32px; height: 32px;
  background: var(--c-primary-alpha);
  color: var(--c-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: all 0.3s ease;
}
.cr-faq-answer {
  padding: 0 24px 20px;
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
}

/* Content box for Terms/Privacy */
.cr-content-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(255, 94, 58, 0.04);
}
.cr-content-box h2, .cr-content-box h3 { color: var(--c-text); font-weight: 800; }
.cr-content-box p { color: var(--c-text-muted); line-height: 1.8; }

/* ════════════════════════════════════════════
   MOBILE RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 991px) {
  /* ── Hero Responsive ── */
  .cr-hero { padding: 120px 0 60px; text-align: center; }
  .cr-hero-content { text-align: center; margin-bottom: 50px; }
  .cr-hero h1 { font-size: 38px; }
  .cr-hero p { max-width: 100%; margin: 0 auto 32px; }
  .cr-hero-actions { justify-content: center; }
  .cr-hero-stats { justify-content: center; }
  .cr-steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .cr-filter-bar { flex-direction: column; }

  /* ── Mobile Navbar ── */
  .cr-navbar {
    padding: 10px 0;
  }
  .cr-navbar .container {
    flex-wrap: wrap;
    position: relative;
  }
  .cr-mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 94, 58, 0.1);
    color: var(--c-primary);
    font-size: 22px;
    border: 1px solid rgba(255, 94, 58, 0.2);
  }

  /* Hide nav links & actions by default */
  .cr-nav-links,
  .cr-nav-actions {
    display: none !important;
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  /* Show when active */
  .cr-nav-links.active {
    display: flex !important;
    margin-top: 15px;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    animation: mobileSlideDown 0.35s ease;
  }
  .cr-nav-links.active ~ .cr-nav-actions {
    display: flex !important;
    padding: 8px 16px 16px;
    gap: 10px;
    animation: mobileSlideDown 0.45s ease;
  }

  /* Mobile Links Style */
  .cr-nav-links a {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
  }
  .cr-nav-links a::after {
    display: none !important;
  }
  .cr-nav-links a:hover,
  .cr-nav-links a:active {
    background: rgba(255, 81, 47, 0.15);
    border-color: rgba(255, 81, 47, 0.3);
    color: #FF512F !important;
  }

  /* Mobile Action Buttons */
  .cr-nav-actions a {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cr-nav-actions .cr-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 81, 47, 0.5);
    color: #FF512F !important;
  }
  .cr-nav-actions .cr-btn-primary {
    background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 81, 47, 0.3);
  }
}

@keyframes mobileSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 576px) {
  .cr-hero h1 { font-size: 30px; }
  .cr-cta-section h2 { font-size: 26px; }
  .cr-section-title h2 { font-size: 28px; }
  .modern-services-table thead { display: none; }
  .modern-services-table tbody td {
    display: block;
    text-align: right !important;
    padding: 8px 16px;
  }
  .modern-services-table tbody tr {
    display: block;
    border-bottom: 2px solid var(--c-border);
    padding: 10px 0;
  }
}

/* ══════════════════════════════════════
   CREATIVE V2 REDESIGN (Fiery & Immersive)
   ══════════════════════════════════════ */

.creative-v2-body {
  background-color: #0b090a;
  color: #f8f9fa;
  overflow-x: hidden;
}

.creative-v2-body .cr-navbar {
  background: rgba(11, 9, 10, 0.7) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
}

.creative-v2-body .cr-navbar .cr-nav-links a {
  color: #ffffff !important;
  font-weight: 700;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.creative-v2-body .cr-navbar .cr-nav-links a:hover {
  color: #FF512F !important;
  opacity: 1;
}
.creative-v2-body .cr-navbar .cr-logo img {
  filter: brightness(0) invert(1);
}

.cr2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cr2-btn:hover {
  text-decoration: none;
}

.cr2-btn-glow {
  background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 10px 30px rgba(255, 81, 47, 0.4);
}
.cr2-btn-glow:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 81, 47, 0.6), inset 0 -2px 10px rgba(255, 255, 255, 0.4);
}

.cr2-btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.cr2-btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.cr2-btn-white {
  background: #fff;
  color: #FF512F !important;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.cr2-btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4), inset 0 -2px 10px rgba(255, 81, 47, 0.15);
}

/* Hero Section */
.cr2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #0f172a);
  background-size: 400% 400%;
  animation: meshGradient 15s ease infinite;
}

@keyframes meshGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cr2-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}
.glow-1 {
  width: 600px; height: 600px;
  background: rgba(255, 81, 47, 0.4);
  top: -150px; right: -150px;
}
.glow-2 {
  width: 500px; height: 500px;
  background: rgba(240, 152, 25, 0.4);
  bottom: -50px; left: -100px;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-50px) scale(1.1) rotate(10deg); }
}

.cr2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
  padding: 8px 24px;
  border-radius: 50px;
  color: #FFD700;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}
.pulse-dot {
  width: 10px; height: 10px;
  background: #FFD700;
  border-radius: 50%;
  box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 81, 47, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 81, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 81, 47, 0); }
}

.cr2-hero-title {
  font-size: 84px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: -2px;
}
.cr2-hero-title span {
  background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cr2-hero-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-weight: 400;
}

.cr2-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.cr2-hero-dashboard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transform: perspective(1200px) rotateX(8deg) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.cr2-hero-dashboard:hover {
  transform: perspective(1200px) rotateX(0deg) translateY(0);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cr2-dash-header {
  background: rgba(0,0,0,0.5);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cr2-dash-dots {
  display: flex;
  gap: 8px;
}
.cr2-dash-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ff5f56;
}
.cr2-dash-dots span:nth-child(2) { background: #ffbd2e; }
.cr2-dash-dots span:nth-child(3) { background: #27c93f; }
.cr2-dash-title {
  margin: 0 auto;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  font-size: 14px;
}

.cr2-dash-body {
  padding: 40px;
}
.cr2-dash-stat h4 {
  font-size: 44px;
  font-weight: 900;
  color: #00ffcc;
  margin-bottom: 5px;
  text-shadow: 0 0 25px rgba(0, 255, 204, 0.4);
  letter-spacing: 1px;
}
.cr2-dash-stat p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

/* Ticker Marquee */
.cr2-ticker {
  background: linear-gradient(90deg, #FF512F 0%, #F09819 100%);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  transform: rotate(-1deg) scale(1.02);
  margin: 40px 0 100px;
  box-shadow: 0 10px 20px rgba(255, 81, 47, 0.2);
}
.cr2-ticker-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.cr2-ticker-track span {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin: 0 30px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Bento Grid */
.cr2-section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.cr2-section-heading h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.cr2-section-heading h2 span {
  color: #FF512F;
}
.cr2-section-heading p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
}

.cr2-bento-section { padding: 40px 0 80px; }

.cr2-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 24px;
}
.cr2-bento-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cr2-bento-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 215, 0, 0.1);
}
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; grid-row: span 1; }
.bento-small { grid-column: span 1; grid-row: span 1; display:flex; align-items:center; justify-content:center; text-align:center;}

.bento-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(255,81,47,0.2) 0%, rgba(240,152,25,0.2) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #FF512F;
  font-size: 24px;
  margin-bottom: 24px;
}
.cr2-bento-card h3 { color: #fff; font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.cr2-bento-card p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.6; }
.bento-small h4 { color:#fff; font-size:18px; font-weight:700; margin:0;}

.bento-bg-icon {
  position: absolute;
  bottom: -30px; left: -30px;
  font-size: 250px;
  color: rgba(255, 255, 255, 0.02);
  transform: rotate(-15deg);
  pointer-events: none;
}

/* How it Works */
.cr2-how-section { padding: 80px 0; }
.cr2-nodes-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.cr2-node-line {
  position: absolute;
  top: 40px; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,81,47,0) 0%, #FF512F 50%, rgba(255,81,47,0) 100%);
  z-index: 0;
}
.cr2-node {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 30%;
}
.node-icon {
  width: 80px; height: 80px;
  background: #0b090a;
  border: 2px solid #FF512F;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; color: #fff;
  box-shadow: 0 0 30px rgba(255, 81, 47, 0.3);
}
.node-content h4 { color: #fff; font-weight: 800; margin-bottom: 10px; }
.node-content p { color: rgba(255,255,255,0.6); }

/* Massive CTA */
.cr2-massive-cta {
  background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.cr2-massive-cta h2 { color: #fff; font-size: 50px; font-weight: 900; margin-bottom: 20px; }
.cr2-massive-cta p { color: rgba(255,255,255,0.9); font-size: 20px; margin-bottom: 40px; }

/* Responsive */
@media (max-width: 991px) {
  .cr2-hero-title { font-size: 50px; }
  .cr2-hero-actions { flex-direction: column; }
  .cr2-bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-large, .bento-medium, .bento-small { grid-column: span 1; }
  .cr2-nodes-container { flex-direction: column; gap: 50px; }
  .cr2-node-line { display: none; }
  .cr2-node { width: 100%; margin: 0 auto; }
}

/* ══════════════════════════════════════
   CREATIVE V2 SUBPAGES (Services, FAQ, Terms)
   ══════════════════════════════════════ */

/* Services Hero */
.creative-v2-body .cr-services-hero {
  background: linear-gradient(135deg, rgba(255,81,47,0.1) 0%, rgba(240,152,25,0.1) 100%);
  border-bottom: 1px solid rgba(255,81,47,0.2);
  margin-top: -70px;
  padding: 100px 0 60px;
}
.creative-v2-body .cr-services-hero h1 {
  background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.creative-v2-body .cr-services-hero p {
  color: rgba(255,255,255,0.7);
}

/* Filter Bar */
.creative-v2-body .cr-filter-bar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.creative-v2-body .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.creative-v2-body .form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #FF512F;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 81, 47, 0.3);
}
.creative-v2-body select.form-control option {
  background-color: #0b090a;
  color: #fff;
}

/* Services Table */
.creative-v2-body .modern-category-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.creative-v2-body .modern-category-title-wrapper {
  background: rgba(255, 81, 47, 0.1);
  border-bottom: 1px solid rgba(255, 81, 47, 0.2);
}
.creative-v2-body .modern-category-title {
  color: #FF512F;
}
.creative-v2-body .modern-services-table th {
  background-color: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 81, 47, 0.5);
}
.creative-v2-body .modern-services-table td {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
}
.creative-v2-body .modern-services-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Page Headers (FAQ, Terms) */
.creative-v2-body .page-title {
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid rgba(255, 81, 47, 0.5);
  padding-bottom: 15px;
  margin-bottom: 30px;
  display: inline-block;
}
.creative-v2-body .page-title span i {
  color: #FF512F;
}

/* Cards (FAQ, Terms Content) */
.creative-v2-body .card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}
.creative-v2-body .card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}
.creative-v2-body .card-title {
  color: #fff;
  font-weight: 700;
}
.creative-v2-body .bg-question {
  background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
  color: #fff;
  border-radius: 8px;
}
.creative-v2-body .card-body {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
.creative-v2-body .card-options a {
  color: rgba(255, 255, 255, 0.5);
}
.creative-v2-body .card-options a:hover {
  color: #FF512F;
}

/* ══════════════════════════════════════
   OBSIDIAN GLASS REDESIGN (cr3)
   ══════════════════════════════════════ */
.cr3-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  background: #000000;
  overflow: hidden;
}
.cr3-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 81, 47, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cr3-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.cr3-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}
.cr3-dot {
  width: 6px; height: 6px;
  background: #FF512F;
  border-radius: 50%;
}
.cr3-h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.cr3-text-gradient {
  color: #888888;
}
.cr3-subtitle {
  font-size: 18px;
  color: #888888;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cr3-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 80px;
}
.cr3-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.cr3-btn-primary {
  background: #FF512F;
  color: #fff !important;
  border: 1px solid #FF512F;
}
.cr3-btn-primary:hover {
  background: transparent;
  color: #FF512F !important;
}
.cr3-btn-glass {
  background: rgba(255,255,255,0.03);
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.08);
}
.cr3-btn-glass:hover {
  background: rgba(255,255,255,0.08);
}

/* Trust Badges */
.cr3-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.cr3-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.cr3-trust-badge:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 81, 47, 0.3);
}
.cr3-trust-badge i {
  font-size: 20px;
  color: #FF512F;
}
.cr3-trust-info {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.cr3-trust-info .title {
  font-size: 11px;
  color: #888;
  font-weight: 600;
}
.cr3-trust-info .number {
  font-size: 13px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-family: monospace;
}

/* Mockup */
.cr3-mockup-wrapper {
  max-width: 800px;
  margin: 0 auto;
  perspective: 1000px;
}
.cr3-mockup {
  background: #09090b;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  transform: rotateX(5deg) translateY(20px);
  transition: transform 0.5s ease;
}
.cr3-mockup:hover {
  transform: rotateX(0deg) translateY(0);
}
.cr3-mockup-header {
  background: rgba(255,255,255,0.02);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
}
.cr3-dots { display: flex; gap: 6px; }
.cr3-dots i { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.cr3-dots i:nth-child(1) { background: #FF512F; }
.cr3-title { margin: 0 auto; font-size: 12px; color: #666; font-family: monospace; }
.cr3-mockup-body { padding: 40px; }
.cr3-stat h3 { font-size: 36px; color: #fff; font-weight: 700; margin-bottom: 5px; }
.cr3-stat span { color: #888; font-size: 14px; }

/* Ticker */
.cr3-ticker {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.cr3-ticker-track {
  display: inline-block;
  animation: cr3marquee 25s linear infinite;
}
.cr3-ticker-track span {
  color: #555;
  font-size: 16px;
  margin: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.cr3-ticker-img {
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s ease;
}
.cr3-ticker-track span:hover { color: #fff; }
.cr3-ticker-track span:hover .cr3-ticker-img {
  filter: grayscale(0%) opacity(1);
}
@keyframes cr3marquee { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } }

/* Features */
.cr3-features { padding: 100px 0; background: #000; }
.cr3-section-title { margin-bottom: 60px; }
.cr3-section-title h2 { color: #fff; font-size: 40px; font-weight: 800; letter-spacing:-1px; margin-bottom: 10px; }
.cr3-section-title p { color: #888; font-size: 16px; }
.cr3-card {
  background: #09090b;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
}
.cr3-card:hover {
  background: #0c0c0f;
  border-color: rgba(255, 81, 47, 0.2);
  transform: translateY(-5px);
}
.cr3-card-icon {
  width: 50px; height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #FF512F; font-size: 20px; margin-bottom: 20px;
}
.cr3-card h4 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.cr3-card p { color: #888; font-size: 15px; line-height: 1.6; margin: 0; }

/* CTA */
.cr3-cta {
  padding: 100px 0;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.cr3-cta h2 { color: #fff; font-size: 48px; font-weight: 800; margin-bottom: 40px; letter-spacing: -1px; }

@media (max-width: 768px) {
  .cr3-h1 { font-size: 48px; }
  .cr3-actions { flex-direction: column; }
  .cr3-mockup-body .col-4 { width: 100%; flex: 0 0 100%; max-width: 100%; margin-bottom: 20px; }
  .cr3-card { margin-bottom: 20px; }
}

/* ══════════════════════════════════════
   CLOUD WHITE REDESIGN (cr4 - Light Mode)
   ══════════════════════════════════════ */
.cr4-light-body {
  background-color: #ffffff;
  color: #333333;
  overflow-x: hidden;
}

/* Navbar overrides for Light Body */
.cr4-light-body .cr-navbar {
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.cr4-light-body .cr-navbar .cr-nav-links a {
  color: #111827 !important;
  font-weight: 700;
  text-shadow: none;
}
.cr4-light-body .cr-navbar .cr-nav-links a:hover {
  color: #FF512F !important;
}
.cr4-light-body .cr-navbar .cr-logo img {
  filter: none; /* Keep original colored logo */
}

/* Fix mobile menu for Light Body */
@media (max-width: 991px) {
  .cr4-light-body .cr-navbar .cr-nav-links.active {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .cr4-light-body .cr-navbar .cr-nav-links a {
    color: #111827 !important;
    background: transparent !important;
    border: none !important;
  }
  .cr4-light-body .cr-navbar .cr-nav-links a:hover {
    background: rgba(255, 81, 47, 0.05) !important;
  }
  .cr4-light-body .cr-navbar .cr-mobile-menu-btn {
    color: #111827 !important;
  }
}

/* Hero Section */
.cr4-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  background: radial-gradient(circle at 50% -20%, rgba(255, 81, 47, 0.05) 0%, #ffffff 70%);
  overflow: hidden;
}
.cr4-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.cr4-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  color: #4b5563;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.cr4-dot {
  width: 8px; height: 8px;
  background: #10b981; /* Green dot for online/fast */
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}
.cr4-h1 {
  font-size: 76px;
  font-weight: 900;
  line-height: 1.22;
  color: #111827;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.cr4-text-orange {
  color: #FF512F;
}
.cr4-subtitle {
  font-size: 19px;
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cr4-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}
.cr4-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}
.cr4-btn-primary {
  background: #FF512F;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(255, 81, 47, 0.3);
}
.cr4-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 81, 47, 0.4);
}
.cr4-btn-outline {
  background: #ffffff;
  color: #111827 !important;
  border: 2px solid rgba(255, 81, 47, 0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  font-weight: 800;
}
.cr4-btn-outline:hover {
  background: rgba(255, 81, 47, 0.04);
  border-color: #FF512F;
  color: #FF512F !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 81, 47, 0.15);
}

/* Trust Badges */
.cr4-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.cr4-trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.cr4-trust-badge:hover {
  border-color: rgba(255, 81, 47, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.cr4-trust-badge img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.cr4-trust-info {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.cr4-trust-info .title {
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
}
.cr4-trust-info .number {
  font-size: 15px;
  color: #111827;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-family: monospace;
}

/* Light Mockup */
.cr4-mockup-wrapper {
  max-width: 850px;
  margin: 0 auto;
  perspective: 1200px;
}
.cr4-mockup {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02);
  transform: rotateX(4deg) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cr4-mockup:hover {
  transform: rotateX(0deg) translateY(0);
}
.cr4-mockup-header {
  background: #f8f9fa;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
}
.cr4-dots { display: flex; gap: 8px; }
.cr4-dots i { width: 12px; height: 12px; border-radius: 50%; background: #e5e7eb; }
.cr4-dots i:nth-child(1) { background: #ef4444; }
.cr4-dots i:nth-child(2) { background: #f59e0b; }
.cr4-dots i:nth-child(3) { background: #10b981; }
.cr4-title { margin: 0 auto; font-size: 13px; color: #9ca3af; font-family: monospace; font-weight: 600; }
.cr4-mockup-body { padding: 50px; }
.cr4-stat h3 { font-size: 44px; color: #111827; font-weight: 900; margin-bottom: 5px; letter-spacing: -1px; white-space: nowrap; }
.cr4-stat h3 small { font-size: 22px; font-weight: 800; letter-spacing: 0; color: #374151; margin-right: 5px; }
.cr4-stat span { color: #6b7280; font-size: 15px; font-weight: 600; }

/* Ticker (Light Mode) */
.cr4-ticker {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}
.cr4-ticker-track {
  display: inline-block;
  animation: cr4marquee 30s linear infinite;
}
.cr4-ticker-track span {
  color: #4b5563;
  font-size: 16px;
  font-weight: 600;
  margin: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.cr4-ticker-img {
  filter: none;
  transition: all 0.3s ease;
}
.cr4-ticker-track span:hover { color: #111827; }
.cr4-ticker-track span:hover .cr4-ticker-img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
@keyframes cr4marquee { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } }

/* Features */
.cr4-features { padding: 120px 0; background: #f8f9fa; }
.cr4-section-title { margin-bottom: 70px; }
.cr4-section-title h2 { color: #111827; font-size: 42px; font-weight: 900; letter-spacing:-1.5px; margin-bottom: 15px; }
.cr4-section-title p { color: #6b7280; font-size: 18px; }
.cr4-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px;
  padding: 45px 35px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cr4-card:hover {
  border-color: rgba(255, 81, 47, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.cr4-card-icon {
  width: 60px; height: 60px;
  background: rgba(255, 81, 47, 0.05);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #FF512F; font-size: 24px; margin-bottom: 25px;
}
.cr4-card h4 { color: #111827; font-size: 22px; font-weight: 800; margin-bottom: 15px; }
.cr4-card p { color: #6b7280; font-size: 16px; line-height: 1.7; margin: 0; }

/* CTA */
.cr4-cta {
  padding: 120px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.cr4-cta h2 { color: #111827; font-size: 52px; font-weight: 900; margin-bottom: 40px; letter-spacing: -2px; }

@media (max-width: 768px) {
  .cr4-h1 { font-size: 42px; }
  .cr4-actions { flex-direction: column; }
  
  /* Mobile optimized trust badges */
  .cr4-trust-badges { gap: 10px; margin-bottom: 40px; }
  .cr4-trust-badge { padding: 6px 12px; gap: 8px; border-radius: 30px; }
  .cr4-trust-badge img { height: 18px; }
  .cr4-trust-info .title { font-size: 9px; margin-bottom: 0px; }
  .cr4-trust-info .number { font-size: 11px; }

  .cr4-mockup-body .col-4 { width: 100%; flex: 0 0 100%; max-width: 100%; margin-bottom: 30px; }
  .cr4-card { margin-bottom: 20px; }
}
