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

:root {
  /* Colors */
  --color-rich-charcoal: #0D0D0D;
  --color-rushed-gold: #C79A43;
  --color-graphite-gray: #333333;
  --color-warm-ivory: #F5F2E9;

  --color-background: var(--color-rich-charcoal);
  --color-surface: #161616;
  --color-surface-muted: var(--color-graphite-gray);
  --color-primary: var(--color-rushed-gold);
  --color-text: var(--color-warm-ivory);
  --color-text-muted: rgba(245, 242, 233, 0.72);
  --color-border: rgba(199, 154, 67, 0.22);
  --color-border-hover: rgba(199, 154, 67, 0.55);

  /* Shadows */
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-premium: 0 24px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Fonts */
  --font-primary: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.35rem;
  --text-4xl: 3.25rem;
  --text-5xl: clamp(2.5rem, 6vw, 5rem);

  /* Line Heights */
  --line-tight: 1.15;
  --line-normal: 1.65;
  --line-loose: 1.9;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-rich-charcoal);
}

body {
  font-family: var(--font-primary);
  background: var(--color-rich-charcoal);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: var(--line-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 220ms ease, opacity 220ms ease;
}

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

svg {
  direction: ltr !important;
}

::selection {
  background: var(--color-rushed-gold);
  color: var(--color-rich-charcoal);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-rich-charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--color-graphite-gray);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-rushed-gold);
}

/* Bilingual CSS rules */
html[lang="ar"] .lang-en { display: none !important; }
html[lang="en"] .lang-ar { display: none !important; }

/* Grid / Container */
.container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(80px, 10vw, 150px);
  position: relative;
  border-bottom: 1px solid rgba(199, 154, 67, 0.08);
}

.section-alt {
  background-color: #121212;
}

/* Text elements styling */
.eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rushed-gold);
  margin-bottom: var(--space-4);
  display: block;
}
html[lang="ar"] .eyebrow {
  letter-spacing: 0;
  font-weight: 700;
}

.heading-display {
  font-size: var(--text-5xl);
  line-height: var(--line-tight);
  font-weight: 800;
  color: var(--color-warm-ivory);
}

.heading-section {
  font-size: var(--text-3xl);
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-warm-ivory);
}

.heading-subtitle {
  color: var(--color-text-muted);
  max-width: 680px;
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  line-height: var(--line-loose);
}

.body-large {
  font-size: var(--text-lg);
  line-height: var(--line-loose);
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(199, 154, 67, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.header-logo img,
.header-logo svg {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover img,
.header-logo:hover svg {
  transform: scale(1.02);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-warm-ivory);
  padding: 8px 4px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-rushed-gold);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
html[lang="ar"] .nav-link::after {
  left: auto;
  right: 0;
}

.nav-link:hover {
  color: var(--color-rushed-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-rushed-gold);
}
.nav-link.active::after {
  width: 100%;
}

/* Utilities / Header buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.lang-switch-btn {
  background: transparent;
  border: 1px solid rgba(199, 154, 67, 0.4);
  color: var(--color-warm-ivory);
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 250ms ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch-btn:hover {
  background-color: rgba(199, 154, 67, 0.1);
  border-color: var(--color-rushed-gold);
  color: var(--color-rushed-gold);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
  z-index: 110;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-warm-ivory);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-rushed-gold);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-rushed-gold);
}

/* Background Watermark & Grid Pattern */
.brand-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 154, 67, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 154, 67, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

.logo-watermark {
  position: absolute;
  right: -5%;
  bottom: 5%;
  width: min(45vw, 600px);
  height: auto;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-10deg);
}

html[dir="rtl"] .logo-watermark {
  right: auto;
  left: -5%;
  transform: rotate(10deg);
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 154, 67, 0.08), transparent 45%),
    var(--color-rich-charcoal);
  color: var(--color-warm-ivory);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-8);
}

.hero::after {
  content: "";
  position: absolute;
  inset: clamp(16px, 3vw, 40px);
  border: 1px solid rgba(199, 154, 67, 0.18);
  pointer-events: none;
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
html[dir="rtl"] .hero-content {
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-rushed-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
  border: 1px solid rgba(199, 154, 67, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  background-color: rgba(199, 154, 67, 0.05);
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4.6rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-warm-ivory);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.hero-subtitle {
  max-width: 660px;
  font-size: var(--text-lg);
  line-height: var(--line-loose);
  color: var(--color-text-muted);
  margin-bottom: var(--space-7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 154, 67, 0.25);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 5vw, 40px);
  background: radial-gradient(circle, rgba(22, 22, 22, 0.9), rgba(13, 13, 13, 0.95));
  box-shadow: var(--shadow-premium);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.hero-visual-frame img,
.hero-visual-frame svg {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 var(--space-6);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
  gap: var(--space-2);
}

.btn-primary {
  background: var(--color-rushed-gold);
  border: 1px solid var(--color-rushed-gold);
  color: var(--color-rich-charcoal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #d9aa4e;
  border-color: #d9aa4e;
  box-shadow: 0 10px 25px rgba(199, 154, 67, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(199, 154, 67, 0.55);
  color: var(--color-warm-ivory);
}

.btn-secondary:hover {
  color: var(--color-rushed-gold);
  border-color: var(--color-rushed-gold);
  background: rgba(199, 154, 67, 0.08);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Cards System */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(0.25, 1, 0.5, 1), border-color 350ms ease, box-shadow 350ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-rushed-gold), transparent);
  transform: scaleX(0);
  transition: transform 450ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-premium);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-title {
  color: var(--color-warm-ivory);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.card-text {
  color: var(--color-text-muted);
  line-height: var(--line-normal);
  font-size: var(--text-sm);
}

/* Section Header Layout */
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 5;
}

/* About Section Specifics */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.about-feature-item {
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(199, 154, 67, 0.12);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.about-feature-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-rushed-gold);
}

.about-feature-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--line-normal);
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(199, 154, 67, 0.25);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-premium);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
  transition: transform 0.8s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.85) 10%, rgba(13, 13, 13, 0.2) 60%, transparent 100%);
  pointer-events: none;
}

/* Sectors Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-5);
  position: relative;
  z-index: 5;
}

.sector-card {
  padding: var(--space-6);
}

.sector-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.sector-number {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-rushed-gold);
  letter-spacing: 0.16em;
  font-family: monospace;
}

.sector-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(199, 154, 67, 0.08);
  border: 1px solid rgba(199, 154, 67, 0.2);
  color: var(--color-rushed-gold);
  font-size: var(--text-base);
}

.sector-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-rushed-gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gold-divider {
  width: 48px;
  height: 1.5px;
  background-color: var(--color-rushed-gold);
  margin-block: var(--space-4) var(--space-2);
  opacity: 0.8;
  transition: width 0.3s ease;
}

.sector-card:hover .gold-divider {
  width: 90px;
}

/* Companies List - Architectural Row Design */
.companies-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  z-index: 5;
}

.company-row {
  display: grid;
  grid-template-columns: 240px 1fr 180px;
  align-items: center;
  gap: var(--space-6);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(199, 154, 67, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), border-color 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
}

.company-row:hover {
  transform: translateY(-4px);
  border-color: var(--color-rushed-gold);
  background: rgba(199, 154, 67, 0.04);
  box-shadow: var(--shadow-premium);
}

.company-logo-frame {
  height: 120px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(199, 154, 67, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  transition: border-color 300ms ease, background-color 300ms ease;
}

.company-row:hover .company-logo-frame {
  border-color: rgba(199, 154, 67, 0.35);
  background: rgba(0, 0, 0, 0.4);
}

.company-logo-img {
  height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 300ms ease;
}

.company-row:hover .company-logo-img {
  transform: scale(1.05);
}

.company-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.company-name {
  color: var(--color-warm-ivory);
  font-size: var(--text-xl);
  font-weight: 700;
  transition: color 250ms ease;
}

.company-row:hover .company-name {
  color: var(--color-rushed-gold);
}

.company-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-normal);
  max-width: 720px;
}

.company-meta {
  margin-top: 4px;
}

.company-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-rushed-gold);
  border: 1px solid rgba(199, 154, 67, 0.4);
  padding: 3px 10px;
  border-radius: 4px;
  background-color: rgba(199, 154, 67, 0.04);
  text-transform: uppercase;
}

.company-action {
  display: flex;
  justify-content: flex-end;
}

.company-visit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding-inline: var(--space-4);
  border: 1px solid rgba(199, 154, 67, 0.5);
  border-radius: var(--radius-sm);
  color: var(--color-warm-ivory);
  font-size: var(--text-xs);
  font-weight: 700;
  transition: all 250ms ease;
  background: transparent;
}

.company-row:hover .company-visit-link {
  background: var(--color-rushed-gold);
  color: var(--color-rich-charcoal);
  border-color: var(--color-rushed-gold);
}

/* Responsiveness for Company Rows */
@media (max-width: 992px) {
  .company-row {
    grid-template-columns: 200px 1fr;
    gap: var(--space-5);
  }
  .company-action {
    grid-column: span 2;
    justify-content: flex-start;
    margin-top: var(--space-2);
  }
}

@media (max-width: 768px) {
  .company-row {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    text-align: center;
    padding: var(--space-5);
  }
  .company-logo-frame {
    width: 100%;
    max-width: 240px;
    margin-inline: auto;
    height: 100px;
  }
  .company-logo-img {
    height: 70px;
  }
  .company-action {
    grid-column: span 1;
    justify-content: center;
  }
}

/* Investment & Sustainability Visual Grid */
.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.investment-vision-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.investment-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.pillar-item {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid rgba(199, 154, 67, 0.1);
}

.pillar-num {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-rushed-gold);
  line-height: 1;
}

.pillar-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-warm-ivory);
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.investment-visual-box {
  background-color: #161616;
  border: 1px solid rgba(199, 154, 67, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  position: relative;
  box-shadow: var(--shadow-soft);
}

.investment-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.stat-item {
  text-align: center;
  padding: var(--space-4);
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(199, 154, 67, 0.08);
  border-radius: var(--radius-sm);
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-rushed-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
}

/* News Section styling */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--space-6);
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #151515;
  border: 1px solid rgba(199, 154, 67, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5deg);
  border-color: var(--color-rushed-gold);
}

.news-img-box {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid rgba(199, 154, 67, 0.15);
}

.news-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.9);
  transition: transform 0.5s ease;
}

.news-card:hover .news-img-box img {
  transform: scale(1.05);
}

.news-content {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-rushed-gold);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.news-title {
  color: var(--color-warm-ivory);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.news-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--line-normal);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.news-link {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-rushed-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
}

.news-link:hover {
  opacity: 0.8;
}

/* Contact Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-8);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background-color: rgba(199, 154, 67, 0.08);
  border: 1px solid rgba(199, 154, 67, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rushed-gold);
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-rushed-gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-content h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-rushed-gold);
  margin-bottom: 2px;
}

.contact-info-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-form-box {
  background-color: #121212;
  border: 1px solid rgba(199, 154, 67, 0.15);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-4);
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-warm-ivory);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.input,
.textarea,
.select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(199, 154, 67, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-warm-ivory);
  padding: 0 16px;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.textarea {
  min-height: 140px;
  padding-top: var(--space-3);
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--color-rushed-gold);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(199, 154, 67, 0.14);
}

.form-feedback {
  margin-top: var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: rgba(34, 139, 34, 0.15);
  border: 1px solid rgba(34, 139, 34, 0.4);
  color: #5bb35b;
}

.form-feedback.error {
  display: block;
  background-color: rgba(178, 34, 34, 0.15);
  border: 1px solid rgba(178, 34, 34, 0.4);
  color: #e55555;
}

/* Footer Section */
.site-footer {
  background: #070707;
  color: var(--color-warm-ivory);
  border-top: 1px solid rgba(199, 154, 67, 0.25);
  padding-block: var(--space-8) var(--space-6);
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-logo img,
.footer-logo svg {
  height: 54px;
  width: auto;
  align-self: flex-start;
}

.footer-statement {
  font-size: var(--text-sm);
  line-height: var(--line-loose);
  color: rgba(245, 242, 233, 0.72);
  max-width: 380px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-links-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-rushed-gold);
  border-bottom: 1px solid rgba(199, 154, 67, 0.15);
  padding-bottom: var(--space-2);
  display: inline-block;
  align-self: flex-start;
  width: 100%;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--text-xs);
  color: rgba(245, 242, 233, 0.65);
}

.footer-links a:hover {
  color: var(--color-rushed-gold);
  padding-inline-start: 4px;
}
html[dir="rtl"] .footer-links a:hover {
  padding-inline-start: 0;
  padding-inline-end: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(245, 242, 233, 0.5);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(199, 154, 67, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 242, 233, 0.75);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: var(--color-rushed-gold);
  color: var(--color-rich-charcoal);
  border-color: var(--color-rushed-gold);
  transform: translateY(-3px);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.25, 1, 0.5, 1), transform 800ms cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
  .hero-content {
    align-items: center !important;
  }
  .hero-actions {
    justify-content: center;
  }
  .about-grid, .investment-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .about-visual {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
  .about-image-wrapper {
    aspect-ratio: 16/10;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    height: 70px;
  }
  .header-logo img {
    height: 38px;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* Mobile nav drawer overlay */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding-top: var(--space-7);
    gap: var(--space-5);
    z-index: 90;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    border-top: 1px solid rgba(199, 154, 67, 0.15);
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: var(--text-base);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
  }
  .hero-eyebrow {
    font-size: var(--text-xs);
  }
  .investment-stats {
    grid-template-columns: 1fr;
  }
  .card {
    padding: var(--space-4);
  }
}
