/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-primary: #000000;
  --bg-secondary: #050506;
  --bg-card: rgb(31 31 31 / 90%);
  /* rgba(8, 8, 10, 0.9); */
  --bg-card-hover: rgba(12, 13, 16, 0.95);

  --accent-gold: #ffb300;
  --accent-gold-dark: #d4af37;
  --accent-gold-glow: rgba(255, 179, 0, 0.25);

  --text-white: #ffffff;
  --text-silver: #ffffff;
  --text-gray: #b5babf;
  --text-muted: #737880;

  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold-light: rgba(255, 179, 0, 0.3);
  --border-focus: rgba(255, 179, 0, 0.6);

  --status-secure: #10b981;
  --status-secure-glow: rgba(16, 185, 129, 0.2);

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container-max-w: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESETS & GLOBAL STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-silver);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-gray);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #1f2128;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ==========================================================================
   REUSABLE COMPONENTS & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Gradient text utility */
.text-gradient {
  background: linear-gradient(135deg, var(--text-white) 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffe082 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(245, 166, 35, 0.03);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000000;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.25);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.btn-block {
  width: 100%;
}

/* Section Headers */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-description {
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: 56px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background: rgba(8, 8, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 70px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.logo-accent {
  color: var(--accent-gold);
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-gray);
  letter-spacing: 0.1em;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.logo-text .gold {
  color: var(--accent-gold);
}

.logo-text .muted {
  color: var(--text-muted);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  margin-left: auto;
  margin-right: 32px;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile hamburger menu toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  width: 32px;
  height: 24px;
  z-index: 1001;
}

.mobile-toggle .line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

.mobile-toggle .line-1 {
  top: 4px;
}

.mobile-toggle .line-2 {
  bottom: 4px;
}

.mobile-toggle[aria-expanded="true"] .line-1 {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .line-2 {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Navigation – Mobile */
@media (max-width: 1024px) {

  /* Show hamburger toggle */
  .mobile-toggle {
    display: flex;
  }

  /* Hide navigation menu by default */
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--bg-primary);
    position: absolute;
    top: var(--header-height);
    left: 0;
    z-index: 999;
    padding: 16px 0;
  }

  /* Show when open */
  .nav-menu.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-left: 24px;
  }

  .nav-actions {
    margin-left: auto;
    padding-right: 24px;
  }
}

/* Scroll progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  z-index: 1002;
  transition: width 0.1s ease;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
  z-index: 1;
}


/* Hero background glow */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, rgba(245, 166, 35, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.1s ease-out;
}

.hero-container {
  display: flex;
  align-items: center;
  z-index: 1;
  width: 100%;
  margin-top: 83px;
}

.hero-content {
  max-width: 720px;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.hero-subtitle {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--accent-gold);
  margin-top: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 40px;
  max-width: 670px;
  color: var(--text-white);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95);
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Hero Interactive Dashboard Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.visual-card {
  width: 100%;
  max-width: 400px;
  padding: 24px;
  border-color: var(--border-gold-light);
  transform: rotateY(-10deg) rotateX(5deg);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 166, 35, 0.05);
  transition: var(--transition-smooth);
}

.visual-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--status-secure);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--status-secure);
}

.status-dot.pulsing {
  animation: pulse-secure 2s infinite;
}

.status-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--status-secure);
}

.system-time {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-gray);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
}

.metric-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--status-secure-glow);
  color: var(--status-secure);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Radar scanning element */
.radar-container {
  position: relative;
  width: 100%;
  height: 180px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.radar-sweep {
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(245, 166, 35, 0.15) 0deg, rgba(245, 166, 35, 0) 90deg);
  border-radius: 50%;
  transform-origin: center;
  top: 0;
  left: 0;
  animation: radar-spin 4s linear infinite;
}

.radar-circle {
  position: absolute;
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-1 {
  width: 40px;
  height: 40px;
}

.circle-2 {
  width: 90px;
  height: 90px;
}

.circle-3 {
  width: 140px;
  height: 140px;
}

.radar-point {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
}

.point-1 {
  top: 30%;
  left: 40%;
  animation: pulse-point 2.5s infinite;
}

.point-2 {
  top: 60%;
  left: 70%;
  animation: pulse-point 3s infinite 0.5s;
}

.point-3 {
  top: 75%;
  left: 25%;
  animation: pulse-point 2s infinite 1s;
}

.visual-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.stat-box-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-box-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

/* ==========================================================================
   STATISTICS GRID
   ========================================================================== */
.stats-section {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.01);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stats-grid .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-light);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-gray);
}

/* ==========================================================================
   SERVICES (BENTO GRID)
   ========================================================================== */
.services-section {
  padding: 100px 0;
}

.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 166, 35, 0.05);
}

.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 120%, rgba(245, 166, 35, 0.08) 0%, rgba(245, 166, 35, 0) 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.bento-card:hover::after {
  opacity: 1;
}

/* Grid Span modifications */
.span-2-col {
  grid-column: span 2;
}

.span-2-row {
  grid-row: span 2;
}

.bento-card-content {
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-card-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bento-card-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 12px;
}

.bento-card-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  max-width: 500px;
}

.bento-list {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.bento-list li {
  font-size: 0.9rem;
  color: var(--text-silver);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-list li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: bold;
}

.bento-card-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  gap: 6px;
  transition: var(--transition-fast);
}

.bento-card-link:hover,
.bento-card:hover .bento-card-link {
  color: var(--text-white);
  gap: 12px;
}

/* Featured Large card decoration */
#service-executive {
  justify-content: space-between;
  background: linear-gradient(to top, rgba(15, 16, 19, 0.98) 35%, rgba(15, 16, 19, 0.5) 100%), url('vip_escort.png') no-repeat center center / cover;
}

#service-executive .bento-card-content {
  justify-content: flex-end;
}

#service-surveillance {
  background: linear-gradient(to top, rgba(15, 16, 19, 0.98) 40%, rgba(15, 16, 19, 0.4) 100%), url('surveillance.png') no-repeat center center / cover;
}

.bento-card-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, rgba(245, 166, 35, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.visual-executive {
  position: absolute;
  right: 5%;
  top: 15%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 80%);
  border: 1px dashed rgba(245, 166, 35, 0.2);
  border-radius: 50%;
  animation: radar-spin 10s linear infinite;
  z-index: 1;
}

.visual-executive::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold);
  border-radius: 50%;
  top: 20%;
  left: 20%;
}

/* ==========================================================================
   EXPERTISE & VETTING
   ========================================================================== */
.expertise-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  background: radial-gradient(circle at 10% 50%, rgba(245, 166, 35, 0.02) 0%, rgba(0, 0, 0, 0) 50%);
}

.expertise-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.skills-meters {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.meter-group {
  display: flex;
  flex-direction: column;
}

.meter-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.meter-label {
  font-size: 0.95rem;
  color: var(--text-white);
}

.meter-percent {
  color: var(--accent-gold);
  font-weight: 600;
}

.meter-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.meter-fill.animated {
  transform: scaleX(1);
}

/* Right-side Feature card */
.feature-card {
  padding: 40px;
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h5 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.9rem;
}

/* ==========================================================================
   DEPLOYMENT PROCESS
   ========================================================================== */
.process-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-light) 0%, rgba(245, 166, 35, 0.2) 50%, var(--border-light) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: var(--bg-primary);
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  transition: var(--transition-smooth);
}

.process-step:hover .step-num {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px var(--accent-gold-glow);
  transform: scale(1.05);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-light);
}

.testimonial-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.4;
  color: var(--text-white);
  margin-bottom: 32px;
  font-weight: 500;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.author-company {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  color: var(--text-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dots .dot.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.faq-intro {
  padding-right: 24px;
}

.faq-description {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.accordion-item:hover {
  border-color: var(--border-gold-light);
  background: rgba(255, 255, 255, 0.02);
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-white);
}

.accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-gray);
  transition: transform 0.3s ease;
}

/* Horizontal line */
.accordion-icon::before {
  width: 100%;
  height: 2px;
}

/* Vertical line */
.accordion-icon::after {
  width: 2px;
  height: 100%;
}

.accordion-item.active {
  border-color: var(--border-gold-light);
}

.accordion-item.active .accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-item.active .accordion-icon::before {
  transform: rotate(90deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-panel p {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-gray);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.02) 0%, rgba(0, 0, 0, 0) 50%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
}

.contact-info-panel {
  padding: 48px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-panel-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-panel-text {
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.detail-item {
  display: flex;
  gap: 16px;
}

.detail-icon {
  font-size: 1.2rem;
  color: var(--accent-gold);
}

.detail-text {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

.detail-text strong {
  color: var(--text-white);
  margin-bottom: 2px;
}

.detail-text span {
  color: var(--text-gray);
}

.contact-form-panel {
  padding: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-white);
  transition: var(--transition-fast);
  outline: none;
}

.form-group select option {
  background-color: var(--bg-secondary);
  color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

/* Checkbox group styling */
.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--accent-gold);
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
  cursor: pointer;
}

.form-feedback {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-top: 10px;
  display: none;
}

.form-feedback.success {
  color: var(--status-secure);
  display: block;
}

.form-feedback.error {
  color: #ef4444;
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: #040405;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col ul a {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.footer-links-col ul a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-legal-text {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.license-badge {
  display: inline-block;
  border: 1px solid var(--border-gold-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--accent-gold);
  background: rgba(245, 166, 35, 0.03);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 30px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ANIMATIONS KEYFRAMES
   ========================================================================== */
@keyframes pulse-secure {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes radar-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-point {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 15px var(--accent-gold);
  }
}

/* Scroll reveal helper classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Tablet (Laptops & iPads) */
@media (max-width: 1024px) {
  .hero-container {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    transform: none;
  }

  .visual-card {
    transform: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stats-grid .stat-item:not(:last-child)::after {
    display: none;
  }

  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .span-2-col {
    grid-column: span 2;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section-title {
    margin-bottom: 12px;
  }

  .section-description {
    margin-bottom: 40px;
  }

  /* Mobile navigation overlay */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    padding: 40px 24px;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 32px;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
    /* Hide on small mobile nav bar, keep inside contact */
  }

  .services-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .span-2-col {
    grid-column: span 1;
  }

  .span-2-row {
    grid-row: span 1;
  }

  .bento-card {
    min-height: 280px;
  }

  .bento-list {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .step-num {
    margin-bottom: 16px;
  }

  .contact-info-panel {
    padding: 32px 24px;
  }

  .contact-form-panel {
    padding: 32px 24px;
  }

  .form-row.grid-2-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ==========================================================================
   ADDED SECTIONS & IMAGE INTEGRATIONS
   ========================================================================== */
.enquiry-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-light);
}

.enquiry-bullets {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enquiry-bullets li {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 500;
}

/* About Us Section Visual Image */
.about-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-light);
  height: 380px;
}

.about-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-featured-img {
  transform: scale(1.03);
}

.about-image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 24px;
  background: rgba(18, 19, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid var(--border-gold-light);
}

.about-image-overlay h4 {
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.about-image-overlay p {
  font-size: 0.85rem;
  color: var(--text-silver);
  line-height: 1.5;
}

.dispatch-specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.dispatch-specs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border-light);
}

.dispatch-specs li:last-child {
  border-bottom: none;
}

.dispatch-specs li strong {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.dispatch-specs li span {
  color: var(--text-gray);
}

/* ==========================================================================
   RESTOCKED SECTIONS & GALLERY STYLING
   ========================================================================== */
.enquiry-section .contact-wrapper {
  grid-template-columns: 1.2fr 0.8fr;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.why-choose-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-choose-list .icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.05);
}

.why-choose-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.why-choose-list p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-gray);
}

/* Combined Section: About & Services */
.about-services-section {
  border-top: 1px solid var(--border-light);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-services-section .expertise-section {
  padding-bottom: 40px;
}

.about-services-section .services-section {
  padding-top: 40px;
  border-top: 1px dashed var(--border-light);
}

/* Photo Gallery Section */
.gallery-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(7, 7, 9, 0.95) 40%, rgba(7, 7, 9, 0) 100%);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 4px;
  display: block;
}

.gallery-title {
  font-size: 1.15rem;
  color: var(--text-white);
  font-family: var(--font-heading);
}

/* Gallery Hover Interactions */
.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 166, 35, 0.05);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Google Maps Iframe Container */
.map-container {
  height: 100%;
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.map-iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(1) invert(0.9) contrast(1.2) sepia(0.15) hue-rotate(330deg);
  transition: var(--transition-smooth);
}

.map-container:hover .map-iframe {
  filter: grayscale(0.2) invert(0) contrast(1) sepia(0);
}

/* Contact CTA Wrapper */
.contact-cta-wrapper {
  margin-top: 32px;
}

/* Footer Compliance & Social Icons */
.footer-contact-info li {
  line-height: 1.6;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.footer-contact-info li strong {
  color: var(--accent-gold);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-gold-glow);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
}

/* ==========================================================================
   NEW STRUCTURAL LAYOUTS & INTERACTIVE COMPONENT HOVERS
   ========================================================================== */

/* Enquiry Form + Why Choose Us Grid */
.enquiry-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
}

.why-choose-list li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.why-choose-list li:hover {
  border-color: var(--accent-gold);
  background: rgba(245, 166, 35, 0.02);
  transform: translateX(4px);
}

/* Services Mini-Card Items */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.services-list-grid>div {
  transition: var(--transition-fast);
}

.services-list-grid>div:hover {
  border-color: var(--accent-gold);
  background: rgba(245, 166, 35, 0.03);
  transform: translateY(-2px);
}

/* Scope of Duties Grid Items */
.duty-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  padding: 20px 10px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.duty-item:hover {
  border-color: var(--accent-gold);
  background: rgba(245, 166, 35, 0.02);
  transform: translateY(-3px);
}

/* B2B Core Values Grid Items */
.values-grid>div {
  transition: var(--transition-fast);
}

.values-grid>div:hover {
  border-color: var(--accent-gold);
  background: rgba(245, 166, 35, 0.02);
  transform: translateY(-3px);
}

/* Contact Blocks Grid Items */
.contact-blocks-grid>div {
  transition: var(--transition-fast);
}

.contact-blocks-grid>div:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
  .logo-text {
    font-size: 1.2rem;
  }

  .enquiry-wrapper {
    grid-template-columns: 1fr;
  }

  .enquiry-section .contact-form-panel {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
  }

  .services-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  .contact-blocks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .duties-horizontal-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px;
  }

  .map-container {
    min-height: 300px;
  }

  #training-split-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .logo-text {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .duties-horizontal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .training-list-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Enquiry Form responsive layout */
  .enquiry-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
  }

  .contact-info-panel {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }



  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .duties-horizontal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .training-list-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Small Mobiles */
@media (max-width: 425px) {

  /* Reduce padding on panels */
  .contact-form-panel,
  .contact-info-panel {
    padding: 16px;
  }

  /* Stack any two‑column grids */
  .grid-2-col {
    grid-template-columns: 1fr !important;
  }

  /* Ensure inputs and textarea take full width */
  .contact-form .form-group input,
  .contact-form .form-group textarea,
  .contact-form .form-group select {
    width: 100% !important;
    box-sizing: border-box;
  }

  /* Buttons full width */
  .contact-form .btn-block {
    width: 100% !important;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .duties-horizontal-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Ensure link has no underline */
.whatsapp-float {
  text-decoration: none;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   INTERACTIVE VIDEO SECTION
   ========================================================================== */
.video-placeholder {
  cursor: pointer;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-placeholder:hover {
  border-color: var(--accent-gold-dark) !important;
  box-shadow: 0 20px 40px rgba(255, 179, 0, 0.15) !important;
  transform: translateY(-2px);
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  background: var(--accent-gold) !important;
  box-shadow: 0 0 25px rgba(255, 179, 0, 0.4) !important;
}

.video-placeholder:hover .play-button i {
  color: var(--bg-primary) !important;
}