/* ============================================
   INFIUS CEREBRO - Logistics & General Trading
   Complete Stylesheet v2.0
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #0a1628;
  --primary-light: #132244;
  --primary-dark: #060e1a;
  --accent: #c8a84e;
  --accent-light: #dfc06a;
  --accent-dark: #a8882e;
  --gold-gradient: linear-gradient(135deg, #c8a84e, #e8c86a, #c8a84e);
  --gold-gradient-soft: linear-gradient(135deg, rgba(200,168,78,0.12), rgba(200,168,78,0.06));
  --text-light: #ffffff;
  --text-muted: #b0b8c4;
  --text-dark: #1a1a2e;
  --bg-light: #f8f9fc;
  --bg-card: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-accent: 0 4px 20px rgba(200, 168, 78, 0.35);
  --shadow-glow: 0 0 40px rgba(200, 168, 78, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --max-width: 1200px;
  --header-height: 80px;
  --section-divider-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-dark);
  border-radius: 5px;
  border: 2px solid var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--primary);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Styles --- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200,168,78,0.12), rgba(200,168,78,0.06));
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(200,168,78,0.2);
  position: relative;
}

.section-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--gold-gradient);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.section-badge:hover::before {
  opacity: 0.3;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Gold accent underline for titles */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header.text-left .section-title::after {
  margin: 16px 0 0;
}

/* --- Section Dividers --- */
.section-divider {
  position: relative;
  height: var(--section-divider-height);
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.section-divider.top {
  margin-top: -1px;
}

.section-divider.bottom {
  margin-bottom: -1px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 168, 78, 0.45), 0 0 60px rgba(200, 168, 78, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,168,78,0.1);
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 168, 78, 0.3);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   PRELOADER - Horse Running Animation
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.8s ease;
}

.preloader.hidden {
  transform: translateX(-100%);
  opacity: 0;
}

.preloader-horse-container {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-horse-wrapper {
  position: absolute;
  animation: horseGalloping 0.4s ease-in-out infinite;
}

.preloader-horse {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(200, 168, 78, 0.4));
  animation: horseRunRightToLeft 2s ease-in-out infinite;
  position: absolute;
}

@keyframes horseRunRightToLeft {
  0% {
    transform: translateX(calc(-50vw - 100px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(50vw + 100px));
    opacity: 0;
  }
}

@keyframes horseGalloping {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Horse trail effect */
.preloader-horse-container::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: horseTrail 2s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes horseTrail {
  0% {
    transform: translateX(calc(-50vw - 100px));
    width: 200px;
  }
  50% {
    width: 300px;
  }
  100% {
    transform: translateX(calc(50vw + 100px));
    width: 200px;
  }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: preloaderTextPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderTextPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(200, 168, 78, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  transform-origin: left;
  animation: preloaderBarFill 2s ease-in-out;
}

@keyframes preloaderBarFill {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Website pull-in effect */
body.preloader-active {
  overflow: hidden;
}

body.preloader-active > *:not(.preloader) {
  animation: websitePullIn 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0s;
}

@keyframes websitePullIn {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
}

.top-bar-left span {
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar-left span:hover {
  color: var(--accent);
}

.top-bar-left i {
  color: var(--accent);
  font-size: 0.75rem;
}

.top-bar-right {
  display: flex;
  gap: 12px;
}

.top-bar-right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition-bounce);
}

.top-bar-right a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px) scale(1.1);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo:hover .logo-img {
  transform: scale(1.05) rotate(-2deg);
  filter: brightness(1.1);
}

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

.logo-text h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.15;
  transition: var(--transition);
  white-space: nowrap;
}

.logo:hover .logo-text h1 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text .logo-subtitle {
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}

.logo-text .logo-tagline {
  font-size: 0.55rem;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  opacity: 0.7;
  transition: var(--transition);
}

.logo:hover .logo-text .logo-tagline {
  opacity: 1;
  color: var(--accent);
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
}

.nav-menu > li > a {
  padding: 8px 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

/* Dropdown divider for special items */
.dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 16px;
  list-style: none;
}

.dropdown-menu li a i {
  margin-right: 6px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.dropdown-menu li a:hover i {
  opacity: 1;
  color: var(--accent);
}


.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--accent);
  background: rgba(200,168,78,0.08);
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(19, 34, 68, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(200,168,78,0.1);
  color: var(--accent);
  padding-left: 20px;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-right .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--accent);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

/* Hero Animated Background Grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(200, 168, 78, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 78, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
  100% { transform: translate(0, 0); }
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: particleFloat var(--duration, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.particle:nth-child(1) { --duration: 8s; --delay: 0s; top: 10%; left: 10%; }
.particle:nth-child(2) { --duration: 10s; --delay: 1s; top: 20%; left: 30%; width: 3px; height: 3px; opacity: 0.2; }
.particle:nth-child(3) { --duration: 7s; --delay: 2s; top: 30%; left: 60%; width: 5px; height: 5px; opacity: 0.25; }
.particle:nth-child(4) { --duration: 12s; --delay: 0.5s; top: 50%; left: 15%; width: 3px; height: 3px; }
.particle:nth-child(5) { --duration: 9s; --delay: 1.5s; top: 60%; left: 45%; width: 4px; height: 4px; opacity: 0.2; }
.particle:nth-child(6) { --duration: 11s; --delay: 3s; top: 70%; left: 80%; width: 6px; height: 6px; opacity: 0.15; }
.particle:nth-child(7) { --duration: 8s; --delay: 2.5s; top: 80%; left: 25%; width: 3px; height: 3px; }
.particle:nth-child(8) { --duration: 6s; --delay: 1s; top: 15%; left: 75%; width: 4px; height: 4px; opacity: 0.3; }
.particle:nth-child(9) { --duration: 13s; --delay: 0s; top: 45%; left: 85%; width: 5px; height: 5px; opacity: 0.15; }
.particle:nth-child(10) { --duration: 9s; --delay: 2s; top: 85%; left: 55%; width: 3px; height: 3px; }
.particle:nth-child(11) { --duration: 10s; --delay: 0.5s; top: 5%; left: 50%; width: 4px; height: 4px; opacity: 0.2; }
.particle:nth-child(12) { --duration: 7s; --delay: 1.8s; top: 40%; left: 5%; width: 5px; height: 5px; opacity: 0.2; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: var(--opacity, 0.3); }
  25% { transform: translateY(-40px) scale(1.5); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(0.8); opacity: 0.2; }
  75% { transform: translateY(-60px) scale(1.2); opacity: 0.4; }
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.60) 40%,
    rgba(10,22,40,0.85) 100%
  );
  z-index: 2;
}

/* Glow orbs in hero */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(200, 168, 78, 0.08);
  top: -100px;
  right: -100px;
  animation: glowFloat 15s ease-in-out infinite;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(200, 168, 78, 0.05);
  bottom: -50px;
  left: 20%;
  animation: glowFloat 20s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 200px;
  height: 200px;
  background: rgba(74, 144, 217, 0.06);
  top: 40%;
  left: -50px;
  animation: glowFloat 12s ease-in-out infinite;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  max-width: 750px;
  flex: 1;
  padding: 80px 0;
  will-change: transform, opacity;
}

/* Hero Logo Decoration */
.hero-logo-decoration {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.hero-logo-box {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  background: rgba(200, 168, 78, 0.08);
  border: 1px solid rgba(200, 168, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(200, 168, 78, 0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-logo-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(200, 168, 78, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-logo-box::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200, 168, 78, 0.1);
  border-radius: 14px;
  pointer-events: none;
}

.hero-logo-box:hover {
  transform: scale(1.05);
  border-color: rgba(200, 168, 78, 0.3);
  box-shadow: 0 16px 60px rgba(200, 168, 78, 0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  background: rgba(200, 168, 78, 0.12);
}

.hero-logo-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  opacity: 0.7;
  filter: drop-shadow(0 4px 12px rgba(200, 168, 78, 0.15));
  transition: var(--transition-slow);
}

.hero-logo-box:hover .hero-logo-img {
  opacity: 0.9;
  filter: drop-shadow(0 8px 24px rgba(200, 168, 78, 0.25));
  transform: scale(1.05);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,78,0.12);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(200,168,78,0.2);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.hero-badge i {
  font-size: 0.75rem;
  animation: iconPulse 2s ease-in-out infinite;
}

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

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.12;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-content h1 .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  animation: highlightReveal 0.8s ease 0.8s forwards;
}

@keyframes highlightReveal {
  to { transform: scaleX(1); }
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-light);
  position: relative;
}

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

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  cursor: default;
}

.feature-item:hover {
  transform: translateX(6px) scale(1.02);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, white, rgba(200,168,78,0.04));
}

.feature-item i {
  color: var(--accent);
  font-size: 1rem;
  transition: var(--transition);
}

.feature-item:hover i {
  transform: scale(1.2);
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

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

.about-img-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(200,168,78,0.15);
  transition: var(--transition-slow);
}

.about-img-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(200,168,78,0.25);
}

.about-img-box-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: brightness(0.8) contrast(1.1);
}

.about-img-box:hover .about-img-box-bg {
  transform: scale(1.1);
  filter: brightness(0.9) contrast(1.05);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.85) 0%,
    rgba(10,22,40,0.6) 50%,
    rgba(200,168,78,0.2) 100%
  );
  z-index: 1;
}

/* Decorative border on about image */
.about-img-box::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(200,168,78,0.3);
  border-radius: calc(var(--radius-lg) - 12px);
  z-index: 2;
  pointer-events: none;
}

.about-img-box::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  z-index: 2;
  opacity: 0.6;
  pointer-events: none;
}

.about-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 3;
  padding: 40px;
}

.about-icon span {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
  font-family: var(--font-display);
  position: relative;
  padding: 12px 24px;
  background: rgba(10,22,40,0.5);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-icon span::before,
.about-icon span::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background: var(--accent);
  top: 50%;
}

.about-icon span::before {
  right: calc(100% + 15px);
}

.about-icon span::after {
  left: calc(100% + 15px);
}

/* Decorative dots on about */
.about-decor {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.15;
  z-index: 0;
}

.about-decor-1 {
  top: -30px;
  right: -30px;
}

.about-decor-2 {
  bottom: -30px;
  left: -30px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: white;
  position: relative;
}

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

.service-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(200,168,78,0.03));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(200,168,78,0.15);
}

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

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

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200,168,78,0.12), rgba(200,168,78,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  background: var(--gold-gradient);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(200, 168, 78, 0.3);
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-link {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-link i {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.service-link:hover {
  gap: 12px;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Service card number decoration */
.service-card .card-number {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(200,168,78,0.04);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}

.service-card:hover .card-number {
  opacity: 0.08;
  transform: scale(1.1);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a84e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* CTA glow orbs */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(200, 168, 78, 0.06);
  top: -200px;
  right: -100px;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(200, 168, 78, 0.04);
  bottom: -100px;
  left: -50px;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .section-badge {
  background: rgba(200,168,78,0.15);
  border-color: rgba(200,168,78,0.25);
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content h2 .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

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

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a84e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-us .section-badge {
  background: rgba(200,168,78,0.15);
  border-color: rgba(200,168,78,0.25);
}

.why-us .section-title {
  color: var(--text-light);
}

.why-us .section-title::after {
  background: var(--gold-gradient);
}

.why-us .section-header p {
  color: var(--text-muted);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-item {
  text-align: center;
  padding: 44px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.why-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(200,168,78,0.04));
  opacity: 0;
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(200,168,78,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.why-item:hover::before {
  opacity: 1;
}

.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(200,168,78,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-bounce);
}

.why-item:hover .why-icon {
  background: rgba(200,168,78,0.2);
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(200,168,78,0.15);
}

.why-icon i {
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.why-item:hover .why-icon i {
  transform: scale(1.1);
}

.why-item h3 {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries {
  background: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.industry-card {
  background: white;
  padding: 36px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(200,168,78,0.04));
  opacity: 0;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,168,78,0.2);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card i {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 14px;
  transition: var(--transition-bounce);
  display: block;
}

.industry-card:hover i {
  transform: scale(1.2) rotate(-5deg);
  color: var(--accent-dark);
}

.industry-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: white;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  transition: var(--transition);
}

.testimonial-card {
  background: var(--bg-light);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(200,168,78,0.12);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  position: absolute;
  top: 4px;
  right: 24px;
  color: rgba(200,168,78,0.1);
  line-height: 1;
  transition: var(--transition);
}

.testimonial-card:hover::before {
  color: rgba(200,168,78,0.2);
  transform: scale(1.1);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: #888;
}

/* Testimonial navigation dots */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

.testimonial-dot:hover {
  background: var(--accent-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--bg-light);
  position: relative;
}

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

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

.contact-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  cursor: default;
}

.contact-item:hover {
  transform: translateX(8px) scale(1.01);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, white, rgba(200,168,78,0.03));
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.contact-item:hover .contact-icon {
  background: var(--gold-gradient);
  transform: scale(1.1) rotate(-5deg);
}

.contact-item:hover .contact-icon i {
  color: var(--primary);
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--accent);
  transition: var(--transition);
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-details p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
  position: relative;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8edf2;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--bg-light);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,168,78,0.1), 0 0 20px rgba(200,168,78,0.05);
  background: white;
  transform: translateY(-1px);
}

.form-group input:focus ~ .input-highlight,
.form-group textarea:focus ~ .input-highlight,
.form-group select:focus ~ .input-highlight {
  transform: scaleX(1);
}

.input-highlight {
  position: absolute;
  bottom: 0;
  left: 2px;
  right: 2px;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 0 0 8px 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  transition: var(--transition);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  opacity: 0.6;
  transform: translateX(4px);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

/* Form validation styles */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
  border-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-error {
  color: #ef4444;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
  align-items: center;
  gap: 4px;
}

.form-group.error .form-error {
  display: flex;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  padding: 80px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo .logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-logo:hover .logo-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

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

.footer-logo .logo-text h3 {
  font-family: var(--font-display);
  color: var(--text-light);
  font-size: 1.3rem;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.footer-logo:hover .logo-text h3 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-bounce);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px) scale(1.1);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1.1rem;
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-contact li:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact li i {
  color: var(--accent);
  margin-top: 4px;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-bounce);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7), 0 0 60px rgba(37, 211, 102, 0.15); }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-bounce);
  cursor: pointer;
  box-shadow: var(--shadow-accent);
}

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

.scroll-top:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 8px 30px rgba(200, 168, 78, 0.5);
}

/* ============================================
   MOUSE GLOW FOLLOWER
   ============================================ */
.mouse-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,78,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.mouse-glow.visible {
  opacity: 1;
}

/* ============================================
   ANIMATIONS - AOS Style
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Scale animation variant */
.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  :root {
    --section-divider-height: 50px;
  }

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

  .hero-content h1 {
    font-size: 3rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

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

  .hero-logo-decoration {
    display: none;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --section-divider-height: 40px;
  }

  .top-bar-left span:not(:first-child) {
    display: none;
  }

  .top-bar-right {
    display: none;
  }

  .header .container {
    height: var(--header-height);
  }

  .logo {
    gap: 10px;
  }

  .logo-img {
    height: 32px;
  }

  .logo-text h1 {
    font-size: 1.1rem;
  }

  .logo-text .logo-subtitle {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }

  .logo-text .logo-tagline {
    font-size: 0.45rem;
    letter-spacing: 1px;
  }

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

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu > li > a {
    padding: 12px 16px;
    display: block;
  }

  .nav-menu > li > a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 8px;
    padding: 8px 16px 8px 32px;
    margin-top: 4px;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .header-right .btn {
    display: none;
  }

  /* Hero Mobile Styles */
  .hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-layout {
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

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

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 24px;
    margin-top: 30px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-logo-decoration {
    display: none;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  /* About Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-img-box {
    max-width: 300px;
    margin: 0 auto;
  }

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

  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Mobile */
  .cta-content h2 {
    font-size: 1.6rem;
  }

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

  /* Why Us Mobile */
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  /* Industries Mobile */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* Small Mobile (up to 480px) */
/* ============================================
   RESPONSIVE - New Sections from Content Upgrade
   ============================================ */
.about-hero .section-header h2,
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

/* Mission/Vision grid */
@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .hero-logo-decoration {
    display: none;
  }
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}

/* Inline style overrides for content-upgraded sections */
@media (max-width: 991px) {
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 575px) {
  div[style*="grid-template-columns: repeat(5"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }  .top-bar-left span:first-child {
    font-size: 0.72rem;
  }
}

/* ============================================
   TESTIMONIALS ENHANCED v2.0
   ============================================ */

/* Filter Tabs */
.testimonial-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.testimonial-filter-btn {
  padding: 8px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  background: white;
  color: #666;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.testimonial-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,168,78,0.05);
}

.testimonial-filter-btn.active {
  background: var(--gold-gradient);
  color: var(--primary);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

/* Category Badge */
.testimonial-category {
  display: inline-block;
  padding: 3px 12px;
  background: var(--gold-gradient-soft);
  border: 1px solid rgba(200,168,78,0.15);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Verified Badge */
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 500;
  margin-left: auto;
}

.testimonial-verified i {
  font-size: 0.7rem;
}

/* Date */
.testimonial-date {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

/* Testimonial Header Row (badge + verified + date) */
.testimonial-header-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

/* Source badge */
.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 0.68rem;
  color: #888;
  font-weight: 500;
}

.testimonial-source i {
  font-size: 0.65rem;
}

/* Rating number next to stars */
.testimonial-rating-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-left: 4px;
}

/* Rating Breakdown Bars */
.testimonial-rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 14px 0;
  padding: 12px 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.04);
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
}

.rating-bar-label {
  color: #777;
  flex-shrink: 0;
  width: 80px;
  font-weight: 500;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 0;
}

.testimonial-card.animated .rating-bar-fill {
  width: var(--bar-width, 0%);
}

.rating-bar-value {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-dark);
  flex-shrink: 0;
  width: 28px;
  text-align: right;
}

/* Company Response */
.testimonial-response {
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(200,168,78,0.06), rgba(200,168,78,0.03));
  border-left: 3px solid var(--accent);
  border-radius: 6px;
}

.testimonial-response .response-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.testimonial-response p {
  font-size: 0.85rem !important;
  color: #666 !important;
  margin-bottom: 0 !important;
  font-style: normal !important;
}

/* Avatar color variants */
.testimonial-avatar.avatar-blue {
  background: linear-gradient(135deg, #1e3a5f, #2d5a87);
}
.testimonial-avatar.avatar-green {
  background: linear-gradient(135deg, #1a4a3a, #2d7a5a);
}
.testimonial-avatar.avatar-purple {
  background: linear-gradient(135deg, #3a1a5a, #5a2d87);
}
.testimonial-avatar.avatar-teal {
  background: linear-gradient(135deg, #1a4a4a, #2d7a7a);
}
.testimonial-avatar.avatar-rose {
  background: linear-gradient(135deg, #5a1a2a, #872d4a);
}
.testimonial-avatar.avatar-amber {
  background: linear-gradient(135deg, #5a3a1a, #874a2d);
}
.testimonial-avatar.avatar-indigo {
  background: linear-gradient(135deg, #2a1a5a, #4a2d87);
}
.testimonial-avatar.avatar-emerald {
  background: linear-gradient(135deg, #0a3a2a, #1a6a4a);
}
.testimonial-avatar.avatar-slate {
  background: linear-gradient(135deg, #2a3a4a, #4a5a6a);
}

/* Review summary bar */
.testimonial-summary-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 16px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid #eee;
}

.testimonial-summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}

.testimonial-summary-item .summary-number {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.testimonial-summary-item .summary-stars {
  color: var(--accent);
  font-size: 0.85rem;
}

/* Write a Review Section */
.write-review-section {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.write-review-content {
  max-width: 600px;
  margin: 0 auto;
}

.write-review-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.write-review-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.write-review-platforms {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.write-review-platforms a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-bounce);
  text-decoration: none;
}

.write-review-platforms a:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.write-review-platforms a i {
  font-size: 1rem;
}

.write-review-platforms a .fa-google {
  color: #4285F4;
}
.write-review-platforms a .fa-star {
  color: var(--accent);
}

/* No results message for filter */
.testimonial-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.testimonial-no-results i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 16px;
}

.testimonial-no-results p {
  font-size: 1rem;
}

/* ============================================
   OUR VALUED CLIENTS SECTION
   ============================================ */
.clients-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a84e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.clients-section .section-badge {
  background: rgba(200,168,78,0.15);
  border-color: rgba(200,168,78,0.25);
}

.clients-section .section-title {
  color: var(--text-light);
}

.clients-section .section-title::after {
  background: var(--gold-gradient);
}

.clients-section .section-header p {
  color: var(--text-muted);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.client-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition-bounce);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: clientFadeUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.client-badge:nth-child(1) { animation-delay: 0.05s; }
.client-badge:nth-child(2) { animation-delay: 0.1s; }
.client-badge:nth-child(3) { animation-delay: 0.15s; }
.client-badge:nth-child(4) { animation-delay: 0.2s; }
.client-badge:nth-child(5) { animation-delay: 0.25s; }
.client-badge:nth-child(6) { animation-delay: 0.3s; }
.client-badge:nth-child(7) { animation-delay: 0.35s; }
.client-badge:nth-child(8) { animation-delay: 0.4s; }
.client-badge:nth-child(9) { animation-delay: 0.45s; }
.client-badge:nth-child(10) { animation-delay: 0.5s; }

@keyframes clientFadeUp {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.client-badge:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(200,168,78,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.client-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200,168,78,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  transition: var(--transition-bounce);
  flex-shrink: 0;
}

.client-badge:hover .client-badge-icon {
  background: var(--gold-gradient);
  color: var(--primary);
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(200,168,78,0.2);
}

.client-badge-name {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
  transition: var(--transition);
}

.client-badge:hover .client-badge-name {
  color: var(--accent-light);
}

/* Client count highlight bar */
.client-count-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 14px 28px;
  background: rgba(200,168,78,0.06);
  border: 1px solid rgba(200,168,78,0.12);
  border-radius: 50px;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.client-count-bar span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.client-count-bar strong {
  color: var(--accent);
  font-size: 1.5rem;
  font-family: var(--font-display);
}

/* Responsive clients grid */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .client-badge {
    padding: 16px 10px;
  }
  
  .client-badge-name {
    font-size: 0.72rem;
  }
  
  .client-count-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 18px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
  }
  
  .testimonial-filter-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  
  .testimonial-summary-bar {
    gap: 12px;
    padding: 12px 16px;
  }
  
  .testimonial-summary-item {
    font-size: 0.78rem;
  }

  .rating-bar-label {
    width: 60px;
    font-size: 0.7rem;
  }
  
  .testimonial-header-row {
    gap: 6px;
  }
}

/* ============================================
   FEATURED REVIEW HIGHLIGHT
   ============================================ */
.featured-review {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: -20px 0 30px;
  border: 1px solid rgba(200,168,78,0.15);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(200,168,78,0.08);
}

.featured-review::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 12rem;
  position: absolute;
  top: -30px;
  left: 20px;
  color: rgba(200,168,78,0.06);
  line-height: 1;
  pointer-events: none;
}

.featured-review::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200,168,78,0.06), transparent 70%);
  pointer-events: none;
}

.featured-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-gradient);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.featured-review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.featured-review blockquote {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  max-width: 750px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 400;
}

.featured-review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.featured-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.featured-review-author div {
  text-align: left;
}

.featured-review-author strong {
  display: block;
  color: var(--accent);
  font-size: 1rem;
}

.featured-review-author span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.featured-review-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.featured-review-meta span {
  color: var(--text-muted);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0.7;
}

.featured-review-meta span i {
  color: var(--accent);
}

@media (max-width: 768px) {
  .featured-review {
    padding: 32px 20px;
  }
  .featured-review blockquote {
    font-size: 1rem;
  }
  .featured-review-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ============================================
   SATISFACTION DASHBOARD
   ============================================ */
.satisfaction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.satisfaction-card {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: var(--transition-bounce);
}

.satisfaction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,168,78,0.2);
}

.satisfaction-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  color: var(--accent);
  transition: var(--transition);
}

.satisfaction-card:hover .satisfaction-icon {
  background: var(--gold-gradient);
  color: var(--primary);
  transform: scale(1.1);
}

.satisfaction-score {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.satisfaction-stars {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.satisfaction-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 12px;
}

.satisfaction-bar {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.satisfaction-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 768px) {
  .satisfaction-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .satisfaction-card {
    padding: 20px 16px;
  }
  .satisfaction-score {
    font-size: 1.8rem;
  }
}

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