/* ===== ALY Ventures Group — Premium Corporate Design System ===== */

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

/* ---------- Custom Properties ---------- */
:root {
  /* Brand Colors — Navy & Gold palette */
  --navy-950: #0a0e1a;
  --navy-900: #0f1629;
  --navy-800: #151d3a;
  --navy-700: #1b264c;
  --navy-600: #243368;
  --navy-500: #2e4185;
  --gold-500: #c9a84c;
  --gold-400: #d4b85e;
  --gold-300: #e0c976;
  --gold-200: #ebd98f;
  --gold-100: #f5e9b3;

  /* Semantic Colors */
  --bg-primary: var(--navy-950);
  --bg-secondary: var(--navy-900);
  --bg-card: rgba(21, 29, 58, 0.6);
  --bg-card-hover: rgba(27, 38, 76, 0.8);
  --text-primary: #f0f2f8;
  --text-secondary: #a8b1c8;
  --text-muted: #6b7694;
  --accent: var(--gold-500);
  --accent-light: var(--gold-300);
  --accent-glow: rgba(201, 168, 76, 0.25);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold-500), var(--gold-300), var(--gold-500));
  --gradient-hero: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
  --gradient-section: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  --gradient-card: linear-gradient(160deg, rgba(201, 168, 76, 0.08) 0%, rgba(21, 29, 58, 0.4) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Borders */
  --border-subtle: 1px solid rgba(201, 168, 76, 0.12);
  --border-glow: 1px solid rgba(201, 168, 76, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- Lucide Icons Base ---------- */
[data-lucide] {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
  display: inline-block;
}

svg[data-lucide] {
  width: 1em;
  height: 1em;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--wide {
  max-width: var(--container-wide);
}

.section-label {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

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

/* ---------- Scroll-Driven Reveal Animations ---------- */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-scale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }
.stagger-5 { transition-delay: 500ms; }
.stagger-6 { transition-delay: 600ms; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: var(--border-subtle);
  padding: 0.65rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.3);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.nav-logo-text span {
  color: var(--accent);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-out);
}

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

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

.nav-cta {
  background: var(--gradient-gold);
  color: var(--navy-950) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: transform var(--duration-fast) var(--ease-spring),
              box-shadow var(--duration-fast) var(--ease-out) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding);
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Hero background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(1px);
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-950) 45%, transparent 100%);
}

/* Hero two-column layout */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image-col {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(201, 168, 76, 0.1);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s var(--ease-out);
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 14, 26, 0.5) 100%);
  pointer-events: none;
}

/* Decorative border glow on hero image */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(160deg, var(--gold-500), transparent 50%, var(--gold-500));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  z-index: 1;
  opacity: 0.5;
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Radial glow */
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 65, 133, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 12s infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: translateY(80vh) scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(0.5);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-image-col {
    display: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-services span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.75rem 2rem;
  margin-bottom: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.hero-feature .check-icon {
  width: 22px;
  height: 22px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hero-feature .check-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--duration-normal) var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

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

.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy-950);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 1.1rem;
  display: inline-flex;
  transition: transform var(--duration-fast) var(--ease-spring);
}

.btn-icon svg {
  width: 16px;
  height: 16px;
}

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

/* Inline icons in buttons */
.btn > svg,
.btn > i {
  flex-shrink: 0;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--section-padding) 0;
  background: var(--gradient-section);
  position: relative;
}

.about-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

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

.about-visual {
  position: relative;
}

.about-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.about-card-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.about-team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 6s var(--ease-out), opacity var(--duration-normal) var(--ease-out);
}

.about-card-bg:hover .about-team-image {
  transform: scale(1.05);
  opacity: 1;
}

.about-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 14, 26, 0.6) 100%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.about-logo-display {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
  z-index: 3;
}

.about-logo-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stat cards wrapper — invisible on desktop, grid on mobile */
.about-stats-row {
  position: static;
}

/* Floating stat cards */
.about-stat {
  position: absolute;
  background: rgba(15, 22, 41, 0.9);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(16px);
  animation: float 6s ease-in-out infinite;
}

.about-stat:nth-child(1) {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.about-stat:nth-child(2) {
  bottom: 15%;
  left: -8%;
  animation-delay: 2s;
}

.about-stat:nth-child(3) {
  bottom: 5%;
  right: 5%;
  animation-delay: 4s;
}

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

.about-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gradient-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.about-highlight:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateX(6px);
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.about-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.about-highlight-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.about-highlight-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

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

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  padding: 0;
  background: var(--gradient-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: 2;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

/* Service card image */
.service-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
  filter: brightness(0.7) saturate(0.9);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1);
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--navy-900) 100%);
  pointer-events: none;
}

.service-card-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .service-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.4);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.15);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link .arrow {
  transition: transform var(--duration-fast) var(--ease-spring);
}

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

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: var(--section-padding) 0;
  background: var(--gradient-section);
  position: relative;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-us-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--gradient-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.why-us-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.why-us-check {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: all var(--duration-normal) var(--ease-out);
}

.why-us-check svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.why-us-item:hover .why-us-check {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--accent);
  transform: scale(1.1);
}

.why-us-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Visual side with metrics */
.why-us-visual {
  position: relative;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.metric-card {
  padding: 2rem;
  background: var(--gradient-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.metric-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.cta-box {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem);
  border: var(--border-glow);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 14, 26, 0.85) 0%, rgba(21, 29, 58, 0.75) 50%, rgba(10, 14, 26, 0.9) 100%);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.cta-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cta-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.cta-contact-icon svg {
  width: 16px;
  height: 16px;
}

.cta-contact-item a {
  color: var(--accent);
  font-weight: 500;
  transition: color var(--duration-fast);
}

.cta-contact-item a:hover {
  color: var(--accent-light);
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  background: var(--navy-950);
  border-top: var(--border-subtle);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== COUNTER ANIMATION ===== */
.counter {
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .why-us-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    order: -1;
    max-width: 100%;
    margin: 0 auto;
  }

  .about-card-stack {
    aspect-ratio: 16 / 9;
  }

  .about-stat:nth-child(1) {
    top: 8%;
    right: 2%;
  }

  .about-stat:nth-child(2) {
    bottom: 12%;
    left: 2%;
  }

  .about-stat:nth-child(3) {
    bottom: 2%;
    right: 2%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--duration-normal) var(--ease-out);
    border-left: var(--border-subtle);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

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

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

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

  /* About section mobile fix */
  .about-card-stack {
    aspect-ratio: auto;
  }

  .about-card-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    border-radius: var(--radius-lg);
  }

  .about-logo-display {
    display: none;
  }

  .about-stat {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    animation: none;
    text-align: center;
  }

  .about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .about-highlight {
    padding: 0.85rem 1rem;
  }

  .about-highlight-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-contact {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-services {
    gap: 0.4rem;
  }

  .hero-services span {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }

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

  .about-stat {
    padding: 0.75rem 1rem;
  }

  .about-stat-value {
    font-size: 1.35rem;
  }

  .about-stat-label {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: clamp(1.65rem, 5vw, 2.5rem);
  }

  .about-text h3 {
    font-size: 0.95rem;
  }
}

/* ===== Smooth scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, 0.5);
}
