:root {
  --blue-deep: #0b3a63;
  --blue-ink: #0f4b76;
  --blue-bright: #1f5f8a;
  --green-deep: #0f4a38;
  --green-forest: #1a5a45;
  --green-bright: #2b6a52;
  --gold: #c6a24a;
  --gold-bright: #d6b35c;
  --gold-light: #f2d07a;
  --sand: #f6f2e7;
  --stone: #e3dccf;
  --ink: #0a1d2e;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* Animated Background Orbs */
.bg-orbits {
  display: none;
}

/* Enhanced Header with Glassmorphism */
.site-header {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  flex-wrap: wrap;
}

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

.logo-frame {
  width: 120px;
  height: 120px;
  padding: 0;
  border-radius: 30px;
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: none;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-frame:hover {
  transform: translateY(-4px) scale(1.02);
}

.logo-frame::before {
  display: none;
}

.logo-frame:hover::before {
  opacity: 0.5;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
  background: #fff;
  padding: 8px;
  filter: drop-shadow(0 8px 18px rgba(12, 58, 98, 0.2)) contrast(1.15) saturate(1.15);
  image-rendering: -webkit-optimize-contrast;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-ar {
  font-family: "Noto Naskh Arabic", serif;
  font-size: 20px;
  color: var(--blue-deep);
  letter-spacing: 1px;
  font-weight: 600;
}

.brand-en {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--blue-deep);
  font-weight: 700;
}

.brand-tag {
  font-size: 12px;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--blue-ink);
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: none;
}

.nav a:hover {
  color: var(--blue-deep);
}

.nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(12, 58, 98, 0.12);
  box-shadow: 0 4px 12px rgba(10, 77, 104, 0.08);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--blue-ink);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  display: none;
}

.lang-btn span {
  position: relative;
  z-index: 1;
}

.lang-btn.active {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: none;
  transform: scale(1.05);
}

.lang-btn:not(.active):hover {
  background: var(--stone);
  transform: scale(1.05);
}

/* Hero Section with Premium Styling */
.hero {
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--green-forest);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.12;
  color: var(--blue-deep);
  margin-bottom: 20px;
  font-weight: 700;
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: #173247;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Premium Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn::before {
  display: none;
}

.btn:hover::before {
  opacity: 0;
}

.btn.primary {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: none;
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 24px 45px rgba(10, 77, 104, 0.35),
    0 12px 20px rgba(27, 91, 68, 0.25),
    0 0 30px rgba(196, 162, 71, 0.3);
}

.btn.primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn.ghost {
  border-color: var(--blue-deep);
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: var(--blue-ink);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 77, 104, 0.15);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badges span {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-badges span:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: none;
  background: var(--white);
}

/* Premium Hero Card */
.hero-card {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: none;
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.hero-card::before {
  display: none;
}

.hero-card::after {
  display: none;
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-deep);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.card-top {
  position: relative;
  z-index: 1;
}

.card-top p {
  color: #234053;
  margin-bottom: 22px;
  line-height: 1.6;
}

.card-stats {
  display: grid;
  gap: 16px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.stat {
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-deep);
}

/* Value Strip Section */
.value-strip {
  padding: 50px 0 30px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: 22px;
  padding: 26px;
  border: 2px solid var(--blue-deep);
  box-shadow: none;
  min-height: 200px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  display: none;
}

.value-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
}

.value-card:hover::before {
  opacity: 0;
}

.value-card h3 {
  margin: 12px 0 10px;
  font-size: 18px;
  color: var(--blue-deep);
  position: relative;
  z-index: 1;
}

.value-card p {
  color: #274255;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--green-forest);
  border: 1px solid var(--green-forest);
  box-shadow: none;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold);
}

.value-icon.accent {
  background: var(--green-deep);
}

.value-icon.gold {
  background: var(--gold);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Section Styling */
.section {
  padding: 80px 0;
  position: relative;
}

.section.alt {
  background: var(--stone);
  border-top: 2px solid var(--blue-deep);
  border-bottom: 2px solid var(--blue-deep);
}

.section-head {
  margin-bottom: 40px;
  max-width: 680px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--blue-deep);
}

.section-head p {
  color: #244255;
  font-size: 16px;
  line-height: 1.7;
}

/* Premium Card Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  border: 2px solid var(--green-forest);
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  display: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
}

.card:hover::before {
  opacity: 0;
}

.card-icon,
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.card:hover .card-icon,
.feature:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: none;
}

.card-icon svg,
.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  color: var(--green-deep);
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.card p {
  color: #274255;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Sector Pillars */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.pillar {
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--blue-deep);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.pillar:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--gold-light);
  box-shadow: none;
  border-color: var(--gold);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.sector-grid > div {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 2px solid var(--blue-deep);
  box-shadow: none;
  transition: all 0.4s ease;
}

.sector-grid > div:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.sector-grid h3 {
  color: var(--blue-deep);
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 20px;
}

.sector-grid p {
  color: #274255;
  line-height: 1.7;
}

.experience {
  margin-top: 30px;
  background: var(--white);
  border-radius: 20px;
  padding: 26px 28px;
  border: 2px solid var(--gold);
  box-shadow: none;
}

.experience h3 {
  color: var(--blue-deep);
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 22px;
}

.experience ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.experience li {
  padding-left: 24px;
  position: relative;
  color: #274255;
  line-height: 1.6;
}

.experience li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: none;
}

.highlight {
  border-radius: 20px;
  padding: 20px 24px;
  background: var(--gold-light);
  border: 2px solid var(--gold);
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
  box-shadow: none;
  font-weight: 500;
}

.highlight p {
  color: #1a3544;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.feature {
  padding: 28px;
  background: var(--white);
  border-radius: 22px;
  border: 2px solid var(--blue-deep);
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature::before {
  display: none;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: none;
  border-color: var(--gold);
}

.feature:hover::before {
  opacity: 0;
}

.feature h3 {
  color: var(--blue-deep);
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.feature p {
  color: #274255;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Contact Section */
.contact {
  background: var(--stone);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.contact h2 {
  color: var(--blue-deep);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 36px);
}

.contact-lines {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.contact-lines p {
  color: #1a3544;
  font-size: 15px;
  line-height: 1.8;
}

.contact-lines strong {
  color: var(--blue-deep);
  font-weight: 700;
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  border: 2px solid var(--gold);
  box-shadow: none;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
}

input,
textarea {
  border-radius: 14px;
  border: 1px solid rgba(10, 77, 104, 0.2);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(247, 243, 232, 0.4);
  transition: all 0.3s ease;
  color: var(--ink);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue-ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 8px 20px rgba(10, 77, 104, 0.1),
    0 0 0 3px rgba(10, 77, 104, 0.1);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 12px;
  color: #4d6677;
  font-style: italic;
}

/* Footer */
.site-footer {
  padding: 30px 0 45px;
  border-top: 2px solid var(--blue-deep);
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: #44606f;
}

/* RTL Support */
html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .nav {
  margin-left: auto;
}

html[dir="rtl"] .brand {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-cta {
  justify-content: flex-start;
}

html[dir="rtl"] .experience li {
  padding-left: 0;
  padding-right: 24px;
}

html[dir="rtl"] .experience li::before {
  left: auto;
  right: 0;
}

.lang-ar {
  font-family: "Noto Naskh Arabic", serif;
  direction: rtl;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero-grid,
  .contact-grid,
  .sector-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-frame {
    width: 100px;
    height: 100px;
  }

  .hero {
    padding: 50px 0 30px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .nav {
    gap: 12px;
  }

  .brand-tag {
    font-size: 11px;
  }

  .section {
    padding: 50px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .bg-orbits,
  .nav,
  .lang-switch,
  .hero-badges {
    display: none;
  }
  
  body {
    background: white;
  }
}
