/* ============================================================
   GARUD SECURITY SERVICES — DESIGN SYSTEM
   Premium black/gold/cream palette · Oswald + Inter typography
   ============================================================ */

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

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --black: #0B0B0B;
  --dark: #161616;
  --dark-elevated: #1E1E1E;
  --dark-subtle: #252525;
  --gold: #D4A017;
  --gold-light: #F0B429;
  --gold-pale: #F5D880;
  --gold-dark: #A67C00;
  --cream: #F5F1E8;
  --cream-dark: #E8E0D0;
  --red: #B3121B;
  --red-glow: #D4232E;
  --white: #FFFFFF;
  --text-light: #C8C4BC;
  --text-muted: #8A867E;

  /* Gold Gradients */
  --gradient-gold: linear-gradient(135deg, #D4A017 0%, #F0B429 50%, #D4A017 100%);
  --gradient-gold-hover: linear-gradient(135deg, #F0B429 0%, #F5D880 50%, #F0B429 100%);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(240, 180, 41, 0.08) 100%);
  --gradient-dark: linear-gradient(180deg, #0B0B0B 0%, #161616 40%, #1a1812 100%);
  --gradient-dark-warm: linear-gradient(170deg, #0f0e0a 0%, #161616 50%, #13110d 100%);

  /* Typography */
  --font-display: 'Oswald', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.25rem;
  --text-5xl: 4rem;
  --text-hero: 5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-4xl: 10rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(212, 160, 23, 0.2);

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1440px;
  --header-height: 80px;
  --header-height-shrunk: 64px;
}

/* ============================================================
   2. BASE RESET & GLOBALS
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out-quart);
}

a:hover {
  color: var(--gold-light);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  font-size: var(--text-hero);
  letter-spacing: -0.01em;
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-md);
}

p {
  font-size: var(--text-md);
  color: var(--text-light);
  line-height: 1.8;
  max-width: 720px;
}

.kicker {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-sm);
}

.kicker::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
  flex-shrink: 0;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 640px;
  margin-top: var(--space-sm);
}

/* Gold text accent */
.text-gold {
  color: var(--gold);
}

.text-cream {
  color: var(--cream);
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

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

.section--cream {
  background: var(--cream);
}

.section--cream h2,
.section--cream h3,
.section--cream h4,
.section--cream h5 {
  color: var(--black);
}

.section--cream p,
.section--cream .section-subtitle {
  color: #4a4640;
}

.section--cream .kicker {
  color: var(--gold-dark);
}

.section--cream .kicker::before {
  background: var(--gold-dark);
}

/* Dark section subtle background grain texture */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section--dark>* {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .kicker {
  justify-content: center;
}

.section-header .kicker::before {
  display: none;
}

.section-header .kicker::after {
  display: none;
}

.section-header p {
  margin: var(--space-sm) auto 0;
}

/* Gold divider */
.gold-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  margin: var(--space-md) auto;
  border: none;
}

/* ============================================================
   4b. TOP BAR (Phone Numbers)
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--dark);
  border-bottom: 1px solid rgba(212, 160, 23, 0.12);
  transition: transform 0.3s var(--ease-out-expo);
}

.top-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.top-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.top-bar__phone:hover {
  color: var(--gold-light);
}

.top-bar__phone svg {
  flex-shrink: 0;
}

.top-bar__divider {
  color: rgba(212, 160, 23, 0.3);
  font-size: 0.75rem;
  margin: 0 4px;
}

/* ============================================================
   5. HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  transition: all 0.4s var(--ease-out-expo);
}

.header.scrolled {
  height: var(--header-height-shrunk);
  background: rgba(11, 11, 11, 0.98);
  border-bottom-color: rgba(212, 160, 23, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header__logo img {
  height: 54px;
  width: auto;
  transition: height 0.4s var(--ease-out-expo);
}

.header.scrolled .header__logo img {
  height: 42px;
}

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

.header__logo-text span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.header__logo-text span:last-child {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  padding: 8px 18px;
  position: relative;
  transition: color 0.3s var(--ease-out-quart);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--gold);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 60%;
}

.header__cta {
  margin-left: 24px;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 11, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  padding: 12px 24px;
  transition: color 0.3s var(--ease-out-quart);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      transparent 30%,
      rgba(255, 255, 255, 0.15) 45%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.15) 55%,
      transparent 70%,
      transparent 100%);
  transition: left 0.7s var(--ease-out-expo);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
}

.btn--gold:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.45);
}

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

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.3);
}

.btn--dark {
  background: var(--dark);
  color: var(--gold);
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.btn--dark:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 20px 48px;
  font-size: var(--text-base);
}

/* ============================================================
   7. HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  margin-top: calc(var(--header-height) + 33px);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
  z-index: 0;
}

.hero__slide.active {
  opacity: 1;
  z-index: 1;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s linear;
}

.hero__slide.active .hero__slide-bg {
  transform: scale(1.08);
}

/* Consistent duotone overlay for all hero images */
.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 11, 11, 0.6) 0%,
      rgba(11, 11, 11, 0.3) 30%,
      rgba(11, 11, 11, 0.4) 60%,
      rgba(11, 11, 11, 0.85) 100%),
    linear-gradient(135deg,
      rgba(212, 160, 23, 0.08) 0%,
      transparent 50%);
  z-index: 1;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  z-index: 2;
}

.hero__kicker {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out-expo) 0.3s;
}

.hero__slide.active .hero__kicker {
  opacity: 1;
  transform: translateY(0);
}

.hero__kicker::before {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, var(--text-hero));
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 800px;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo) 0.5s;
}

.hero__slide.active .hero__title {
  opacity: 1;
  transform: translateY(0);
}

.hero__title .highlight {
  color: var(--gold);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo) 0.7s;
}

.hero__slide.active .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo) 0.9s;
}

.hero__slide.active .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Dots Navigation */
.hero__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  padding: 0;
}

.hero__dot.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.5);
  transform: scale(1.2);
}

/* Scroll Cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  animation: scrollBounce 2s var(--ease-in-out) infinite;
}

.hero__scroll-cue svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

@keyframes scrollBounce {

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

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

/* ============================================================
   8. TRUST BADGE STRIP
   ============================================================ */
.trust-strip {
  background: var(--dark);
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 2;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 36px;
  position: relative;
}

.trust-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

.trust-badge__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-badge__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.trust-badge__text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
}

/* ============================================================
   9. CARDS
   ============================================================ */
.card {
  background: var(--dark-elevated);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), transparent 50%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.25);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: all 0.5s var(--ease-out-expo);
}

.card:hover .card__icon {
  background: rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.1);
}

.card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  text-transform: none;
  letter-spacing: 0;
}

.card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Cream section cards */
.section--cream .card {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.06);
}

.section--cream .card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 160, 23, 0.2);
  border-color: rgba(212, 160, 23, 0.3);
}

.section--cream .card__title {
  color: var(--black);
}

.section--cream .card__text {
  color: #6a6560;
}

/* ============================================================
   10. GRID LAYOUTS
   ============================================================ */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

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

.grid--services {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid--industries {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.grid--guards {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.grid--gallery {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

/* ============================================================
   11. STATS COUNTER
   ============================================================ */
.stats {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--gradient-dark-warm);
  overflow: hidden;
}

/* Diagonal lines pattern behind stats */
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 20px,
      rgba(212, 160, 23, 0.03) 20px,
      rgba(212, 160, 23, 0.03) 21px);
  pointer-events: none;
}

/* Faint eagle watermark */
.stats::after {
  content: '🦅';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 300px;
  opacity: 0.02;
  pointer-events: none;
  filter: grayscale(1);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: var(--space-lg);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.2);
}

.stat__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.stat__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 4px;
  font-style: italic;
}

/* ============================================================
   12. PROCESS STRIP (How We Work)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  z-index: 0;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-sm);
  position: relative;
  z-index: 1;
}

.process__number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-md);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.15);
}

.process__title {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.process__text {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================================
   13. FAQ ACCORDION
   ============================================================ */
.faq__item {
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.3s var(--ease-out-quart);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  stroke-width: 2;
  transition: transform 0.4s var(--ease-out-expo);
}

.faq__item.open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq__item.open .faq__icon svg {
  stroke: var(--black);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.faq__answer p {
  font-size: var(--text-base);
  color: var(--text-muted);
}

/* ============================================================
   14. AREAS / LOCATION CHIPS
   ============================================================ */
.areas__region {
  margin-bottom: var(--space-lg);
}

.areas__region-title {
  font-size: var(--text-lg);
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.areas__region-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}

.areas__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-chip {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 18px;
  background: var(--dark-elevated);
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-quart);
}

.area-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}

/* Cream section chips */
.section--cream .area-chip {
  background: var(--cream-dark);
  border-color: rgba(0, 0, 0, 0.08);
  color: #4a4640;
}

.section--cream .area-chip:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: rgba(212, 160, 23, 0.08);
}

/* ============================================================
   15. FORMS
   ============================================================ */
.form {
  display: grid;
  gap: var(--space-md);
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.form__input,
.form__select,
.form__textarea {
  padding: 14px 18px;
  background: var(--dark-elevated);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-size: var(--text-base);
  transition: all 0.3s var(--ease-out-quart);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4A017' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__error {
  font-size: var(--text-xs);
  color: var(--red);
  display: none;
}

.form__group.error .form__input,
.form__group.error .form__textarea {
  border-color: var(--red);
}

.form__group.error .form__error {
  display: block;
}

/* Cream section forms */
.section--cream .form__input,
.section--cream .form__select,
.section--cream .form__textarea {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--black);
}

.section--cream .form__label {
  color: #4a4640;
}

/* File upload */
.form__file {
  padding: 24px;
  background: var(--dark-elevated);
  border: 2px dashed rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-quart);
}

.form__file:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.05);
}

.form__file input {
  display: none;
}

.form__file-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.form__file-label strong {
  color: var(--gold);
}

/* ============================================================
   16. GUARD GALLERY CARDS
   ============================================================ */
.guard-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(212, 160, 23, 0.1);
  transition: all 0.5s var(--ease-out-expo);
}

.guard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 160, 23, 0.2);
  border-color: rgba(212, 160, 23, 0.3);
}

.guard-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Consistent duotone overlay on guard photos */
.guard-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 40%,
      rgba(11, 11, 11, 0.7) 70%,
      rgba(11, 11, 11, 0.95) 100%),
    linear-gradient(135deg,
      rgba(212, 160, 23, 0.06) 0%,
      transparent 60%);
  transition: all 0.5s var(--ease-out-expo);
}

.guard-card:hover .guard-card__overlay {
  background:
    linear-gradient(180deg,
      transparent 30%,
      rgba(11, 11, 11, 0.6) 60%,
      rgba(11, 11, 11, 0.9) 100%),
    linear-gradient(135deg,
      rgba(212, 160, 23, 0.1) 0%,
      transparent 60%);
}

.guard-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  z-index: 2;
}

.guard-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guard-card__role {
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   17. PLACEHOLDER IMAGE SYSTEM
   ============================================================ */
.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  /* Same duotone treatment as real images */
  background:
    linear-gradient(135deg,
      rgba(212, 160, 23, 0.06) 0%,
      rgba(11, 11, 11, 0.95) 40%,
      rgba(22, 22, 22, 0.98) 100%);
  border: 1px solid rgba(212, 160, 23, 0.12);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal line pattern */
.placeholder-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 12px,
      rgba(212, 160, 23, 0.04) 12px,
      rgba(212, 160, 23, 0.04) 13px);
  pointer-events: none;
}

.placeholder-image__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 50%;
  opacity: 0.5;
}

.placeholder-image__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.placeholder-image__text {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.4;
}

/* Hero placeholder variant */
.hero__slide .placeholder-image {
  border: none;
  border-radius: 0;
}

/* Guard card placeholder */
.guard-card .placeholder-image {
  border-radius: var(--radius-lg);
  border: none;
}

/* Gallery placeholder */
.gallery-item .placeholder-image {
  min-height: 250px;
  border-radius: var(--radius-md);
}

/* ============================================================
   18. CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--gradient-dark-warm);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-banner__content h2 {
  margin-bottom: var(--space-md);
}

.cta-banner__contacts {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-contact__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-contact__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.cta-contact__details {
  display: flex;
  flex-direction: column;
}

.cta-contact__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-contact__value {
  font-size: var(--text-md);
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__main {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.footer__logo img {
  height: 56px;
  width: auto;
}

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

.footer__logo-text span:first-child {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.footer__logo-text span:last-child {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__marathi {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__govt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out-quart);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-expo);
}

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

.footer__links a:hover::before {
  width: 12px;
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer__contact-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__contact-text a {
  color: var(--text-light);
}

.footer__contact-text a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__domain {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

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

/* ============================================================
   20. FLOATING CTA BUTTONS (Mobile)
   ============================================================ */
.floating-ctas {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out-expo);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn--call {
  background: var(--gold);
}

.floating-btn--call svg {
  width: 24px;
  height: 24px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
}

.floating-btn--whatsapp {
  background: #25D366;
}

.floating-btn--whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ============================================================
   21. PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-top: calc(var(--header-height) + 33px);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 11, 11, 0.7) 0%,
      rgba(11, 11, 11, 0.85) 60%,
      rgba(11, 11, 11, 0.95) 100%),
    linear-gradient(135deg,
      rgba(212, 160, 23, 0.06) 0%,
      transparent 50%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  width: 100%;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.page-hero__breadcrumb a {
  color: var(--text-muted);
}

.page-hero__breadcrumb a:hover {
  color: var(--gold);
}

.page-hero__breadcrumb span {
  color: var(--gold);
}

/* ============================================================
   22. ABOUT PAGE — Founder Block
   ============================================================ */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: center;
}

.founder-block__image-wrapper {
  position: relative;
}

.founder-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 160, 23, 0.2);
  box-shadow: var(--shadow-lg);
}

.founder-block__image img {
  width: 100%;
  height: auto;
  display: block;
  /* Consistent duotone: slight gold warmth */
  filter: contrast(1.05) saturate(0.9);
}

/* Gold corner accent */
.founder-block__image::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 80px;
  height: 80px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) 0;
}

.founder-block__quote {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
}

.founder-block__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-block__title {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================================
   23. SERVICE DETAIL BLOCKS
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.08);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even)>* {
  direction: ltr;
}

.service-detail__content {
  padding: var(--space-md) 0;
}

.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.12);
  aspect-ratio: 4/3;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}

/* ============================================================
   24. GALLERY PAGE
   ============================================================ */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 160, 23, 0.08);
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 160, 23, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
  filter: contrast(1.05) saturate(0.9);
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 11, 0.8) 100%),
    linear-gradient(135deg, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-quart);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   25. MISSION/VISION/VALUES CARDS
   ============================================================ */
.mvv-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--dark-elevated);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-out-expo);
}

.mvv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.25);
  box-shadow: var(--shadow-gold);
}

.mvv-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 50%;
}

.mvv-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.mvv-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.mvv-card__text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ============================================================
   26. TRAINING PAGE
   ============================================================ */
.training-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.08);
}

.training-step__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: rgba(212, 160, 23, 0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.training-step__content h3 {
  margin-bottom: var(--space-xs);
  text-transform: none;
}

.training-step__content p {
  color: var(--text-muted);
}

/* ============================================================
   27. CAREERS PAGE
   ============================================================ */
.position-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--dark-elevated);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
}

.position-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-gold);
}

.position-card__info h4 {
  text-transform: none;
  margin-bottom: 4px;
}

.position-card__info p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================================
   28. CONTACT PAGE — Map
   ============================================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.15);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) contrast(1.1);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--dark-elevated);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
}

.contact-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-gold);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   29. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

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

.animate-on-scroll[data-delay="100"] {
  transition-delay: 0.1s;
}

.animate-on-scroll[data-delay="200"] {
  transition-delay: 0.2s;
}

.animate-on-scroll[data-delay="300"] {
  transition-delay: 0.3s;
}

.animate-on-scroll[data-delay="400"] {
  transition-delay: 0.4s;
}

.animate-on-scroll[data-delay="500"] {
  transition-delay: 0.5s;
}

.animate-on-scroll[data-delay="600"] {
  transition-delay: 0.6s;
}

.animate-on-scroll[data-delay="700"] {
  transition-delay: 0.7s;
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo);
}

.animate-fade-in.animated {
  opacity: 1;
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-out-expo);
}

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

/* ============================================================
   30. RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --text-hero: 3.5rem;
    --text-5xl: 3rem;
    --text-4xl: 2.5rem;
    --text-3xl: 2rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
  }

  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

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

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

  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .process::before {
    display: none;
  }

  .founder-block {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .cta-banner__inner {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --text-hero: 2.5rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2rem;
    --space-lg: 1.5rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero {
    min-height: 600px;
  }

  .hero__content {
    padding: 0 var(--space-sm);
  }

  .trust-strip__inner {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .trust-badge::after {
    display: none;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--6 {
    grid-template-columns: 1fr;
  }

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

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

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

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .process {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .floating-ctas {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .page-hero {
    min-height: 300px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --text-hero: 2rem;
  }

  .grid--industries,
  .grid--guards,
  .grid--gallery {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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