/* Golden Elegant Theme - حياكم */
:root {
  --primary-gold: #D4AF37;
  --secondary-gold: #B8860B;
  --light-gold: #F5E6A3;
  --dark-gold: #B8860B;
  --elegant-black: #1C1C1C;
  --elegant-gray: #4A4A4A;
  --soft-white: #FEFEFE;
  --shadow-gold: rgba(212, 175, 55, 0.3);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  --gradient-gold-light: linear-gradient(135deg, #F5E6A3 0%, #D4AF37 100%);
  --gradient-dark: linear-gradient(135deg, #1C1C1C 0%, #4A4A4A 100%);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  background: linear-gradient(135deg, #FEFEFE 0%, #F8F9FA 100%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: var(--elegant-black);
  font-family: 'Cairo', sans-serif;
  display: flex;
  flex-direction: column;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--shadow-gold);
}

html {
  position: relative;
  min-height: 100%;
}

/* Main container styling */
.container {
  flex: 1;
  padding-bottom: 2rem;
}

/* ========================================
   MODERN FOOTER STYLES - أنماط الفوتر الحديث
   ======================================== */

/* Modern Footer - الفوتر الحديث */
.modern-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  color: #ffffff;
  margin-top: auto;
  padding: 3rem 0 0;
  border-top: 4px solid var(--primary-gold);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

/* Background Pattern للفوتر */
.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.02) 50%, transparent 51%);
  pointer-events: none;
  z-index: 1;
}

.modern-footer > .container {
  position: relative;
  z-index: 2;
}

/* Footer Sections */
.footer-section {
  height: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.8s ease;
}

.footer-section:hover::before {
  left: 100%;
}

.footer-section:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Section Titles */
.footer-section-title {
  color: var(--primary-gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-gold);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-gold);
  transition: width 0.3s ease;
}

.footer-section:hover .footer-section-title::after {
  width: 100%;
}

/* Footer Links List */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 1rem;
  position: relative;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-link:hover::before {
  left: 100%;
}

.footer-link:hover {
  color: var(--light-gold);
  text-decoration: none;
  transform: translateX(10px);
  padding-left: 0.5rem;
}

.footer-link i {
  color: var(--primary-gold);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  color: var(--light-gold);
  transform: scale(1.2);
}

/* Footer Description */
.footer-description {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.footer-social {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-social small {
  color: #999999 !important;
  font-size: 0.85rem;
  font-style: italic;
}

.footer-social i {
  color: var(--primary-gold);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.copyright-text {
  color: #cccccc;
  font-size: 0.95rem;
  font-weight: 500;
}

.copyright-text i {
  color: var(--primary-gold);
}

.version-text {
  color: #999999;
  font-size: 0.9rem;
  font-weight: 400;
}

.version-text i {
  color: var(--secondary-gold);
}
.form-check-input {
  float: right !important;
}
.form-check-label {
  margin-right: 20px !important;
}
/* Responsive Design for Footer */
@media (max-width: 768px) {
  .modern-footer {
    padding: 2rem 0 0;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
  }
  
  .footer-section-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .footer-link {
    font-size: 0.95rem;
    padding: 0.4rem 0;
  }
  
  .footer-description {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .col-md-6 {
    margin-bottom: 0.5rem;
  }
  
  .copyright-text,
  .version-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 1rem;
  }
  
  .footer-section-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .copyright-text,
  .version-text {
    font-size: 0.85rem;
  }
}

/* Animation for Footer Links */
@keyframes footerLinkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.footer-link:active {
  animation: footerLinkPulse 0.3s ease;
}

/* Hover Effect for Email Links */
a[href^="mailto:"].footer-link:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 0.5rem;
}

/* Loading Animation for Footer */
.footer-section.loading {
  opacity: 0.7;
  pointer-events: none;
}

.footer-section.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* إصلاحات لضمان عدم تداخل المحتوى مع الفوتر */

/* ضمان أن المحتوى لا يتداخل مع الـ footer */
main {
  flex: 1;
  padding-bottom: 2rem;
}

/* إصلاح لجميع الصفحات */
.container-fluid {
  padding-bottom: 2rem;
}

/* إصلاح خاص لصفحات النماذج */
.card {
  margin-bottom: 3rem;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ========================================
   UNIFIED BUTTON STYLES - أنماط الأزرار الموحدة
   ======================================== */

/* Base Button Styles - الأنماط الأساسية للأزرار */
.btn {
  border-radius: 25px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Button Sizes - أحجام الأزرار */
.btn-sm {
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem !important;
  border-radius: 20px !important;
}

.btn-lg {
  padding: 1rem 2rem !important;
  font-size: 1.1rem !important;
  border-radius: 30px !important;
}

/* Primary Button - الزر الأساسي */
.btn-primary {
  background: var(--gradient-gold) !important;
  border-color: var(--dark-gold) !important;
  color: var(--soft-white) !important;
  box-shadow: 0 4px 15px var(--shadow-gold) !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--dark-gold) !important;
  border-color: var(--primary-gold) !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px var(--shadow-gold) !important;
}

/* Secondary Button - الزر الثانوي */
.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
  border-color: #495057 !important;
  color: var(--soft-white) !important;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3) !important;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%) !important;
  border-color: #343a40 !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4) !important;
}

/* Success Button - زر النجاح */
.btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  border-color: #20c997 !important;
  color: var(--soft-white) !important;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3) !important;
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
  border-color: #17a2b8 !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4) !important;
}

/* Warning Button - زر التحذير */
.btn-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%) !important;
  border-color: #fd7e14 !important;
  color: #212529 !important;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3) !important;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%) !important;
  border-color: #e55a00 !important;
  color: #212529 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4) !important;
}

/* Danger Button - زر الخطر */
.btn-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
  border-color: #c82333 !important;
  color: var(--soft-white) !important;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3) !important;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%) !important;
  border-color: #bd2130 !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4) !important;
}

/* Info Button - زر المعلومات */
.btn-info {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
  border-color: #138496 !important;
  color: var(--soft-white) !important;
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3) !important;
}

.btn-info:hover, .btn-info:focus, .btn-info:active {
  background: linear-gradient(135deg, #138496 0%, #117a8b 100%) !important;
  border-color: #117a8b !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4) !important;
}

/* Outline Buttons - الأزرار المحددة */
.btn-outline-primary {
  background: transparent !important;
  border-color: var(--primary-gold) !important;
  color: var(--primary-gold) !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background: var(--gradient-gold) !important;
  border-color: var(--dark-gold) !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px var(--shadow-gold) !important;
}

.btn-outline-secondary {
  background: transparent !important;
  border-color: #6c757d !important;
  color: #6c757d !important;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
  border-color: #495057 !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4) !important;
}

.btn-outline-success {
  background: transparent !important;
  border-color: #28a745 !important;
  color: #28a745 !important;
}

.btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  border-color: #20c997 !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4) !important;
}

.btn-outline-warning {
  background: transparent !important;
  border-color: #ffc107 !important;
  color: #ffc107 !important;
}

.btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%) !important;
  border-color: #fd7e14 !important;
  color: #212529 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4) !important;
}

.btn-outline-danger {
  background: transparent !important;
  border-color: #dc3545 !important;
  color: #dc3545 !important;
}

.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
  border-color: #c82333 !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4) !important;
}

.btn-outline-info {
  background: transparent !important;
  border-color: #17a2b8 !important;
  color: #17a2b8 !important;
}

.btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
  border-color: #138496 !important;
  color: var(--soft-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4) !important;
}

/* Button Group Styles - أنماط مجموعات الأزرار */
.btn-group {
  display: inline-flex !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}

.btn-group .btn {
  margin: 0 !important;
}

/* Button Icons - أيقونات الأزرار */
.btn i {
  font-size: 1em !important;
  line-height: 1 !important;
}

/* Disabled Button State - حالة الأزرار المعطلة */
.btn:disabled, .btn.disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn:disabled:hover, .btn.disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Focus States - حالات التركيز */
.btn:focus {
  outline: none !important;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
}

/* Active States - الحالات النشطة */
.btn:active {
  transform: translateY(-1px) !important;
}

/* Button Loading State - حالة التحميل */
.btn.loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
}

.btn.loading::after {
  content: "" !important;
  position: absolute !important;
  width: 16px !important;
  height: 16px !important;
  top: 50% !important;
  left: 50% !important;
  margin-left: -8px !important;
  margin-top: -8px !important;
  border: 2px solid transparent !important;
  border-top-color: currentColor !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========================================
   LINK BUTTON STYLES - أنماط الروابط التي تبدو كأزرار
   ======================================== */

/* Links that look like buttons */
a.badge, a.btn {
  text-decoration: none !important;
}

/* Payment status badges that are clickable */
a.badge.bg-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%) !important;
  color: #212529 !important;
  border-color: #fd7e14 !important;
  cursor: pointer !important;
}

a.badge.bg-warning:hover {
  background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%) !important;
  border-color: #e55a00 !important;
  color: #212529 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4) !important;
}

/* Ensure all clickable badges have proper cursor */
a.badge {
  cursor: pointer !important;
}

/* Remove text decoration from all button-like elements */
a.btn, a.badge, button {
  text-decoration: none !important;
}

/* Ensure consistent spacing in button groups */
.btn-group > * {
  margin: 0 !important;
}

/* Fix for buttons in card headers */
.card-header .btn-group {
  margin: 0 !important;
}

.card-header .btn-group .btn {
  margin: 0 !important;
}

/* Navbar Golden Theme */
.navbar {
  background: var(--gradient-gold) !important;
  border-bottom: 3px solid var(--dark-gold) !important;
  box-shadow: 0 4px 20px var(--shadow-gold) !important;
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--soft-white) !important;
  font-weight: 700 !important;
  font-size: 2rem !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--light-gold) !important;
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: var(--soft-white) !important;
  font-weight: 600 !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: rgba(255,255,255,0.2);
  color: var(--light-gold) !important;
  transform: translateY(-2px);
}

/* Force dropdown to appear on the right */
.navbar-nav .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  transform: translate(0, 0) !important;
  background: var(--soft-white);
  border: 2px solid var(--primary-gold);
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.dropdown-item {
  color: var(--elegant-black) !important;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--gradient-gold-light) !important;
  color: var(--elegant-black) !important;
  transform: translateX(5px);
}

/* Additional specificity for Bootstrap override */
.navbar .nav-item .dropdown-menu {
  right: -48px !important;
  left: auto !important;
}

/* Profile Edit Page Styles */
.profile-edit-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.profile-edit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.profile-edit-card .card-header {
  background: var(--gradient-gold);
  border: none;
  padding: 1.5rem;
  color: var(--soft-white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.profile-edit-card .card-body {
  padding: 2rem;
}

.profile-edit-form .form-floating {
  margin-bottom: 1rem;
}

.profile-edit-form .form-floating input {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.profile-edit-form .form-floating input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem var(--shadow-gold);
  transform: translateY(-1px);
}

.profile-edit-form .form-floating label {
  color: #6c757d;
  font-weight: 500;
  transition: all 0.3s ease;
}

.profile-edit-form .form-floating.focused label {
  color: var(--primary-gold);
  transform: scale(0.95);
}

.profile-edit-form .form-floating input.is-invalid {
  border-color: #dc3545;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.profile-edit-form .form-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

.profile-edit-form .alert-info {
  border: none;
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  border-radius: 10px;
  border-left: 4px solid #17a2b8;
}

.profile-edit-form .card-footer {
  border: none;
  background: #f8f9fa;
  padding: 1.5rem;
}

.profile-edit-form .btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.profile-edit-form .btn-primary {
  background: var(--gradient-gold);
  box-shadow: 0 4px 15px var(--shadow-gold);
  border: none;
  color: var(--soft-white);
  font-weight: 600;
}

.profile-edit-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-gold);
  background: var(--gradient-gold);
}

.profile-edit-form .btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.profile-edit-form .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Full Name Display Card */
.card.bg-light {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card.bg-light:hover {
  border-color: #007bff;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card.bg-light .card-title {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.card.bg-light .card-text {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.card.bg-light:hover .card-text {
  color: #0056b3 !important;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-edit-card .card-body {
    padding: 1.5rem;
  }
  
  .profile-edit-form .form-floating input {
    font-size: 0.9rem;
  }
  
  .profile-edit-form .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Loading Animation */
.btn.loading {
  position: relative;
  color: transparent !important;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Identity Manage Pages Styles */
.profile-nav-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 20px;
}

.profile-nav-card .card-header {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  padding: 1.5rem;
}

.profile-nav-card .list-group-item {
  border: none;
  border-radius: 0;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  color: #495057;
  font-weight: 500;
}

.profile-nav-card .list-group-item:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #007bff;
  transform: translateX(5px);
}

.profile-nav-card .list-group-item.active {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border-left: 4px solid #007bff;
}

.profile-nav-card .list-group-item.active:hover {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  transform: none;
}

.profile-main-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.profile-main-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.profile-main-card .card-header {
  border: none;
  padding: 1.5rem;
  font-weight: 600;
}

.profile-main-card .card-body {
  padding: 2rem;
}

.profile-main-card .form-floating {
  margin-bottom: 1.5rem;
}

.profile-main-card .form-floating input {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.profile-main-card .form-floating input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  transform: translateY(-1px);
}

.profile-main-card .form-floating label {
  color: #6c757d;
  font-weight: 500;
  transition: all 0.3s ease;
}

.profile-main-card .form-floating.focused label {
  color: #007bff;
  transform: scale(0.95);
}

.profile-main-card .btn {
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.profile-main-card .btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.profile-main-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.profile-main-card .btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.profile-main-card .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.profile-main-card .btn-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  color: #212529;
}

.profile-main-card .btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  color: #212529;
}

/* Password Toggle Button */
.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  z-index: 10;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #007bff;
}

.form-floating {
  position: relative;
}

/* Alert Styles */
.alert {
  border: none;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 4px solid #28a745;
}

.alert-warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #ffc107;
}

.alert-info {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  border-left: 4px solid #17a2b8;
}

/* ========================================
   UNIFIED BADGE STYLES - أنماط الشارات الموحدة
   ======================================== */

.badge {
  font-size: 0.875rem !important;
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  transition: all 0.3s ease !important;
  border: 1px solid transparent !important;
}

.badge:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.badge.bg-primary {
  background: var(--gradient-gold) !important;
  color: var(--soft-white) !important;
  border-color: var(--dark-gold) !important;
}

.badge.bg-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
  color: var(--soft-white) !important;
  border-color: #495057 !important;
}

.badge.bg-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  color: var(--soft-white) !important;
  border-color: #20c997 !important;
}

.badge.bg-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%) !important;
  color: #212529 !important;
  border-color: #fd7e14 !important;
}

.badge.bg-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
  color: var(--soft-white) !important;
  border-color: #c82333 !important;
}

.badge.bg-info {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
  color: var(--soft-white) !important;
  border-color: #138496 !important;
}

.badge.bg-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  color: #495057 !important;
  border-color: #e9ecef !important;
}

.badge.bg-dark {
  background: linear-gradient(135deg, #343a40 0%, #212529 100%) !important;
  color: var(--soft-white) !important;
  border-color: #212529 !important;
}

/* Tips Card Styles */
.card .card-header {
  border: none;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
}

.card .list-unstyled li {
  padding: 0.25rem 0;
  transition: all 0.3s ease;
}

.card .list-unstyled li:hover {
  transform: translateX(5px);
}

.card .list-unstyled li i {
  transition: all 0.3s ease;
}

.card .list-unstyled li:hover i {
  transform: scale(1.2);
}

/* Responsive Design for Manage Pages */
@media (max-width: 768px) {
  .profile-nav-card {
    position: static;
    margin-bottom: 2rem;
  }
  
  .profile-main-card .card-body {
    padding: 1.5rem;
  }
  
  .profile-main-card .form-floating input {
    font-size: 0.9rem;
  }
  
  .profile-main-card .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Animation for form validation */
.form-floating input.is-invalid {
  border-color: #dc3545;
  animation: shake 0.5s ease-in-out;
}

.form-floating input.is-valid {
  border-color: #28a745;
  animation: successPulse 0.5s ease-in-out;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Loading states */
.btn.loading {
  position: relative;
  color: transparent !important;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* إخفاء القائمة الافتراضية لـ Identity */
.nav.nav-pills.flex-column {
  display: none !important;
}

/* إخفاء العناوين الافتراضية لـ Identity */
/* h1, h2 rules removed as they were empty */

/* إخفاء أي عناصر افتراضية لـ Identity */
.identity-default-nav {
  display: none !important;
}

/* إخفاء الروابط الافتراضية لـ Identity */
a[href*="/Identity/Account/Manage"]:not([asp-page]) {
  display: none !important;
}

/* إخفاء العناصر التي تحتوي على نصوص Identity الافتراضية */
*:contains("Profile"),
*:contains("Email"), 
*:contains("Password"),
*:contains("Two-factor authentication"),
*:contains("Personal data"),
*:contains("Manage your account"),
*:contains("Change your account settings") {
  display: none !important;
}

/* CSS إضافي لإخفاء العناصر الافتراضية */
.default-identity-nav,
.default-identity-header {
  display: none !important;
}

/* إخفاء أي قوائم افتراضية */
.nav-pills {
  display: none !important;
}

/* إظهار قائمتنا المخصصة فقط */
.profile-nav-card {
  display: block !important;
}

/* Clean Login Section - خلفية بيضاء نظيفة */
.clean-login-section {
  background: #FFFFFF;
  min-height: calc(100vh - 120px); /* طرح ارتفاع الـ footer */
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem; /* مساحة إضافية أسفل المحتوى */
}

.clean-login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.clean-login-section > * {
  position: relative;
  z-index: 2;
}

/* Logo Styles */
.golden-logo {
  margin-bottom: 2rem;
}

.golden-icon {
  font-size: 4rem;
  color: #D4AF37;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  animation: iconPulse 3s ease-in-out infinite alternate;
}

@keyframes iconPulse {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.1) rotate(5deg); }
}

.golden-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin: 1rem 0 0.5rem 0;
  letter-spacing: 2px;
}

.golden-subtitle {
  color: #F5E6A3;
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Card Styles */
.golden-card {
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(15px);
  border: 3px solid #D4AF37;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  transform: scale(0.9);
  animation: cardSlideIn 0.6s ease forwards;
}

@keyframes cardSlideIn {
  from {
    transform: scale(0.9) translateY(50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(-30px);
    opacity: 1;
  }
}

.golden-card-header {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #FEFEFE;
}

.golden-header-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: headerIconPulse 2s ease-in-out infinite alternate;
}

@keyframes headerIconPulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.golden-header-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.golden-card-body {
  padding: 2.5rem 2rem;
}

/* Form Styles */
.golden-form-group {
  margin-bottom: 2rem;
}

.golden-label {
  display: flex;
  align-items: center;
  color: #1C1C1C;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.golden-label-icon {
  color: #D4AF37;
  margin-left: 0.75rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.golden-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 3px solid #F5E6A3;
  border-radius: 15px;
  font-size: 1.1rem;
  font-family: 'Cairo', sans-serif;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #FEFEFE 0%, #F8F6F0 100%);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.golden-input:hover {
  border-color: #D4AF37;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}

.golden-input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 0.3rem rgba(212, 175, 55, 0.3), 0 4px 12px rgba(212, 175, 55, 0.2);
  outline: none;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FEFEFE 0%, #FFFEF7 100%);
}

.golden-input:focus + .golden-label .golden-label-icon {
  transform: scale(1.2) rotate(10deg);
  color: #B8860B;
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input {
  padding-right: 3.5rem !important; /* مساحة للأيقونة */
  padding-left: 1.5rem !important;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.password-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-50%) scale(1.1);
}

.password-toggle-btn:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

.password-toggle-icon {
  color: #D4AF37;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.password-toggle-btn:hover .password-toggle-icon {
  color: #B8860B;
  transform: scale(1.1);
}

/* Checkbox Styles */
.golden-checkbox-group {
  margin: 2rem 0;
}

.golden-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #4A4A4A;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding-right: 2rem;
}

.golden-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.golden-checkmark {
  position: absolute;
  right: 0;
  height: 20px;
  width: 20px;
  background: linear-gradient(135deg, #F5E6A3 0%, #FEFEFE 100%);
  border: 2px solid #D4AF37;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.golden-checkbox:checked ~ .golden-checkmark {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  transform: scale(1.1);
}

.golden-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  right: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #FEFEFE;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.golden-checkbox:checked ~ .golden-checkmark:after {
  display: block;
}

/* Button Styles */
.golden-button-container {
  margin: 2rem 0;
}

.golden-button {
  width: 100%;
  padding: 1.3rem 2rem;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  border: 3px solid #B8860B;
  border-radius: 25px;
  color: #FEFEFE;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.golden-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.golden-button:hover::before {
  left: 100%;
}

.golden-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
}

/* Links Section */
.golden-links-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #F5E6A3;
}

.golden-forgot-link {
  color: #D4AF37;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.golden-forgot-link:hover {
  color: #B8860B;
  transform: scale(1.05);
  text-decoration: none;
}

.golden-register-text {
  color: #4A4A4A;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.golden-register-link {
  color: #D4AF37;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 2px solid #D4AF37;
  border-radius: 15px;
  background: rgba(212, 175, 55, 0.1);
}

.golden-register-link:hover {
  color: #B8860B;
  border-color: #B8860B;
  background: rgba(184, 134, 11, 0.1);
  transform: scale(1.05);
  text-decoration: none;
}

/* Error Styles */
.golden-error {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

.golden-alert {
  border: 2px solid #dc3545;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: none !important; /* مخفي افتراضياً */
}

/* إظهار alert عند وجود أخطاء */
.golden-alert:not(.validation-summary-valid),
.golden-alert.validation-summary-errors {
  display: block !important;
}

/* إخفاء alert عندما يكون فارغ أو يحتوي على عناصر مخفية فقط */
.golden-alert.validation-summary-valid ul:empty,
.golden-alert ul:has(li[style*="display:none"]:only-child) {
  display: none !important;
}

/* إخفاء alert عندما تكون جميع العناصر مخفية */
.golden-alert ul li[style*="display:none"]:only-child {
  display: none !important;
}

/* إخفاء alert كاملاً إذا كانت جميع عناصر li مخفية */
.golden-alert ul:has(li[style*="display:none"]:only-child) {
  display: none !important;
}

.golden-alert.validation-summary-valid {
  display: none !important;
}

/* Golden Header for Register Page */
.golden-header {
  background: var(--gradient-gold) !important;
  border: none !important;
}

/* Success Message for Confirmation Pages */
.golden-success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.golden-message-icon {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 1rem;
  animation: messagePulse 2s ease-in-out infinite alternate;
}

@keyframes messagePulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.golden-message-text {
  font-size: 1.1rem;
  color: #155724;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

/* Instructions Section */
.golden-instructions {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: right;
}

.golden-instructions-title {
  color: #856404;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.golden-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.golden-step {
  color: #856404;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.golden-step:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-5px);
}

.golden-step i {
  color: #ffc107;
  margin-left: 0.5rem;
}

/* Help Section */
.golden-help-section {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  border: 2px solid #17a2b8;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.golden-help-text {
  color: #0c5460;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.golden-help-text i {
  color: #17a2b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .golden-title {
    font-size: 2.5rem;
  }
  
  .golden-subtitle {
    font-size: 1rem;
  }
  
  .golden-card-body {
    padding: 1.5rem;
  }
  
  .golden-input {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }
  
  .password-input {
    padding-right: 3rem !important;
    padding-left: 1.2rem !important;
  }
  
  .password-toggle-btn {
    right: 8px;
    width: 2.2rem;
    height: 2.2rem;
  }
  
  .password-toggle-icon {
    font-size: 1rem;
  }
  
  .golden-button {
    padding: 1.1rem 1.5rem;
    font-size: 1.1rem;
  }

  .golden-success-message,
  .golden-instructions,
  .golden-help-section {
    padding: 1.5rem;
  }
  
  .golden-step {
    font-size: 0.9rem;
  }
}