:root {
  --navy: #0A1628;
  --navy-light: #112040;
  --gold: #C8A45A;
  --gold-hover: #DDB96E;
  --cream: #F5F0E6;
  --cream-muted: rgba(245, 240, 230, 0.6);
  --border-gold: rgba(200, 164, 90, 0.22);
  --font: Cairo, sans-serif;
  --transition: 0.22s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cairo", sans-serif;
  background: #0A1628;
  color: #F5F0E6;
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 90, 0.12);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 50px;
  padding: 6px 16px;
  color: #C8A45A;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: #F5F0E6;
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-title .highlight {
  color: #C8A45A;
}

.section-desc {
  font-size: 16px;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.85;
  max-width: 560px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C8A45A;
  color: #0A1628;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}
.btn-primary:hover {
  background: #DDB96E;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #F5F0E6;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1px solid rgba(200, 164, 90, 0.22);
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.btn-outline:hover {
  border-color: #C8A45A;
  background: rgba(200, 164, 90, 0.08);
}

.top-bar {
  background: #0A1628;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
  padding: 10px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo__icon {
  width: 46px;
  height: 46px;
  background: #C8A45A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0A1628;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__name {
  font-size: 22px;
  font-weight: 900;
  color: #C8A45A;
  line-height: 1;
}
.logo__tagline {
  font-size: 11px;
  color: rgba(245, 240, 230, 0.6);
  font-weight: 300;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(245, 240, 230, 0.6);
  font-size: 13px;
}
.contact-item i {
  color: #C8A45A;
  font-size: 13px;
}

.vdivider {
  width: 1px;
  height: 18px;
  background: rgba(200, 164, 90, 0.22);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 240, 230, 0.6);
  cursor: pointer;
}
.lang-switch .on {
  color: #C8A45A;
}
.lang-switch .sep {
  color: rgba(200, 164, 90, 0.22);
  font-weight: 300;
}

.main-nav {
  background: #112040;
  border-bottom: 2px solid #C8A45A;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list a {
  display: block;
  padding: 9px 16px;
  color: rgba(245, 240, 230, 0.6);
  font-size: 15px;
  font-weight: 600;
  border-radius: 7px;
  transition: color 0.22s ease, background 0.22s ease;
  position: relative;
}
.nav-list a:hover {
  color: #F5F0E6;
  background: rgba(200, 164, 90, 0.1);
}
.nav-list a.active {
  color: #F5F0E6;
}
.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 50%;
  transform: translateX(50%);
  width: 22px;
  height: 2px;
  background: #C8A45A;
  border-radius: 2px;
}
.nav-list .cta-btn {
  background: #C8A45A !important;
  color: #0A1628 !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
  transition: background 0.22s ease, transform 0.22s ease !important;
}
.nav-list .cta-btn:hover {
  background: #DDB96E !important;
  transform: translateY(-1px);
}
.nav-list .cta-btn::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.22s ease;
}
.hamburger:hover {
  background: rgba(200, 164, 90, 0.1);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F5F0E6;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #112040;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-menu.open {
  max-height: 500px;
  padding-bottom: 20px;
}
.mobile-menu__links {
  padding: 12px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu__links a {
  display: block;
  padding: 13px 16px;
  color: rgba(245, 240, 230, 0.6);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: color 0.22s ease, background 0.22s ease;
}
.mobile-menu__links a:hover, .mobile-menu__links a.active {
  color: #F5F0E6;
  background: rgba(200, 164, 90, 0.1);
}
.mobile-menu__links .cta-btn {
  background: #C8A45A;
  color: #0A1628 !important;
  font-weight: 700 !important;
  margin-top: 8px;
  text-align: center;
}
.mobile-menu__contact {
  margin: 16px 24px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero {
  background: #0A1628;
  overflow: hidden;
  position: relative;
  padding: 90px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 90, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 90, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__heading {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  color: #F5F0E6;
  line-height: 1.25;
}
.hero__heading .highlight {
  color: #C8A45A;
  position: relative;
  display: inline-block;
}
.hero__heading .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 100%;
  height: 3px;
  background: #C8A45A;
  border-radius: 2px;
  opacity: 0.4;
}
.hero__desc {
  font-size: 16px;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.85;
  max-width: 480px;
}
.hero__search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.22s ease;
}
.hero__search:focus-within {
  border-color: #C8A45A;
}
.hero__search i {
  padding: 0 16px;
  color: #C8A45A;
  font-size: 16px;
  flex-shrink: 0;
}
.hero__search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 16px 0;
  color: #F5F0E6;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
}
.hero__search input::placeholder {
  color: rgba(245, 240, 230, 0.6);
}
.hero__search-btn {
  background: #C8A45A;
  color: #0A1628;
  border: none;
  padding: 14px 24px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease;
  flex-shrink: 0;
}
.hero__search-btn:hover {
  background: #DDB96E;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 8px;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card-wrap {
  position: relative;
  width: 380px;
}
.hero__main-card {
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat__num {
  font-size: 26px;
  font-weight: 900;
  color: #C8A45A;
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(200, 164, 90, 0.22);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lawyer-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8A45A 0%, #8a6a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0A1628;
  flex-shrink: 0;
}

.lawyer-info {
  flex: 1;
}

.lawyer-name {
  font-size: 16px;
  font-weight: 700;
  color: #F5F0E6;
}

.lawyer-spec {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  margin-top: 2px;
}

.lawyer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.card-divider {
  height: 1px;
  background: rgba(200, 164, 90, 0.22);
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card-stat {
  background: rgba(200, 164, 90, 0.06);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-stat__num {
  font-size: 20px;
  font-weight: 900;
  color: #C8A45A;
}
.card-stat__label {
  font-size: 11px;
  color: rgba(245, 240, 230, 0.6);
}

.card-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  color: #C8A45A;
  font-size: 15px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
}

.card-btn {
  display: block;
  background: #C8A45A;
  color: #0A1628;
  text-align: center;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  transition: background 0.22s ease;
}
.card-btn:hover {
  background: #DDB96E;
}

.float-card {
  position: absolute;
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-card--top {
  top: -24px;
  left: -32px;
}
.float-card--bottom {
  bottom: -24px;
  right: -28px;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(200, 164, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A45A;
  font-size: 16px;
  flex-shrink: 0;
}

.float-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.float-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #F5F0E6;
}
.float-text span {
  font-size: 11px;
  color: rgba(245, 240, 230, 0.6);
}

.about {
  background: #0D1E35;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.about__visual {
  display: flex;
  justify-content: center;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(200, 164, 90, 0.05);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 14px;
  padding: 18px 20px;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.value-card:hover {
  background: rgba(200, 164, 90, 0.09);
  border-color: rgba(200, 164, 90, 0.4);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200, 164, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A45A;
  font-size: 20px;
  flex-shrink: 0;
}
.value-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #F5F0E6;
  margin-bottom: 4px;
}
.value-card__desc {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.7;
}

.about-panel {
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-panel__title {
  font-size: 18px;
  font-weight: 700;
  color: #F5F0E6;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
}
.about-panel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panel-stat {
  background: rgba(200, 164, 90, 0.06);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.panel-stat__num {
  font-size: 32px;
  font-weight: 900;
  color: #C8A45A;
  line-height: 1;
  display: block;
}
.panel-stat__label {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  margin-top: 4px;
  display: block;
}

.panel-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  margin-bottom: 6px;
}
.panel-bar__label span:last-child {
  color: #C8A45A;
  font-weight: 700;
}
.panel-bar__track {
  height: 6px;
  background: rgba(200, 164, 90, 0.12);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.panel-bar__fill {
  height: 100%;
  background: #C8A45A;
  border-radius: 3px;
}

.how-it-works {
  background: #0A1628;
  padding: 90px 0;
}
.how-it-works__header {
  text-align: center;
  margin-bottom: 56px;
}
.how-it-works__header .section-desc {
  margin: 0 auto;
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.how-it-works__grid::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 16%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 90, 0.22) 20%, rgba(200, 164, 90, 0.22) 80%, transparent);
}

.step-card {
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.step-card:hover {
  border-color: rgba(200, 164, 90, 0.5);
  transform: translateY(-4px);
}
.step-card__num {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 32px;
  height: 32px;
  background: #C8A45A;
  color: #0A1628;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  border: 3px solid #0A1628;
}
.step-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(200, 164, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A45A;
  font-size: 26px;
  margin-top: 8px;
}
.step-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #F5F0E6;
}
.step-card__desc {
  font-size: 14px;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.75;
}

.team {
  background: #0D1E35;
  padding: 90px 0;
}
.team__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.lawyer-card {
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.lawyer-card:hover {
  border-color: rgba(200, 164, 90, 0.5);
  transform: translateY(-4px);
}
.lawyer-card:hover .lawyer-card__overlay {
  opacity: 1;
}
.lawyer-card__photo {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, rgba(200, 164, 90, 0.15) 0%, rgba(17, 32, 64, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lawyer-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8A45A 0%, #8a6a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #0A1628;
}
.lawyer-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.lawyer-card__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #C8A45A;
  color: #0A1628;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.22s ease;
}
.lawyer-card__social-btn:hover {
  background: #DDB96E;
}
.lawyer-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lawyer-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #F5F0E6;
  margin-bottom: 4px;
}
.lawyer-card__spec {
  font-size: 13px;
  color: #C8A45A;
  font-weight: 600;
}
.lawyer-card__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
}
.lawyer-card__meta i {
  color: #C8A45A;
  margin-left: 4px;
}
.lawyer-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #F5F0E6;
  font-weight: 700;
}
.lawyer-card__rating .stars-sm {
  color: #C8A45A;
  font-size: 11px;
}
.lawyer-card__btn {
  display: block;
  background: rgba(200, 164, 90, 0.1);
  color: #C8A45A;
  text-align: center;
  font-family: "Cairo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(200, 164, 90, 0.22);
  transition: background 0.22s ease, border-color 0.22s ease;
}
.lawyer-card__btn:hover {
  background: #C8A45A;
  color: #0A1628;
  border-color: #C8A45A;
}

.contact {
  background: #0A1628;
  padding: 90px 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form-wrap {
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 24px;
  padding: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(200, 164, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A45A;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card__label {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.contact-card__value {
  font-size: 15px;
  color: #F5F0E6;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form__title {
  font-size: 20px;
  font-weight: 700;
  color: #F5F0E6;
  margin-bottom: 4px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  font-weight: 600;
}
.form-group label span {
  color: #C8A45A;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 10px;
  padding: 13px 16px;
  color: #F5F0E6;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.22s ease;
  direction: rtl;
}
.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder {
  color: rgba(245, 240, 230, 0.3);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #C8A45A;
  background: rgba(200, 164, 90, 0.05);
}
.form-group select {
  cursor: pointer;
}
.form-group select option {
  background: #112040;
  color: #F5F0E6;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-submit__note {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
}
.form-submit__note i {
  color: #C8A45A;
  margin-left: 5px;
}

.footer {
  background: #112040;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
  padding: 60px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__desc {
  font-size: 14px;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.8;
  max-width: 260px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200, 164, 90, 0.1);
  border: 1px solid rgba(200, 164, 90, 0.22);
  color: rgba(245, 240, 230, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.footer__social-btn:hover {
  background: #C8A45A;
  color: #0A1628;
  border-color: #C8A45A;
}
.footer__col-title {
  font-size: 15px;
  font-weight: 700;
  color: #F5F0E6;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(245, 240, 230, 0.6);
  transition: color 0.22s ease, padding-right 0.22s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__links a i {
  color: #C8A45A;
  font-size: 10px;
}
.footer__links a:hover {
  color: #C8A45A;
  padding-right: 6px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
}
.footer__copy span {
  color: #C8A45A;
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  transition: color 0.22s ease;
}
.footer__bottom-links a:hover {
  color: #C8A45A;
}

.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0A1628;
}

.login-brand {
  position: relative;
  background: linear-gradient(160deg, #0A1628 0%, #112040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  overflow: hidden;
}
.login-brand::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 90, 0.1) 0%, transparent 70%);
}
.login-brand::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 90, 0.07) 0%, transparent 70%);
}
.login-brand__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.login-brand__icon {
  width: 90px;
  height: 90px;
  background: #C8A45A;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #0A1628;
}
.login-brand__title {
  font-size: 28px;
  font-weight: 900;
  color: #F5F0E6;
  line-height: 1.3;
}
.login-brand__divider {
  width: 60px;
  height: 3px;
  background: #C8A45A;
  border-radius: 2px;
}
.login-brand__subtitle {
  font-size: 16px;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.8;
  max-width: 340px;
}
.login-brand__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 8px;
}
.login-brand__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(200, 164, 90, 0.08);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 12px;
  padding: 14px 18px;
}
.login-brand__feature i {
  color: #C8A45A;
  font-size: 16px;
  flex-shrink: 0;
}
.login-brand__feature span {
  font-size: 14px;
  color: rgba(245, 240, 230, 0.6);
}

.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  background: #112040;
  border-right: 1px solid rgba(200, 164, 90, 0.22);
}

.login-box {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.login-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-header__title {
  font-size: 26px;
  font-weight: 900;
  color: #F5F0E6;
}
.login-header__sub {
  font-size: 14px;
  color: rgba(245, 240, 230, 0.6);
}

.role-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 10px;
  overflow: hidden;
}

.role-tab {
  padding: 11px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 240, 230, 0.6);
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  background: none;
  font-family: "Cairo", sans-serif;
}
.role-tab.active {
  background: #C8A45A;
  color: #0A1628;
}
.role-tab:hover:not(.active) {
  background: rgba(200, 164, 90, 0.1);
  color: #F5F0E6;
}

.login-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lf-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 240, 230, 0.6);
}
.lf-group__input-wrap {
  position: relative;
}
.lf-group__input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 10px;
  padding: 13px 46px 13px 16px;
  color: #F5F0E6;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.22s ease;
  direction: rtl;
}
.lf-group__input-wrap input[type=password] {
  padding-left: 46px;
}
.lf-group__input-wrap input::placeholder {
  color: rgba(245, 240, 230, 0.3);
}
.lf-group__input-wrap input:focus {
  border-color: #C8A45A;
  background: rgba(200, 164, 90, 0.05);
}
.lf-group__input-wrap i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(200, 164, 90, 0.5);
  font-size: 15px;
  pointer-events: none;
}
.lf-group__input-wrap .toggle-pass {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(200, 164, 90, 0.5);
  font-size: 14px;
  cursor: pointer;
  pointer-events: all;
  background: none;
  border: none;
}
.lf-group__input-wrap .toggle-pass:hover {
  color: #C8A45A;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(245, 240, 230, 0.6);
}
.remember-me input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #C8A45A;
  cursor: pointer;
}

.forgot-link {
  color: #C8A45A;
  font-size: 13px;
  font-weight: 600;
}
.forgot-link:hover {
  color: #DDB96E;
}

.login-submit {
  width: 100%;
  background: #C8A45A;
  color: #0A1628;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.login-submit:hover {
  background: #DDB96E;
  transform: translateY(-1px);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login-divider span {
  flex: 1;
  height: 1px;
  background: rgba(200, 164, 90, 0.22);
}
.login-divider p {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
  white-space: nowrap;
}

.login-register {
  text-align: center;
  font-size: 14px;
  color: rgba(245, 240, 230, 0.6);
}
.login-register a {
  color: #C8A45A;
  font-weight: 700;
}
.login-register a:hover {
  color: #DDB96E;
}

@media (max-width: 768px) {
  .login-page {
    grid-template-columns: 1fr;
  }
  .login-brand {
    display: none;
  }
  .login-form-side {
    padding: 40px 24px;
  }
}
.dashboard {
  display: flex;
  min-height: 100vh;
  background: #0A1628;
}

.sidebar {
  width: 260px;
  min-height: 100vh;
  background: #112040;
  border-left: 1px solid rgba(200, 164, 90, 0.22);
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  height: 100vh;
  overflow-y: auto;
}
.sidebar.collapsed {
  width: 68px;
}
.sidebar.collapsed .sidebar__logo-text,
.sidebar.collapsed .nav-item__label,
.sidebar.collapsed .nav-section__title,
.sidebar.collapsed .nav-item__arrow {
  display: none;
}
.sidebar.collapsed .nav-item__icon {
  margin: 0 auto;
}

.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
  min-height: 68px;
}

.sidebar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.sidebar__logo-icon {
  width: 36px;
  height: 36px;
  background: #C8A45A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0A1628;
  flex-shrink: 0;
}

.sidebar__logo-text {
  font-size: 18px;
  font-weight: 900;
  color: #C8A45A;
}

.sidebar__toggle {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  color: rgba(245, 240, 230, 0.6);
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.22s ease, color 0.22s ease;
}
.sidebar__toggle:hover {
  background: rgba(200, 164, 90, 0.1);
  color: #C8A45A;
}

.sidebar__body {
  flex: 1;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-section__title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(200, 164, 90, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 12px 20px 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: rgba(245, 240, 230, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  transition: background 0.22s ease, color 0.22s ease;
  position: relative;
  cursor: pointer;
}
.nav-item:hover {
  background: rgba(200, 164, 90, 0.08);
  color: #F5F0E6;
}
.nav-item.active {
  background: rgba(200, 164, 90, 0.12);
  color: #C8A45A;
  border-right: 3px solid #C8A45A;
}
.nav-item__icon {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-item__label {
  flex: 1;
}
.nav-item__badge {
  background: #C8A45A;
  color: #0A1628;
  font-size: 10px;
  font-weight: 800;
  border-radius: 10px;
  padding: 1px 7px;
  min-width: 20px;
  text-align: center;
}
.nav-item__arrow {
  font-size: 11px;
  transition: transform 0.25s ease;
}
.nav-item.open .nav-item__arrow {
  transform: rotate(-90deg);
}

.nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nav-sub.open {
  max-height: 200px;
}
.nav-sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px 9px 32px;
  color: rgba(245, 240, 230, 0.6);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.22s ease, background 0.22s ease;
}
.nav-sub a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 164, 90, 0.22);
  flex-shrink: 0;
}
.nav-sub a:hover {
  color: #C8A45A;
  background: rgba(200, 164, 90, 0.05);
}
.nav-sub a.active {
  color: #C8A45A;
}
.nav-sub a.active::before {
  background: #C8A45A;
}

.sidebar__footer {
  padding: 16px;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
}

.sidebar__user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(200, 164, 90, 0.05);
  border: 1px solid rgba(200, 164, 90, 0.22);
}

.sidebar__user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8A45A 0%, #8a6a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0A1628;
  flex-shrink: 0;
}

.sidebar__user-info {
  flex: 1;
  min-width: 0;
}
.sidebar__user-info strong {
  display: block;
  font-size: 13px;
  color: #F5F0E6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar__user-info span {
  display: block;
  font-size: 11px;
  color: rgba(245, 240, 230, 0.6);
}

.sidebar__logout {
  color: rgba(245, 240, 230, 0.6);
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.22s ease;
}
.sidebar__logout:hover {
  color: #f87171;
}

.dash-main {
  flex: 1;
  margin-right: 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-right 0.3s ease;
}
.dash-main.sidebar-collapsed {
  margin-right: 68px;
}

.dash-topbar {
  height: 68px;
  background: #112040;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.dash-topbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 8px;
  padding: 8px 14px;
  transition: border-color 0.22s ease;
}
.topbar-search:focus-within {
  border-color: #C8A45A;
}
.topbar-search i {
  color: rgba(245, 240, 230, 0.6);
  font-size: 14px;
}
.topbar-search input {
  background: none;
  border: none;
  outline: none;
  color: #F5F0E6;
  font-family: "Cairo", sans-serif;
  font-size: 13px;
  width: 200px;
}
.topbar-search input::placeholder {
  color: rgba(245, 240, 230, 0.3);
}

.dash-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.22);
  color: rgba(245, 240, 230, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.22s ease, color 0.22s ease;
}
.topbar-icon-btn:hover {
  border-color: #C8A45A;
  color: #C8A45A;
}

.topbar-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  background: #C8A45A;
  color: #0A1628;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #112040;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 9px;
  border: 1px solid rgba(200, 164, 90, 0.22);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.22s ease;
}
.topbar-user:hover {
  border-color: #C8A45A;
}
.topbar-user__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8A45A 0%, #8a6a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #0A1628;
}
.topbar-user__info strong {
  display: block;
  font-size: 13px;
  color: #F5F0E6;
  font-weight: 700;
}
.topbar-user__info span {
  display: block;
  font-size: 11px;
  color: rgba(245, 240, 230, 0.6);
}
.topbar-user i {
  color: rgba(245, 240, 230, 0.6);
  font-size: 11px;
}

.dash-body {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dash-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.dash-page-header__title {
  font-size: 22px;
  font-weight: 900;
  color: #F5F0E6;
}
.dash-page-header__breadcrumb {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.dash-page-header__breadcrumb a {
  color: #C8A45A;
}
.dash-page-header__breadcrumb i {
  font-size: 10px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dash-stat-card {
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.dash-stat-card:hover {
  border-color: rgba(200, 164, 90, 0.5);
  transform: translateY(-2px);
}
.dash-stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200, 164, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A45A;
  font-size: 20px;
  flex-shrink: 0;
}
.dash-stat-card__num {
  font-size: 24px;
  font-weight: 900;
  color: #F5F0E6;
  line-height: 1;
}
.dash-stat-card__label {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
  margin-top: 4px;
}
.dash-stat-card__change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}
.dash-stat-card__change.up {
  color: #4ade80;
}
.dash-stat-card__change.down {
  color: #f87171;
}

.dash-table-wrap {
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 16px;
  overflow: hidden;
}

.dash-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
  flex-wrap: wrap;
  gap: 12px;
}
.dash-table-header__title {
  font-size: 16px;
  font-weight: 700;
  color: #F5F0E6;
}
.dash-table-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  cursor: pointer;
  transition: border-color 0.22s ease;
}
.dash-filter:hover {
  border-color: #C8A45A;
  color: #F5F0E6;
}
.dash-filter i {
  font-size: 13px;
}

.dash-add-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #C8A45A;
  color: #0A1628;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: "Cairo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease;
}
.dash-add-btn:hover {
  background: #DDB96E;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}
.dash-table thead tr {
  background: rgba(200, 164, 90, 0.05);
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
}
.dash-table th {
  padding: 13px 20px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: rgba(200, 164, 90, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.dash-table tbody tr {
  border-bottom: 1px solid rgba(200, 164, 90, 0.08);
  transition: background 0.22s ease;
}
.dash-table tbody tr:last-child {
  border-bottom: none;
}
.dash-table tbody tr:hover {
  background: rgba(200, 164, 90, 0.04);
}
.dash-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: rgba(245, 240, 230, 0.6);
  white-space: nowrap;
}

.td-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.td-name__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8A45A 0%, #8a6a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #0A1628;
  flex-shrink: 0;
}
.td-name__text strong {
  display: block;
  font-size: 14px;
  color: #F5F0E6;
}
.td-name__text span {
  display: block;
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
}

.status-switch {
  position: relative;
  width: 40px;
  height: 22px;
}
.status-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.status-switch__track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid rgba(200, 164, 90, 0.22);
}
.status-switch__track::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 2px;
  top: 2px;
  background: rgba(245, 240, 230, 0.6);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}
input:checked + .status-switch__track {
  background: rgba(74, 222, 128, 0.2);
  border-color: #4ade80;
}
input:checked + .status-switch__track::before {
  transform: translateX(-18px);
  background: #4ade80;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}
.badge-status--active {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.badge-status--pending {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}
.badge-status--inactive {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}

.td-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid rgba(200, 164, 90, 0.22);
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.td-action-btn--edit {
  color: #C8A45A;
}
.td-action-btn--edit:hover {
  background: rgba(200, 164, 90, 0.15);
  border-color: #C8A45A;
}
.td-action-btn--del {
  color: #f87171;
}
.td-action-btn--del:hover {
  background: rgba(248, 113, 113, 0.15);
  border-color: #f87171;
}
.td-action-btn--view {
  color: rgba(245, 240, 230, 0.6);
}
.td-action-btn--view:hover {
  background: rgba(200, 164, 90, 0.1);
  color: #F5F0E6;
}

.dash-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
  flex-wrap: wrap;
  gap: 12px;
}
.dash-table-footer__info {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
}

.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pagination__btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid rgba(200, 164, 90, 0.22);
  background: none;
  color: rgba(245, 240, 230, 0.6);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  font-family: "Cairo", sans-serif;
}
.pagination__btn:hover {
  border-color: #C8A45A;
  color: #C8A45A;
}
.pagination__btn.active {
  background: #C8A45A;
  color: #0A1628;
  border-color: #C8A45A;
  font-weight: 700;
}

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .dash-main {
    margin-right: 0;
  }
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .topbar-search {
    display: none;
  }
}
@media (max-width: 480px) {
  .dash-stats {
    grid-template-columns: 1fr 1fr;
  }
  .dash-body {
    padding: 16px;
  }
}
.form-page {
  min-height: 100vh;
  background: #0A1628;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px;
}

.form-page__header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-page__header__logo {
  width: 64px;
  height: 64px;
  background: #C8A45A;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0A1628;
}
.form-page__header h2 {
  font-size: 26px;
  font-weight: 900;
  color: #F5F0E6;
}
.form-page__header p {
  font-size: 15px;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.8;
  max-width: 520px;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  width: 100%;
  max-width: 580px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(200, 164, 90, 0.22);
  z-index: 0;
}
.step.done::after {
  background: #C8A45A;
}
.step.active::after {
  background: linear-gradient(90deg, #C8A45A 0%, rgba(200, 164, 90, 0.22) 100%);
}
.step__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(200, 164, 90, 0.22);
  background: #112040;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 240, 230, 0.6);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step__label {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
  white-space: nowrap;
}
.step.done .step__circle {
  background: #C8A45A;
  border-color: #C8A45A;
  color: #0A1628;
}
.step.active .step__circle {
  background: #C8A45A;
  border-color: #C8A45A;
  color: #0A1628;
  box-shadow: 0 0 0 4px rgba(200, 164, 90, 0.2);
}
.step.active .step__label {
  color: #C8A45A;
  font-weight: 700;
}

.form-card {
  background: #112040;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  overflow: hidden;
}

.form-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
  background: rgba(200, 164, 90, 0.04);
}
.form-card__header__title {
  font-size: 17px;
  font-weight: 700;
  color: #F5F0E6;
}
.form-card__header__step {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
}

.form-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 20px;
}
.form-step.active {
  display: flex;
}

.mf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mf-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 240, 230, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mf-group label i {
  color: #C8A45A;
  font-size: 12px;
}
.mf-group__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mf-input-wrap {
  position: relative;
}
.mf-input-wrap input, .mf-input-wrap select, .mf-input-wrap textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 10px;
  padding: 13px 46px 13px 16px;
  color: #F5F0E6;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease;
  direction: rtl;
}
.mf-input-wrap input::placeholder, .mf-input-wrap select::placeholder, .mf-input-wrap textarea::placeholder {
  color: rgba(245, 240, 230, 0.3);
}
.mf-input-wrap input:focus, .mf-input-wrap select:focus, .mf-input-wrap textarea:focus {
  border-color: #C8A45A;
  background: rgba(200, 164, 90, 0.04);
}
.mf-input-wrap select {
  cursor: pointer;
}
.mf-input-wrap select option {
  background: #112040;
}
.mf-input-wrap textarea {
  min-height: 130px;
  resize: vertical;
  padding-right: 16px;
}
.mf-input-wrap__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(200, 164, 90, 0.5);
  font-size: 15px;
  pointer-events: none;
}
.mf-input-wrap__flag {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-left: 1px solid rgba(200, 164, 90, 0.22);
  border-right: none;
  color: rgba(245, 240, 230, 0.6);
  font-size: 13px;
  font-weight: 600;
}

.mf-counter {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.6);
  text-align: left;
  margin-top: -14px;
}

.file-drop {
  border: 2px dashed rgba(200, 164, 90, 0.22);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.file-drop:hover {
  border-color: #C8A45A;
  background: rgba(200, 164, 90, 0.04);
}
.file-drop__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200, 164, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #C8A45A;
}
.file-drop__title {
  font-size: 15px;
  font-weight: 700;
  color: #F5F0E6;
}
.file-drop__sub {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
}
.file-drop__btn {
  display: inline-block;
  background: rgba(200, 164, 90, 0.15);
  color: #C8A45A;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 8px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  transition: background 0.22s ease;
}
.file-drop__btn:hover {
  background: #C8A45A;
  color: #0A1628;
}
.file-drop input[type=file] {
  display: none;
}

.audio-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audio-group__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 10px;
  padding: 12px 16px;
  color: #F5F0E6;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  outline: none;
}
.audio-group__input:focus {
  border-color: #C8A45A;
}
.audio-group__mic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200, 164, 90, 0.12);
  border: 1px solid rgba(200, 164, 90, 0.22);
  color: #C8A45A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.22s ease;
  flex-shrink: 0;
}
.audio-group__mic:hover {
  background: #C8A45A;
  color: #0A1628;
}

.mf-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(245, 240, 230, 0.6);
}
.mf-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #C8A45A;
  cursor: pointer;
}
.mf-check a {
  color: #C8A45A;
}
.mf-check a:hover {
  color: #DDB96E;
}

.budget-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
  gap: 12px;
}

.form-btn-next {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #C8A45A;
  color: #0A1628;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease;
}
.form-btn-next:hover {
  background: #DDB96E;
}

.form-btn-prev {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(245, 240, 230, 0.6);
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 10px;
  padding: 12px 28px;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.22s ease, color 0.22s ease;
}
.form-btn-prev:hover {
  border-color: #C8A45A;
  color: #F5F0E6;
}

@media (max-width: 480px) {
  .mf-group__row {
    grid-template-columns: 1fr;
  }
  .form-page {
    padding: 32px 16px;
  }
  .form-card__body {
    padding: 20px;
  }
  .stepper .step__label {
    display: none;
  }
  .form-card__footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }
  .form-card__footer button {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .top-bar .contact-item {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-list {
    display: none;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual {
    order: -1;
  }
  .hero__card-wrap {
    width: 100%;
    max-width: 400px;
  }
  .float-card--top {
    top: -18px;
    left: -10px;
  }
  .float-card--bottom {
    bottom: -18px;
    right: -10px;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
  .how-it-works__grid::before {
    display: none;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .top-bar__right {
    gap: 12px;
  }
  .vdivider {
    display: none;
  }
  .hero {
    padding: 60px 0;
  }
  .hero__stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat__num {
    font-size: 22px;
  }
  .float-card {
    display: none;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero__cta .btn-primary, .hero__cta .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero__search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 12px;
  }
  .hero__search input {
    padding: 12px;
    text-align: center;
  }
  .hero__search-btn {
    width: 100%;
    border-radius: 0 0 12px 12px;
  }
  .team__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */
