/* ============================================================
   RK Technologies — Design System v2
   Colors: #fec200 (gold) | #01b6fd (blue) | #afb9c6 (silver) | #5a301d (brown)
   ============================================================ */

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

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --gold: #fec200;
  --gold-dark: #d9a500;
  --blue: #01b6fd;
  --blue-dark: #0099d6;
  --silver: #afb9c6;
  --brown: #5a301d;
  --brown-dark: #3d1f0e;
  --white: #ffffff;
  --black: #0d0d0d;
  --gray-light: #f4f6f9;
  --gray-mid: #e2e7ee;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 8px 32px rgba(254, 194, 0, 0.30);
  --shadow-blue: 0 8px 32px rgba(1, 182, 253, 0.30);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* ── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 48px 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(254, 194, 0, 0.15), rgba(1, 182, 253, 0.15));
  color: var(--brown);
  border: 1px solid rgba(254, 194, 0, 0.4);
  margin-bottom: 16px;
}

.page-hero .badge {
  color: var(--gold);
}

.section-title {
  margin-bottom: 12px;
}

.section-sub {
  max-width: 580px;
  margin: 0 auto 52px;
  font-size: 1.05rem;
}

/* ── Animated gradient text ───────────────────────────────── */
.gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ffaa00);
  color: var(--brown-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  box-shadow: 0 14px 44px rgba(254, 194, 0, 0.5);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue), #0080c8);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
  box-shadow: 0 14px 44px rgba(1, 182, 253, 0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--brown-dark);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 96px;
  display: flex;
  align-items: center;
  background: rgba(10, 12, 30, 0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 12, 30, 0.97);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 80px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(254, 194, 0, 0.1);
}

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

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

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

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

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

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 12, 30, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-head);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--gold);
  background: rgba(254, 194, 0, 0.1);
}

.nav-mobile .mobile-cta-btn {
  margin-top: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), #ffaa00);
  color: var(--brown-dark) !important;
  border-radius: var(--radius-xl);
  font-weight: 700 !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO — FULL WIDTH, NO CONTAINER RESTRICTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Full-bleed background */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
      rgba(10, 12, 30, 0.88) 0%,
      rgba(61, 31, 14, 0.60) 40%,
      rgba(1, 20, 40, 0.80) 100%);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.hero-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(254, 194, 0, 0.18) 0%, transparent 70%);
  top: -100px;
  right: 5%;
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(1, 182, 253, 0.16) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  animation: float-orb 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(90, 48, 29, 0.25) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: float-orb 6s ease-in-out infinite 2s;
}

@keyframes float-orb {

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

  50% {
    transform: translateY(-30px) scale(1.08);
  }
}

/* Hero content — full width layout */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 60px;
  max-width: 900px;
  margin-left: 6vw;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(254, 194, 0, 0.10);
  border: 1px solid rgba(254, 194, 0, 0.38);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fade-down 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

  50% {
    opacity: .4;
    transform: scale(1.6);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 7vw, 4.2rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fade-up 0.9s 0.15s ease both;
}

.hero h1 .accent-gold {
  color: var(--gold);
}

.hero h1 .accent-blue {
  color: var(--blue);
}

/* Typing cursor effect on hero */
.hero-type {
  display: inline-block;
  border-right: 3px solid var(--gold);
  animation: blink-cursor 0.8s step-end infinite;
  padding-right: 3px;
}

@keyframes blink-cursor {

  0%,
  100% {
    border-color: var(--gold);
  }

  50% {
    border-color: transparent;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fade-up 0.9s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fade-up 0.9s 0.45s ease both;
}

/* Stats bar — stretched full width */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: stretch;
  background: rgba(10, 12, 30, 0.75);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fade-in 1s 0.7s ease both;
}

.hero-stat-item {
  flex: 1;
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: var(--transition);
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.hero-stat-item:hover::before {
  transform: scaleX(1);
}

.hero-stat-item:hover {
  background: rgba(254, 194, 0, 0.06);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Services Cards (Home) ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-mid);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--blue)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.service-card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6));
}

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

.service-card-body {
  padding: 26px;
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 16px;
  margin-top: -44px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(-4deg);
}

.icon-gold {
  background: linear-gradient(135deg, var(--gold), #ffaa00);
}

.icon-blue {
  background: linear-gradient(135deg, var(--blue), #0080c8);
}

.icon-brown {
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition-fast);
}

.service-card-link:hover {
  gap: 12px;
  color: var(--gold);
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-section {
  background: var(--gray-light);
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.why-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(8deg);
}

.why-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.why-card p {
  font-size: 0.87rem;
}

/* ── Services Page ───────────────────────────────────────── */
.services-page-grid {
  display: grid;
  gap: 72px;
}

/* Alternating two-column blocks */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.svc-block.reverse .svc-img {
  order: 2;
}

.svc-block.reverse .svc-content {
  order: 1;
}

.svc-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.svc-img:hover img {
  transform: scale(1.04);
}

.svc-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(254, 194, 0, 0.08), transparent);
  pointer-events: none;
}

.svc-content .badge {
  margin-bottom: 12px;
}

.svc-content h2 {
  margin-bottom: 14px;
}

.svc-content>p {
  margin-bottom: 24px;
}

/* Divider between service blocks */
.svc-divider {
  border: none;
  border-top: 1px solid var(--gray-mid);
  width: 80%;
  margin: 0 auto;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background-image: linear-gradient(135deg, rgba(61,31,14,0.85) 0%, rgba(10,26,46,0.92) 100%), url('../img/page_hero_bg.png');
  background-size: cover;
  background-position: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 194, 0, 0.14) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
  animation: float-orb 9s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 182, 253, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -60px;
  pointer-events: none;
  animation: float-orb 11s ease-in-out infinite reverse;
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  animation: fade-up 0.8s ease both;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
  animation: fade-up 0.8s 0.15s ease both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  animation: fade-down 0.7s ease both;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--silver);
}

/* ── Checklist ───────────────────────────────────────────── */
.checklist {
  margin: 24px 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffaa00);
  color: var(--brown-dark);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── Process Steps ───────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.process-step {
  flex: 1 1 160px;
  max-width: 210px;
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffaa00);
  color: var(--brown-dark);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.process-step:hover .step-num {
  transform: scale(1.12) rotate(-8deg);
}

.process-step h4 {
  font-size: 0.97rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.84rem;
}

/* ── Info Cards ──────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.info-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-card-gold {
  background: linear-gradient(135deg, rgba(254, 194, 0, 0.12), rgba(254, 194, 0, 0.05));
  border: 1px solid rgba(254, 194, 0, 0.3);
}

.info-card-blue {
  background: linear-gradient(135deg, rgba(1, 182, 253, 0.12), rgba(1, 182, 253, 0.05));
  border: 1px solid rgba(1, 182, 253, 0.3);
}

.info-card-brown {
  background: linear-gradient(135deg, rgba(90, 48, 29, 0.12), rgba(90, 48, 29, 0.05));
  border: 1px solid rgba(90, 48, 29, 0.2);
}

.info-card-silver {
  background: linear-gradient(135deg, rgba(175, 185, 198, 0.18), rgba(175, 185, 198, 0.06));
  border: 1px solid rgba(175, 185, 198, 0.4);
}

.info-card .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
  transition: var(--transition);
}

.info-card:hover .icon {
  transform: scale(1.2) rotate(8deg);
}

.info-card strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  display: block;
  color: var(--text-dark);
}

.info-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, #1a4060 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 194, 0, 0.10) 0%, transparent 70%);
  top: -280px;
  left: -150px;
  pointer-events: none;
  animation: float-orb 12s ease-in-out infinite;
}

.cta-strip::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 182, 253, 0.10) 0%, transparent 70%);
  bottom: -180px;
  right: -100px;
  pointer-events: none;
  animation: float-orb 9s ease-in-out infinite reverse;
}

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

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-strip .btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.contact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.contact-card h4 {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--blue);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font-head);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--gray-light);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(254, 194, 0, 0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── About ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--brown-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-gold);
  line-height: 1.2;
}

.about-img-badge strong {
  font-size: 2rem;
  display: block;
}

.about-img-badge span {
  font-size: 0.78rem;
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.about-detail-item {
  padding: 16px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.about-detail-item h5 {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.about-detail-item p {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, var(--brown-dark) 0%, #0d0a08 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 44px;
  width: 44px;
}

.footer-logo-text span:first-child {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
}

.footer-logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
}

.footer-contact li span.fc-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
  color: var(--gold);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p a {
  color: var(--gold);
}

.gst-badge {
  background: rgba(254, 194, 0, 0.1);
  border: 1px solid rgba(254, 194, 0, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: wa-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

@keyframes wa-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children auto */
.stagger>*:nth-child(1) {
  transition-delay: 0.0s;
}

.stagger>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger>*:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger>*:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger>*:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger>*:nth-child(6) {
  transition-delay: 0.5s;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {

  .svc-block,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .svc-block.reverse .svc-img,
  .svc-block.reverse .svc-content {
    order: unset;
  }



  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    padding: 60px 32px;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 56px 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
    justify-content: space-between;
    padding-top: 90px;
    height: auto;
    min-height: 100vh;
  }

  .hero-stats-bar {
    position: relative;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 40px;
  }

  .hero-stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-inner {
    padding: 40px 20px;
    margin: 0 !important;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero p {
    text-align: center;
  }

  .contact-form {
    padding: 24px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-btns .btn {
    text-align: center;
    width: 100%;
  }
}

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



  .cta-strip .btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-stat-item {
    flex: 1 1 100%;
  }
}