/* ========== ROOT VARIABLES ========== */
:root {
  --background: hsl(40, 33%, 95%);
  --foreground: hsl(220, 14%, 16%);
  --card: hsl(40, 33%, 98%);
  --card-foreground: hsl(220, 14%, 16%);
  --primary: hsl(43, 74%, 52%);
  --primary-foreground: hsl(120, 55%, 12%);
  --secondary: hsl(120, 55%, 24%);
  --secondary-foreground: hsl(40, 33%, 97%);
  --muted: hsl(40, 15%, 90%);
  --muted-foreground: hsl(220, 10%, 40%);
  --border: hsl(40, 20%, 88%);
  --gold: hsl(43, 74%, 52%);
  --gold-light: hsl(43, 60%, 65%);
  --gold-dark: hsl(43, 80%, 42%);
  --gold-heading: hsl(43, 74%, 52%);
  --green-dark: hsl(120, 55%, 12%);
  --green-light: hsl(40, 30%, 95%);
  --radius: 0.75rem;
}

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

html, body {
  overflow-x: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  text-decoration: none;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.navbar-brand img {
  height: 80px;
  width: auto;
  transition: transform 0.5s ease;
}

.navbar-brand:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.6));
}

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

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.navbar.scrolled .brand-name {
  color: var(--green-dark);
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: -4px;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}

.navbar.scrolled .nav-links a {
  color: rgba(26, 59, 26, 0.85);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Navbar Get Started button — compact to fit navbar height */
.nav-links .btn-hero {
  padding: 0.5rem 1.4rem;
  font-size: 0.875rem;
  line-height: 1;
}

/* Prevent nav underline from showing on the button */
.nav-links li:has(.btn-hero) a::after {
  display: none;
}


.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar.scrolled .mobile-toggle {
  color: var(--green-dark);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.mobile-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.55);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.5);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-white {
  background: white;
  color: var(--secondary);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, hsl(43, 88%, 52%), hsl(43, 80%, 44%));
  color: hsl(120, 60%, 10%) !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  border: none;
  text-decoration: none !important;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(212, 175, 55, 0.35),
    0 4px 18px rgba(201, 162, 39, 0.45);
  transition: all 0.3s ease;
}

/* Shimmer sweep */
.btn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  border-radius: 9999px;
}

.btn-hero:hover::after {
  transform: translateX(130%);
}

.btn-hero:hover {
  background: linear-gradient(135deg, hsl(43, 92%, 56%), hsl(43, 84%, 46%));
  color: hsl(120, 60%, 10%) !important;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2.5px rgba(212, 175, 55, 0.55),
    0 6px 24px rgba(201, 162, 39, 0.6);
}

.btn-hero i {
  color: hsl(120, 60%, 10%);
  transition: transform 0.3s ease;
}

.btn-hero:hover i {
  transform: translateX(3px);
}


/* ========== HERO CAROUSEL ========== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.active img {
  animation: ken-burns 7s ease-out forwards;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0.1) 65%, transparent 100%), linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 35%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-left: 0;
}

.hero-content .container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-text-block {
  max-width: 52%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.7s ease 0.1s;
}

.hero-slide.active .hero-label {
  opacity: 1;
  transform: translateX(0);
}

.hero-label-line {
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 9999px;
}

.hero-label-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.2s;
}

.hero-slide.active .hero-headline {
  opacity: 1;
  transform: translateY(0);
}

.hero-headline .white {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-headline .gold {
  background: linear-gradient(135deg, hsl(43 74% 60%), hsl(43 80% 52%), hsl(43 74% 45%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.35s;
}

.hero-slide.active .hero-subtext {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.5s;
}

.hero-slide.active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-nav:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-nav.prev {
  left: 2rem;
}

.hero-nav.next {
  right: 2rem;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.625rem;
}

.hero-dot {
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.5s ease;
  width: 14px;
  border: none;
  overflow: hidden;
  position: relative;
}

.hero-dot.active {
  width: 52px;
}

.hero-dot-progress {
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 9999px;
  width: 0;
  transition: width 50ms linear;
}

@keyframes ken-burns {
  0% {
    transform: scale(1);
  }

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

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--secondary);
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.page-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: gap 0.3s ease;
}

.page-hero .back-link:hover {
  gap: 0.75rem;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-foreground);
  margin-bottom: 1rem;
}

.page-hero-title .gold {
  background: linear-gradient(135deg, hsl(43 74% 60%), hsl(43 80% 52%), hsl(43 74% 45%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  line-height: 1.7;
}

.page-hero-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.page-hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ========== STATS SECTION ========== */
.stats-section {
  padding: 5rem 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.stats-section::before,
.stats-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  filter: blur(100px);
}

.stats-section::before {
  width: 400px;
  height: 400px;
  top: 0;
  right: 0;
}

.stats-section::after {
  width: 300px;
  height: 300px;
  bottom: 0;
  left: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 10;
}

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

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: rgba(212, 175, 55, 0.25);
  transform: scale(1.1);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== SECTION HEADERS ========== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: hsl(40, 30%, 95%);
}

.section-dark {
  background: var(--secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-heading);
  margin-bottom: 1.5rem;
}

.section-title-white {
  color: var(--secondary-foreground);
}

.section-line {
  width: 70px;
  height: 3px;
  background: var(--gold-heading);
  margin: 0 auto;
  border-radius: 9999px;
}

.section-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

.section-group-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-heading);
  margin-bottom: 2rem;
}

.section-group-title-left {
  text-align: left;
}

/* ========== ABOUT SECTION ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.about-item:hover .about-icon {
  background: rgba(212, 175, 55, 0.2);
}

.about-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.about-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.growth-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float-slow 6s ease-in-out infinite;
}

/* Concentric rings */
.growth-rings {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outermost ring — very faint cream */
.growth-ring-3 {
  width: 260px;
  height: 260px;
  background: hsl(43, 80%, 93%);
  animation: ripple-pulse 4s ease-in-out infinite;
}

/* Middle ring — slightly richer */
.growth-ring-2 {
  width: 196px;
  height: 196px;
  background: hsl(43, 78%, 86%);
  animation: ripple-pulse 4s ease-in-out infinite 1s;
}

/* Inner core — solid warm gold */
.growth-ring-1 {
  width: 132px;
  height: 132px;
  background: hsl(43, 72%, 70%);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
  animation: pulse-glow 3s ease-in-out infinite;
}

.growth-ring-text {
  color: hsl(43, 70%, 35%);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

/* Stem — overlaps into circle for seamless lollipop look */
.growth-stem {
  width: 16px;
  height: 130px;
  background: linear-gradient(to bottom, hsl(125, 42%, 30%), hsl(125, 42%, 26%));
  border-radius: 9999px;
  margin-top: -22px;
  /* pull up into circle bottom */
  position: relative;
  z-index: 2;
}

/* Chevron arrow — sits behind stem bottom */
.growth-arrow {
  margin-top: -24px;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}

@keyframes float-slow {

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

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

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  50% {
    box-shadow: 0 0 20px 4px rgba(212, 175, 55, 0.2);
  }
}

@keyframes ripple-pulse {

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

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

/* ========== CARD STYLES ========== */
.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 175, 55, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.card:hover::before {
  transform: translateX(130%);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card:hover .card-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

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

.card-center .card-icon {
  margin: 0 auto 1rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2rem;
}

/* ========== SERVICES SECTION ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 175, 55, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::before {
  transform: translateX(130%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.service-card-sm:hover .service-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
}

.service-list {
  list-style: none;
  position: relative;
  z-index: 1;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  line-height: 1.6;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 0.5rem;
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card-sm {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card-sm::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 175, 55, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card-sm:hover::before {
  transform: translateX(130%);
}

.service-card-sm:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-card-sm .service-icon {
  margin-bottom: 1rem;
}

.service-card-sm .service-card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.service-card-sm .service-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service-card-featured {
  background: linear-gradient(135deg, hsl(43, 90%, 95%), var(--card));
  border-color: rgba(212, 175, 55, 0.45);
}

.service-header-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 9999px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
  letter-spacing: 0.025em;
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.service-cta i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-cta i,
.service-card-sm:hover .service-cta i {
  transform: translateX(4px);
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.service-buttons-center {
  justify-content: center;
}

/* ========== NEW SERVICES SECTION ========== */
.svc-section {
  background: hsl(40, 30%, 95%);
  position: relative;
  overflow: hidden;
}

.svc-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.svc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.svc-blob-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
  background: rgba(212, 175, 55, 0.12);
  animation: float-slow 8s ease-in-out infinite;
}

.svc-blob-2 {
  width: 340px;
  height: 340px;
  bottom: 40px;
  right: -60px;
  background: rgba(26, 59, 26, 0.08);
  animation: float-slow 10s ease-in-out infinite reverse;
}

.svc-section .container {
  position: relative;
  z-index: 1;
}

.svc-block {
  margin-bottom: 3.5rem;
}

/* svc-card (Core IT Services - 2-col grid) */
.svc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 175, 55, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.svc-card:hover::before {
  transform: translateX(130%);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
}

.svc-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.svc-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 0.875rem;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.svc-card:hover .svc-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.svc-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}

.svc-list {
  list-style: none;
  position: relative;
  z-index: 1;
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  padding: 0.45rem 0;
  line-height: 1.6;
}

.svc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 0.5rem;
}

/* svc-card-sm (Technology & Consulting, Service Modules - 3-col grid) */
.svc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card-sm {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.svc-card-sm::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 175, 55, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.svc-card-sm:hover::before {
  transform: translateX(130%);
}

.svc-card-sm:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.4);
}

.svc-icon-sm {
  width: 44px;
  height: 44px;
  border-radius: 0.875rem;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.svc-card-sm:hover .svc-icon-sm {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.svc-card-sm-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.svc-card-sm-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* svc-manpower (IT Manpower Solutions - 3-col grid) */
.svc-manpower-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-manpower-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.svc-manpower-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 175, 55, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.svc-manpower-card:hover::before {
  transform: translateX(130%);
}

.svc-manpower-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.4);
}

.svc-manpower-featured {
  background: linear-gradient(135deg, hsl(43, 90%, 95%), var(--card));
  border-color: rgba(212, 175, 55, 0.45);
}

.svc-manpower-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.svc-manpower-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.svc-manpower-card:hover .svc-manpower-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.svc-manpower-badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 9999px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.svc-manpower-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.svc-manpower-desc {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.svc-manpower-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.svc-manpower-cta i {
  transition: transform 0.3s ease;
}

.svc-manpower-card:hover .svc-manpower-cta i {
  transform: translateX(4px);
}

/* CTA rows */
.svc-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.svc-cta-center {
  justify-content: center;
  margin-top: 2.5rem;
}

/* ========== WHY CHOOSE US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ========== PRODUCTS SECTION (new) ========== */
.prd-section {
  background: hsl(40, 30%, 95%);
  position: relative;
  overflow: hidden;
}

.prd-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.prd-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.prd-blob-1 {
  width: 320px;
  height: 320px;
  top: -64px;
  right: -60px;
  background: rgba(212, 175, 55, 0.1);
  animation: float-slow 9s ease-in-out infinite;
}

.prd-blob-2 {
  width: 280px;
  height: 280px;
  bottom: -70px;
  left: 40px;
  background: rgba(26, 59, 26, 0.07);
  animation: float-slow 11s ease-in-out infinite reverse;
}

.prd-container {
  position: relative;
  z-index: 1;
}

.prd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prd-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.prd-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 175, 55, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.prd-card:hover::before {
  transform: translateX(130%);
}

.prd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
}

.prd-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.prd-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.prd-card:hover .prd-card-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.prd-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.prd-card-desc {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.prd-items {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
  z-index: 1;
}

.prd-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: hsl(40, 33%, 97%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
}

.prd-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.prd-item-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.prd-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
}

.prd-item-detail {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-top: 0.2rem;
}

.prd-support-block {
  margin-top: 4rem;
}

.prd-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.prd-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}



.product-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 30%, rgba(212, 175, 55, 0.16) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.product-card:hover::before {
  transform: translateX(130%);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.product-items {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 0.75rem;
  position: relative;
  z-index: 1;
}

.product-item {
  background: hsl(40, 33%, 97%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.product-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.product-item-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.125rem;
}

.product-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
}

.product-item-detail {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@keyframes drift-slow {

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

  50% {
    transform: translate3d(8px, -10px, 0) scale(1.04);
  }
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.contact-label {
  font-weight: 600;
  color: var(--secondary);
}

.contact-value {
  color: var(--muted-foreground);
}

.contact-form-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: white;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  font-family: inherit;
}

.btn-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.5);
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 6rem 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  filter: blur(100px);
}

.cta-section::before {
  width: 500px;
  height: 500px;
  top: 0;
  right: 0;
}

.cta-section::after {
  width: 400px;
  height: 400px;
  bottom: 0;
  left: 0;
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--secondary-foreground);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.5);
}

.btn-cta:hover {
  background: var(--gold-dark);
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 4px 50px rgba(212, 175, 55, 0.7);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--green-dark);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 112px;
  width: auto;
}

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

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.footer-brand-sub {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: -4px;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-services li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  list-style: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.1) translateY(-4px);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

/* ========== PORTFOLIO PAGE ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.portfolio-card {
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.portfolio-image {
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portfolio-image .letter {
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
}

.portfolio-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-tag {
  padding: 0.375rem 0.875rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.gradient-1 {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), hsl(43, 74%, 52%));
}

.gradient-2 {
  background: linear-gradient(135deg, rgba(26, 59, 26, 0.8), var(--secondary));
}

.gradient-3 {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.9));
}

.gradient-4 {
  background: linear-gradient(135deg, rgba(26, 59, 26, 0.6), rgba(26, 59, 26, 0.9));
}

.gradient-5 {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.7), hsl(43, 74%, 52%));
}

.gradient-6 {
  background: linear-gradient(135deg, rgba(26, 59, 26, 0.7), var(--secondary));
}

/* ========== SERVICE DETAIL PAGE ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.feature-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.75rem;
}

.feature-text {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(212, 175, 55, 0.2));
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
  position: relative;
  z-index: 1;
}

.process-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 0.75rem;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}

.benefit-text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========== 404 PAGE ========== */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  text-align: center;
}

.not-found h1 {
  font-size: 6rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.not-found a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.not-found a:hover {
  color: var(--gold-dark);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prd-grid,
  .prd-support-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .prd-grid::-webkit-scrollbar,
  .prd-support-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .prd-card,
  .prd-support-grid .prd-card {
    min-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .services-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .svc-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-manpower-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-nav {
    width: 44px;
    height: 44px;
  }

  .hero-nav.prev {
    left: 1rem;
  }

  .hero-nav.next {
    right: 1rem;
  }

  .hero-text-block {
    max-width: 100%;
  }

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

  .about-visual {
    order: -1;
  }

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

  .services-grid-3 {
    grid-template-columns: 1fr;
  }

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

  /* prd-grid and prd-support-grid are already handled in 1024px query as flex scroll containers */

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

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

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

  .benefits-list {
    grid-template-columns: 1fr;
  }

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

  .svc-grid-2 {
    grid-template-columns: 1fr;
  }

  .svc-grid-3 {
    grid-template-columns: 1fr;
  }

  .svc-manpower-grid {
    grid-template-columns: 1fr;
  }

  .svc-cta-row {
    flex-direction: column;
  }
}

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

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

  .hero-buttons .btn {
    width: 100%;
  }

  .service-buttons {
    flex-direction: column;
  }

  .service-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn,
  .cta-buttons .btn-cta {
    width: 100%;
  }
}