@font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/tajawal-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/tajawal-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f7f6ed;
  --paper-2: #eeeee3;
  --ink: #102a43;
  --muted: #506171;
  --line: rgba(16, 42, 67, 0.16);
  --card: #fffef7;
  --teal: #12b7b2;
  --teal-dark: #087c7a;
  --lemon: #f4ed42;
  --lemon-soft: #fff96d;
  --white: #fffef7;
  --shadow: rgba(16, 42, 67, 0.15);
  --radius: 28px;
  --header-height: 80px;
  --border-ink: 2.5px solid var(--ink);
  --hard-shadow: 6px 6px 0 var(--ink);
  --hard-shadow-sm: 4px 4px 0 var(--ink);
  --hard-shadow-lg: 10px 10px 0 var(--ink);
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --paper: #0c2235;
  --paper-2: #102a43;
  --ink: #f8f7ed;
  --muted: #bdcad2;
  --line: rgba(248, 247, 237, 0.18);
  --card: #15334b;
  --teal: #28cbc4;
  --teal-dark: #62eee7;
  --lemon: #f4ed42;
  --lemon-soft: #fff96d;
  --white: #fffef7;
  --shadow: rgba(0, 0, 0, 0.35);
  --border-ink: 2.5px solid var(--ink);
  --hard-shadow: 6px 6px 0 #051421;
  --hard-shadow-sm: 4px 4px 0 #051421;
  --hard-shadow-lg: 10px 10px 0 #051421;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    color-scheme: dark;
    --paper: #0c2235;
    --paper-2: #102a43;
    --ink: #f8f7ed;
    --muted: #bdcad2;
    --line: rgba(248, 247, 237, 0.18);
    --card: #15334b;
    --teal: #28cbc4;
    --teal-dark: #62eee7;
    --lemon: #f4ed42;
    --lemon-soft: #fff96d;
    --white: #fffef7;
    --shadow: rgba(0, 0, 0, 0.35);
    --border-ink: 2.5px solid var(--ink);
    --hard-shadow: 6px 6px 0 #051421;
    --hard-shadow-sm: 4px 4px 0 #051421;
    --hard-shadow-lg: 10px 10px 0 #051421;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 300ms ease, color 300ms ease;
}

/* Subtle retro noise texture */
body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: '';
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* Canvas background container */
#bg-canvas-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Ambient glow blobs */
.ambient-glow {
  position: fixed;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  animation: floatAmbient 18s ease-in-out infinite alternate;
}

.glow-teal {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
}

.glow-lemon {
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, var(--lemon) 0%, transparent 70%);
  animation-delay: -9s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 80px) scale(1.15); }
  100% { transform: translate(-40px, 60px) scale(0.95); }
}

/* Floating interactive service widgets */
.floating-widgets-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.float-widget {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  border: var(--border-ink);
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--hard-shadow-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 250ms ease, background 250ms ease;
  will-change: transform;
}

.float-widget:hover {
  transform: translateY(-8px) scale(1.08) !important;
  box-shadow: var(--hard-shadow-lg);
  border-color: var(--teal);
  z-index: 15;
}

.float-widget:active {
  transform: scale(0.96) !important;
}

.widget-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  flex-shrink: 0;
}

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  color: var(--ink);
}

.widget-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

/* Individual widget themes and natural coordinates */
.widget-web {
  top: 15%;
  right: 5%;
  animation: widgetFloat1 7s ease-in-out infinite;
}
.widget-web .widget-icon { background: var(--teal); }

.widget-cloud {
  top: 24%;
  left: 6%;
  animation: widgetFloat2 8.5s ease-in-out infinite;
}
.widget-cloud .widget-icon { background: var(--lemon); }

.widget-mail {
  top: 60%;
  right: 6%;
  animation: widgetFloat3 9s ease-in-out infinite;
}
.widget-mail .widget-icon { background: #9bf6ff; }

.widget-seo {
  top: 68%;
  left: 5%;
  animation: widgetFloat1 8s ease-in-out infinite 1s;
}
.widget-seo .widget-icon { background: #ffd166; }

.widget-nfc {
  top: 86%;
  right: 12%;
  animation: widgetFloat2 7.5s ease-in-out infinite 0.5s;
}
.widget-nfc .widget-icon { background: #a0c4ff; }

.widget-security {
  top: 88%;
  left: 10%;
  animation: widgetFloat3 9.5s ease-in-out infinite 1.5s;
}
.widget-security .widget-icon { background: #caffbf; }

@keyframes widgetFloat1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2.5deg); }
}

@keyframes widgetFloat2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-20px) rotate(-3deg); }
}

@keyframes widgetFloat3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}

/* Floating mascot element */
.floating-mascot-unit {
  position: absolute;
  top: 42%;
  left: 3%;
  z-index: 5;
  pointer-events: auto;
  cursor: pointer;
  animation: mascotFloat 6s ease-in-out infinite;
  transition: transform 250ms ease;
}

.floating-mascot-unit:hover {
  transform: scale(1.12) rotate(4deg) !important;
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
}

.mascot-avatar {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  border: var(--border-ink);
  background: var(--lemon);
  box-shadow: var(--hard-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mascot-eyes {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}

.mascot-eye {
  width: 9px;
  height: 13px;
  background: #102a43;
  border-radius: 50%;
  position: relative;
  transition: transform 100ms ease;
}

.mascot-eye::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;
}

.mascot-smile {
  width: 34px;
  height: 16px;
  border-bottom: 4px solid #102a43;
  border-radius: 0 0 50% 50%;
  margin-top: 5px;
  transition: height 200ms ease, border-radius 200ms ease;
}

.mascot-bubble {
  position: absolute;
  top: -38px;
  right: -20px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 4px 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  color: var(--ink);
  animation: pulseBubble 3s ease-in-out infinite;
}

@keyframes pulseBubble {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Layout Shell */
.app-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: min(100% - 36px, 1260px);
  margin-inline: auto;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: var(--border-ink);
  background: var(--card);
  box-shadow: var(--hard-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.brand-wrapper:hover .brand-icon-box {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--hard-shadow);
}

.brand-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-top: 2px;
}

:root[data-theme='dark'] .brand-subtitle {
  color: var(--teal-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: var(--border-ink);
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--hard-shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-icon:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--hard-shadow);
  border-color: var(--teal);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 22px;
  border: var(--border-ink);
  border-radius: 16px;
  background: var(--teal);
  color: #082133;
  box-shadow: var(--hard-shadow-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--hard-shadow);
  background: var(--lemon);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-whatsapp {
  background: #25d366;
  color: #042510;
}

.btn-whatsapp:hover {
  background: #20ba59;
}

/* Main Content Section */
.main-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 72px;
}

.hero-center {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Status Pill */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  border: var(--border-ink);
  background: var(--card);
  box-shadow: var(--hard-shadow-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
}

.live-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseLive 1.8s infinite;
}

@keyframes pulseLive {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Brand Mountain Centerpiece */
.center-sculpture-wrap {
  position: relative;
  width: min(100% - 20px, 340px);
  height: 190px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-sculpture-wrap:hover {
  transform: translateY(-8px) scale(1.06);
}

.center-sculpture-wrap:active {
  transform: scale(0.96) rotate(2deg);
}

.center-sculpture-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(18, 183, 178, 0.32));
  animation: sculptureHover 6s ease-in-out infinite;
}

@keyframes sculptureHover {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

.sculpture-orbit-ring {
  position: absolute;
  inset: -8px;
  border: 2px dashed var(--teal);
  border-radius: 36px;
  opacity: 0.45;
  animation: spinSlow 36s linear infinite;
  pointer-events: none;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Headlines */
.hero-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -1px;
  margin: 0 0 18px;
  color: var(--ink);
}

.hero-title span {
  color: var(--teal);
  position: relative;
  display: inline-block;
}

:root[data-theme='dark'] .hero-title span {
  color: var(--teal-dark);
}

.hero-title span::after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 4px;
  height: 12px;
  background: var(--lemon);
  z-index: -1;
  opacity: 0.7;
  border-radius: 6px;
  transform: rotate(-1deg);
}

.hero-description {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 660px;
  margin: 0 0 32px;
  font-weight: 500;
  line-height: 1.75;
}

/* System Progress / Launch Meter */
.launch-meter-card {
  width: 100%;
  max-width: 680px;
  background: var(--card);
  border: var(--border-ink);
  border-radius: var(--radius);
  box-shadow: var(--hard-shadow);
  padding: 24px 30px;
  margin-bottom: 44px;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.meter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.meter-title {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.meter-percentage {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--teal);
}

.progress-track {
  width: 100%;
  height: 18px;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 94%;
  background: repeating-linear-gradient(
    -45deg,
    var(--lemon),
    var(--lemon) 12px,
    var(--teal) 12px,
    var(--teal) 24px
  );
  background-size: 34px 34px;
  animation: moveStripes 2s linear infinite;
  border-radius: 100px;
  transition: width 1s ease-out;
}

@keyframes moveStripes {
  0% { background-position: 0 0; }
  100% { background-position: 34px 0; }
}

.meter-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.meter-stat-item {
  display: flex;
  flex-direction: column;
}

.meter-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.meter-stat-val {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
}

.meter-stat-val i {
  color: #10b981;
}

/* Service Foreshadowing Radar Section */
.services-foreshadow {
  width: 100%;
  margin-top: 24px;
}

.section-label-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.section-kicker {
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 580px;
  text-align: center;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-preview-card {
  background: var(--card);
  border: var(--border-ink);
  border-radius: var(--radius);
  box-shadow: var(--hard-shadow);
  padding: 28px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
}

.service-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hard-shadow-lg);
  border-color: var(--teal);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--ink);
}

.card-badge {
  font-family: 'Cairo', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  background: var(--paper-2);
  color: var(--ink);
}

.service-preview-card h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.3;
}

.service-preview-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  font-family: 'Cairo', sans-serif;
}

.card-footer i {
  font-size: 16px;
  transition: transform 200ms ease;
}

.service-preview-card:hover .card-footer i {
  transform: translate(-4px, -4px);
}

/* Card Themes */
.card-theme-teal .card-icon-wrap { background: var(--teal); }
.card-theme-lemon .card-icon-wrap { background: var(--lemon); }
.card-theme-purple .card-icon-wrap { background: #b8c0ff; }
.card-theme-green .card-icon-wrap { background: #bbf7d0; }
.card-theme-orange .card-icon-wrap { background: #fed7aa; }
.card-theme-pink .card-icon-wrap { background: #ffc6ff; }

/* Interactive VIP Notification & Direct Consultation */
.vip-contact-section {
  width: 100%;
  max-width: 820px;
  margin: 54px auto 0;
  background: var(--card);
  border: var(--border-ink);
  border-radius: var(--radius);
  box-shadow: var(--hard-shadow);
  padding: 36px 40px;
  text-align: center;
  position: relative;
}

.vip-contact-section h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 12px;
}

.vip-contact-section p {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 28px;
}

.notify-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 28px;
}

.notify-input {
  flex: 1;
  min-height: 52px;
  padding: 12px 20px;
  border: var(--border-ink);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.notify-input:focus {
  border-color: var(--teal);
  box-shadow: 4px 4px 0 var(--teal);
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-pill:hover {
  transform: translate(-2px, -2px);
  background: var(--lemon);
}

/* Easter Egg Ping Box */
.easter-egg-btn {
  margin-top: 28px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  transition: color 180ms ease, background 180ms ease;
}

.easter-egg-btn:hover {
  color: var(--teal);
  background: var(--paper-2);
}

/* Toast Message */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--teal);
  border-radius: 100px;
  padding: 12px 28px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  position: relative;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  color: var(--ink);
}

/* Responsive Media Queries */
@media (max-width: 980px) {
  .float-widget {
    display: none !important;
  }
  .floating-mascot-unit {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .header-actions .btn-primary {
    display: none;
  }
  .notify-form {
    flex-direction: column;
  }
  .notify-input,
  .notify-form .btn-primary {
    width: 100%;
  }
  .services-showcase-grid {
    grid-template-columns: 1fr;
  }
  .vip-contact-section {
    padding: 24px 20px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Language Switcher Button */
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: var(--border-ink);
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--hard-shadow-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lang-switch-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--hard-shadow);
  border-color: var(--teal);
  background: var(--lemon);
  color: #102a43;
}

.lang-switch-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

/* LTR Specific Styles */
html[dir='ltr'] body {
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
}

html[dir='ltr'] .launch-meter-card {
  text-align: left;
}

html[dir='ltr'] .service-preview-card {
  text-align: left;
}

html[dir='ltr'] .mascot-bubble {
  right: auto;
  left: -20px;
}

html[dir='ltr'] .card-footer i {
  transition: transform 200ms ease;
}

html[dir='ltr'] .service-preview-card:hover .card-footer i {
  transform: translate(4px, -4px);
}

html[dir='ltr'] .widget-text {
  text-align: left;
}

