/* Pixelgen UK  @@author sachin ail --- style @@*/

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

/* ══════════════════════════
  COLOR & GRADIENTS
══════════════════════════ */
:root {
  --orange: #e86a1d;
  --gold: #ffc206;
  --blue: #3ba9e0;
  --grad-main: linear-gradient(135deg, var(--gold), var(--orange));
  --grad-alt: linear-gradient(135deg, var(--orange), var(--blue));
  --grad-cool: linear-gradient(135deg, var(--blue), var(--gold));
  --grad-hero: linear-gradient(135deg, var(--gold) 0%, var(--orange) 50%, var(--blue) 100%);
}

/* ══════════════════════════
  DARK THEME -- DEFAULT
══════════════════════════ */
[data-theme="dark"] {
  --bg: #080a0f;
  --bg2: #0d1017;
  --bg3: #111520;
  --card: #0e1219;
  --card2: #131c26;
  --text: #f2efe9;
  --text2: #a0b0c0;
  --muted: #5a6e80;
  --border: rgba(232, 106, 29, 0.18);
  --border-b: rgba(59, 169, 224, 0.18);
  --border-w: rgba(255, 255, 255, 0.06);
  --shadow: rgba(0, 0, 0, 0.5);
  --nav-bg: rgba(8, 10, 15, 0.96);
  --mob-bg: rgba(8, 10, 15, 0.99);
  --grid-line: rgba(255, 255, 255, 0.022);
  --glow-o: rgba(232, 106, 29, 0.06);
  --glow-b: rgba(59, 169, 224, 0.06);
  --srv-hover: #0f1822;
  --metrics-bg: rgba(8, 10, 15, 0.8);
  --map-dot: rgba(232, 106, 29, 0.18);
  --toggle-bg: rgba(255, 255, 255, 0.07);
}

/* ══════════════════════════
  LIGHT THEME
══════════════════════════ */
[data-theme="light"] {
  --bg: #f5f1ea;
  --bg2: #ede8df;
  --bg3: #e6dfd4;
  --card: #ffffff;
  --card2: #faf7f2;
  --text: #180f02;
  --text2: #4a3820;
  --muted: #9a8060;
  --border: rgba(232, 106, 29, 0.22);
  --border-b: rgba(59, 169, 224, 0.22);
  --border-w: rgba(0, 0, 0, 0.07);
  --shadow: rgba(0, 0, 0, 0.1);
  --nav-bg: rgba(245, 241, 234, 0.97);
  --mob-bg: rgba(245, 241, 234, 0.99);
  --grid-line: rgba(0, 0, 0, 0.04);
  --glow-o: rgba(232, 106, 29, 0.06);
  --glow-b: rgba(59, 169, 224, 0.06);
  --srv-hover: #fff8f2;
  --metrics-bg: rgba(245, 241, 234, 0.85);
  --map-dot: rgba(232, 106, 29, 0.15);
  --toggle-bg: rgba(0, 0, 0, 0.07);
}

/* ══════════════════════════
  GLOBAL STYLES
══════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

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

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

/* ══════════════════════════
  BACKGROUND
══════════════════════════ */
.blob-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  animation: blobMove 22s ease infinite;
}

[data-theme="dark"] .blob {
  opacity: 0.1;
}

[data-theme="light"] .blob {
  opacity: 0.06;
}

.b1 {
  width: 700px;
  height: 700px;
  background: var(--orange);
  top: -200px;
  left: -150px;
}

.b2 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  bottom: -150px;
  right: -100px;
  animation-delay: -8s;
}

.b3 {
  width: 350px;
  height: 350px;
  background: var(--gold);
  top: 45%;
  left: 55%;
  animation-delay: -15s;
}

@keyframes blobMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(25px, -25px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 30%, transparent 80%);
}

/* ══════════════════════════
  THEME 
══════════════════════════ */
.theme-toggle {
  width: 46px;
  height: 25px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--toggle-bg);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.theme-toggle:hover {
  border-color: var(--orange);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--grad-main);
  transition: transform 0.35s cubic-bezier(.68, -.55, .27, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  line-height: 1;
}

[data-theme="light"] .toggle-knob {
  transform: translateX(21px);
}

.icon-dark {
  display: block;
}

.icon-light {
  display: none;
}

[data-theme="light"] .icon-dark {
  display: none;
}

[data-theme="light"] .icon-light {
  display: block;
}

/* ══════════════════════════
  NAVIGATION
══════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 22px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

nav.stuck {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 13px 72px;
  box-shadow: 0 4px 24px var(--shadow);
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  transition: color 0.3s;
}

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

.nav-pill {
  background: var(--grad-main) !important;
  color: #080a0f !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  transition: opacity 0.3s !important;
}

.nav-pill:hover {
  opacity: 0.85 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--mob-bg);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

.mob-link {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: all 0.3s;
  text-decoration: none;
}

.mob-link:hover {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mob-sep {
  width: 40px;
  height: 1px;
  background: var(--border);
}

.mob-cta {
  background: var(--grad-main);
  color: #080a0f;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 6px;
}

.mob-theme-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ══════════════════════════
  HERO
══════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 140px 72px 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.light-slash {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 2px;
  height: 130%;
  background: linear-gradient(to bottom, transparent, rgba(255, 194, 6, 0.3) 30%, rgba(232, 106, 29, 0.2) 65%, transparent);
  transform: rotate(12deg);
  pointer-events: none;
  animation: slashPulse 5s ease-in-out infinite;

  @media (max-width: 992px) {
    display: none;
  }
}

.light-slash2 {
  position: absolute;
  top: -50px;
  right: 30%;
  width: 1px;
  height: 110%;
  background: linear-gradient(to bottom, transparent, rgba(59, 169, 224, 0.2) 40%, transparent);
  transform: rotate(-6deg);
  pointer-events: none;
  animation: slashPulse 7s ease-in-out infinite reverse;

  @media (max-width: 992px) {
    display: none;
  }
}

@keyframes slashPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.7;
  }
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 106, 29, 0.1);
  border: 1px solid rgba(232, 106, 29, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--orange);
  margin-bottom: 36px;
  animation: popIn 0.8s ease 0.2s both;
}

.chip-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.5s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: popIn 0.8s ease 0.4s both;
}

.grad-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: popIn 0.8s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: popIn 0.8s ease 0.8s both;
}

.btn-fill {
  background: var(--grad-main);
  color: #080a0f;
  padding: 15px 36px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.btn-fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(232, 106, 29, 0.35);
}

.btn-ring {
  border: 1.5px solid rgba(59, 169, 224, 0.4);
  color: var(--blue);
  background: transparent;
  padding: 15px 36px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 400;
  transition: all 0.3s;
  display: inline-block;
}

.btn-ring:hover {
  background: rgba(59, 169, 224, 0.08);
  border-color: var(--blue);
}

/* Hero Image Side */
.hero-right {
  position: relative;
  animation: popIn 0.8s ease 0.5s both;
}

.hero-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.hero-float-card {
  position: absolute;
  top: 28px;
  right: -22px;
  background: var(--card2);
  border: 1px solid var(--border-b);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 8px 32px var(--shadow);
}

.hfc-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hfc-lbl {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px var(--shadow);
}

.badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.badge-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-lbl {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ══════════════════════════
  METRICS BAR
══════════════════════════ */
.metrics-bar {
  display: flex;
  position: relative;
  z-index: 1;
  background: var(--metrics-bg);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metric {
  flex: 1;
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.metric:last-child {
  border-right: none;
}

.metric:hover {
  background: var(--glow-o);
}

.metric-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 7px;
}

.m1 .metric-num {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m2 .metric-num {
  background: var(--grad-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m3 .metric-num {
  background: var(--grad-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m4 .metric-num {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════
  SECTION HELPERS
══════════════════════════ */
.s-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.s-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.s-sub {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.85;
  font-weight: 300;
}

/* ══════════════════════════
  ABOUT
══════════════════════════ */
#about {
  padding: 120px 72px;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.about-img-sm {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid var(--bg);
}

.about-chip {
  position: absolute;
  top: 26px;
  left: 26px;
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 4px 20px var(--shadow);
}

.ac-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}

.ac-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.about-content .s-sub {
  margin-bottom: 34px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.6;
}

.about-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--grad-main);
  margin-top: 6px;
}

/* ══════════════════════════
  SERVICES
══════════════════════════ */
#services {
  padding: 120px 72px;
  position: relative;
  z-index: 1;
  background: var(--bg2);
}

.srv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}

.srv-header .s-sub {
  max-width: 380px;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.srv-card {
  background: var(--card);
  padding: 44px 36px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.srv-card:hover {
  background: var(--srv-hover);
}

.srv-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(232, 106, 29, 0.1);
  border: 1px solid rgba(232, 106, 29, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: transform 0.3s;
}

.srv-card:hover .srv-icon {
  transform: scale(1.1);
}

.srv-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.srv-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.srv-tag {
  font-size: 0.66rem;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(59, 169, 224, 0.3);
  color: var(--blue);
  letter-spacing: 0.04em;
}

/* ══════════════════════════
   WHY CHOOSE US
══════════════════════════ */
#why {
  padding: 120px 72px;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.why-stat-a {
  position: absolute;
  top: 28px;
  right: -28px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px var(--shadow);
}

.wsa-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.wsa-lbl {
  font-size: 0.68rem;
  color: var(--muted);
}

.why-stat-b {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--card2);
  border: 1px solid var(--border-b);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px var(--shadow);
}

.wsb-icon {
  font-size: 1.4rem;
}

.wsb-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wsb-lbl {
  font-size: 0.66rem;
  color: var(--muted);
}

.why-content .s-sub {
  margin-bottom: 40px;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: rgba(232, 106, 29, 0.45);
  transform: translateX(8px);
  background: var(--glow-o);
}

.wc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(232, 106, 29, 0.1);
  border: 1px solid rgba(232, 106, 29, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.wc-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.wc-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════
  CONTACT
══════════════════════════ */
#contact {
  padding: 120px 72px;
  position: relative;
  z-index: 1;
  background: var(--bg2);
}

.contact-hd {
  text-align: center;
  margin-bottom: 70px;
}

.contact-hd .s-sub {
  max-width: 480px;
  margin: 0 auto;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-inner-wrap > div {
  display: flex;
  gap: 5px;

  @media (max-width: 1024px) {
    flex-direction: column;
  }
}

.c-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px 26px;
  border-radius: 14px;
  display: flex;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
}

.c-card:hover {
  border-color: rgba(232, 106, 29, 0.45);
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(232, 106, 29, 0.1);
}

.c-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(232, 106, 29, 0.1);
  border: 1px solid rgba(232, 106, 29, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.c-lbl {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.c-val {
  font-size: 0.9rem;
  color: var(--text);
}

.map-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--map-dot) 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.map-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(232, 106, 29, 0.1);
  border: 2px solid rgba(232, 106, 29, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: mapPulse 3s ease infinite;
}

@keyframes mapPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 106, 29, 0.3);
  }

  50% {
    box-shadow: 0 0 0 22px rgba(232, 106, 29, 0);
  }
}

.map-inner p {
  font-size: 0.87rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.55;
}

.map-btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 100px;
  background: var(--grad-main);
  color: #080a0f;
  font-size: 0.8rem;
  font-weight: 700;
  transition: opacity 0.3s;
}

.map-btn:hover {
  opacity: 0.85;
}

/* ══════════════════════════
  SOCIAL
══════════════════════════ */
#social {
  padding: 120px 72px;
  position: relative;
  z-index: 1;
  text-align: center;
}

#social .s-title {
  margin-bottom: 14px;
}

#social .s-sub {
  margin-bottom: 52px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.soc-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.soc-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 26px;
  border-radius: 100px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  min-width: 170px;
}

.soc-pill:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(232, 106, 29, 0.15);
}

.soc-icon {
  font-size: 1.2rem;
}

.soc-name {
  font-size: 0.85rem;
}

.soc-handle {
  font-size: 0.7rem;
  color: var(--muted);
}

.soc-inner {
  text-align: left;
}

/* ══════════════════════════
  FOOTER
══════════════════════════ */
footer {
  padding: 36px 72px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
  background: var(--bg2);
}

.foot-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.foot-logo img {
  @media (max-width: 768px) {
    margin: auto;
  }
}

.foot-tag {
  font-size: 0.74rem;
  color: var(--muted);
}

footer p {
  font-size: 0.76rem;
  color: var(--muted);
}

/* ══════════════════════════
  ANIMATIONS
══════════════════════════ */
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.75s ease;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: all 0.75s ease;
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: all 0.75s ease;
}

.reveal.on,
.reveal-l.on,
.reveal-r.on {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════
  TABLET ≤ 1024px
══════════════════════════ */
@media(max-width:1024px) {

  nav,
  nav.stuck {
    padding-left: 40px;
    padding-right: 40px;
  }

  #hero {
    padding: 110px 40px 70px;
    gap: 40px;
  }

  #about,
  #services,
  #why,
  #contact,
  #social {
    padding: 90px 40px;
  }

  footer {
    padding: 28px 40px;
  }

  .about-grid,
  .why-grid {
    gap: 50px;
  }

  .srv-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .why-stat-a {
    right: -14px;
  }

  .why-stat-b {
    left: -14px;
  }
}

/* ══════════════════════════
  MOBILE ≤ 768px
══════════════════════════ */
@media(max-width:768px) {

  nav,
  nav.stuck {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 44px;
  }

  .hero-right {
    display: none;
  }

  h1 {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }

  .hero-sub {
    font-size: 0.93rem;
    max-width: 100%;
  }

  .metrics-bar {
    flex-wrap: wrap;
  }

  .metric {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--border);
  }

  .metric:nth-child(2) {
    border-right: none;
  }

  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-bottom: none;
  }

  .metric:nth-child(4) {
    border-right: none;
  }

  #about,
  #services,
  #why,
  #contact,
  #social {
    padding: 72px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-img-main {
    height: 280px;
  }

  .about-img-sm {
    width: 110px;
    height: 110px;
    bottom: -14px;
    right: -10px;
  }

  .srv-grid {
    grid-template-columns: 1fr;
    background: transparent;
    gap: 12px;
  }

  .srv-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 26px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-img {
    height: 280px;
  }

  .why-stat-a {
    right: 16px;
    top: 16px;
  }

  .why-stat-b {
    left: 16px;
    bottom: 16px;
  }

  .why-card:hover {
    transform: none;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-box {
    height: 260px;
  }

  .soc-pill {
    min-width: 140px;
    padding: 14px 20px;
  }

  footer {
    padding: 22px 24px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ══════════════════════════
  SMALL PHONE ≤ 420px
══════════════════════════ */
@media(max-width:420px) {
  nav {
    padding: 14px 18px;
  }

  #hero {
    padding: 88px 18px 55px;
  }

  #about,
  #services,
  #why,
  #contact,
  #social {
    padding: 60px 18px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-fill,
  .btn-ring {
    text-align: center;
    width: 100%;
    padding: 14px 24px;
  }

  .metrics-bar .metric {
    flex: 0 0 50%;
  }

  .soc-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .soc-pill {
    min-width: 100%;
    justify-content: flex-start;
  }

  footer {
    padding: 18px;
  }

  .mob-link {
    font-size: 1.8rem;
  }
}