/*
Theme Name: LocalSEOSavvy
Theme URI: https://localseosavvy.com
Author: LocalSEOSavvy
Description: Professional Local SEO Agency Theme — 3D Animated, UK Market, Elementor Ready
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: localseosavvy
Tags: local-seo, agency, elementor, business, responsive
*/

/* ============================================
   CSS VARIABLES — DESIGN SYSTEM
   ============================================ */
:root {
  --navy    : #002147;
  --blue    : #007BFF;
  --orange  : #FF8C00;
  --white   : #FFFFFF;
  --light   : #F4F7FC;
  --dark    : #1A1A2E;
  --grey    : #6B7280;
  --success : #10B981;
  --shadow-sm : 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg : 0 12px 40px rgba(0,0,0,0.15);
  --radius  : 12px;
  --transition: all 0.3s ease;
}

/* ============================================
   RESET + BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
h4 { font-size: 20px; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--dark); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
@media (max-width: 768px) { .section-pad { padding: 55px 0; } }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 620px; margin: 16px auto 0; color: var(--grey); font-size: 18px; }

.section-badge {
  display: inline-block;
  background: rgba(0,123,255,0.1);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #e67d00;
  border-color: #e67d00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,140,0,0.4);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px;
}

/* ============================================
   HEADER — FIXED TOP
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  transition: box-shadow 0.3s ease;
  height: 72px;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

/* --- Logo --- */
.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.site-logo__pin { color: var(--orange); font-size: 20px; }
.site-logo__local { color: var(--navy); }
.site-logo__seo { color: var(--blue); }
.site-logo__savvy { color: var(--orange); }

/* --- Primary Navigation (from WordPress Menus) --- */
#primary-menu-wrap { flex: 1; display: flex; justify-content: center; }

#primary-menu-wrap .nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#primary-menu-wrap .nav-menu > li {
  position: relative;
}

#primary-menu-wrap .nav-menu > li > a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 4px;
  display: block;
  transition: var(--transition);
  white-space: nowrap;
}

#primary-menu-wrap .nav-menu > li > a:hover,
#primary-menu-wrap .nav-menu > li.current-menu-item > a,
#primary-menu-wrap .nav-menu > li.current-menu-ancestor > a {
  color: var(--blue);
  background: rgba(0,123,255,0.07);
}

/* --- Dropdown Submenu --- */
#primary-menu-wrap .nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  list-style: none;
  z-index: 100;
}

#primary-menu-wrap .nav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#primary-menu-wrap .nav-menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--dark);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
}

#primary-menu-wrap .nav-menu .sub-menu li a:hover {
  background: var(--light);
  color: var(--blue);
  padding-left: 22px;
}

/* Dropdown arrow indicator */
#primary-menu-wrap .nav-menu > li.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 11px;
  opacity: 0.6;
}

/* --- Header CTA --- */
.header-cta {
  flex-shrink: 0;
  font-size: 14px;
  padding: 10px 22px;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.35s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --- Mobile Overlay --- */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  flex-direction: column;
  padding: 100px 40px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-overlay .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-overlay .nav-menu li a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.mobile-menu-overlay .nav-menu li a:hover { color: var(--orange); padding-left: 10px; }
.mobile-menu-overlay .sub-menu { padding-left: 20px; }
.mobile-menu-overlay .sub-menu li a { font-size: 16px; color: rgba(255,255,255,0.75); }

.mobile-cta {
  margin-top: 32px;
  text-align: center;
}

/* ============================================
   BODY OFFSET FOR FIXED HEADER
   ============================================ */
body { padding-top: 72px; }

/* ============================================
   HOMEPAGE HERO — 3D ANIMATED
   ============================================ */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #001535 0%, #002147 40%, #003d7a 70%, #007BFF 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated gradient mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,123,255,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,140,0,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(0,61,122,0.4) 0%, transparent 50%);
  animation: meshShift 10s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(2deg); }
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: floatUp linear infinite;
}
.particle:nth-child(1)  { left:5%;  width:6px; height:6px; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2)  { left:15%; width:3px; height:3px; animation-duration: 9s;  animation-delay: 2s; }
.particle:nth-child(3)  { left:30%; width:5px; height:5px; animation-duration: 14s; animation-delay: 1s; }
.particle:nth-child(4)  { left:50%; width:3px; height:3px; animation-duration: 11s; animation-delay: 4s; }
.particle:nth-child(5)  { left:65%; width:6px; height:6px; animation-duration: 8s;  animation-delay: 0.5s; }
.particle:nth-child(6)  { left:75%; width:4px; height:4px; animation-duration: 13s; animation-delay: 3s; }
.particle:nth-child(7)  { left:88%; width:3px; height:3px; animation-duration: 10s; animation-delay: 1.5s; }
.particle:nth-child(8)  { left:42%; width:5px; height:5px; animation-duration: 15s; animation-delay: 6s; }

@keyframes floatUp {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* 3D Floating Map Pin */
.hero-3d-element {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  animation: float3d 6s ease-in-out infinite;
  perspective: 800px;
  transform-style: preserve-3d;
  display: none; /* shown via JS after load */
}

.hero-3d-element .pin-3d {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  animation: spin3d 8s ease-in-out infinite;
}

@keyframes float3d {
  0%, 100% { transform: translateY(-50%) translateZ(0); }
  50%       { transform: translateY(calc(-50% - 20px)) translateZ(30px); }
}

@keyframes spin3d {
  0%   { transform: rotateY(0deg) rotateX(0deg); }
  25%  { transform: rotateY(15deg) rotateX(8deg); }
  50%  { transform: rotateY(0deg) rotateX(0deg); }
  75%  { transform: rotateY(-15deg) rotateX(-8deg); }
  100% { transform: rotateY(0deg) rotateX(0deg); }
}

/* Animated rings behind pin */
.pin-rings {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pin-ring {
  position: absolute;
  border: 1px solid rgba(0,123,255,0.3);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-out infinite;
}
.pin-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.pin-ring:nth-child(2) { width: 280px; height: 280px; animation-delay: 0.8s; }
.pin-ring:nth-child(3) { width: 360px; height: 360px; animation-delay: 1.6s; }

@keyframes ringPulse {
  0%   { opacity: 0.8; transform: translate(-50%,-50%) scale(0.8); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.3); }
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero h1 span { color: var(--orange); }

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero__stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.hero__stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--orange);
  display: block;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--blue), var(--orange));
  transition: height 0.4s ease;
}

.service-card:hover::before { height: 100%; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,33,71,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-card__icon i { color: var(--white) !important; }

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

.service-card p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
  transition: var(--transition);
}
.service-card__link:hover { gap: 10px; color: var(--orange); }

/* ============================================
   WHY CHOOSE US — ANIMATED FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-item {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-item:hover::after { transform: scaleX(1); }
.feature-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.feature-item__icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,123,255,0.3);
  transition: all 0.4s ease;
}

.feature-item:hover .feature-item__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0,123,255,0.4);
}

.feature-item h3 { margin-bottom: 12px; font-size: 20px; }
.feature-item p { color: var(--grey); font-size: 15px; margin: 0; }

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #003d7a 50%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

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

.stat-item__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--orange);
  display: block;
  line-height: 1;
}

.stat-item__suffix {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--orange);
}

.stat-item__label {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-top: 8px;
  font-family: 'Open Sans', sans-serif;
}

/* ============================================
   PROCESS STEPS — 3D CARDS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px) rotateX(3deg);
  box-shadow: var(--shadow-lg);
}

.process-step__number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0,123,255,0.3);
}

.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p { color: var(--grey); font-size: 14px; margin: 0; }

/* Arrow between steps */
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 24px;
  opacity: 0.4;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--blue);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--blue);
  opacity: 0.15;
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}

.testimonial-card__stars { color: #FFC107; font-size: 18px; margin-bottom: 16px; }

.testimonial-card__text {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  display: block;
}

.testimonial-card__business { font-size: 13px; color: var(--grey); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--blue); }

.faq-item__question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  transition: var(--transition);
}

.faq-item__question:hover { background: var(--light); }
.faq-item.open .faq-item__question { color: var(--blue); background: var(--light); }

.faq-item__icon {
  font-size: 20px;
  color: var(--blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer { max-height: 400px; }

.faq-item__answer-inner {
  padding: 0 28px 24px;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================
   PRE-FOOTER CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,140,0,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(0,123,255,0.2) 0%, transparent 50%);
}

.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 20px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 36px; font-size: 18px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer__logo span { color: var(--orange); }
.footer__logo .blue { color: var(--blue); }

.footer__tagline {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer__social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 10px; }
.footer__links li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__links li a::before {
  content: '›';
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}
.footer__links li a:hover { color: var(--white); padding-left: 4px; }

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

.footer__contact-item i {
  color: var(--orange);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer__contact-item p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: var(--transition);
}
.footer__legal a:hover { color: var(--orange); }

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--navy);
  border-top: 3px solid var(--orange);
  padding: 20px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

#cookie-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

#cookie-banner a { color: var(--orange); text-decoration: underline; }

.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btns button {
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
}
.cookie-btn-accept { background: var(--orange); color: var(--white); }
.cookie-btn-accept:hover { background: #e67d00; }
.cookie-btn-decline { background: rgba(255,255,255,0.1); color: var(--white); }
.cookie-btn-decline:hover { background: rgba(255,255,255,0.2); }
.cookie-btn-manage { background: transparent; color: rgba(255,255,255,0.6); text-decoration: underline; font-weight: 400; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   ENTRY ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  background: var(--light);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  font-size: 14px;
  color: var(--grey);
}

.breadcrumb__list li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--blue);
}

.breadcrumb__list a { color: var(--blue); }
.breadcrumb__list a:hover { color: var(--orange); }
.breadcrumb__list li:last-child { color: var(--navy); font-weight: 600; }

/* ============================================
   PAGE TEMPLATE STYLES
   ============================================ */
.page-content {
  min-height: 60vh;
  padding: 60px 0;
}

/* Elementor full width — remove padding */
.elementor-page .page-content {
  padding: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }
.text-blue    { color: var(--blue); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }
.text-grey    { color: var(--grey); }

.bg-light     { background: var(--light); }
.bg-navy      { background: var(--navy); }
.bg-blue      { background: var(--blue); }
.bg-white     { background: var(--white); }

.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.pb-0 { padding-bottom: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 50px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

.highlight-box {
  background: linear-gradient(135deg, rgba(0,123,255,0.08), rgba(0,33,71,0.05));
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin: 28px 0;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-3d-element { display: none; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  #primary-menu-wrap { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; }
}

@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header, .site-footer, #cookie-banner, .cta-band { display: none; }
  body { padding-top: 0; }
}
