/* ========================================================= */
/* MRKHANSERVICES — Global Styles & Design System Tokens      */
/* ========================================================= */

:root {
  --bg-color: #0C0C0C;
  --card-bg: #141416;
  --card-border: rgba(255, 255, 255, 0.07);
  --card-border-hover: rgba(255, 255, 255, 0.18);
  --text-primary: #F4F4F4;
  --text-secondary: #9BA3AF;
  --text-muted: #6B7280;
  --accent-glow: rgba(140, 80, 255, 0.08);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}

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

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

/* --------------------------------------------------------- */
/* Ambient Background Pattern & Glow                         */
/* --------------------------------------------------------- */
.app-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #0C0C0C;
  pointer-events: none;
}

.grid-pattern-global {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-wrapper {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* --------------------------------------------------------- */
/* Signature Pill Button (AsimServices / World-Class Design) */
/* --------------------------------------------------------- */
.talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #F4F4F4;
  color: #0C0C0C !important;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px 8px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  user-select: none;
  text-decoration: none !important;
}

.talk-btn:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.18);
}

.talk-btn:active {
  transform: scale(0.98);
}

.talk-btn__label {
  position: relative;
  overflow: hidden;
  display: block;
}

.talk-btn__label-current {
  display: block;
  transition: transform 0.3s ease;
}

.talk-btn__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0C0C0C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.talk-btn:hover .talk-btn__arrow {
  transform: translateX(2px);
}

/* --------------------------------------------------------- */
/* Common CTA Banner (Page 8 / Image 3)                      */
/* --------------------------------------------------------- */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 100px 24px 80px;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 280px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

.cta-banner__title {
  position: relative;
  z-index: 1;
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.cta-banner__text {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 36px;
}

.cta-banner__btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .cta-banner {
    padding: 60px 16px;
  }
}
