/*
Theme Name: Current Tech Solutions
Theme URI: https://currenttechsolutions.co.uk
Author: Current Tech Solutions
Author URI: https://currenttechsolutions.co.uk
Description: Custom WordPress theme for Current Tech Solutions - expert electrical services across Solihull & Birmingham.
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: current-tech
*/

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0d0d0d;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --neon-green: #39FF14;
  --neon-green-dim: #2bcc10;
  --neon-green-glow: rgba(57, 255, 20, 0.3);
  --neon-green-subtle: rgba(57, 255, 20, 0.08);
  --white: #ffffff;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border-color: rgba(57, 255, 20, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --banner-height: 30px;
  --nav-height: 70px;
  --section-padding: 100px 0;
  --container-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--neon-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--white); }

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding);
}

.text-green { color: var(--neon-green); }
.text-muted { color: var(--text-secondary); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  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);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== BACKGROUND GRID ===== */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-medium);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  border-bottom-color: var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1001;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-logo span {
  white-space: nowrap;
}

.nav-logo .logo-accent {
  color: var(--neon-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a.current-menu-item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--white);
  background: var(--neon-green-subtle);
}

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

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

.dropdown-menu a:hover {
  background: var(--neon-green-subtle);
  color: var(--white);
  padding-left: 20px;
}

.nav-cta {
  margin-left: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5.5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5.5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: calc(var(--nav-height) + var(--banner-height) + 20px) 24px 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

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

.mobile-nav a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  padding: 14px 16px;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--white);
  background: var(--neon-green-subtle);
}

.mobile-nav .mobile-dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-nav .mobile-dropdown-items {
  display: none;
  padding-left: 16px;
}

.mobile-nav .mobile-dropdown-items.open {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav .mobile-dropdown-items a {
  font-size: 0.95rem;
  padding: 10px 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  font-family: inherit;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--neon-green);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--neon-green-glow);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
}

.btn-secondary:hover {
  background: var(--neon-green);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--neon-green-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-icon {
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--banner-height));
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(57, 255, 20, 0.06), transparent),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(57, 255, 20, 0.03), transparent),
    var(--bg-primary);
}

/* Animated glow orb — top right */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.35), rgba(57, 255, 20, 0.08) 40%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
  filter: blur(40px);
}

/* Second glow orb — bottom left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.15), transparent 70%);
  animation: heroGlow2 10s ease-in-out infinite alternate;
  pointer-events: none;
  filter: blur(60px);
}

@keyframes heroGlow {
  0% { opacity: 0.4; transform: translate(0, 0) scale(1); }
  100% { opacity: 0.7; transform: translate(-60px, 60px) scale(1.3); }
}

@keyframes heroGlow2 {
  0% { opacity: 0.2; transform: translate(0, 0) scale(1); }
  100% { opacity: 0.4; transform: translate(40px, -30px) scale(1.15); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--neon-green);
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.08), inset 0 0 20px rgba(57, 255, 20, 0.04);
  letter-spacing: 0.02em;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--neon-green); }
  50% { opacity: 0.3; box-shadow: 0 0 2px var(--neon-green); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 .text-green {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #39FF14, #7fff5e, #39FF14);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
}

.hero h1 .text-green::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--neon-green), rgba(57, 255, 20, 0.4));
  opacity: 0.35;
  border-radius: 3px;
}

@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

/* Typing cursor blink */
.typing-text::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--neon-green);
  font-weight: 300;
  margin-left: 2px;
}

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

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.35), 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: btnGlow 3s ease-in-out infinite;
}

.hero-buttons .btn-primary:hover {
  animation: none;
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 25px rgba(57, 255, 20, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 0 40px rgba(57, 255, 20, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3); }
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.hero-stat h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--neon-green);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 500;
}

/* Hero Microcopy */
.hero-microcopy {
  font-size: 0.9rem;
  color: var(--neon-green);
  margin-bottom: 24px;
  margin-top: -24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}

.hero-microcopy::before {
  content: '\26A1';
  font-size: 0.85rem;
}

/* ===== HERO FORM CARD ===== */
.hero-form-card {
  position: relative;
  z-index: 1;
  background: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(57, 255, 20, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 0 40px rgba(57, 255, 20, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

/* Animated green top border glow */
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  background-size: 200% 100%;
  animation: borderSweep 3s ease-in-out infinite;
}

/* Subtle corner glow */
.hero-form-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1), transparent 70%);
  pointer-events: none;
}

@keyframes borderSweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  position: relative;
}

.hero-form-title::before {
  content: '\26A1';
  margin-right: 8px;
  color: var(--neon-green);
  filter: drop-shadow(0 0 4px rgba(57, 255, 20, 0.5));
}

.hero-form .form-group {
  margin-bottom: 14px;
}

.hero-form .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  outline: none;
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px var(--neon-green-subtle);
}

.hero-form .form-group 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='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.hero-form .form-group select option {
  background: var(--bg-card);
  color: var(--white);
}

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

.hero-form-submit {
  width: 100%;
  margin-top: 4px;
  position: relative;
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3), 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 1.05rem;
}

.hero-form-submit:hover {
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-form-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.hero-form-status {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
}

.hero-form-status.success {
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
}

.hero-form-status.error {
  background: rgba(255, 50, 50, 0.1);
  border: 1px solid #ff3232;
  color: #ff6b6b;
}

.hero-form-confidence {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 16px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.hero-trust > span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sticky-cta-text strong {
  color: var(--white);
}

.sticky-cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.sticky-cta-buttons .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--banner-height) + 80px) 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neon-green-glow), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.page-hero .breadcrumb a:hover {
  color: var(--neon-green);
}

.page-hero .breadcrumb .separator {
  color: var(--text-muted);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--neon-green-subtle);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--neon-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.service-card:hover {
  border-color: var(--border-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--neon-green-subtle);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
  background: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 20px var(--neon-green-glow);
}

.service-card:hover .service-icon svg {
  filter: brightness(0);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-card:hover .card-link {
  gap: 10px;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px;
  transition: all var(--transition-medium);
}

.feature-item:hover {
  border-color: var(--border-color);
  background: var(--bg-card-hover);
}

.feature-item .feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--neon-green);
  margin-bottom: 4px;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* ===== ABOUT / SPLIT SECTION ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.split-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.split-content .btn {
  margin-top: 16px;
}

.split-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image .placeholder-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ===== CHECK LIST ===== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--neon-green-subtle);
  border: 1px solid var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  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='%2339FF14' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  border-color: var(--border-color);
}

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

.testimonial-card blockquote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neon-green-subtle);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--neon-green);
}

.testimonial-author-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== ACCREDITATIONS ===== */
.accreditations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.accreditation-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 20px 32px;
  transition: transform var(--transition-medium);
}

.accreditation-item:hover {
  transform: translateY(-2px);
}

.accreditation-logo {
  height: 80px;
  max-width: 200px;
  object-fit: contain;
}

/* Hero trust badges with logos */
.trust-logo {
  height: 36px;
  max-width: 110px;
  object-fit: contain;
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  padding: 4px 8px;
}

/* About page accreditations */
.accreditations-about {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.accreditation-about-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  flex: 1;
  min-width: 280px;
}

.accreditation-about-logo {
  height: 80px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.accreditation-about-item h3 {
  margin-bottom: 8px;
}

.accreditation-about-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neon-green-glow), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ===== CASE STUDIES ===== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.case-study-card:hover {
  border-color: var(--border-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.case-study-image {
  height: 220px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.case-study-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(transparent, var(--bg-card));
}

.case-study-content {
  padding: 24px 28px 28px;
}

.case-study-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--neon-green-subtle);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--neon-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.case-study-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.case-study-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Case study cards as links */
a.case-study-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* ===== CASE STUDY ARCHIVE FILTER ===== */
.cs-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.cs-filter-btn {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cs-filter-btn:hover {
  border-color: var(--border-color);
  color: var(--text-primary);
}

.cs-filter-btn.active {
  background: var(--neon-green-subtle);
  border-color: var(--border-color);
  color: var(--neon-green);
  font-weight: 600;
}

/* ===== CASE STUDY SINGLE TEMPLATE ===== */
.cs-single-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.cs-single-grid.cs-single-full {
  grid-template-columns: 1fr;
  max-width: 800px;
}

.cs-featured-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border-subtle);
}

.cs-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-content-body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.cs-content-body h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.cs-content-body h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 24px 0 8px;
}

.cs-content-body p {
  margin-bottom: 16px;
}

.cs-content-body ul,
.cs-content-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.cs-content-body li {
  margin-bottom: 6px;
}

.cs-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 16px 0;
}

/* ===== CASE STUDY SIDEBAR ===== */
.cs-single-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--banner-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
}

.cs-sidebar-card h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.cs-detail-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cs-detail-row:last-child {
  border-bottom: none;
}

.cs-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  padding-top: 2px;
}

.cs-detail-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.cs-detail-value {
  display: block;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.cs-sidebar-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.cs-sidebar-cta h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cs-sidebar-cta p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ===== CASE STUDY GALLERY ===== */
.cs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.cs-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-medium);
}

.cs-gallery-item:hover {
  border-color: var(--border-color);
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== LIGHTBOX ===== */
.cs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.cs-lightbox.active {
  display: flex;
}

.cs-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.cs-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cs-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.cs-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--neon-green);
}

.cs-lightbox-prev {
  left: 20px;
}

.cs-lightbox-next {
  right: 20px;
}

.cs-lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.cs-lightbox-counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ===== CASE STUDY POST NAVIGATION ===== */
.cs-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.cs-post-nav-link {
  display: block;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cs-post-nav-link:hover {
  border-color: var(--border-color);
  transform: translateY(-2px);
}

.cs-post-nav-next {
  text-align: right;
}

.cs-post-nav-label {
  display: block;
  font-size: 0.8rem;
  color: var(--neon-green);
  margin-bottom: 4px;
  font-weight: 500;
}

.cs-post-nav-title {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* WordPress pagination styling */
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.pagination .nav-links .page-numbers:hover {
  border-color: var(--border-color);
  color: var(--text-primary);
}

.pagination .nav-links .page-numbers.current {
  background: var(--neon-green-subtle);
  border-color: var(--border-color);
  color: var(--neon-green);
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--neon-green-subtle);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px var(--neon-green-subtle);
}

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

.form-group 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='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--white);
}

/* ===== CF7 Form Overrides ===== */
.contact-form .wpcf7 input[type="text"],
.contact-form .wpcf7 input[type="email"],
.contact-form .wpcf7 input[type="tel"],
.contact-form .wpcf7 select,
.contact-form .wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  outline: none;
}

.contact-form .wpcf7 input:focus,
.contact-form .wpcf7 select:focus,
.contact-form .wpcf7 textarea:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px var(--neon-green-subtle);
}

.contact-form .wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  font-family: inherit;
  background: var(--neon-green);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--neon-green-glow);
  width: 100%;
  justify-content: center;
}

.contact-form .wpcf7 .wpcf7-submit:hover {
  background: var(--white);
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
  transform: translateY(-2px);
}

.contact-form .wpcf7-response-output {
  border-color: var(--neon-green) !important;
  color: var(--text-secondary);
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 10px;
}

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--border-color);
}

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

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--neon-green-subtle);
  border: 2px solid var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-green);
  margin: 0 auto 16px;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 24px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 16px 0 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--bg-primary);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--neon-green);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--neon-green);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-cta a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all var(--transition-medium);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-phone {
  background: var(--neon-green);
  color: var(--bg-primary);
}

.floating-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px var(--neon-green-glow);
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-green-dim));
  color: var(--bg-primary);
  text-align: center;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
}

.emergency-banner a {
  color: var(--bg-primary);
  text-decoration: underline;
}

/* ===== WP ADMIN BAR OFFSET ===== */
body.admin-bar .emergency-banner {
  top: 32px;
}

body.admin-bar .navbar {
  top: calc(var(--banner-height) + 32px);
}

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

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

  .hero {
    align-items: flex-start;
    padding-top: calc(var(--nav-height) + var(--banner-height) + 20px);
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-form-card {
    max-width: 500px;
  }

  .cs-single-grid {
    grid-template-columns: 1fr;
  }

  .cs-single-sidebar {
    position: static;
  }

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

  .sticky-cta-text {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --nav-height: 70px;
  }

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

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat h3 {
    font-size: 1.8rem;
  }

  .hero-form-card {
    padding: 24px;
  }

  .sticky-cta-buttons .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

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

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

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

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 32px;
    gap: 24px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

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

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

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

  .cs-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .cs-post-nav {
    grid-template-columns: 1fr;
  }

  .cs-post-nav-next {
    text-align: left;
  }

  .cs-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .cs-lightbox-prev {
    left: 10px;
  }

  .cs-lightbox-next {
    right: 10px;
  }
}

/* ===== INSTAGRAM REELS SLIDER ===== */
.reels-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0;
  cursor: grab;
}

.reels-slider::-webkit-scrollbar {
  display: none;
}

.reels-slider.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reel-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(57, 255, 20, 0.1);
  border-color: var(--neon-green);
}

.reel-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.reel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reel-item:hover .reel-overlay {
  opacity: 1;
}

.reel-play {
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.reel-play svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}

.reel-likes {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.reels-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.reels-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.reels-nav button:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

@media (max-width: 768px) {
  .reel-item {
    flex: 0 0 160px;
  }

  .reel-overlay {
    opacity: 1;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.5));
  }

  .reel-play {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

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

  .accreditations {
    gap: 24px;
  }

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