/* ==========================================================================
   MADAIN DEVELOPMENT HOLDING COMPANY - UNDER CONSTRUCTION
   Luxury Dark Metallic & Gold Theme
   ========================================================================== */

:root {
  --bg-pitch: #060709;
  --bg-card: rgba(14, 18, 26, 0.72);
  --bg-card-hover: rgba(22, 28, 40, 0.85);
  --bg-glass-subtle: rgba(255, 255, 255, 0.03);
  
  --gold-100: #fff5db;
  --gold-200: #fae19c;
  --gold-300: #f0cb64;
  --gold-400: #e5b842;
  --gold-500: #d4a029;
  --gold-600: #ad7c1a;
  --gold-dark: #6e4c08;
  
  --steel-100: #f8fafc;
  --steel-200: #e2e8f0;
  --steel-300: #cbd5e1;
  --steel-400: #94a3b8;
  --steel-500: #64748b;
  --steel-700: #334155;
  --steel-800: #1e293b;
  --steel-900: #0f172a;

  --border-gold: rgba(212, 160, 41, 0.22);
  --border-gold-hover: rgba(240, 203, 100, 0.55);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --font-en-serif: 'Cinzel', 'Times New Roman', serif;
  --font-en-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-ar: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-pitch);
  color: var(--steel-200);
}

body {
  min-height: 100vh;
  font-family: var(--font-en-sans);
  background: var(--bg-pitch);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL Specific Rules */
body[dir="rtl"] {
  font-family: var(--font-ar);
}

body[dir="rtl"] .brand-title-ar {
  order: 1;
}

body[dir="rtl"] .brand-title-en {
  order: 2;
  font-family: var(--font-en-sans);
}

/* Canvas Background */
#canvas-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Glow Orbs */
.ambient-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  filter: blur(140px);
}

.glow-gold-top {
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-400) 0%, rgba(212, 160, 41, 0) 70%);
}

.glow-blue-left {
  bottom: -10%;
  left: -10%;
  background: radial-gradient(circle, #1e3a8a 0%, rgba(30, 58, 138, 0) 70%);
  opacity: 0.12;
}

.glow-gold-right {
  bottom: 10%;
  right: -10%;
  background: radial-gradient(circle, var(--gold-600) 0%, rgba(173, 124, 26, 0) 70%);
  opacity: 0.12;
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* App Wrapper */
.app-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Navigation Header */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  border-radius: 9999px;
  background: rgba(14, 18, 26, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.nav-emblem-mini {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 12px rgba(212, 160, 41, 0.3);
  transition: var(--transition-smooth);
}

.nav-brand:hover .nav-emblem-mini {
  transform: rotate(5deg) scale(1.05);
  border-color: var(--gold-300);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--steel-100);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-brand-sub {
  font-size: 0.7rem;
  color: var(--gold-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Live Status Badge */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: rgba(212, 160, 41, 0.08);
  border: 1px solid rgba(212, 160, 41, 0.25);
  font-size: 0.75rem;
  color: var(--gold-200);
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #22c55e;
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Language Switcher Button Group */
.lang-switch-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-gold);
  border-radius: 9999px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--steel-400);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.lang-btn:hover {
  color: var(--steel-100);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #060709;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212, 160, 41, 0.35);
}

/* Main Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 1rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Emblem 3D Showcase */
.emblem-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  margin-bottom: 2.2rem;
  perspective: 1000px;
  cursor: pointer;
}

.emblem-halo {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 41, 0.28) 0%, rgba(212, 160, 41, 0.05) 60%, transparent 80%);
  animation: halo-pulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes halo-pulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.12); opacity: 1; }
}

.emblem-orbital-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 203, 100, 0.3);
  animation: orbital-rotate 28s linear infinite;
  pointer-events: none;
}

@keyframes orbital-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.emblem-card {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 35%, #181d28 0%, #07090d 100%);
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.85),
              0 0 35px rgba(212, 160, 41, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.emblem-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 25px 65px -10px rgba(212, 160, 41, 0.35),
              0 0 50px rgba(212, 160, 41, 0.3);
}

.emblem-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6));
  transition: var(--transition-smooth);
}

.emblem-specular {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(212, 160, 41, 0.12) 100%);
  pointer-events: none;
  border-radius: 36px;
}

/* Category Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(212, 160, 41, 0.12), rgba(212, 160, 41, 0.03));
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Company Titles */
.brand-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.brand-title-ar {
  font-family: var(--font-ar);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5DF9E 45%, #D4A029 80%, #946B12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(212, 160, 41, 0.35));
  line-height: 1.3;
}

.brand-title-en {
  font-family: var(--font-en-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--steel-300);
  text-transform: uppercase;
}

/* Main Display Pitch */
.hero-headline {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--steel-100);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

body[dir="rtl"] .hero-headline {
  font-family: var(--font-ar);
  font-weight: 800;
  letter-spacing: 0;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-300) 40%, var(--gold-500) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--steel-400);
  max-width: 680px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
}

/* Launch Progress Section */
.launch-progress-card {
  width: 100%;
  max-width: 640px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 2.8rem;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.launch-progress-card:hover {
  border-color: var(--border-gold-hover);
  transform: translateY(-2px);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.progress-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel-300);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progress-percentage {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 85%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-300) 70%, var(--gold-100) 100%);
  position: relative;
  box-shadow: 0 0 15px rgba(240, 203, 100, 0.6);
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  text-align: center;
}

.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.milestone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steel-700);
}

.milestone-item.active .milestone-dot {
  background: var(--gold-300);
  box-shadow: 0 0 8px var(--gold-300);
}

.milestone-text {
  font-size: 0.68rem;
  color: var(--steel-500);
  font-weight: 500;
}

.milestone-item.active .milestone-text {
  color: var(--steel-200);
}

/* Strategic Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 1020px;
  margin-bottom: 2.8rem;
}

.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  text-align: left;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

body[dir="rtl"] .pillar-card {
  text-align: right;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7),
              0 0 25px rgba(212, 160, 41, 0.15);
}

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

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212, 160, 41, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  margin-bottom: 1.2rem;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon-box {
  background: rgba(212, 160, 41, 0.18);
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(212, 160, 41, 0.3);
}

.pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--steel-100);
  margin-bottom: 0.55rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--steel-400);
  line-height: 1.6;
}

/* Primary Contact Box (info@madainholding.com) */
.contact-hub {
  width: 100%;
  max-width: 680px;
  background: linear-gradient(180deg, rgba(20, 25, 36, 0.85) 0%, rgba(10, 13, 19, 0.95) 100%);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8),
              0 0 35px rgba(212, 160, 41, 0.12);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-hub::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 160, 41, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact-hub-header {
  margin-bottom: 1.4rem;
}

.contact-pre-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-hub-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--steel-100);
}

.email-display-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 160, 41, 0.35);
  border-radius: 16px;
  padding: 0.75rem 1.2rem;
  margin-bottom: 1.3rem;
  gap: 1rem;
  transition: var(--transition-fast);
}

.email-display-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 0 20px rgba(212, 160, 41, 0.2);
}

.email-address-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mail-envelope-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 160, 41, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  flex-shrink: 0;
}

.email-text-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-family: monospace, system-ui;
  transition: var(--transition-fast);
}

.email-text-link:hover {
  color: var(--gold-200);
  text-shadow: 0 0 8px rgba(240, 203, 100, 0.5);
}

.email-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon-action {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--steel-200);
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-icon-action:hover {
  background: rgba(212, 160, 41, 0.2);
  border-color: var(--gold-300);
  color: var(--gold-100);
  transform: translateY(-1px);
}

.btn-icon-action.primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-color: var(--gold-300);
  color: #060709;
  font-weight: 700;
}

.btn-icon-action.primary:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 4px 15px rgba(212, 160, 41, 0.4);
}

.contact-quick-msg {
  font-size: 0.82rem;
  color: var(--steel-400);
}

/* Quick Inquiry Trigger */
.btn-open-inquiry {
  margin-top: 0.75rem;
  background: transparent;
  border: 1px dashed var(--border-gold);
  color: var(--gold-300);
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-open-inquiry:hover {
  background: rgba(212, 160, 41, 0.1);
  border-style: solid;
  border-color: var(--gold-200);
  color: #FFF;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.8);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #0d1117;
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 2.2rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 160, 41, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-backdrop.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--steel-400);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

body[dir="rtl"] .modal-close-btn {
  right: auto;
  left: 1.2rem;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--steel-100);
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--steel-400);
  margin-bottom: 1.4rem;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

body[dir="rtl"] .form-field {
  text-align: right;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel-300);
}

.form-input, .form-textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #FFF;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 12px rgba(212, 160, 41, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.form-textarea {
  resize: vertical;
  min-height: 95px;
}

.form-submit-btn {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border: none;
  border-radius: 12px;
  padding: 0.85rem;
  color: #060709;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 0.5rem;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 4px 18px rgba(212, 160, 41, 0.4);
}

/* Toast Feedback */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(14, 18, 26, 0.95);
  border: 1px solid var(--gold-300);
  color: #FFFFFF;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 160, 41, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 1000;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Footer Section */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--steel-500);
}

.footer-copy {
  letter-spacing: 0.02em;
}

.footer-security {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--steel-400);
}

/* Responsive Breakpoints */
@media (max-width: 960px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }
  
  .hero-headline {
    font-size: 2.1rem;
  }
  
  .brand-title-ar {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .app-wrapper {
    padding: 1rem 1rem 2rem;
  }

  .top-nav {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    border-radius: 20px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .emblem-wrapper {
    width: 190px;
    height: 190px;
    margin-bottom: 1.8rem;
  }

  .hero-headline {
    font-size: 1.7rem;
  }

  .brand-title-ar {
    font-size: 1.5rem;
  }

  .brand-title-en {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
  }

  .email-display-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .email-address-wrapper {
    justify-content: center;
  }

  .email-text-link {
    font-size: 0.95rem;
    word-break: break-all;
  }

  .email-actions {
    justify-content: center;
  }

  .progress-milestones {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}
