/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --navy: #1a2e4a;
  --navy-dark: #0f1e30;
  --gold: #b89a6e;
  --gold-light: #d4b896;
  --gold-pale: #f5efe8;
  --white: #ffffff;
  --bg: #f8f6f3;
  --bg-alt: #f0ece6;
  --text: #1a2e4a;
  --text-muted: #5a6a7a;
  --border: #e2d9cd;
  --radius: 10px;
  --radius-lg: 18px;
  --nav-h: 72px;
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: 'Tajawal', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
}
 
a { text-decoration: none; color: inherit; }
 
/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
 
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(26,46,74,0.08);
}
 
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
 
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-ar {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.logo-en {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
}
 
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
 
.nav-link {
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
 
.nav-link:hover {
  background: none;
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
  font-weight: 700;
}
 
.nav-cta {
  padding: 9px 22px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
 
.nav-cta:hover { background: var(--navy-dark); }
 
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
}
 
.burger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
 
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
  gap: 4px;
}
 
.mobile-menu.open { display: flex; }
 
.mob-link {
  padding: 11px 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
 
.mob-link:hover { background: none; color: var(--gold); }
 
.mob-cta {
  margin-top: 8px;
  padding: 12px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s;
}
 
.mob-cta:hover { background: var(--navy-dark); }
 
/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
 
.hero-shape {
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(184,154,110,0.12);
  border-radius: 50%;
  pointer-events: none;
}
 
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
 
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(184,154,110,0.18);
  border: 1px solid rgba(184,154,110,0.4);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}
 
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
 
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}
 
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
 
.btn-primary {
  padding: 13px 28px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: var(--radius);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
 
.btn-primary:hover { background: var(--gold-light); }
.btn-primary:active { transform: scale(0.98); }
 
.btn-outline {
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
 
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
 
.btn-full { width: 100%; }
 
.hero-licenses {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(184,154,110,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
}
 
.license-item {
  display: flex;
  flex-direction: column;
  padding: 16px 28px;
  background: rgba(255,255,255,0.04);
}
 
.license-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
 
.license-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  direction: ltr;
}
 
.license-divider {
  width: 1px;
  background: rgba(184,154,110,0.2);
}
 
/* =====================
   SECTIONS
   ===================== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
 
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
 
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
 
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 48px;
}
 
/* =====================
   ABOUT
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
 
.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.85;
}
 
.about-text p:last-child { margin-bottom: 0; }
 
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
 
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}
 
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
 
/* =====================
   AUCTIONS
   ===================== */
.auctions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
}
 
.auction-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
 
.auction-card.featured {
  background: var(--navy);
  color: var(--white);
}

.auction-card.featured.ended {
  background: var(--bg-alt);
  color: var(--navy);
  border: 1px solid var(--border);
}

.auction-card.featured.ended .auction-desc { color: var(--text-muted); }

.auction-card.featured.ended .auction-gallery img { filter: grayscale(35%); opacity: 0.9; }

.auction-card.featured.ended .auction-link { color: var(--navy); opacity: 0.6; }
.auction-card.featured.ended .auction-link:hover { opacity: 0.9; }

.auction-badge.ended {
  background: rgba(90,106,122,0.12);
  border: 1px solid rgba(90,106,122,0.25);
  color: var(--text-muted);
}

.auction-card.coming {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px 22px;
}
 
.auction-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(184,154,110,0.2);
  border: 1px solid rgba(184,154,110,0.4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}
 
.auction-icon { font-size: 40px; margin-bottom: 16px; }
.auction-icon-muted { font-size: 30px; margin-bottom: 12px; opacity: 0.3; }

.auction-gallery {
  margin: -36px -32px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.auction-gallery img {
  display: block;
  width: 100%;
  height: auto;
}
 
.auction-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: inherit;
}
 
.coming-name { color: var(--navy); font-size: 18px; }
 
.auction-desc {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  opacity: 0.75;
}
 
.auction-card.coming .auction-desc { color: var(--text-muted); opacity: 1; font-size: 14px; margin-bottom: 18px; }
 
.auction-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  transition: opacity 0.15s;
}
 
.auction-link:hover { opacity: 0.7; }
 
.auction-link-muted {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.5;
  transition: opacity 0.15s;
}
 
.auction-link-muted:hover { opacity: 0.9; }
 
/* =====================
   SERVICES
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
 
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
 
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
 
.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}
 
.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
 
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
 
/* =====================
   FAQ
   ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px 24px;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--gold); }

.faq-item[open] { border-color: var(--gold); }

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  padding-bottom: 22px;
  margin: 0;
}

/* =====================
   CONTACT
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
 
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
 
.contact-form { display: flex; flex-direction: column; gap: 20px; }
 
.form-group { display: flex; flex-direction: column; gap: 8px; }
 
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
 
.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s;
  outline: none;
  direction: rtl;
}
 
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
 
.form-group textarea { resize: vertical; }
 
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #c94a4a;
  background: #fdf3f2;
}
 
.form-error {
  display: none;
  font-size: 13px;
  color: #c94a4a;
  font-weight: 500;
}
 
.form-error.show { display: block; }
 
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
 
.contact-info-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
 
.social-links { display: flex; flex-direction: column; gap: 10px; }
 
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: border-color 0.15s, background 0.15s;
}
 
.social-link:hover { border-color: var(--gold); background: var(--gold-pale); }
.social-link svg { flex-shrink: 0; color: var(--navy); }
 
.licenses-block { margin-top: 0; }
 
.lic-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
 
.lic-row:last-child { border-bottom: none; }
 
.lic-num {
  font-weight: 700;
  color: var(--navy);
  direction: ltr;
  font-size: 13px;
}
 
/* =====================
   VIDEO
   ===================== */
.video-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px;
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow: 0 20px 48px rgba(15,30,48,0.25);
  position: relative;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(184,154,110,0.35);
  pointer-events: none;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-dark);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =====================
   MAP
   ===================== */
.map-wrap {
  margin-top: 48px;
  grid-column: 1 / -1;
}
 
.map-embed {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
 
.map-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: opacity 0.15s;
}
 
.map-link:hover { opacity: 0.7; }
 
/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--navy-dark);
  padding: 40px 0;
}
 
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
 
.footer-logo { display: flex; flex-direction: column; line-height: 1.3; }
 
.logo-en-sm {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}
 
.footer .logo-ar {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
 
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
 
/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .auctions-grid { grid-template-columns: 1fr; }
}
 
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
 
  .hero-inner { padding: 60px 20px; }
  .hero-licenses { flex-direction: column; width: 100%; }
  .license-divider { width: 100%; height: 1px; }
  .license-item { padding: 14px 20px; }
 
  .section { padding: 64px 0; }
  .section-title { margin-bottom: 32px; }
 
  .contact-form-wrap { padding: 24px 20px; }
 
  .footer-inner { flex-direction: column; text-align: center; }
}
 