/* ═══════════════════════════════════════════════
   WA Business Company — Design System
   Premium dark theme with gold/bronze accents
   ═══════════════════════════════════════════════ */

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

/* ── Design Tokens ── */
:root {
  /* Colors */
  --bg-primary:    #07070B;
  --bg-secondary:  #0E0E15;
  --bg-card:       #13131C;
  --bg-card-hover: #1A1A26;
  --bg-glass:      rgba(19, 19, 28, 0.65);
  --bg-glass-border: rgba(200, 148, 74, 0.12);

  --gold-dark:     #9E6626;
  --gold:          #B87A30;
  --gold-light:    #C8944A;
  --gold-glow:     rgba(200, 148, 74, 0.15);
  --gold-gradient: linear-gradient(135deg, #9E6626 0%, #C8944A 50%, #E0B877 100%);

  --text-primary:   #F0EDE8;
  --text-secondary: #9B978F;
  --text-muted:     #5E5B55;
  --text-gold:      #C8944A;

  --border-subtle:  rgba(255, 255, 255, 0.06);
  --border-gold:    rgba(200, 148, 74, 0.2);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-pad-y: clamp(5rem, 10vw, 8rem);
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-out-expo);
  --transition-med:  0.5s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul, ol { list-style: none; }

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ── Utility ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.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; }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition-fast), padding var(--transition-fast), backdrop-filter var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(7, 7, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo svg {
  height: 32px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.nav-logo:hover svg {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  transition: all var(--transition-fast);
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-gold);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  background: var(--gold-gradient);
  color: #07070B;
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(200, 148, 74, 0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 11, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .nav-links,
  .nav-right .nav-cta,
  .nav-right .lang-toggle {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 102, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.35s both;
}

.hero h1 .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.65s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gold-gradient);
  color: #07070B;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 148, 74, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--border-gold);
  background: var(--gold-glow);
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat .value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }
}

/* ═══════════════════════════════════════════════
   WHAT WE DO
   ═══════════════════════════════════════════════ */
.what-we-do {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.wwd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.wwd-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.wwd-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wwd-badge {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.wwd-badge:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.wwd-badge .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  color: var(--gold-light);
}

.wwd-badge h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.wwd-badge p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wwd-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   MARKETS
   ═══════════════════════════════════════════════ */
.markets {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.market-card {
  position: relative;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
}

.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.market-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.market-card:hover::before {
  opacity: 1;
}

.market-card .flag {
  margin-bottom: 1.25rem;
  line-height: 0;
}

.market-card .flag svg {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.market-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.market-card > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.market-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  background: var(--gold-glow);
  color: var(--gold-light);
  border-radius: 100px;
  border: 1px solid rgba(200, 148, 74, 0.1);
}

@media (max-width: 768px) {
  .markets-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.services {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.services-tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.services-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.services-tab.active {
  color: #07070B;
  background: var(--gold-gradient);
  border-color: transparent;
}

.services-tab:hover:not(.active) {
  color: var(--text-primary);
  border-color: var(--border-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}

.service-card .number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.service-card .market-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.service-card .market-label .dot-indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════ */
.why-us {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 30%, var(--bg-secondary) 70%, transparent 100%);
  pointer-events: none;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.why-card {
  padding: 2.25rem 1.75rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
  font-size: 1.25rem;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════════════ */
.packages {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.package-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(158, 102, 38, 0.06) 0%, var(--bg-card) 40%);
}

.package-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.package-card .pkg-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-card .pkg-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.package-card .pkg-price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.package-card .pkg-includes {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.package-card .pkg-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.package-card .pkg-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.package-card .pkg-feature .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--gold-light);
  font-size: 0.65rem;
}

.package-card .pkg-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.package-card .pkg-btn.outline {
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.package-card .pkg-btn.outline:hover {
  border-color: var(--border-gold);
  background: var(--gold-glow);
}

.package-card .pkg-btn.filled {
  background: var(--gold-gradient);
  color: #07070B;
}

.package-card .pkg-btn.filled:hover {
  box-shadow: 0 8px 30px rgba(200, 148, 74, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 30%, var(--bg-secondary) 70%, transparent 100%);
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.about-text p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-info-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.about-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.about-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.about-detail:last-child {
  border-bottom: none;
}

.about-detail .key {
  color: var(--text-muted);
}

.about-detail .val {
  font-weight: 600;
  color: var(--text-primary);
}

.owner-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.owner-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.owner-info .owner-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.owner-info .owner-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.owner-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.owner-meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.owner-meta span strong {
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.contact-wrapper {
  margin-top: 3rem;
  padding: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 102, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-main h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-main p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}

.contact-item .ci-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.contact-item .ci-value {
  font-size: 1rem;
  font-weight: 500;
}

.contact-item a.ci-value {
  color: var(--gold-light);
  transition: color var(--transition-fast);
}

.contact-item a.ci-value:hover {
  color: var(--text-primary);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}

.contact-cta p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 2rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand svg {
  height: 28px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ═══════════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════════ */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ═══════════════════════════════════════════════
   RTL & ARABIC TYPOGRAPHY ENHANCEMENTS
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Noto+Sans+Arabic:wght@400;500;600;700;800;900&display=swap');

html[dir="rtl"],
html[dir="rtl"] body,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  font-family: 'Cairo', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif !important;
  letter-spacing: normal !important;
  line-height: 1.8;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p,
html[dir="rtl"] span,
html[dir="rtl"] a,
html[dir="rtl"] div,
html[dir="rtl"] li,
html[dir="rtl"] .section-title,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .market-card h3,
html[dir="rtl"] .service-card h4,
html[dir="rtl"] .why-card h4,
html[dir="rtl"] .package-card .pkg-name,
html[dir="rtl"] .contact-main h3,
html[dir="rtl"] .footer-col h5,
html[dir="rtl"] .btn-primary,
html[dir="rtl"] .btn-secondary,
html[dir="rtl"] .nav-cta,
html[dir="rtl"] .services-tab {
  font-family: 'Cairo', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif !important;
  letter-spacing: normal !important;
}

/* Adjust sizes & spacing for Arabic readability */
html[dir="rtl"] .hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.35;
  font-weight: 700;
}

html[dir="rtl"] .hero p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
}

html[dir="rtl"] .section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.35;
  font-weight: 700;
}

html[dir="rtl"] .section-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
}

html[dir="rtl"] .section-label {
  font-family: 'Cairo', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

html[dir="rtl"] .section-label::before {
  margin-left: 0.75rem;
  margin-right: 0;
}

html[dir="rtl"] .hero-stat .value {
  font-family: 'Cairo', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

html[dir="rtl"] .hero-stat .label {
  font-size: 0.85rem;
}

html[dir="rtl"] .wwd-text p {
  font-size: 1.1rem;
  line-height: 1.85;
}

html[dir="rtl"] .service-card h4 {
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 700;
}

html[dir="rtl"] .service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

html[dir="rtl"] .market-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

html[dir="rtl"] .market-card p {
  font-size: 1rem;
  line-height: 1.75;
}

html[dir="rtl"] .market-tag {
  font-size: 0.85rem;
  font-weight: 500;
}

html[dir="rtl"] .why-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
}

html[dir="rtl"] .why-card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

html[dir="rtl"] .package-card .pkg-name {
  font-size: 1.6rem;
  font-weight: 700;
}

html[dir="rtl"] .package-card .pkg-desc {
  font-size: 0.95rem;
  line-height: 1.65;
}

html[dir="rtl"] .package-card .pkg-price {
  font-size: 0.85rem;
  line-height: 1.6;
}

html[dir="rtl"] .package-card .pkg-feature {
  font-size: 0.92rem;
  line-height: 1.65;
}

html[dir="rtl"] .about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
}

html[dir="rtl"] .about-info-card h4,
html[dir="rtl"] .owner-card h4 {
  font-family: 'Cairo', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif;
  font-weight: 700;
}

html[dir="rtl"] .owner-name {
  font-family: 'Cairo', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

html[dir="rtl"] .contact-main h3 {
  font-size: 1.8rem;
  line-height: 1.4;
}

html[dir="rtl"] .contact-main p {
  font-size: 1.05rem;
  line-height: 1.8;
}

html[dir="rtl"] .nav-links a {
  font-family: 'Cairo', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

html[dir="rtl"] .btn-primary,
html[dir="rtl"] .btn-secondary,
html[dir="rtl"] .nav-cta,
html[dir="rtl"] .pkg-btn {
  font-family: 'Cairo', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif;
  font-weight: 700;
}

html[dir="rtl"] .btn-primary svg {
  transform: rotate(180deg);
}

html[dir="rtl"] .btn-primary:hover svg {
  transform: rotate(180deg) translateX(3px);
}

html[dir="rtl"] .hero-stat {
  text-align: right;
}

html[dir="rtl"] .why-card::after {
  transform-origin: right;
}

html[dir="rtl"] .package-card.featured::before {
  left: 0;
  right: 0;
}
