/* ========== Glowria Investment - Luxury Ultra Light CSS ========== */

.hero-subtle {
  background: linear-gradient(to bottom, #fafafa, #f2f2f2);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.hero-container h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
  animation: fadeInDown 0.6s ease;
}

.hero-container p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(to right, #fdfdfd, #ececec);
  color: #222;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  letter-spacing: 0.4px;
}

.hero-btn:hover {
  background: linear-gradient(to left, #f8f8f8, #e2e2e2);
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}



body {
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #fdfdfd, #f6f6f6);
  color: #222;
  direction: rtl;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  line-height: 1.9;
  animation: fadeIn 0.8s ease;
}

/* === Titles === */
h3 {
  font-size: 1.7rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  border-right: 5px solid #eee;
  padding-right: 12px;
}

/* === Text === */
p, li {
  font-size: 16px;
  color: #444;
}

/* === Links === */
a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #666;
  text-decoration: underline;
}

/* === Section Wrapper === */
.luxury-section {
  background: linear-gradient(to bottom, #fff, #fbfbfb);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  padding: 50px 40px;
  margin: 50px auto;
  max-width: 1100px;
  animation: fadeInUp 0.9s ease;
}

/* === Ordered Steps List === */
.steps-list {
  list-style: decimal inside;
  padding: 0;
  margin-bottom: 30px;
}
.steps-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

/* === Unordered List === */
.luxury-list {
  list-style: disc inside;
  padding: 0;
  margin-bottom: 30px;
}
.luxury-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  color: #333;
}

/* === CTA Button - Light Luxury === */
.cta-center {
  text-align: center;
  margin-top: 40px;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(to left, #ffffff, #f4f4f4);
  color: #1a1a1a;
  padding: 16px 40px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.35px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  border: 1px solid #e0e0e0;
  text-decoration: none;
}

.cta-btn:hover {
  background: linear-gradient(to right, #f8f8f8, #e6e6e6);
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

/* === Table Wrapper === */
.table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  background-color: #fefefe;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
th, td {
  padding: 16px 22px;
  text-align: right;
  border-bottom: 1px solid #eee;
}
th {
  background-color: #f9f9f9;
  font-weight: bold;
  color: #111;
}
td img {
  vertical-align: middle;
  width: 24px;
  height: auto;
  margin-left: 8px;
}

/* === Animations === */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
