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

:root {
  --gold:         #0a1628;
  --gold-light:   #1d4ed8;
  --gold-dark:    #060e1c;
  --gold-rgb:     10, 22, 40;
  --black-rgb:    248, 250, 255;
  --shadow-gold:  0 14px 35px rgba(var(--gold-rgb), 0.10);

  --black:        #f8faff;
  --black-2:      #f1f5f9;
  --black-3:      #ffffff;

  --white:        #0a1628;
  --gray:         #64748b;
  --gray-light:   #64748b;

  --logo-filter: brightness(0) saturate(100%) invert(10%) sepia(30%) saturate(800%) hue-rotate(200deg) brightness(90%) contrast(95%);
  --logo-filter-hover: brightness(0) saturate(100%) invert(20%) sepia(50%) saturate(600%) hue-rotate(200deg) brightness(95%);

  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:       12px;
}


#navbar {
  background: transparent;
}
#navbar.scrolled {
  background: rgba(var(--black-rgb), 0.95) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
  box-shadow: 0 4px 24px rgba(var(--gold-rgb), 0.08);
}


.service-card,
.about-card-main,
.why-item,
.contact-form {
  background: var(--black-3) !important;
}


.service-title,
.why-title,
.vm-title,
.step-title,
.contact-info h3,
.cta-title {
  color: #0a1628 !important;
}
.service-desc,
.why-desc,
.vm-text,
.step-desc,
.about-desc,
.contact-info p,
.cta-desc {
  color: #64748b !important;
}
.section-title {
  color: #0a1628 !important;
}
.section-subtitle {
  color: #64748b !important;
}
.stat-label {
  color: #64748b !important;
}


.hero-title .white-text {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
}
.hero-title .gold-text {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold);
}


.section-title {
  color: var(--white) !important;
}
.section-title span,
.section-title .gold-text {
  color: var(--gold) !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

body.lang-en {
  direction: ltr;
  font-family: 'Montserrat', 'Cairo', sans-serif;
}
body.lang-en .hero-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--black); }

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  text-align: center;
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 56px;
}
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 14px auto 0;
  border-radius: 2px;
}
section { padding: 96px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: inherit;
}
.btn-gold {
  background: linear-gradient(135deg, #1e3a5f, #0a1628);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #0a1628, #1e3a5f);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.45);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.3);
}


#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(var(--black-rgb), 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
  box-shadow: 0 4px 24px rgba(var(--black-rgb), 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at center, rgba(var(--gold-rgb), 0.18), rgba(var(--gold-rgb), 0.06) 58%, transparent 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  box-shadow: 0 10px 26px rgba(var(--gold-rgb), 0.10);
  transition: var(--transition);
}
.nav-logo:hover {
  background: radial-gradient(circle at center, rgba(var(--gold-rgb), 0.26), rgba(var(--gold-rgb), 0.09) 58%, transparent 100%);
  border-color: rgba(var(--gold-rgb), 0.32);
  box-shadow: 0 12px 32px rgba(var(--gold-rgb), 0.18);
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: var(--logo-filter);
  transition: var(--transition);
}
.nav-logo:hover img {
  filter: var(--logo-filter-hover);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
}
body.lang-en .nav-right {
  margin-right: 0;
  margin-left: auto;
}

.lang-toggle {
  background: rgba(var(--gold-rgb), 0.12);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold);
  padding: 7px 30px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.lang-toggle:hover {
  background: var(--gold);
  color: var(--black);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}


#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(var(--gold-rgb), 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(var(--gold-rgb), 0.05) 0%, transparent 60%),
    var(--black);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--gold-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title .hero-sub-line {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 8px;
}
.hero-title .white-text {
  color: var(--white);
}
.hero-title .gold-text {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.4s both;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.hero-visual {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.24), rgba(var(--gold-rgb), 0.08) 55%, transparent 72%);
  filter: blur(10px);
  opacity: 0.85;
  transition: var(--transition);
}
body.lang-en .hero-visual { left: auto; right: 0; }
.hero-circle {
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  position: absolute;
  animation: rotateSlow 30s linear infinite;
}
.hero-circle::before {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold);
}
.hero-circle-2 {
  width: 300px; height: 300px;
  animation: rotateSlow 20s linear infinite reverse;
}
.hero-logo-big {
  width: 180px;
  opacity: 0.18;
  filter: var(--logo-filter);
  position: absolute;
  transition: var(--transition);
  z-index: 2;
}


#stats {
  padding: 0;
  background: var(--black-2);
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 48px 24px;
  text-align: center;
  border-left: 1px solid rgba(var(--gold-rgb), 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-left: none; }
body.lang-en .stat-item { border-left: none; border-right: 1px solid rgba(var(--gold-rgb), 0.1); }
body.lang-en .stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:hover { background: rgba(var(--gold-rgb), 0.04); }
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--gray-light); font-size: 0.9rem; font-weight: 600; }


#about { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text .section-title,
.about-text .gold-line { text-align: right; margin-right: 0; margin-left: auto; }
body.lang-en .about-text .section-title,
body.lang-en .about-text .gold-line { text-align: left; margin-left: 0; }
.about-text .gold-line { margin: 14px 0 28px; }
.about-desc {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about-tag {
  background: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.about-tag:hover {
  background: var(--gold);
  color: var(--black);
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card-main {
  background: var(--black-3);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.15), rgba(var(--gold-rgb), 0.05));
}
.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vm-item { display: flex; gap: 16px; align-items: flex-start; }
.vm-icon {
  width: 44px; height: 44px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.vm-title { font-weight: 700; color: var(--gold); margin-bottom: 6px; font-size: 1rem; }
.vm-text { color: var(--gray-light); font-size: 0.92rem; line-height: 1.7; }


#services { background: var(--black-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-3);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.04), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--gold-rgb), 0.4);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(var(--gold-rgb), 0.2);
  border-color: var(--gold);
  transform: scale(1.1);
}
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-desc { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }


#how { background: var(--black); }
.steps-container {
  display: flex;
  gap: 0;
  position: relative;
  align-items: flex-start;
}
.steps-line {
  position: absolute;
  top: 36px;
  right: 36px;
  left: 36px;
  height: 2px;
  background: rgba(var(--gold-rgb), 0.15);
  z-index: 0;
}
.steps-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 1.5s ease;
  border-radius: 1px;
}
body.lang-en .steps-line { right: 36px; left: 36px; }
.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--black-2);
  border: 2px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  transition: var(--transition);
  position: relative;
}
.step-item:hover .step-num {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(var(--gold-rgb), 0.4);
  transform: scale(1.1);
}
.step-title { font-weight: 700; color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.step-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }


#why { background: var(--black-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.why-item {
  background: var(--black-3);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.why-item:hover {
  border-color: rgba(var(--gold-rgb), 0.35);
  transform: translateX(-4px);
  box-shadow: 4px 0 20px rgba(var(--gold-rgb), 0.1);
}
body.lang-en .why-item:hover { transform: translateX(4px); box-shadow: -4px 0 20px rgba(var(--gold-rgb), 0.1); }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(var(--gold-rgb), 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-item:hover .why-icon { background: rgba(var(--gold-rgb), 0.2); }
.why-title { font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.why-desc { color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; }


#cta {
  background: var(--black);
  padding: 0;
}
.cta-inner {
  background: var(--black-3);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
 
  border-radius: 50%;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-desc {
  color: var(--gray-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


#contact { background: var(--black-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info p { color: var(--gray-light); line-height: 1.8; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--gray-light);
  font-size: 0.95rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-form {
  background: var(--black-3);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  border-radius: 20px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  color: var(--gray-light);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(var(--gold-rgb), 0.05);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 9px;
  padding: 13px 4px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group textarea { height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; }


footer {
  background: var(--black);
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-right: 6px; }
body.lang-en .footer-col ul li a:hover { padding-right: 0; padding-left: 6px; }
.social-links { display: flex; gap: 12px; margin-top: 0; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(var(--gold-rgb), 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: 0.85rem;
}
.footer-bottom span { color: var(--gold); }


.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(var(--black-rgb), 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; left: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
}
body.lang-en .mobile-close { left: auto; right: 24px; }


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-left: none; }
  .steps-container { flex-direction: column; gap: 24px; align-items: flex-start; }
  .steps-line { display: none; }
  .step-item { display: flex; gap: 16px; text-align: right; align-items: flex-start; }
  body.lang-en .step-item { text-align: left; }
  .step-num { margin: 0; flex-shrink: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  body.lang-en .hero-btns { align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}


@media (min-width: 769px) {
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  body.lang-en .step-item { text-align: center; }
  .step-num { margin: 0 auto 20px; }
}


.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }


.service-card, .why-item, .stat-item { will-change: transform; }


#backToTop {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.4);
}
body.lang-en #backToTop { left: auto; right: 32px; }
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px) scale(1.1); }


.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--black-3);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 16px 24px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
body.lang-en .toast { right: auto; left: 32px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--gold); font-size: 1.2rem; }


.footer-brand img {
  filter: var(--logo-filter);
  transition: var(--transition);
}
.footer-brand img:hover {
  filter: var(--logo-filter-hover);
}



.footer-partner{
    text-align:center;
    margin-bottom:20px;
}

.footer-partner h4{
    font-size:12px;
    font-weight:400;
    text-transform:uppercase;
    color:#888;
    margin-bottom:10px;
}

.footer-partner img{
    max-height:45px;
    width:auto;
    opacity:0.9;
}

